@charset "UTF-8";
/* --- 必要最小限のリセット --- */
*, *::before, *::after {
  box-sizing: border-box; /* paddingとボーダーを幅に含める（必須） */
}

html {
  overflow-x: hidden; /* 横揺れを完全に防ぐ */
}

body {
  margin: 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased; /* 文字を綺麗に */
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}

/* 余白のせいでデザインがズレる要素をリセット */
h1, h2, h3, p, figure, ul, ol, dl, dd {
  margin: 0;
  padding: 0;
}

/* リストのポッチ（中黒）を消す */
ul, ol {
  list-style: none;
}

/* 画像の下にできる謎の隙間を消し、はみ出しを防ぐ */
img {
  max-width: 100%;
  display: block;
}

/* リンクの線を消し、色は文字色に合わせる */
a {
  text-decoration: none;
  color: inherit;
}

/* ボタンのデフォルト装飾を消す（自作デザインをしやすくするため） */
button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

header {
  background-color: #f1f1f1;
  padding: 18px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999;
}

.hamburger-grid {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-grid__dots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  width: 100%;
  height: 100%;
}

.hamburger-grid__dot {
  width: 100%;
  height: 100%;
  background-color: #009f88;
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.hamburger-grid.active .hamburger-grid__dot {
  background-color: #fff;
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(1) {
  transform: scale(0);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(2) {
  transform: translateY(8px);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(3) {
  transform: scale(0);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(4) {
  transform: translateX(8px);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(5) {
  transform: scale(1.2);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(6) {
  transform: translateX(-8px);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(7) {
  transform: scale(0);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(8) {
  transform: translateY(-8px);
}

.hamburger-grid.active .hamburger-grid__dot:nth-child(9) {
  transform: scale(0);
}

.nav-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #009f88;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 900;
}

.nav-grid.active {
  visibility: visible;
  opacity: 1;
}

.nav-grid__content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 100px 40px;
}

.nav-grid__sections {
  grid-column: span 12;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.nav-grid__section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-grid.active .nav-grid__section {
  opacity: 1;
  transform: translateY(0);
}

.nav-grid.active .nav-grid__section:nth-child(1) {
  transition-delay: 0.2s;
}

.nav-grid.active .nav-grid__section:nth-child(2) {
  transition-delay: 0.3s;
}

.nav-grid__title {
  margin: 0 0 20px;
  color: #00446a;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-grid__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-grid__list li {
  margin-bottom: 15px;
  overflow: hidden;
}

.nav-grid__link {
  display: inline-block;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
}

.nav-grid.active .nav-grid__link {
  transform: translateY(0);
}

.nav-grid__link:hover {
  color: #c7c7c7;
}

@media (max-width: 768px) {
  .nav-grid__content {
    padding: 80px 20px;
  }
  .nav-grid__sections {
    grid-template-columns: 1fr;
  }
  .nav-grid__link {
    font-size: 20px;
  }
}
.mv-section {
  background-image: url("../img/sample.png");
  background-repeat: no-repeat;
  background-position: 50% 30%;
  background-attachment: scroll;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 769px) {
  .mv-section {
    background-size: 50%;
  }
}
.mv-section .mv {
  max-width: 90%;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
  background: transparent;
}
@media screen and (max-width: 769px) {
  .mv-section .mv {
    padding-bottom: 200px;
  }
}
.mv-section .mv h2 {
  font-size: 5.5vw;
  letter-spacing: 3px;
  color: #272727;
}
.mv-section .about {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 200px 0;
  background: transparent;
}
.mv-section .about div {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 2px;
  color: #272727;
}
@media screen and (max-width: 769px) {
  .mv-section .about div {
    width: 90%;
    margin: 0 auto;
    font-size: 1rem;
  }
}
.mv-section .about div .arrow {
  display: block;
  width: fit-content; /* または width: 300px; など幅を指定 */
  margin-left: auto; /* 左側の余白を自動で最大にする（＝右に押し出す） */
  margin-right: 0; /* 右側は0にする（省略可） */
}
@media screen and (max-width: 769px) {
  .mv-section .about div .arrow {
    width: 180px;
    margin-top: 30px;
  }
}
.mv-section .about div .arrow div {
  display: flex;
  align-items: center;
}
.mv-section .about div .arrow .dli-caret-circle-fill-right {
  display: inline-block;
  vertical-align: middle;
  color: #1a1a1a;
  line-height: 1;
  position: relative;
  width: 2em;
  height: 2em;
  border: 0.075em solid currentColor;
  background: currentColor;
  border-radius: 50%;
  box-sizing: content-box;
}
.mv-section .about div .arrow .dli-caret-circle-fill-right::before {
  content: "";
  color: #fff;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.3em 0.5em;
  border-left-color: currentColor;
  border-right: 0;
  transform: translateX(15%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.mv-section .about div .arrow p {
  padding-left: 20px;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
}
.mv-section .about div .arrow:hover {
  transition: 2s;
}
.mv-section .about div .arrow:hover p {
  color: #009f88;
}

.latest {
  display: block;
  background-color: #009f88;
  width: 350px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 25px 10px 25px 25px;
  position: fixed;
  right: 0;
  bottom: 60px;
  border-radius: 20px 0 0 20px;
  will-change: transform;
}
@media screen and (max-width: 769px) {
  .latest {
    width: 100%;
    border-radius: 0;
    bottom: 0;
    top: auto;
    padding: 20px;
  }
}
.latest .left {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
  position: relative;
}
.latest .left img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.latest .right {
  font-size: 1.25rem;
  margin-left: 20px;
}
.latest .right .title {
  color: #fff;
  font-weight: 600;
  padding-top: 10px;
}

.fukidashi-02-01 {
  position: relative;
  width: fit-content;
  padding: 2px 20px;
  color: #000000;
  border-radius: 10px;
  background-color: #ffffff;
  font-size: 0.625rem;
  font-weight: 600;
}

.fukidashi-02-01::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 20%;
  z-index: -1;
  width: 10px;
  height: 6px;
  transform: translateX(-50%);
  box-sizing: border-box;
  background-color: #ffffff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.products {
  width: 90%;
  background-color: #009f88;
  border-radius: 0 200px 0 0;
}
@media screen and (max-width: 1024px) {
  .products {
    width: 100%;
  }
}
.products .wrap {
  margin-left: 10%;
  padding-top: 180px;
  padding-right: 30px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .products .wrap {
    padding-top: 130px;
    margin: 5%;
    padding-right: 0px;
  }
}
.products .wrap h2 {
  font-size: 0.875rem;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 10px;
}
.products .wrap h3 {
  font-size: 3.125rem;
  color: #fff;
  margin-bottom: 40px;
}
@media screen and (max-width: 769px) {
  .products .wrap h3 {
    font-size: 1.875rem;
  }
}
.products .wrap p {
  font-size: 1rem;
  color: #fff;
}
.products .wrap ul {
  padding-top: 100px;
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 500px) {
  .products .wrap ul {
    display: block;
  }
}
.products .wrap ul li {
  width: 28%;
  margin-right: 50px;
}
@media screen and (max-width: 1024px) {
  .products .wrap ul li {
    width: 33%;
    margin-right: 20px;
  }
}
@media screen and (max-width: 500px) {
  .products .wrap ul li {
    width: 100%;
    margin-bottom: 30px;
  }
}
.products .wrap ul li a {
  display: block;
}
.products .wrap ul li a .con1 {
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}
.products .wrap ul li a .con1 img {
  width: 100%;
  object-fit: cover;
}
.products .wrap ul li a .con2 {
  background-color: #fff;
  border-radius: 0 0 30px 30px;
  padding: 20px;
}
.products .wrap ul li a .con2 h4 {
  margin: 0;
}
.products .wrap ul li a .con2 h4 img {
  width: 80%;
}
.products .wrap ul li a .con2 p {
  color: #000;
  padding-top: 25px;
  text-align: center;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.company .wrap {
  width: 90%;
  margin: 0 auto;
  padding-top: 200px;
}
@media screen and (max-width: 1024px) {
  .company .wrap {
    padding-top: 100px;
  }
}
.company .wrap h2 {
  font-size: 0.875rem;
  font-family: "Montserrat", sans-serif;
  color: #000;
  margin-bottom: 10px;
}
.company .wrap h3 {
  font-size: 3.125rem;
  color: #000;
  margin-bottom: 40px;
}
@media screen and (max-width: 769px) {
  .company .wrap h3 {
    font-size: 1.875rem;
  }
}
.company .wrap .con {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .company .wrap .con {
    display: block;
  }
}
.company .wrap .con .con1 {
  font-size: 1rem;
  color: #000;
  width: 45%;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 1px;
}
@media screen and (max-width: 1024px) {
  .company .wrap .con .con1 {
    width: 100%;
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 500px) {
  .company .wrap .con .con1 {
    margin-bottom: 50px;
  }
}
.company .wrap .con .con2 {
  width: 45%;
}
@media screen and (max-width: 1024px) {
  .company .wrap .con .con2 {
    width: 100%;
  }
}
.company .wrap .con .con2 ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 500px) {
  .company .wrap .con .con2 ul {
    display: block;
  }
}
.company .wrap .con .con2 ul li {
  border-bottom: 1px #000 solid;
  width: 45%;
  margin-bottom: 40px;
}
@media screen and (max-width: 500px) {
  .company .wrap .con .con2 ul li {
    width: 100%;
  }
}
.company .wrap .con .con2 ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
}
.company .wrap .con .con2 ul li a:hover {
  color: #009f88;
}
.company .wrap .con .con2 ul li a div h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0;
}
.company .wrap .con .con2 ul li a div p {
  font-size: 0.875rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #b1afaf;
}
.company .wrap .con .con2 ul li a .dli-caret-circle-fill-right {
  display: inline-block;
  vertical-align: middle;
  color: #009f88;
  line-height: 1;
  position: relative;
  width: 2em;
  height: 2em;
  border: 0.075em solid currentColor;
  background: currentColor;
  border-radius: 50%;
  box-sizing: content-box;
}
.company .wrap .con .con2 ul li a .dli-caret-circle-fill-right::before {
  content: "";
  color: #fff;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.3em 0.5em;
  border-left-color: currentColor;
  border-right: 0;
  transform: translateX(15%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.insta {
  padding-top: 200px;
  position: relative;
}
.insta .object1 {
  width: 400px;
  height: 200px;
  background-color: #f9c04c;
  border-radius: 0 200px 0 0;
  position: absolute;
  top: 100px;
  left: 0;
}
.insta .wrap {
  width: 90%;
  margin: 0 auto;
}

.news {
  position: relative;
}
.news .object2 {
  width: 400px;
  height: 200px;
  background-color: #00446a;
  border-radius: 0 0 0 200px;
  position: absolute;
  bottom: -230px;
  right: 0;
}
@media screen and (max-width: 500px) {
  .news .object2 {
    display: none;
  }
}
.news .wrap {
  padding-top: 200px;
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .news .wrap {
    padding-top: 100px;
    width: 90%;
  }
}
.news .wrap .con {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 10%;
}
@media screen and (max-width: 500px) {
  .news .wrap .con {
    padding-right: 2%;
  }
}
.news .wrap .con div h2 {
  font-size: 0.875rem;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 10px;
}
.news .wrap .con div h3 {
  font-size: 3.125rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 769px) {
  .news .wrap .con div h3 {
    font-size: 1.875rem;
  }
}
.news .wrap .con .arrow {
  display: block;
  width: fit-content; /* または width: 300px; など幅を指定 */
  margin-left: auto; /* 左側の余白を自動で最大にする（＝右に押し出す） */
  margin-right: 0; /* 右側は0にする（省略可） */
}
.news .wrap .con .arrow div {
  display: flex;
  align-items: center;
}
.news .wrap .con .arrow .dli-caret-circle-fill-right {
  display: inline-block;
  vertical-align: middle;
  color: #1a1a1a;
  line-height: 1;
  position: relative;
  width: 2em;
  height: 2em;
  border: 0.075em solid currentColor;
  background: currentColor;
  border-radius: 50%;
  box-sizing: content-box;
}
.news .wrap .con .arrow .dli-caret-circle-fill-right::before {
  content: "";
  color: #fff;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.3em 0.5em;
  border-left-color: currentColor;
  border-right: 0;
  transform: translateX(15%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.news .wrap .con .arrow p {
  padding-left: 20px;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
}
.news .wrap .con .arrow:hover {
  transition: 2s;
}
.news .wrap .con .arrow:hover p {
  color: #009f88;
}
.news .wrap ul li {
  border-top: #1a1a1a solid 1px;
}
.news .wrap ul li:last-child {
  border-bottom: #1a1a1a solid 1px;
}
.news .wrap ul li a {
  padding: 30px 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.news .wrap ul li a:hover h4 {
  color: #009f88;
}
.news .wrap ul li a .date {
  margin-right: 200px;
}
@media screen and (max-width: 500px) {
  .news .wrap ul li a .date {
    margin-right: 20px;
    text-align: center;
  }
}
.news .wrap ul li a .date p {
  font-size: 0.75rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  margin-bottom: 10px;
}
.news .wrap ul li a .date .category {
  background-color: #000;
  width: fit-content;
  color: #fff;
  font-size: 0.875rem;
  padding: 5px;
  border-radius: 10px;
}
@media screen and (max-width: 500px) {
  .news .wrap ul li a .date .category {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 500px) {
  .news .wrap ul li a h4 {
    font-size: 0.875rem;
  }
}

footer {
  margin-top: 300px;
  background-color: #ececec;
  padding-bottom: 100px;
}
@media screen and (max-width: 500px) {
  footer {
    margin-top: 100px;
  }
}
footer .wrap {
  width: 90%;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 30px;
  border-bottom: #cecdcd solid 1px;
}
footer nav {
  width: 90%;
  margin: 0 auto;
  padding-top: 30px;
}
footer nav ul {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 500px) {
  footer nav ul {
    width: 100%;
  }
}
footer nav ul li {
  width: 15%;
  margin-bottom: 30px;
  font-size: 0.875rem;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  footer nav ul li {
    width: 30%;
  }
}
@media screen and (max-width: 500px) {
  footer nav ul li {
    width: 50%;
  }
}
footer nav ul li a:hover {
  color: #009f88;
}
footer .copy {
  width: 90%;
  margin: 0 auto;
  text-align: right;
  padding-top: 40px;
  font-size: 0.75rem;
  font-weight: 600;
}

.lower-mv {
  width: 100%;
  height: 400px;
  background-color: #f7f7f7;
  display: flex;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 500px) {
  .lower-mv {
    height: 350px;
  }
}
.lower-mv .wrap {
  width: 70%;
  margin: 0 auto;
  background-image: url(img/icon1.png);
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
  padding-left: 30px;
}
@media screen and (max-width: 1024px) {
  .lower-mv .wrap {
    width: 80%;
  }
}
.lower-mv .wrap h2 {
  font-size: 0.875rem;
  font-family: "Montserrat", sans-serif;
}
.lower-mv .wrap h3 {
  font-size: 3rem;
}
@media screen and (max-width: 500px) {
  .lower-mv .wrap h3 {
    font-size: 1.625rem;
  }
}

.aboutcon1 .wrap {
  width: 60%;
  margin: 0 auto;
  display: flex;
  padding-top: 200px;
}
@media screen and (max-width: 1024px) {
  .aboutcon1 .wrap {
    width: 95%;
  }
}
@media screen and (max-width: 500px) {
  .aboutcon1 .wrap {
    width: 97%;
    padding-top: 100px;
  }
}
.aboutcon1 .wrap .con1 {
  width: 30%;
}
@media screen and (max-width: 500px) {
  .aboutcon1 .wrap .con1 {
    width: 20%;
  }
}
.aboutcon1 .wrap .con1 h2 {
  writing-mode: vertical-rl;
  font-size: 6.25rem;
  letter-spacing: 8px;
}
@media screen and (max-width: 500px) {
  .aboutcon1 .wrap .con1 h2 {
    font-size: 2.5rem;
  }
}
.aboutcon1 .wrap .con2 {
  width: 70%;
  border-top: 1px solid #000;
  padding-top: 40px;
}
@media screen and (max-width: 500px) {
  .aboutcon1 .wrap .con2 {
    padding-right: 3%;
    width: 80%;
  }
}
.aboutcon1 .wrap .con2 .dot-title {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.aboutcon1 .wrap .con2 .dot-title::before {
  content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  background-color: #00446a;
  border-radius: 50%;
  flex-shrink: 0;
}
.aboutcon1 .wrap .con2 h3 {
  font-size: 1.125rem;
}
.aboutcon1 .wrap .con2 h4 {
  font-size: 2rem;
  line-height: 50px;
}
.aboutcon1 .wrap .con2 p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 28px;
}

.aboutcon2 .wrap {
  width: 60%;
  margin: 0 auto;
  display: flex;
  padding-top: 200px;
}
@media screen and (max-width: 1024px) {
  .aboutcon2 .wrap {
    width: 95%;
  }
}
@media screen and (max-width: 500px) {
  .aboutcon2 .wrap {
    width: 97%;
  }
}
.aboutcon2 .wrap .con1 {
  width: 30%;
}
@media screen and (max-width: 500px) {
  .aboutcon2 .wrap .con1 {
    width: 20%;
  }
}
.aboutcon2 .wrap .con1 h2 {
  writing-mode: vertical-rl;
  font-size: 6.25rem;
  letter-spacing: 8px;
}
@media screen and (max-width: 500px) {
  .aboutcon2 .wrap .con1 h2 {
    font-size: 2.5rem;
  }
}
.aboutcon2 .wrap .con2 {
  width: 70%;
}
@media screen and (max-width: 500px) {
  .aboutcon2 .wrap .con2 {
    width: 80%;
  }
}
.aboutcon2 .wrap .con2 .separator {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #000;
  padding: 50px 0;
}
@media screen and (max-width: 500px) {
  .aboutcon2 .wrap .con2 .separator {
    display: block;
  }
}
.aboutcon2 .wrap .con2 .separator div {
  width: 45%;
}
@media screen and (max-width: 1024px) {
  .aboutcon2 .wrap .con2 .separator div {
    width: 50%;
  }
}
@media screen and (max-width: 500px) {
  .aboutcon2 .wrap .con2 .separator div {
    width: 100%;
  }
}
.aboutcon2 .wrap .con2 .dot-title1 {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.aboutcon2 .wrap .con2 .dot-title1::before {
  content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  background-color: #00446a;
  border-radius: 50%;
  flex-shrink: 0;
}
.aboutcon2 .wrap .con2 .dot-title2 {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.aboutcon2 .wrap .con2 .dot-title2::before {
  content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  background-color: #009f88;
  border-radius: 50%;
  flex-shrink: 0;
}
.aboutcon2 .wrap .con2 .dot-title3 {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.aboutcon2 .wrap .con2 .dot-title3::before {
  content: "";
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  background-color: #f9c04c;
  border-radius: 50%;
  flex-shrink: 0;
}
.aboutcon2 .wrap .con2 h3 {
  font-size: 1.125rem;
}
.aboutcon2 .wrap .con2 h4 {
  font-size: 2rem;
  line-height: 50px;
  margin: 15px 0;
}
.aboutcon2 .wrap .con2 p {
  font-size: 1rem;
  font-weight: 500;
  line-height: 28px;
}

.productMv {
  width: 100%;
  padding-top: 180px;
}
@media screen and (max-width: 1024px) {
  .productMv {
    padding-top: 130px;
  }
}
@media screen and (max-width: 500px) {
  .productMv {
    padding-top: 100px;
  }
}
.productMv .wrap {
  width: 90%;
  margin: 0 auto;
  height: 550px;
  background-color: aqua;
  border-radius: 100px;
  background-image: url(img/productMv.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  isolation: isolate;
}
@media screen and (max-width: 1024px) {
  .productMv .wrap {
    height: 400px;
  }
}
@media screen and (max-width: 500px) {
  .productMv .wrap {
    width: 98%;
    height: 300px;
  }
}

.product {
  padding-top: 150px;
}
.product .wrap {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .product .wrap {
    width: 90%;
  }
}
@media screen and (max-width: 500px) {
  .product .wrap {
    width: 95%;
    padding-top: 0px;
  }
}
.product .wrap .con1 {
  display: flex;
}
.product .wrap .con1 .conleft {
  width: 60%;
  padding-right: 30px;
}
.product .wrap .con1 .conleft img {
  width: 100%;
}
@media screen and (max-width: 500px) {
  .product .wrap .con1 .conleft {
    width: 70%;
  }
}
.product .wrap .con1 .conright {
  writing-mode: vertical-rl;
  font-family: "Sawarabi Mincho", serif;
  color: #000000;
  height: fit-content;
  width: 40%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 500px) {
  .product .wrap .con1 .conright {
    width: 20%;
    align-items: flex-end;
  }
}
.product .wrap .con1 .conright .title h2 {
  font-size: 0.875rem;
  margin-left: 1.5em;
  letter-spacing: 2px;
  font-weight: 500;
}
@media screen and (max-width: 500px) {
  .product .wrap .con1 .conright .title h2 {
    font-size: 0.875rem;
    margin-left: 10px;
  }
}
.product .wrap .con1 .conright .title h3 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #000000;
  letter-spacing: 2px;
}
@media screen and (max-width: 500px) {
  .product .wrap .con1 .conright .title h3 {
    font-size: 1.5rem;
  }
}
.product .wrap .con2 {
  margin-top: 200px;
  background-image: url(img/new_xl_12961_01975.png);
  background-repeat: no-repeat;
  background-position: right 100px top 0px;
  background-size: auto 100%;
}
@media screen and (max-width: 1024px) {
  .product .wrap .con2 {
    background-position: right 0px top 0px;
  }
}
@media screen and (max-width: 500px) {
  .product .wrap .con2 {
    margin-top: 80px;
    background: none;
  }
}
.product .wrap .con2 .con {
  width: 70%;
}
@media screen and (max-width: 500px) {
  .product .wrap .con2 .con {
    width: 98%;
    margin: 0 auto;
  }
}
.product .wrap .con2 .con p {
  font-size: 1.125rem;
  font-family: "Sawarabi Mincho", serif;
  line-height: 45px;
  font-weight: normal;
}
@media screen and (max-width: 1024px) {
  .product .wrap .con2 .con p {
    line-height: 30px;
  }
}

.process {
  margin-bottom: 200px;
}
.process .wrap {
  width: 70%;
  margin: 200px auto 0;
}
@media screen and (max-width: 1024px) {
  .process .wrap {
    width: 90%;
  }
}
@media screen and (max-width: 500px) {
  .process .wrap {
    margin: 100px auto 0;
  }
}
.process .wrap .title {
  text-align: center;
  margin-bottom: 150px;
}
.process .wrap .title h2 {
  font-size: 2.5rem;
  font-family: "Sawarabi Mincho", serif;
  font-weight: 500;
  margin-bottom: 20px;
}
.process .wrap .title p {
  font-size: 1.25rem;
}
.process .wrap .con {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 500px) {
  .process .wrap .con {
    display: block;
  }
}
.process .wrap .con .conleft {
  width: 50%;
  border-radius: 50px;
  overflow: hidden;
  margin-right: 100px;
}
@media screen and (max-width: 1024px) {
  .process .wrap .con .conleft {
    width: 40%;
    margin-right: 50px;
  }
}
@media screen and (max-width: 500px) {
  .process .wrap .con .conleft {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 30px;
  }
}
.process .wrap .con .conleft img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.process .wrap .con .conright {
  width: 50%;
  padding-right: 40px;
}
@media screen and (max-width: 1024px) {
  .process .wrap .con .conright {
    width: 60%;
  }
}
@media screen and (max-width: 500px) {
  .process .wrap .con .conright {
    width: 100%;
    padding-right: 0px;
  }
}
.process .wrap .con .conright h3 {
  font-size: 1.375rem;
}
@media screen and (max-width: 1024px) {
  .process .wrap .con .conright h3 {
    font-size: 1.25rem;
  }
}
.process .wrap .con .conright .subtitle {
  color: #a3a3a3;
}
.process .wrap .con .conright h4 {
  font-size: 1.75rem;
}
@media screen and (max-width: 1024px) {
  .process .wrap .con .conright h4 {
    font-size: 1.5rem;
    margin-top: 10px;
  }
}
.process .wrap .con .conright p {
  font-size: 1.125rem;
  line-height: 35px;
}
@media screen and (max-width: 1024px) {
  .process .wrap .con .conright p {
    font-size: 1rem;
    margin-top: 10px;
  }
}

.shop {
  background: #f9f8f6;
  width: 100%;
  padding-bottom: 30px;
}
@media screen and (max-width: 500px) {
  .shop {
    padding-bottom: 10px;
  }
}
.shop .wrap {
  width: 80%;
  margin: 0 auto;
  position: relative;
  padding-top: 130px;
}
@media screen and (max-width: 1024px) {
  .shop .wrap {
    width: 90%;
  }
}
.shop .wrap h2 {
  position: absolute;
  top: -40px;
  font-size: 3.125rem;
  font-family: "Sawarabi Mincho", serif;
}
.shop .wrap ul {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 500px) {
  .shop .wrap ul {
    display: block;
  }
}
.shop .wrap ul li {
  width: 45%;
  height: auto;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .shop .wrap ul li {
    width: 49%;
  }
}
@media screen and (max-width: 500px) {
  .shop .wrap ul li {
    width: 100%;
    margin-bottom: 50px;
  }
}
.shop .wrap ul li a {
  display: block;
  font-family: "Sawarabi Mincho", serif;
}
.shop .wrap ul li a:hover {
  opacity: 0.8;
}
.shop .wrap ul li a .con1 {
  position: absolute;
  top: 30px;
  left: 30px;
}
@media screen and (max-width: 500px) {
  .shop .wrap ul li a .con1 {
    top: 20px;
  }
}
.shop .wrap ul li a .con1 p {
  writing-mode: vertical-rl;
  line-height: 40px;
  font-size: 1.125rem;
}
@media screen and (max-width: 1024px) {
  .shop .wrap ul li a .con1 p {
    font-size: 0.75rem;
    line-height: 25px;
  }
}
.shop .wrap ul li a .con2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop .wrap ul li a .con3 {
  position: absolute;
  top: 30px;
  right: 30px;
  display: flex;
}
@media screen and (max-width: 500px) {
  .shop .wrap ul li a .con3 {
    top: 20px;
  }
}
.shop .wrap ul li a .con3 h3 {
  writing-mode: vertical-rl;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 3px;
}
@media screen and (max-width: 1024px) {
  .shop .wrap ul li a .con3 h3 {
    font-size: 1.25rem;
  }
}
.shop .wrap ul li a .con3 p {
  writing-mode: vertical-rl;
  font-size: 0.75rem;
  border: 1px solid #000000;
  border-radius: 8px;
  padding: 7px 2px 7px 1px;
  line-height: 20px;
  margin-left: 10px;
}
@media screen and (max-width: 1024px) {
  .shop .wrap ul li a .con3 p {
    font-size: 0.625rem;
    padding: 5px 1px 5px 1px;
    line-height: 18px;
  }
}
.shop .wrap ul li a .con4 {
  position: absolute;
  bottom: 10px;
  right: 30px;
}
.shop .wrap ul li a .con4 .price {
  font-size: 1.875rem;
  display: flex;
  align-items: baseline;
}
.shop .wrap ul li a .con4 .price .unit {
  font-size: 0.75rem;
  margin-left: 4px;
}
.shop .button {
  display: block;
  background-color: #000000;
  width: 250px;
  color: #fff;
  padding: 15px 0;
  text-align: center;
  border-radius: 50px;
  margin: 100px auto;
}
.shop .button:hover {
  background-color: #009f88;
}

.profile {
  margin-top: 100px;
  border-top: 1px solid #000;
  width: 70%;
  margin: 100px auto 0;
}
@media screen and (max-width: 1024px) {
  .profile {
    width: 90%;
  }
}
.profile .con {
  display: flex;
  border-bottom: 1px solid #000;
  padding: 50px 10px;
}
.profile .gray {
  color: #7a7a7a;
}
.profile h2 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 500px) {
  .profile h2 {
    font-size: 1rem;
  }
}
.profile h3 {
  font-size: 1.125rem;
}
@media screen and (max-width: 500px) {
  .profile h3 {
    font-size: 0.75rem;
  }
}
.profile .conleft {
  width: 35%;
}
@media screen and (max-width: 500px) {
  .profile .conleft {
    width: 30%;
    margin-right: 20px;
  }
}

.fluid-bg {
  position: fixed;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40vmin;
  height: 40vmin;
  z-index: -100;
  opacity: 0.4;
  pointer-events: none;
}

.sharp-shape {
  width: 100%;
  height: 100%;
  animation: fluid-morph 8s infinite alternate cubic-bezier(0.77, 0, 0.175, 1), color-change 15s infinite alternate linear;
}

@keyframes fluid-morph {
  0% {
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    transform: rotate(0deg) scale(1);
  }
  33% {
    clip-path: polygon(50% 10%, 90% 90%, 50% 70%, 10% 90%, 50% 10%);
    transform: rotate(120deg) scale(1.3);
  }
  66% {
    clip-path: polygon(0% 40%, 100% 20%, 100% 80%, 0% 60%, 0% 40%);
    transform: rotate(240deg) scale(0.9);
  }
  100% {
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 50% 80%, 0% 100%);
    transform: rotate(360deg) scale(1.1);
  }
}
@keyframes color-change {
  0% {
    background-color: #004469;
  }
  50% {
    background-color: #f9c04c;
  }
  100% {
    background-color: #00a085;
  }
}/*# sourceMappingURL=style.css.map */