@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --grad-progress: 0;
  --intro-progress: 0;
  --g-padding-s: 32px;
  --g-padding-m: 64px;
  --g-padding-l: 136px;
  --g-color-base: #F7F5F5;
  --g-color-red: #FF4F45;
  --g-color-green: #E9F3EF;
  --g-color-black: #000;
  --g-color-blue: #5e8ec1;
  --g-color-white: #fff;
  --g-color-border: #707070;
  --g-color-yellow: #F59E33;
}
@media screen and (max-width: 1300px) {
  :root {
    --g-padding-s: 32rem;
    --g-padding-m: 64rem;
    --g-padding-l: 136rem;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --g-padding-s: 0;
    --g-padding-m: 0;
    --g-padding-l: 0;
  }
}

._b {
  font-weight: bold;
}

._m {
  font-weight: 500;
}

._n {
  font-weight: normal;
}

.c-font-xs {
  font-size: 12rem;
  letter-spacing: 0.05em;
}

.c-font-s {
  font-size: 16rem;
  font-weight: 500;
  line-height: 1.4;
}

.c-font-m {
  font-size: 25rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

.c-font-l {
  font-size: 45rem;
  font-weight: 500;
  line-height: 90rem;
  letter-spacing: 0.05em;
}

.c-font-xl {
  font-size: 120rem;
  font-weight: normal;
  line-height: 1.2;
}

@media (max-width: 768px) {
  ._pc {
    display: none !important;
  }
}
@media (min-width: 1025px) {
  ._tablet {
    display: none !important;
  }
}
@media (min-width: 768px) {
  ._sp {
    display: none !important;
  }
}
.smooth-scroll {
  height: 100vh;
  width: 100%;
}

.scrollbar-track {
  display: none !important;
}

html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

[data-scroll-container] {
  overflow: hidden !important;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11rem;
  height: 100vh;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}

.c-scrollbar:hover {
  transform: scaleX(1.45);
}

.c-scrollbar:hover,
.has-scroll-scrolling .c-scrollbar,
.has-scroll-dragging .c-scrollbar {
  opacity: 1;
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: black;
  opacity: 0.5;
  width: 7rem;
  border-radius: 10rem;
  margin: 2rem;
  cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: grabbing;
}

.cover-footer {
  z-index: 1;
}

body.is-loading .js-cursor {
  display: none;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*:focus {
  outline: none;
}

html {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 1300px) {
  html {
    font-size: 0.0769230769vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.2857142857vw;
  }
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

::before,
::after {
  box-sizing: inherit;
  margin: 0;
}

::-moz-selection {
  background-color: #ccc;
}

::selection {
  background-color: #ccc;
}

body {
  overflow-wrap: break-word;
  width: 100%;
  min-height: 100%;
  line-height: 1.8;
  overflow-x: hidden;
}
body.is-menu-active {
  overflow: hidden;
}

html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 1em;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

dl {
  padding: 0;
}

iframe {
  border-style: none;
}

.black a,
.black p {
  color: #000;
}

h1, h2, h3, h4, h5, a, p, span {
  color: var(--g-color-black);
}

section {
  position: relative;
  overflow: hidden;
}

span {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
}

body.mac-os .home-intro__ttl-icons-graphic {
  bottom: 1.9270833333vw !important;
}
body.mac-os .home-footer__intro .home-intro__ttl-icons-graphic {
  bottom: 0.2083333333vw !important;
}

.sec-ttl__wrap._show .sec-ttl span {
  transform: translateY(0);
}

.js-menu .c-menu {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.js-menu .c-menu span {
  position: relative;
  display: inline-block;
  line-height: 1;
  color: inherit;
}
@media screen and (max-width: 768px) {
  .js-menu .c-menu span {
    transform: unset !important;
  }
}
.js-menu .c-menu span::after {
  position: absolute;
  top: 0;
  left: 0;
  color: inherit;
  content: attr(data-text);
  transform: translateY(100%);
}
@media screen and (max-width: 768px) {
  .js-menu .c-menu span::after {
    content: unset;
  }
}

.forpc {
  display: block;
}
@media screen and (max-width: 768px) {
  .forpc {
    display: none;
  }
}

.forsp {
  display: none;
}
@media screen and (max-width: 768px) {
  .forsp {
    display: block;
  }
}

.s-container {
  max-width: 1000px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 1300px) {
  .s-container {
    max-width: 1000rem;
  }
}
@media screen and (max-width: 768px) {
  .s-container {
    max-width: 290rem;
  }
}

.container {
  max-width: 1050px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 1300px) {
  .container {
    max-width: 1050rem;
  }
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 290rem;
  }
}

main._bg-main {
  overflow: unset;
  overflow-x: clip;
  position: relative;
}

.slide-auto-loop-wrap {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.slide-auto-loop-area {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  animation: loop-area 70s infinite linear;
}
@media screen and (max-width: 768px) {
  .slide-auto-loop-area {
    animation: loop-area 50s infinite linear;
  }
}

@keyframes loop-area {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.slide-auto-loop-txt {
  font-size: 18.5vh;
  color: var(--g-color-black);
  text-wrap: nowrap;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .slide-auto-loop-txt {
    font-size: 120rem;
  }
}

.slide-auto-loop-img {
  width: 2235px;
  overflow: hidden;
  margin: 0 40px;
}
@media screen and (max-width: 1300px) {
  .slide-auto-loop-img {
    margin: 0 40rem;
    width: 2235rem;
  }
}
@media screen and (max-width: 768px) {
  .slide-auto-loop-img {
    margin: 0 -30rem;
    width: 473rem;
  }
}
.slide-auto-loop-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.more-btn {
  text-align: center;
}
.more-btn a,
.more-btn button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding: 14px 100px;
  border: 1px solid var(--g-color-black);
  margin: auto;
  background: var(--g-color-white);
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 1300px) {
  .more-btn a,
  .more-btn button {
    padding: 14rem 100rem;
  }
}
@media screen and (max-width: 768px) {
  .more-btn a,
  .more-btn button {
    padding: 5rem 45rem;
  }
}
.more-btn a span,
.more-btn button span {
  transition: all 0.4s ease-in-out;
  letter-spacing: 0.08em;
  font-size: 20px;
  color: var(--g-color-black);
  line-height: 1;
  font-weight: 500;
}
@media screen and (max-width: 1300px) {
  .more-btn a span,
  .more-btn button span {
    font-size: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .more-btn a span,
  .more-btn button span {
    font-size: 14rem;
  }
}
.more-btn a:hover,
.more-btn button:hover {
  background: var(--g-color-black);
}
.more-btn a:hover span,
.more-btn button:hover span {
  color: var(--g-color-white);
}

.lower-fv {
  padding-top: 120px;
  height: 700px;
}
@media screen and (max-width: 1300px) {
  .lower-fv {
    padding-top: 120rem;
    height: 700rem;
  }
}
@media screen and (max-width: 768px) {
  .lower-fv {
    height: 500rem;
    padding: 0 25rem;
    padding-top: 20rem;
  }
}
.lower-fv._s-size {
  padding-top: 40px;
}
@media screen and (max-width: 1300px) {
  .lower-fv._s-size {
    padding-top: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .lower-fv._s-size {
    height: 400rem;
    padding-top: 20rem;
  }
}
.lower-fv._news {
  padding-top: 200px;
  height: 600px;
}
@media screen and (max-width: 1300px) {
  .lower-fv._news {
    padding-top: 200rem;
    height: 600rem;
  }
}
@media screen and (max-width: 768px) {
  .lower-fv._news {
    padding-top: 60rem;
    height: 400rem;
  }
}
.lower-fv._news h2 {
  letter-spacing: 0.1em;
  font-size: 52px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1300px) {
  .lower-fv._news h2 {
    font-size: 52rem;
    margin-bottom: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .lower-fv._news h2 {
    font-size: 40rem;
    margin-bottom: 10rem;
  }
}
.lower-fv._news p {
  font-family: "Times", serif;
  font-size: 26px;
}
@media screen and (max-width: 1300px) {
  .lower-fv._news p {
    font-size: 26rem;
  }
}
@media screen and (max-width: 768px) {
  .lower-fv._news p {
    font-size: 22rem;
  }
}
.lower-fv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.lower-fv-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.lower-fv-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lower-fv-container {
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.lower-fv-container h2 {
  font-size: 76px;
  font-weight: 500;
  color: var(--g-color-white);
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
@media screen and (max-width: 1300px) {
  .lower-fv-container h2 {
    font-size: 76rem;
    margin-bottom: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .lower-fv-container h2 {
    font-size: 28rem;
  }
}
.lower-fv-container h2._s-size {
  letter-spacing: 0.1em;
  font-size: 52px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1300px) {
  .lower-fv-container h2._s-size {
    font-size: 52rem;
    margin-bottom: 50rem;
  }
}
@media screen and (max-width: 768px) {
  .lower-fv-container h2._s-size {
    font-size: 19rem;
    margin-bottom: 30rem;
  }
}
.lower-fv-container h2.en {
  font-family: "Times", serif;
}
.lower-fv-container > p {
  font-size: 16px;
  line-height: 2;
  font-weight: 400;
  color: var(--g-color-white);
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .lower-fv-container > p {
    font-size: 14rem;
    text-align: left;
  }
}
.lower-fv._ms-size {
  padding-top: 190px;
}
@media screen and (max-width: 1300px) {
  .lower-fv._ms-size {
    padding-top: 190rem;
  }
}
@media screen and (max-width: 768px) {
  .lower-fv._ms-size {
    height: 280rem;
    padding-top: 60rem;
  }
}
.lower-fv._ms-size h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 1300px) {
  .lower-fv._ms-size h2 {
    margin-bottom: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .lower-fv._ms-size h2 {
    font-size: 26rem;
    margin-bottom: 10rem;
  }
}
.lower-fv._ms-size p {
  font-family: "Times", serif;
}
@media screen and (max-width: 768px) {
  .lower-fv._ms-size p {
    font-size: 17rem;
  }
}
.lower-fv-sttl {
  margin-bottom: 20px;
}
@media screen and (max-width: 1300px) {
  .lower-fv-sttl {
    margin-bottom: 20rem;
  }
}
.lower-fv-sttl p {
  font-size: 32px;
  line-height: 1.8;
  font-weight: 400;
  color: var(--g-color-white);
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1300px) {
  .lower-fv-sttl p {
    font-size: 32rem;
  }
}
@media screen and (max-width: 768px) {
  .lower-fv-sttl p {
    font-size: 18rem;
  }
}

._blur-item {
  filter: blur(15px);
}

.wpcf7-response-output {
  text-align: center;
  font-size: 16px !important;
}
@media screen and (max-width: 768px) {
  .wpcf7-response-output {
    font-size: 12rem !important;
  }
}

.wpcf7-not-valid-tip {
  font-size: 16px !important;
}
@media screen and (max-width: 768px) {
  .wpcf7-not-valid-tip {
    font-size: 12rem !important;
  }
}

@font-face {
  font-family: "Times";
  src: url("../fonts/times.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SourceHanSerifHK";
  src: url("../fonts/SourceHanSerifHK-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SourceHanSerifHK";
  src: url("../fonts/SourceHanSerifHK-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SourceHanSerifHK";
  src: url("../fonts/SourceHanSerifHK-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SourceHanSerifHK";
  src: url("../fonts/SourceHanSerifHK-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SourceHanSerifHK";
  src: url("../fonts/SourceHanSerifHK-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SourceHanSerifHK";
  src: url("../fonts/SourceHanSerifHK-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SourceHanSerifHK";
  src: url("../fonts/SourceHanSerifHK-Heavy.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
html {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
}

._bold {
  font-weight: 700;
}

.js-ttl,
.js-ttl-io {
  overflow: hidden;
  display: block;
  opacity: 0;
}
.js-ttl.show,
.js-ttl-io.show {
  opacity: 1;
}
.js-ttl > span,
.js-ttl-io > span {
  display: inline-flex;
  align-items: center;
}
.js-ttl > span span,
.js-ttl-io > span span {
  display: inline-block;
  transform: translate(0, 101%);
  transition: transform 1.2s cubic-bezier(0.32, 0.1, 0, 1);
}
.js-ttl > span span._delay._show,
.js-ttl-io > span span._delay._show {
  transform: translate(0);
}
.js-ttl > span span._delay._show:nth-of-type(1),
.js-ttl-io > span span._delay._show:nth-of-type(1) {
  transition-delay: 0s;
}
.js-ttl > span span._delay._show:nth-of-type(2),
.js-ttl-io > span span._delay._show:nth-of-type(2) {
  transition-delay: 0.1s;
}
.js-ttl > span span._delay._show:nth-of-type(3),
.js-ttl-io > span span._delay._show:nth-of-type(3) {
  transition-delay: 0.18s;
}
.js-ttl > span span._delay._show:nth-of-type(4),
.js-ttl-io > span span._delay._show:nth-of-type(4) {
  transition-delay: 0.26s;
}
.js-ttl > span span._delay._show:nth-of-type(5),
.js-ttl-io > span span._delay._show:nth-of-type(5) {
  transition-delay: 0.34s;
}
.js-ttl > span span._delay._show:nth-of-type(6),
.js-ttl-io > span span._delay._show:nth-of-type(6) {
  transition-delay: 0.42s;
}
.js-ttl > span span._delay._show:nth-of-type(7),
.js-ttl-io > span span._delay._show:nth-of-type(7) {
  transition-delay: 0.5s;
}
.js-ttl > span span._delay._show:nth-of-type(8),
.js-ttl-io > span span._delay._show:nth-of-type(8) {
  transition-delay: 0.58s;
}
.js-ttl > span span._delay._show:nth-of-type(9),
.js-ttl-io > span span._delay._show:nth-of-type(9) {
  transition-delay: 0.66s;
}
.js-ttl > span span._delay._show:nth-of-type(10),
.js-ttl-io > span span._delay._show:nth-of-type(10) {
  transition-delay: 0.74s;
}
.js-ttl > span span._delay._show:nth-of-type(11),
.js-ttl-io > span span._delay._show:nth-of-type(11) {
  transition-delay: 0.82s;
}
.js-ttl > span span._delay._show:nth-of-type(12),
.js-ttl-io > span span._delay._show:nth-of-type(12) {
  transition-delay: 0.9s;
}
.js-ttl > span span._delay._show:nth-of-type(13),
.js-ttl-io > span span._delay._show:nth-of-type(13) {
  transition-delay: 0.98s;
}
.js-ttl > span span._delay._show:nth-of-type(14),
.js-ttl-io > span span._delay._show:nth-of-type(14) {
  transition-delay: 1.06s;
}
.js-ttl > span span._delay._show:nth-of-type(15),
.js-ttl-io > span span._delay._show:nth-of-type(15) {
  transition-delay: 1.12s;
}
.js-ttl > span span._delay._show:nth-of-type(16),
.js-ttl-io > span span._delay._show:nth-of-type(16) {
  transition-delay: 1.2s;
}
.js-ttl > span span._delay._show:nth-of-type(17),
.js-ttl-io > span span._delay._show:nth-of-type(17) {
  transition-delay: 1.28s;
}
.js-ttl > span span._delay._show:nth-of-type(18),
.js-ttl-io > span span._delay._show:nth-of-type(18) {
  transition-delay: 1.36s;
}
.js-ttl > span span._delay._show:nth-of-type(19),
.js-ttl-io > span span._delay._show:nth-of-type(19) {
  transition-delay: 1.44s;
}
.js-ttl > span span._delay._show:nth-of-type(20),
.js-ttl-io > span span._delay._show:nth-of-type(20) {
  transition-delay: 1.52s;
}
.js-ttl > span span._delay._show:nth-of-type(21),
.js-ttl-io > span span._delay._show:nth-of-type(21) {
  transition-delay: 1.6s;
}
.js-ttl > span span._delay._show:nth-of-type(22),
.js-ttl-io > span span._delay._show:nth-of-type(22) {
  transition-delay: 1.68s;
}
.js-ttl > span span._delay._show:nth-of-type(23),
.js-ttl-io > span span._delay._show:nth-of-type(23) {
  transition-delay: 1.74s;
}
.js-ttl > span span._delay._show:nth-of-type(24),
.js-ttl-io > span span._delay._show:nth-of-type(24) {
  transition-delay: 1.82s;
}
.js-ttl > span span._delay._show:nth-of-type(25),
.js-ttl-io > span span._delay._show:nth-of-type(25) {
  transition-delay: 1.9s;
}
.js-ttl > span span._delay._show:nth-of-type(26),
.js-ttl-io > span span._delay._show:nth-of-type(26) {
  transition-delay: 1.98s;
}
.js-ttl > span span._delay._show:nth-of-type(27),
.js-ttl-io > span span._delay._show:nth-of-type(27) {
  transition-delay: 2.04s;
}
.js-ttl > span span._delay._show:nth-of-type(28),
.js-ttl-io > span span._delay._show:nth-of-type(28) {
  transition-delay: 2.12s;
}
.js-ttl > span span._delay._show:nth-of-type(29),
.js-ttl-io > span span._delay._show:nth-of-type(29) {
  transition-delay: 2.2s;
}
.js-ttl > span span._delay._show:nth-of-type(30),
.js-ttl-io > span span._delay._show:nth-of-type(30) {
  transition-delay: 2.28s;
}
.js-ttl > span span._show,
.js-ttl-io > span span._show {
  transform: translate(0, 0);
}

.js-io._clip {
  clip-path: polygon(0 0, 0 0, 0 0);
  transition: all 1.5s cubic-bezier(0.32, 0.1, 0, 1);
}
.js-io._fadeup {
  transform: translate(0, 36px);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.32, 0.1, 0, 1), opacity 1.2s cubic-bezier(0.32, 0.1, 0, 1), background 1.2s cubic-bezier(0.32, 0.1, 0, 1);
}
.js-io._fadetoup {
  transform: translate(0, 130%);
  transition: transform 1.2s cubic-bezier(0.32, 0.1, 0, 1), opacity 1.2s cubic-bezier(0.32, 0.1, 0, 1), background 1.2s cubic-bezier(0.32, 0.1, 0, 1);
}
.js-io._fadeleft {
  transform: translateX(100px) scale(1.1);
  transition: all 0.5s ease-in-out;
  visibility: hidden;
  filter: blur(10px);
  opacity: 0;
}
@media screen and (max-width: 1300px) {
  .js-io._fadeleft {
    transform: translateX(100rem) scale(1.1);
  }
}
@media screen and (max-width: 768px) {
  .js-io._fadeleft {
    transform: translateX(50rem) scale(1.1);
  }
}
.js-io._lettering {
  opacity: 0;
}
.js-io._lettering span {
  transition: transform 0.8s cubic-bezier(0.39, 0.575, 0.565, 1), opacity 0.6s ease-in-out, filter 1s ease-in-out;
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.2);
}
.js-io._lettering span:nth-of-type(1) {
  transition-delay: 0s;
}
.js-io._lettering span:nth-of-type(2) {
  transition-delay: 0.18s;
}
.js-io._lettering span:nth-of-type(3) {
  transition-delay: 0.34s;
}
.js-io._lettering span:nth-of-type(4) {
  transition-delay: 0.42s;
}
.js-io._lettering span:nth-of-type(5) {
  transition-delay: 0.5s;
}
.js-io._lettering span:nth-of-type(6) {
  transition-delay: 0.58s;
}
.js-io._lettering span:nth-of-type(7) {
  transition-delay: 0.66s;
}
.js-io._lettering span:nth-of-type(8) {
  transition-delay: 0.74s;
}
.js-io._lettering span:nth-of-type(9) {
  transition-delay: 0.82s;
}
.js-io._lettering span:nth-of-type(10) {
  transition-delay: 0.9s;
}
.js-io._lettering span:nth-of-type(11) {
  transition-delay: 0.98s;
}
.js-io._lettering span:nth-of-type(12) {
  transition-delay: 1.06s;
}
.js-io._lettering span:nth-of-type(13) {
  transition-delay: 1.12s;
}
.js-io._lettering span:nth-of-type(14) {
  transition-delay: 1.2s;
}
.js-io._lettering span:nth-of-type(15) {
  transition-delay: 1.28s;
}
.js-io._lettering span:nth-of-type(16) {
  transition-delay: 1.36s;
}
.js-io._lettering span:nth-of-type(17) {
  transition-delay: 1.44s;
}
.js-io._lettering span:nth-of-type(18) {
  transition-delay: 1.52s;
}
.js-io._lettering span:nth-of-type(19) {
  transition-delay: 1.6s;
}
.js-io._lettering span:nth-of-type(20) {
  transition-delay: 1.68s;
}
.js-io._lettering._show {
  opacity: 1;
}
.js-io._lettering._show span {
  transform: scale(1);
  opacity: 1;
  filter: blur(0);
}
.js-io._faderight {
  transform: translateX(-50px);
  transition: all 0.5s ease-in-out;
  visibility: hidden;
  filter: blur(10px);
  opacity: 0;
}
.js-io._fadexy {
  transform: translate3d(20px, 20px, 0);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.32, 0.1, 0, 1), opacity 1.2s cubic-bezier(0.32, 0.1, 0, 1);
}
.js-io._blur {
  transform: scale(1.1);
  transition: all 1.2s cubic-bezier(0.32, 0.1, 0, 1);
  visibility: hidden;
  filter: blur(10px);
  transition-delay: 0.2s;
  opacity: 0;
}
.js-io._fadein {
  transform: translateY(0);
  transition: all 1s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.js-io._zoomup {
  transform: scale(0.5);
  transition: all 1s ease-in-out;
  visibility: hidden;
  opacity: 0;
  transition-timing-function: cubic-bezier(1, -0.195, 0, 1.33);
}
.js-io._show {
  transform: translate(0) scale(1);
  visibility: visible;
  filter: blur(0);
  opacity: 1;
}
.js-io._delay.--fadein {
  transform: translateY(0);
}
.js-io._delay._show {
  transform: translate(0) scale(1);
  visibility: visible;
  filter: blur(0);
  opacity: 1;
}
.js-io._delay._show:nth-of-type(1) {
  transition-delay: 0s;
}
.js-io._delay._show:nth-of-type(2) {
  transition-delay: 0.05s;
}
.js-io._delay._show:nth-of-type(3) {
  transition-delay: 0.09s;
}
.js-io._delay._show:nth-of-type(4) {
  transition-delay: 0.13s;
}
.js-io._delay._show:nth-of-type(5) {
  transition-delay: 0.17s;
}
.js-io._delay._show:nth-of-type(6) {
  transition-delay: 0.21s;
}
.js-io._delay._show:nth-of-type(7) {
  transition-delay: 0.25s;
}
.js-io._delay._show:nth-of-type(8) {
  transition-delay: 0.29s;
}
.js-io._delay._show:nth-of-type(9) {
  transition-delay: 0.33s;
}
.js-io._delay._show:nth-of-type(10) {
  transition-delay: 0.37s;
}
.js-io._delay._show:nth-of-type(11) {
  transition-delay: 0.41s;
}
.js-io._delay._show:nth-of-type(12) {
  transition-delay: 0.45s;
}
.js-io._delay._show:nth-of-type(13) {
  transition-delay: 0.49s;
}
.js-io._delay._show:nth-of-type(14) {
  transition-delay: 0.53s;
}
.js-io._delay._show:nth-of-type(15) {
  transition-delay: 0.57s;
}
.js-io._delay._show:nth-of-type(16) {
  transition-delay: 0.61s;
}
.js-io._delay._show:nth-of-type(17) {
  transition-delay: 0.65s;
}
.js-io._delay._show:nth-of-type(18) {
  transition-delay: 0.69s;
}
.js-io._delay._show:nth-of-type(19) {
  transition-delay: 0.73s;
}
.js-io._delay._show:nth-of-type(20) {
  transition-delay: 0.77s;
}
.js-io._delay._show:nth-of-type(21) {
  transition-delay: 0.81s;
}
.js-io._delay._show:nth-of-type(22) {
  transition-delay: 0.85s;
}
.js-io._delay._show:nth-of-type(23) {
  transition-delay: 0.89s;
}
.js-io._delay._show:nth-of-type(24) {
  transition-delay: 0.93s;
}
.js-io._delay._show:nth-of-type(25) {
  transition-delay: 0.97s;
}
.js-io._delay._show:nth-of-type(26) {
  transition-delay: 1.01s;
}
.js-io._delay._show:nth-of-type(27) {
  transition-delay: 1.05s;
}
.js-io._delay._show:nth-of-type(28) {
  transition-delay: 1.09s;
}
.js-io._delay._show:nth-of-type(29) {
  transition-delay: 1.13s;
}
.js-io._delay._show:nth-of-type(30) {
  transition-delay: 1.17s;
}

.js-menu .c-menu {
  display: flex;
  align-items: center;
  overflow: hidden;
}
.js-menu .c-menu span {
  position: relative;
  display: inline-block;
  line-height: 1;
  color: inherit;
}
.js-menu .c-menu span::after {
  position: absolute;
  top: 0;
  left: 0;
  color: inherit;
  content: attr(data-text);
  transform: translateY(100%);
}

._cus-blur {
  transform: scale(1.1);
  transition: all 1s ease-in-out;
  filter: blur(10px);
  opacity: 0;
}
._cus-blur._show {
  transform: scale(1);
  filter: blur(0);
  opacity: 1;
}

._cus-fadeup {
  transform: translate(0, 36px);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.32, 0.1, 0, 1), opacity 1.2s cubic-bezier(0.32, 0.1, 0, 1), background 1.2s cubic-bezier(0.32, 0.1, 0, 1);
}
._cus-fadeup._show {
  transform: translate(0);
  opacity: 1;
}
._cus-fadeup._delay._show {
  transform: translate(0) scale(1);
  visibility: visible;
  filter: blur(0);
  opacity: 1;
}
._cus-fadeup._delay._show:nth-of-type(1) {
  transition-delay: 0s;
}
._cus-fadeup._delay._show:nth-of-type(2) {
  transition-delay: 0.05s;
}
._cus-fadeup._delay._show:nth-of-type(3) {
  transition-delay: 0.09s;
}
._cus-fadeup._delay._show:nth-of-type(4) {
  transition-delay: 0.13s;
}
._cus-fadeup._delay._show:nth-of-type(5) {
  transition-delay: 0.17s;
}

.handle-anime-txt {
  animation-name: handle_anime_txt;
  animation-duration: 0.87s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-iteration-count: 1;
  animation-fill-mode: both;
}

@keyframes handle_anime_txt {
  0% {
    clip-path: polygon(0% 100%, 0% 100%, 100% 100%, 100% 100%);
    transform: translate(0, 100%) scale(1, 3.6);
  }
  100% {
    clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%);
    transform: translate(0, 0) scale(1);
  }
}
.js-io-anime {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.653s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.js-io-anime._delay:nth-of-type(1) {
  transition-delay: 0s;
}
.js-io-anime._delay:nth-of-type(2) {
  transition-delay: 0.09s;
}
.js-io-anime._delay:nth-of-type(3) {
  transition-delay: 0.18s;
}
.js-io-anime._delay:nth-of-type(4) {
  transition-delay: 0.27s;
}
.js-io-anime._delay:nth-of-type(5) {
  transition-delay: 0.36s;
}
.js-io-anime._delay:nth-of-type(6) {
  transition-delay: 0.45s;
}
.js-io-anime.handle-anime {
  clip-path: inset(0 0 0 0);
}

.parallax-img__wrap {
  position: relative;
}
.parallax-img__wrap .parallax-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 150px);
}
@media screen and (max-width: 1300px) {
  .parallax-img__wrap .parallax-img {
    height: calc(100% + 150rem);
  }
}
@media screen and (max-width: 768px) {
  .parallax-img__wrap .parallax-img {
    height: 100%;
  }
}

.loading {
  /*fixedで全面に固定*/
  position: fixed;
  z-index: 990;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--g-color-green);
  text-align: center;
  color: #fff;
  clip-path: inset(0);
  transition: clip-path 1.4s cubic-bezier(0.92, 0.46, 0.36, 0.98), opacity 0.9s, visibility 0.4s, transform 0.3s cubic-bezier(0.92, 0.46, 0.36, 0.98);
  overflow: hidden;
}
.loading-content .loading-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease-in-out;
}
.loading-content .loading-txt.loading-animation {
  opacity: 1;
  filter: blur(0);
}
.loading-content .loading-txt > p {
  font-size: 96px;
  color: var(--g-color-black);
  line-height: 1;
}
.loading-content .loading-txt-progress {
  position: relative;
}
.loading-content .loading-txt-progress p {
  text-align: center;
  font-size: 24px;
  line-height: 1;
  color: var(--g-color-black);
  transition: all 1.2s cubic-bezier(0.32, 0.1, 0, 1);
  margin-bottom: 20px;
}
@media screen and (max-width: 1300px) {
  .loading-content .loading-txt-progress p {
    font-size: 24rem;
  }
}
@media screen and (max-width: 768px) {
  .loading-content .loading-txt-progress p {
    font-size: 24rem;
  }
}
.loading-content .loading-txt-progress p.loaded {
  opacity: 0;
}
.loading-content .loading-txt-progress .loading-progress-bar {
  height: 1px;
  width: 200px;
  background-color: rgba(0, 0, 0, 0.3);
  position: relative;
  transition: all 1.2s cubic-bezier(0.32, 0.1, 0, 1);
}
@media screen and (max-width: 768px) {
  .loading-content .loading-txt-progress .loading-progress-bar {
    width: 200rem;
  }
}
.loading-content .loading-txt-progress .loading-progress-bar span {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--g-color-black);
}
.loading-content .loading-txt-progress .loading-progress-bar.loaded {
  opacity: 0;
}
.loading-content .loading-end {
  position: absolute;
  bottom: 1px;
  height: 1px;
  width: 0;
  left: 0;
  background: var(--g-color-base);
  transition: width 1.2s cubic-bezier(0.92, 0.46, 0.36, 0.98);
}
.loading-content .loading-end.ended {
  width: 100%;
}
.loading.hidden {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  visibility: hidden;
}

.c-preloader__progress {
  color: var(--g-color-black);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-family: MPLUS1;
}

body.is-loading .js-cursor {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  transition: all 0.4s ease-in-out;
  background: var(--g-color-base);
}
.header-container {
  padding: 35px 0;
}
@media screen and (max-width: 1300px) {
  .header-container {
    padding: 35rem 0;
  }
}
@media screen and (max-width: 768px) {
  .header-container {
    padding: 18rem 23rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.header-logo {
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (max-width: 1300px) {
  .header-logo {
    margin-bottom: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .header-logo {
    margin-bottom: 0;
  }
}
.header-logo img {
  width: 288px;
  height: auto;
}
@media screen and (max-width: 1300px) {
  .header-logo img {
    width: 288rem;
  }
}
@media screen and (max-width: 768px) {
  .header-logo img {
    width: 130rem;
  }
}
.header-translate {
  margin-bottom: 15px;
}
@media screen and (max-width: 1300px) {
  .header-translate {
    margin-bottom: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .header-translate {
    margin-left: auto;
    margin-right: 20rem;
    margin-bottom: 0;
  }
}
.header-translate .gtranslate_wrapper {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 10px;
  max-width: 950px;
  margin: auto;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1300px) {
  .header-translate .gtranslate_wrapper {
    max-width: 950rem;
  }
}
@media screen and (max-width: 768px) {
  .header-translate .gtranslate_wrapper {
    max-width: 100%;
  }
}
.header-translate .gtranslate_wrapper a,
.header-translate .gtranslate_wrapper p {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  opacity: 0.6;
}
@media screen and (max-width: 1300px) {
  .header-translate .gtranslate_wrapper a,
  .header-translate .gtranslate_wrapper p {
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .header-translate .gtranslate_wrapper a,
  .header-translate .gtranslate_wrapper p {
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .header-translate .gtranslate_wrapper a span,
  .header-translate .gtranslate_wrapper p span {
    display: none;
  }
}
.header-translate .gtranslate_wrapper a.glink.gt-current-lang,
.header-translate .gtranslate_wrapper p.glink.gt-current-lang {
  opacity: 1;
  font-weight: 400;
}
.header-translate ul {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 10px;
  max-width: 950px;
  margin: auto;
}
@media screen and (max-width: 1300px) {
  .header-translate ul {
    max-width: 950rem;
  }
}
@media screen and (max-width: 768px) {
  .header-translate ul {
    max-width: 100%;
  }
}
.header-translate ul li {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: var(--g-color-black);
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1300px) {
  .header-translate ul li {
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .header-translate ul li {
    font-size: 14rem;
  }
}
.header-translate ul li.btn {
  opacity: 0.6;
  cursor: pointer;
}
.header-translate ul li.btn:hover {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .header-translate ul li span {
    display: none;
  }
}
.header-translate ul li.active {
  opacity: 1;
}
.header-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
@media screen and (max-width: 1300px) {
  .header-link {
    gap: 48rem;
  }
}
@media screen and (max-width: 768px) {
  .header-link {
    display: none;
  }
}
.header-link ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
@media screen and (max-width: 1300px) {
  .header-link ul {
    gap: 48rem;
  }
}
.header-link ul:nth-child(1) li {
  position: relative;
}
.header-link ul:nth-child(1) li::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--g-color-black);
  transition: all 0.4s ease-in-out;
}
.header-link ul:nth-child(1) li:hover::after {
  left: 0;
  right: auto;
  width: 100%;
}
.header-link ul:nth-child(1) li a {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: var(--g-color-black);
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 1300px) {
  .header-link ul:nth-child(1) li a {
    font-size: 16rem;
  }
}
.header-link ul:nth-child(2) {
  gap: 25px;
}
@media screen and (max-width: 1300px) {
  .header-link ul:nth-child(2) {
    gap: 25rem;
  }
}
.header-link ul:nth-child(2) li img {
  width: auto;
  height: 25px;
  transition: all 0.4s ease-in-out;
}
.header-link ul:nth-child(2) li a:hover img {
  transform: scale(1.1);
}
.header-btn-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .header-btn-sp {
    visibility: visible;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25rem;
    height: 25rem;
  }
}
.header-btn-sp span {
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 768px) {
  .header-btn-sp span {
    background: var(--g-color-black);
    height: 2px;
    width: 25rem;
  }
}
.header-btn-sp span:nth-child(1), .header-btn-sp span:nth-child(3) {
  position: absolute;
  top: 50%;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .header-btn-sp span:nth-child(1) {
    transform: translate(-50%, calc(-50% - 8rem));
  }
}
@media screen and (max-width: 768px) {
  .header-btn-sp span:nth-child(3) {
    transform: translate(-50%, calc(-50% + 8rem));
  }
}
@media screen and (max-width: 768px) {
  .header-btn-sp.active span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
.header-btn-sp.active span:nth-child(2) {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .header-btn-sp.active span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
.header.down {
  transform: translateY(-101%);
}

.full-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 850;
  background: var(--g-color-white);
  display: none;
}
@media screen and (max-width: 768px) {
  .full-menu {
    display: block;
    transition: clip-path 0.8s cubic-bezier(0.92, 0.46, 0.36, 0.98), opacity 0.9s, visibility 0.4s, transform 0.3s cubic-bezier(0.92, 0.46, 0.36, 0.98);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    visibility: hidden;
  }
}
.full-menu.active {
  clip-path: inset(0);
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .full-menu-container {
    height: 100%;
    padding: 21rem 30rem;
    padding-top: 160rem;
  }
}
.full-menu-container ul li {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .full-menu-container ul li:not(:last-child) {
    margin-bottom: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .full-menu-container ul li a {
    font-size: 18rem;
    letter-spacing: 0.05em;
    line-height: 1;
    font-weight: bold;
    color: var(--g-color-black);
  }
}
@media screen and (max-width: 768px) {
  .full-menu-container ul li img {
    width: 32rem;
  }
}
.full-menu-container ul:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .full-menu-container ul:last-child {
    gap: 24rem;
    margin-top: 40rem;
  }
}
.full-menu-container ul:last-child li {
  margin-bottom: 0;
}

.footer {
  padding: 70px 0;
  text-align: center;
}
@media screen and (max-width: 1300px) {
  .footer {
    padding: 70rem 0;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 50rem 0;
  }
}
.footer-logo {
  margin-bottom: 60px;
}
@media screen and (max-width: 1300px) {
  .footer-logo {
    margin-bottom: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-logo {
    margin-bottom: 30rem;
  }
}
.footer-logo img {
  width: 320px;
}
@media screen and (max-width: 1300px) {
  .footer-logo img {
    width: 320rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-logo img {
    width: 220rem;
  }
}
.footer-share {
  margin-bottom: 40px;
}
@media screen and (max-width: 1300px) {
  .footer-share {
    margin-bottom: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-share {
    margin-bottom: 34rem;
  }
}
.footer-share ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
@media screen and (max-width: 1300px) {
  .footer-share ul {
    gap: 25rem;
  }
}
.footer-share ul li a img {
  transition: all 0.4s ease-in-out;
  width: 40px;
}
@media screen and (max-width: 1300px) {
  .footer-share ul li a img {
    width: 40rem;
  }
}
.footer-share ul li a:hover img {
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  .footer-share ul li a:hover img {
    transform: scale(1);
  }
}
.footer-detail {
  margin-bottom: 30px;
}
@media screen and (max-width: 1300px) {
  .footer-detail {
    margin-bottom: 30rem;
  }
}
.footer-detail p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--g-color-black);
}
@media screen and (max-width: 768px) {
  .footer-detail p {
    font-size: 12rem;
  }
}
.footer-detail p:nth-child(1) {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .footer-detail p:nth-child(1) {
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .footer-detail p span {
    display: none;
  }
}
.footer-copyright p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: var(--g-color-black);
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 768px) {
  .footer-copyright p {
    font-size: 11rem;
  }
}

.single-full-bg img {
  position: absolute;
  z-index: -1;
  width: 1000px;
  height: auto;
  right: 0;
  transform: translateX(50%);
}
@media screen and (max-width: 1300px) {
  .single-full-bg img {
    width: 1000rem;
  }
}
.single-full-bg img:nth-child(even) {
  transform: translateX(-50%);
  right: auto;
  left: 0;
}
.single-full-bg img:nth-child(1) {
  top: 20%;
}
@media screen and (max-width: 768px) {
  .single-full-bg img:nth-child(1) {
    top: 10%;
  }
}
.single-full-bg img:nth-child(2) {
  top: 44%;
}
@media screen and (max-width: 768px) {
  .single-full-bg img:nth-child(2) {
    top: 40%;
  }
}
.single-full-bg img:nth-child(3) {
  top: 70%;
}
@media screen and (max-width: 768px) {
  .single-full-bg img:nth-child(3) {
    top: 65%;
  }
}
.single-full-bg img:nth-child(4) {
  top: 84%;
}
@media screen and (max-width: 768px) {
  .single-full-bg img:nth-child(4) {
    top: 80%;
  }
}

.single-main {
  padding: 100px 0;
}
@media screen and (max-width: 1300px) {
  .single-main {
    padding: 100rem 0;
  }
}
.single-main-container {
  max-width: 650px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .single-main-container {
    max-width: 290rem;
  }
}
.single-main-head {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-bottom: 10px;
}
@media screen and (max-width: 1300px) {
  .single-main-head {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .single-main-head {
    margin-bottom: 5rem;
  }
}
.single-main-head-date p {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--g-color-black);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .single-main-head-date p {
    font-size: 14rem;
  }
}
.single-main-head-ctg {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  background: var(--g-color-black);
  border-radius: 100px;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .single-main-head-ctg {
    margin-left: 5rem;
    padding: 5rem 10rem;
  }
}
.single-main-head-ctg p {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--g-color-white);
}
@media screen and (max-width: 768px) {
  .single-main-head-ctg p {
    font-size: 12rem;
  }
}
.single-main-ttl {
  margin-bottom: 40px;
}
@media screen and (max-width: 1300px) {
  .single-main-ttl {
    margin-bottom: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .single-main-ttl {
    margin-bottom: 20rem;
  }
}
.single-main-ttl p {
  font-size: 22px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--g-color-black);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .single-main-ttl p {
    font-size: 18rem;
  }
}
.single-main-img {
  margin-bottom: 40px;
  width: 100%;
}
@media screen and (max-width: 1300px) {
  .single-main-img {
    margin-bottom: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .single-main-img {
    margin-bottom: 20rem;
  }
}
.single-main-content * {
  font-size: 16px;
  font-weight: 400;
  color: var(--g-color-black);
  line-height: 1.8;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .single-main-content * {
    margin-bottom: 20rem;
    font-size: 14rem;
  }
}
.single-main-content h1,
.single-main-content h2,
.single-main-content h3,
.single-main-content h4,
.single-main-content h5,
.single-main-content h6 {
  padding: 14px 24px;
  position: relative;
  background: #FAF8F7;
  position: relative;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: var(--g-color-black);
}
@media screen and (max-width: 1300px) {
  .single-main-content h1,
  .single-main-content h2,
  .single-main-content h3,
  .single-main-content h4,
  .single-main-content h5,
  .single-main-content h6 {
    font-size: 16rem;
    padding: 14rem 24rem;
  }
}
.single-main-content h1::after,
.single-main-content h2::after,
.single-main-content h3::after,
.single-main-content h4::after,
.single-main-content h5::after,
.single-main-content h6::after {
  content: "";
  width: 8px;
  height: 100%;
  background: #D8C1B2;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .single-main-content h1::after,
  .single-main-content h2::after,
  .single-main-content h3::after,
  .single-main-content h4::after,
  .single-main-content h5::after,
  .single-main-content h6::after {
    width: 8rem;
  }
}
.single-main-btn {
  margin-top: 80px;
}
@media screen and (max-width: 1300px) {
  .single-main-btn {
    margin-top: 80rem;
  }
}
@media screen and (max-width: 768px) {
  .single-main-btn {
    margin-top: 50rem;
  }
}

.sec-fv {
  height: 1000px;
}
@media screen and (max-width: 1300px) {
  .sec-fv {
    height: 1000rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-fv {
    height: 700rem;
  }
}
.sec-fv-deco {
  position: absolute;
  top: 200px;
  left: 0;
  width: 900px;
  z-index: 1;
  transform: translateX(-20%);
}
@media screen and (max-width: 1300px) {
  .sec-fv-deco {
    top: 200rem;
    width: 900rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-fv-deco {
    transform: translateX(-40%);
    top: 70rem;
    width: 443rem;
  }
}
.sec-fv-deco img {
  width: 100%;
}
.sec-fv-container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: left;
  max-width: 1100px;
  margin: auto;
}
@media screen and (max-width: 1300px) {
  .sec-fv-container {
    max-width: 1100rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-fv-container {
    max-width: 290rem;
  }
}
.sec-fv-main > p {
  font-size: 19px;
  line-height: 2;
  color: rgba(0, 0, 0, 0.75);
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1300px) {
  .sec-fv-main > p {
    margin-bottom: 20rem;
    font-size: 19rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-fv-main > p {
    margin-bottom: 12rem;
    font-size: 11rem;
    position: relative;
    z-index: 2;
  }
}
.sec-fv-main > p span {
  transition: transform 1.2s cubic-bezier(0.32, 0.1, 0, 1), opacity 1.2s cubic-bezier(0.32, 0.1, 0, 1);
  transform: translateY(36px);
  opacity: 0;
  display: block;
}
.sec-fv-main > p span:nth-child(1) {
  transition-delay: 0s;
}
.sec-fv-main > p span:nth-child(2) {
  transition-delay: 0.1s;
}
.sec-fv-main > p span:nth-child(3) {
  transition-delay: 0.2s;
}
.sec-fv-main > p span._show {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .sec-fv-main-en {
    position: absolute;
    z-index: 1;
    width: -moz-max-content;
    width: max-content;
    left: 50%;
    top: 25%;
    transform: translateX(-50%);
  }
}
.sec-fv-main-en p {
  font-family: "Times", serif;
  font-size: 60px;
  line-height: 1;
  color: #B0E2DA;
  letter-spacing: 0.08em;
  font-weight: 400;
  text-align: center;
  opacity: 0;
  transform: translateY(36px);
  transition: transform 1.2s cubic-bezier(0.32, 0.1, 0, 1), opacity 1.2s cubic-bezier(0.32, 0.1, 0, 1);
  margin-bottom: 20px;
}
@media screen and (max-width: 1300px) {
  .sec-fv-main-en p {
    margin-bottom: 20rem;
    font-size: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-fv-main-en p {
    margin-bottom: 0;
    text-wrap: nowrap;
    font-size: 39rem;
  }
}
.sec-fv-main-en p._show {
  opacity: 1;
  transform: translateY(0);
}
.sec-fv-ttl {
  text-align: center;
  position: relative;
  z-index: 2;
}
.sec-fv-ttl h2 {
  font-size: 46px;
  letter-spacing: 0.15em;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 1300px) {
  .sec-fv-ttl h2 {
    margin-bottom: 30rem;
    font-size: 46rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-fv-ttl h2 {
    margin-bottom: 372rem;
    font-size: 25rem;
  }
}
.sec-fv-ttl h2 > span {
  display: block;
}
.sec-fv-ttl h2 img {
  width: 350px;
  height: auto;
  opacity: 0;
  transform: translateY(50px);
  transition: transform 1.2s cubic-bezier(0.32, 0.1, 0, 1), opacity 1.2s cubic-bezier(0.32, 0.1, 0, 1);
}
@media screen and (max-width: 1300px) {
  .sec-fv-ttl h2 img {
    width: 350rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-fv-ttl h2 img {
    width: 175rem;
  }
}
.sec-fv-ttl h2 img._show {
  opacity: 1;
  transform: translateY(0);
}
.sec-fv-ttl p {
  color: #898989;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1;
  font-family: "Times", serif;
  opacity: 0;
  transition-delay: 0.2s;
  transform: translateY(50px);
  transition: transform 1.2s cubic-bezier(0.32, 0.1, 0, 1), opacity 1.2s cubic-bezier(0.32, 0.1, 0, 1);
}
@media screen and (max-width: 1300px) {
  .sec-fv-ttl p {
    font-size: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-fv-ttl p {
    font-size: 14rem;
  }
}
.sec-fv-ttl p._show {
  opacity: 1;
  transform: translateY(0);
}
.sec-fv-img {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .sec-fv-img {
    width: 551rem;
    top: 0;
    right: 50%;
    transform: translate(52%, 50%);
  }
}
.sec-fv-img img {
  width: 846px;
  opacity: 0;
  filter: blur(10px);
  transition: all 1.2s cubic-bezier(0.32, 0.1, 0, 1);
}
@media screen and (max-width: 1300px) {
  .sec-fv-img img {
    width: 846rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-fv-img img {
    width: 100%;
  }
}
.sec-fv-img img._show {
  opacity: 1;
  filter: blur(0);
}

.sec-sea {
  overflow: unset;
  overflow-x: clip;
  background: var(--g-color-green);
}
.sec-sea-deco {
  position: absolute;
  top: -160px;
  left: 0;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 1300px) {
  .sec-sea-deco {
    top: -160rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-sea-deco {
    width: 150%;
    left: 50%;
    transform: translateX(-50%);
    top: -60rem;
  }
}
.sec-sea-deco svg {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .sec-sea-deco svg {
    width: 100%;
  }
}
.sec-sea .container {
  position: relative;
  z-index: 2;
}
.sec-sea-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sec-sea-img {
  max-width: 420px;
  width: 100%;
  height: 750px;
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 1300px) {
  .sec-sea-img {
    border-radius: 30rem;
    max-width: 420rem;
    height: 750rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-sea-img {
    max-width: 153rem;
    height: 272rem;
    position: absolute;
    left: -30rem;
    top: 0;
    border-radius: 10rem;
  }
}
.sec-sea-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-sea-content {
  max-width: 654px;
  width: 100%;
}
@media screen and (max-width: 1300px) {
  .sec-sea-content {
    max-width: 654rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-sea-content {
    max-width: 100%;
  }
}
.sec-sea-ttl {
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 1300px) {
  .sec-sea-ttl {
    margin-bottom: 50rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-sea-ttl {
    margin-bottom: 120rem;
  }
}
.sec-sea-ttl h2 {
  position: relative;
  z-index: 2;
}
.sec-sea-ttl h2 svg {
  width: 104px;
  height: auto;
  margin-left: 250px;
}
@media screen and (max-width: 1300px) {
  .sec-sea-ttl h2 svg {
    margin-left: 250rem;
    width: 104rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-sea-ttl h2 svg {
    margin-left: 180rem;
    width: 66rem;
  }
}
.sec-sea-ttl p {
  position: absolute;
  bottom: -30px;
  left: 50%;
  width: -moz-max-content;
  width: max-content;
  transform: translateX(-50%);
  font-size: 88px;
  font-family: "Times", serif;
  line-height: 1;
  color: var(--g-color-white);
}
@media screen and (max-width: 1300px) {
  .sec-sea-ttl p {
    bottom: -30rem;
    font-size: 88rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-sea-ttl p {
    bottom: -30rem;
    left: 72%;
    font-size: 45rem;
  }
}
.sec-sea-txt {
  max-width: 60%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .sec-sea-txt {
    max-width: 100%;
  }
}
.sec-sea-txt p {
  font-size: 17px;
  line-height: 2;
  font-weight: 300;
  color: var(--g-color-black);
}
@media screen and (max-width: 1300px) {
  .sec-sea-txt p {
    font-size: 17rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-sea-txt p {
    font-size: 15rem;
  }
}
.sec-sea-txt p:first-child {
  font-weight: 500;
  text-align: center;
  font-size: 22px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1300px) {
  .sec-sea-txt p:first-child {
    margin-bottom: 30rem;
    font-size: 22rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-sea-txt p:first-child {
    font-size: 16rem;
    margin-bottom: 20rem;
  }
}

.sec-roast {
  background: var(--g-color-green);
  padding: 100px 0 120px;
}
@media screen and (max-width: 1300px) {
  .sec-roast {
    padding: 100rem 0 120rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-roast {
    padding: 30rem 0 50rem;
  }
}
.sec-roast-deco {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(15%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec-roast-deco {
    transform: translateX(55%);
  }
}
.sec-roast-deco img {
  width: 954px;
  height: auto;
}
@media screen and (max-width: 1300px) {
  .sec-roast-deco img {
    width: 954rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-roast-deco img {
    width: 448rem;
  }
}
.sec-roast .container {
  position: relative;
  z-index: 2;
}
.sec-roast__elem {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .sec-roast__elem {
    flex-direction: column;
  }
}
.sec-roast__elem:first-child {
  margin-bottom: 30px;
}
@media screen and (max-width: 1300px) {
  .sec-roast__elem:first-child {
    margin-bottom: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-roast__elem:first-child {
    flex-direction: column-reverse;
  }
}
.sec-roast-img {
  max-width: 500px;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 1300px) {
  .sec-roast-img {
    max-width: 500rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-roast-img {
    max-width: 100%;
    border-radius: 15rem;
    margin-bottom: 30rem;
  }
}
.sec-roast-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-roast-txt {
  max-width: 500px;
  width: 100%;
}
@media screen and (max-width: 1300px) {
  .sec-roast-txt {
    max-width: 500rem;
  }
}
.sec-roast-txt p {
  font-weight: 400;
  color: var(--g-color-black);
  line-height: 2;
  font-size: 17px;
}
@media screen and (max-width: 1300px) {
  .sec-roast-txt p {
    font-size: 17rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-roast-txt p {
    font-size: 15rem;
  }
}
.sec-roast-ttl {
  margin-bottom: 50px;
}
@media screen and (max-width: 1300px) {
  .sec-roast-ttl {
    margin-bottom: 50rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-roast-ttl {
    margin-bottom: 40rem;
  }
}
.sec-roast-ttl p {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec-roast-ttl p svg {
  width: 121px;
  height: auto;
  margin-right: 45px;
}
@media screen and (max-width: 1300px) {
  .sec-roast-ttl p svg {
    width: 121rem;
    margin-right: 45rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-roast-ttl p svg {
    width: 100rem;
    margin-right: 17rem;
  }
}
.sec-roast-ttl p span {
  font-size: 40px;
  line-height: 1;
  color: var(--g-color-black);
  font-weight: bold;
}
@media screen and (max-width: 1300px) {
  .sec-roast-ttl p span {
    font-size: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-roast-ttl p span {
    font-size: 27rem;
  }
}

.sec-mabo {
  padding: 100px 0;
}
@media screen and (max-width: 1300px) {
  .sec-mabo {
    padding: 100rem 0;
  }
}
.sec-mabo-bg {
  position: absolute;
  top: 120px;
  right: 0;
  transform: translateX(50%);
  z-index: 1;
}
@media screen and (max-width: 1300px) {
  .sec-mabo-bg {
    top: 120rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-mabo-bg {
    top: auto;
    bottom: 0;
  }
}
.sec-mabo-bg img {
  width: 954px;
}
@media screen and (max-width: 1300px) {
  .sec-mabo-bg img {
    width: 954rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-mabo-bg img {
    max-width: unset;
    width: 600rem;
  }
}
.sec-mabo .container {
  position: relative;
  z-index: 2;
}
.sec-mabo-ttl {
  margin-bottom: 40px;
}
@media screen and (max-width: 1300px) {
  .sec-mabo-ttl {
    margin-bottom: 40rem;
  }
}
.sec-mabo-ttl h2 {
  text-align: center;
}
.sec-mabo-ttl h2 svg {
  width: 645px;
  height: auto;
}
@media screen and (max-width: 1300px) {
  .sec-mabo-ttl h2 svg {
    width: 645rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-mabo-ttl h2 svg {
    width: 100%;
  }
}
.sec-mabo-main {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 60px;
}
@media screen and (max-width: 1300px) {
  .sec-mabo-main {
    gap: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-mabo-main {
    flex-direction: column;
    gap: 40rem;
  }
}
.sec-mabo__elem {
  position: relative;
  padding-bottom: 50px;
}
@media screen and (max-width: 1300px) {
  .sec-mabo__elem {
    padding-bottom: 50rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-mabo__elem {
    padding-bottom: 30rem;
  }
}
.sec-mabo__elem > img {
  width: 100%;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.sec-mabo__elem-img {
  width: 300px;
  height: 300px;
  margin-bottom: 15px;
  overflow: hidden;
}
@media screen and (max-width: 1300px) {
  .sec-mabo__elem-img {
    width: 300rem;
    height: 300rem;
    margin-bottom: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-mabo__elem-img {
    width: 276rem;
    height: 276rem;
    margin-bottom: 10rem;
  }
}
.sec-mabo__elem-img img {
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-mabo__elem-content {
  text-align: center;
}
.sec-mabo__elem-ttl p {
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--g-color-black);
  margin-bottom: 15px;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 1300px) {
  .sec-mabo__elem-ttl p {
    font-size: 18rem;
    margin-bottom: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-mabo__elem-ttl p {
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-mabo__elem-txt {
    margin-bottom: 30rem;
  }
}
.sec-mabo__elem-txt p {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: var(--g-color-black);
  font-weight: 400;
}
@media screen and (max-width: 1300px) {
  .sec-mabo__elem-txt p {
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-mabo__elem-txt p {
    font-size: 12rem;
  }
}
.sec-mabo__elem-btn {
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .sec-mabo__elem-btn {
    position: unset;
    transform: translateX(0);
  }
}
.sec-mabo__elem-btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--g-color-black);
  color: var(--g-color-white);
  font-size: 14px;
  line-height: 1;
  border-radius: 100px;
  padding: 5px 20px;
}
@media screen and (max-width: 768px) {
  .sec-mabo__elem-btn span {
    font-size: 15rem;
    padding: 5rem 20rem;
  }
}
.sec-mabo__elem a:hover .sec-mabo__elem-img img {
  transform: scale(1.1);
}

.sec-video {
  position: relative;
  overflow: hidden;
  padding-bottom: 98px;
}
@media screen and (max-width: 1300px) {
  .sec-video {
    padding-bottom: 98rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-video {
    padding-bottom: 0;
  }
}
.sec-video-main {
  position: relative;
  z-index: 2;
  width: 70%;
  height: 550px;
  border-radius: 0 30px 30px 0;
  overflow: hidden;
}
@media screen and (max-width: 1300px) {
  .sec-video-main {
    height: 550rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-video-main {
    border-radius: 0;
    width: 100%;
    height: 215rem;
  }
}
.sec-video-main img,
.sec-video-main iframe,
.sec-video-main video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-video-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 510px;
  z-index: 1;
  background: var(--g-color-green);
}
@media screen and (max-width: 1300px) {
  .sec-video-bg {
    height: 510rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-video-bg {
    display: none;
  }
}

.sec-news {
  padding: 60px 0 100px;
}
@media screen and (max-width: 1300px) {
  .sec-news {
    padding: 60rem 0 100rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-news {
    padding: 70rem 0;
  }
}
.sec-news-deco {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  transform: translate(-40%, -50%);
}
@media screen and (max-width: 768px) {
  .sec-news-deco {
    top: 70%;
    left: auto;
    right: 0;
    transform: translate(30%, 50%);
  }
}
.sec-news-deco img {
  width: 954px;
}
@media screen and (max-width: 1300px) {
  .sec-news-deco img {
    width: 954rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-news-deco img {
    width: 348rem;
  }
}
.sec-news .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: start;
  justify-content: left;
}
@media screen and (max-width: 768px) {
  .sec-news .container {
    display: block;
  }
}
.sec-news-ttl {
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sec-news-ttl {
    max-width: 100%;
    text-align: center;
  }
}
.sec-news-ttl h2 {
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: var(--g-color-black);
  font-size: 45px;
  border-bottom: 1px solid var(--g-color-black);
  margin-bottom: 40px;
  display: inline-block;
}
@media screen and (max-width: 1300px) {
  .sec-news-ttl h2 {
    font-size: 45rem;
    margin-bottom: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-news-ttl h2 {
    display: block;
    font-size: 30rem;
    margin-bottom: 30rem;
  }
}
.sec-news-ttl p {
  text-align: center;
  color: var(--g-color-black);
  font-size: 24px;
  font-family: "Noto serif", serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
}
@media screen and (max-width: 1300px) {
  .sec-news-ttl p {
    font-size: 24rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-news-ttl p {
    font-size: 20rem;
  }
}
.sec-news-content {
  padding-left: 65px;
  padding-top: 160px;
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 1300px) {
  .sec-news-content {
    padding-left: 65rem;
    padding-top: 160rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-news-content {
    padding-left: 0;
    padding-top: 70rem;
  }
}
.sec-news-list {
  margin-bottom: 40px;
}
@media screen and (max-width: 1300px) {
  .sec-news-list {
    margin-bottom: 40rem;
  }
}
.sec-news__elem a {
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 15px 0;
}
@media screen and (max-width: 1300px) {
  .sec-news__elem a {
    padding: 15rem 0;
  }
}
@media screen and (max-width: 768px) {
  .sec-news__elem a {
    display: block;
  }
}
.sec-news__elem-head {
  display: flex;
  align-items: center;
  justify-content: left;
}
@media screen and (max-width: 768px) {
  .sec-news__elem-head {
    margin-bottom: 10rem;
  }
}
.sec-news__elem-date {
  margin-right: 30px;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
}
@media screen and (max-width: 1300px) {
  .sec-news__elem-date {
    margin-right: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-news__elem-date {
    margin-right: 16rem;
  }
}
.sec-news__elem-date p {
  font-size: 19px;
  line-height: 1;
  color: var(--g-color-black);
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1300px) {
  .sec-news__elem-date p {
    font-size: 19rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-news__elem-date p {
    font-size: 15rem;
  }
}
.sec-news__elem-ctg {
  margin-right: 30px;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
}
@media screen and (max-width: 1300px) {
  .sec-news__elem-ctg {
    margin-right: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-news__elem-ctg {
    margin-right: 0;
  }
}
.sec-news__elem-ctg p {
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--g-color-white);
  line-height: 1;
  background: var(--g-color-black);
  padding: 5px 10px;
  border-radius: 100px;
  font-weight: 500;
  font-family: "SourceHanSerifHK", serif;
}
@media screen and (max-width: 1300px) {
  .sec-news__elem-ctg p {
    font-size: 16rem;
    padding: 5rem 10rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-news__elem-ctg p {
    font-size: 12rem;
  }
}
.sec-news__elem-ttl p {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--g-color-black);
  position: relative;
}
@media screen and (max-width: 1300px) {
  .sec-news__elem-ttl p {
    font-size: 19rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-news__elem-ttl p {
    -webkit-line-clamp: 2;
    font-size: 15rem;
  }
}
.sec-news__elem-ttl p::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--g-color-black);
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all 0.4s ease-in-out;
}
.sec-news__elem-ttl p:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.sec-shop {
  background: url(../img/shop-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 150px 0;
  overflow: hidden;
}
@media screen and (max-width: 1300px) {
  .sec-shop {
    padding: 150rem 0;
  }
}
@media screen and (max-width: 768px) {
  .sec-shop {
    padding: 50rem 0;
  }
}
.sec-shop-main {
  text-align: center;
}
.sec-shop-main a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: auto;
  border: 2px solid var(--g-color-white);
  width: 436px;
  height: 142px;
}
@media screen and (max-width: 1300px) {
  .sec-shop-main a {
    width: 436rem;
    height: 142rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-shop-main a {
    width: 216rem;
    height: 70rem;
  }
}
.sec-shop-main a > svg {
  width: 155px;
  height: auto;
  margin-bottom: 22px;
}
@media screen and (max-width: 1300px) {
  .sec-shop-main a > svg {
    width: 155rem;
    margin-bottom: 22rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-shop-main a > svg {
    width: 104rem;
    margin-bottom: 12rem;
  }
}
.sec-shop-main a span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
  padding-left: 20px;
}
@media screen and (max-width: 1300px) {
  .sec-shop-main a span {
    gap: 21rem;
    padding-left: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-shop-main a span {
    gap: 10rem;
    padding-left: 10rem;
  }
}
.sec-shop-main a span svg {
  height: auto;
}
.sec-shop-main a span svg:nth-child(1) {
  width: 235px;
}
@media screen and (max-width: 1300px) {
  .sec-shop-main a span svg:nth-child(1) {
    width: 235rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-shop-main a span svg:nth-child(1) {
    width: 116rem;
  }
}
.sec-shop-main a span svg:nth-child(2) {
  width: 33px;
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 1300px) {
  .sec-shop-main a span svg:nth-child(2) {
    width: 33rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-shop-main a span svg:nth-child(2) {
    width: 17rem;
  }
}
.sec-shop-main a:hover span svg:nth-child(2) {
  transform: translateX(20px);
}
@media screen and (max-width: 1300px) {
  .sec-shop-main a:hover span svg:nth-child(2) {
    transform: translateX(20rem);
  }
}
@media screen and (max-width: 768px) {
  .sec-shop-main a:hover span svg:nth-child(2) {
    transform: translateX(0);
  }
}

.sec-products {
  padding: 100px 0;
}
@media screen and (max-width: 1300px) {
  .sec-products {
    padding: 100rem 0;
  }
}
@media screen and (max-width: 768px) {
  .sec-products {
    padding: 60rem 0;
  }
}
.sec-products-ttl {
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 1300px) {
  .sec-products-ttl {
    margin-bottom: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-products-ttl {
    margin-bottom: 40rem;
  }
}
.sec-products-ttl h2 {
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: var(--g-color-black);
  font-size: 45px;
  border-bottom: 1px solid var(--g-color-black);
  margin-bottom: 40px;
  display: inline-block;
}
@media screen and (max-width: 1300px) {
  .sec-products-ttl h2 {
    font-size: 45rem;
    margin-bottom: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-products-ttl h2 {
    display: block;
    font-size: 30rem;
    margin-bottom: 30rem;
  }
}
.sec-products-ttl p {
  text-align: center;
  color: var(--g-color-black);
  font-size: 24px;
  font-family: "Noto serif", serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
}
@media screen and (max-width: 1300px) {
  .sec-products-ttl p {
    font-size: 24rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-products-ttl p {
    font-size: 20rem;
  }
}
.sec-products-slide {
  margin-bottom: 60px;
}
@media screen and (max-width: 1300px) {
  .sec-products-slide {
    margin-bottom: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-products-slide {
    display: none;
  }
}
.sec-products-main-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sec-products-main-sp {
    display: block;
    text-align: center;
    margin-bottom: 40rem;
  }
}
.sec-products__elem {
  width: 320px;
  position: relative;
}
@media screen and (max-width: 1300px) {
  .sec-products__elem {
    width: 320rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-products__elem {
    width: 240rem;
  }
}
.sec-products__elem > img {
  width: 100%;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.sec-products__elem:not(:last-child) {
  margin-right: 64px;
}
@media screen and (max-width: 1300px) {
  .sec-products__elem:not(:last-child) {
    margin-right: 64rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-products__elem:not(:last-child) {
    margin-right: 0;
    margin: auto;
    margin-bottom: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-products__elem:last-child {
    margin: auto;
  }
}
.sec-products__elem-img {
  width: 320px;
  height: 320px;
  overflow: hidden;
  border-radius: 30px;
  margin-bottom: 25px;
}
@media screen and (max-width: 1300px) {
  .sec-products__elem-img {
    margin-bottom: 25rem;
    width: 320rem;
    height: 320rem;
    border-radius: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-products__elem-img {
    margin-bottom: 16rem;
    width: 240rem;
    height: 240rem;
  }
}
.sec-products__elem-img img {
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .sec-products__elem-content {
    text-align: center;
  }
}
.sec-products__elem-ttl {
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--g-color-black);
}
@media screen and (max-width: 768px) {
  .sec-products__elem-ttl {
    padding-bottom: 5rem;
    margin-bottom: 10rem;
  }
}
.sec-products__elem-ttl p {
  font-size: 24px;
  line-height: 1;
  font-weight: bold;
  color: var(--g-color-black);
}
@media screen and (max-width: 1300px) {
  .sec-products__elem-ttl p {
    font-size: 24rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-products__elem-ttl p {
    font-size: 16rem;
  }
}
.sec-products__elem-txt p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--g-color-black);
}
@media screen and (max-width: 1300px) {
  .sec-products__elem-txt p {
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-products__elem-txt p {
    font-size: 15rem;
  }
}
.sec-products__elem a:hover .sec-products__elem-img img {
  transform: scale(1.1);
}

.product-full-bg img {
  position: absolute;
  z-index: -1;
  width: 1000px;
  height: auto;
  right: 0;
  transform: translateX(50%);
}
@media screen and (max-width: 1300px) {
  .product-full-bg img {
    width: 1000rem;
  }
}
.product-full-bg img:nth-child(even) {
  transform: translateX(-50%);
  right: auto;
  left: 0;
}
.product-full-bg img:nth-child(1) {
  top: 20%;
}
@media screen and (max-width: 768px) {
  .product-full-bg img:nth-child(1) {
    top: 10%;
  }
}
.product-full-bg img:nth-child(2) {
  top: 32%;
}
@media screen and (max-width: 768px) {
  .product-full-bg img:nth-child(2) {
    top: 25%;
  }
}
.product-full-bg img:nth-child(3) {
  top: 44%;
}
@media screen and (max-width: 768px) {
  .product-full-bg img:nth-child(3) {
    top: 40%;
  }
}
.product-full-bg img:nth-child(4) {
  top: 56%;
}
@media screen and (max-width: 768px) {
  .product-full-bg img:nth-child(4) {
    top: 50%;
  }
}
.product-full-bg img:nth-child(5) {
  top: 70%;
}
@media screen and (max-width: 768px) {
  .product-full-bg img:nth-child(5) {
    top: 65%;
  }
}
.product-full-bg img:nth-child(6) {
  top: 84%;
}
@media screen and (max-width: 768px) {
  .product-full-bg img:nth-child(6) {
    top: 80%;
  }
}

.product-list {
  padding: 100px 0;
}
@media screen and (max-width: 1300px) {
  .product-list {
    padding: 100rem 0;
  }
}
@media screen and (max-width: 768px) {
  .product-list {
    padding: 60rem 0;
  }
}
.product-list-ttl {
  margin-bottom: 80px;
  text-align: center;
}
@media screen and (max-width: 1300px) {
  .product-list-ttl {
    margin-bottom: 80rem;
  }
}
@media screen and (max-width: 768px) {
  .product-list-ttl {
    margin-bottom: 40rem;
  }
}
.product-list-ttl h2 {
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--g-color-black);
  font-size: 53px;
  margin-bottom: 26px;
  font-family: "Times", serif;
}
@media screen and (max-width: 1300px) {
  .product-list-ttl h2 {
    font-size: 53rem;
    margin-bottom: 26rem;
  }
}
@media screen and (max-width: 768px) {
  .product-list-ttl h2 {
    font-size: 28rem;
    margin-bottom: 10rem;
  }
}
.product-list-ttl p {
  color: var(--g-color-black);
  font-size: 21px;
  font-family: "Noto serif", serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
}
@media screen and (max-width: 1300px) {
  .product-list-ttl p {
    font-size: 21rem;
  }
}
@media screen and (max-width: 768px) {
  .product-list-ttl p {
    font-size: 19rem;
  }
}
.product-list__elem:not(:last-child) {
  margin-bottom: 30px;
}
@media screen and (max-width: 1300px) {
  .product-list__elem:not(:last-child) {
    margin-bottom: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .product-list__elem:not(:last-child) {
    margin-bottom: 60rem;
  }
}
.product-list__elem:nth-child(even) a {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .product-list__elem:nth-child(even) a {
    flex-direction: column;
  }
}
.product-list__elem a {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 1300px) {
  .product-list__elem a {
    gap: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .product-list__elem a {
    gap: 10rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
.product-list__elem-content {
  max-width: 100%;
  width: 100%;
  padding-top: 20px;
}
@media screen and (max-width: 1300px) {
  .product-list__elem-content {
    padding-top: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .product-list__elem-content {
    text-align: center;
    padding-top: 0;
  }
}
.product-list__elem-ttl {
  border-bottom: 1px solid #9D9D9E;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.product-list__elem-ttl p {
  font-size: 28px;
  letter-spacing: 0.03em;
  line-height: 1.2;
  color: var(--g-color-black);
}
@media screen and (max-width: 1300px) {
  .product-list__elem-ttl p {
    font-size: 28rem;
  }
}
@media screen and (max-width: 768px) {
  .product-list__elem-ttl p {
    font-size: 22rem;
  }
}
.product-list__elem-detail p {
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 2;
  color: var(--g-color-black);
}
@media screen and (max-width: 1300px) {
  .product-list__elem-detail p {
    font-size: 16rem;
  }
}
.product-list__elem-img {
  max-width: 350px;
  width: 100%;
  height: 245px;
  position: relative;
}
@media screen and (max-width: 1300px) {
  .product-list__elem-img {
    max-width: 350rem;
    height: 245rem;
  }
}
@media screen and (max-width: 768px) {
  .product-list__elem-img {
    max-width: 255rem;
    height: 178rem;
  }
}
.product-list__elem-img:hover img:nth-child(2) {
  opacity: 1;
}
.product-list__elem-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-list__elem-img img:nth-child(2) {
  opacity: 0;
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.sec-about {
  overflow: unset;
  overflow-x: clip;
  padding-bottom: 100px;
}
@media screen and (max-width: 1300px) {
  .sec-about {
    padding-bottom: 100rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-about {
    padding-bottom: 60rem;
  }
}
.sec-about-deco img {
  position: absolute;
  z-index: 2;
  width: 1000px;
  height: auto;
  right: 0;
  transform: translateX(50%);
}
@media screen and (max-width: 1300px) {
  .sec-about-deco img {
    width: 1000rem;
  }
}
.sec-about-deco img:nth-child(2) {
  transform: translateX(-50%);
  right: auto;
  left: 0;
}
.sec-about-deco img:nth-child(1) {
  top: 0;
}
.sec-about-deco img:nth-child(2) {
  bottom: -20%;
}
.sec-about-bg {
  position: absolute;
  top: -147px;
  left: 60%;
  transform: translateX(-50%);
  width: 2100px;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 1300px) {
  .sec-about-bg {
    top: -147rem;
    width: 2100rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-about-bg {
    left: 50%;
    top: -50rem;
    width: 650rem;
  }
}
.sec-about-bg svg {
  width: 100%;
  height: auto;
}
.sec-about .s-container {
  position: relative;
  z-index: 3;
}
.sec-about-ttl {
  margin-bottom: 30px;
  transform: translateY(-20px);
}
@media screen and (max-width: 1300px) {
  .sec-about-ttl {
    margin-bottom: 30rem;
    transform: translateY(-20rem);
  }
}
@media screen and (max-width: 768px) {
  .sec-about-ttl {
    margin-bottom: 30rem;
    transform: translateY(-10rem);
  }
}
.sec-about-ttl h2 {
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--g-color-black);
  font-weight: 500;
}
@media screen and (max-width: 1300px) {
  .sec-about-ttl h2 {
    font-size: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-about-ttl h2 {
    font-size: 17rem;
  }
}
.sec-about-main {
  display: flex;
  align-items: start;
  justify-content: center;
  margin-bottom: 60px;
  gap: 60px;
}
@media screen and (max-width: 1300px) {
  .sec-about-main {
    gap: 60rem;
    margin-bottom: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-about-main {
    align-items: center;
    flex-direction: column-reverse;
    gap: 30rem;
    margin-bottom: 40rem;
  }
}
.sec-about-main-txt {
  max-width: 100%;
  width: 100%;
}
.sec-about-main-txt p {
  font-size: 16px;
  line-height: 2;
  color: var(--g-color-black);
  font-weight: 400;
}
@media screen and (max-width: 1300px) {
  .sec-about-main-txt p {
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-about-main-txt p {
    font-size: 14rem;
  }
}
.sec-about-main-img {
  max-width: 190px;
  width: 100%;
  height: 264px;
}
@media screen and (max-width: 1300px) {
  .sec-about-main-img {
    max-width: 190rem;
    height: 264rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-about-main-img {
    max-width: 150rem;
    height: 210rem;
  }
}
.sec-about-main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-about-detail-ttl {
  margin-bottom: 30px;
}
@media screen and (max-width: 1300px) {
  .sec-about-detail-ttl {
    margin-bottom: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-about-detail-ttl {
    margin-bottom: 20rem;
  }
}
.sec-about-detail-ttl p {
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: var(--g-color-black);
  font-weight: 500;
}
@media screen and (max-width: 1300px) {
  .sec-about-detail-ttl p {
    font-size: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-about-detail-ttl p {
    font-size: 17rem;
  }
}
.sec-about-detail-main {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1300px) {
  .sec-about-detail-main {
    gap: 60rem;
    margin-bottom: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-about-detail-main {
    gap: 30rem;
    flex-direction: column;
    margin-bottom: 40rem;
  }
}
.sec-about-detail-main-img {
  max-width: 409px;
  height: 273px;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1300px) {
  .sec-about-detail-main-img {
    max-width: 409rem;
    height: 273rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-about-detail-main-img {
    max-width: 100%;
    height: 190rem;
  }
}
.sec-about-detail-main-img img {
  width: 105%;
  height: 105%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-about-detail-main-txt {
  max-width: 100%;
  width: 100%;
}
.sec-about-detail-main-txt p {
  font-size: 16px;
  line-height: 2;
  color: var(--g-color-black);
  font-weight: 400;
}
@media screen and (max-width: 1300px) {
  .sec-about-detail-main-txt p {
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-about-detail-main-txt p {
    font-size: 14rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-about-detail-gallery__wrap {
    width: 350rem;
    transform: translateX(-30rem);
    overflow-x: auto;
  }
}
.sec-about-detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .sec-about-detail-gallery {
    width: -moz-max-content;
    width: max-content;
  }
}
.sec-about-detail-gallery__elem {
  width: 100%;
  height: 182px;
}
@media screen and (max-width: 1300px) {
  .sec-about-detail-gallery__elem {
    height: 182rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-about-detail-gallery__elem {
    height: 105rem;
    width: 175rem;
  }
}
.sec-about-detail-gallery__elem img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-company {
  background: var(--g-color-green);
  padding: 100px 0;
}
@media screen and (max-width: 1300px) {
  .about-company {
    padding: 100rem 0;
  }
}
@media screen and (max-width: 768px) {
  .about-company {
    background: var(--g-color-white);
    padding: 0;
    padding-top: 20rem;
  }
}
.about-company-deco img {
  position: absolute;
  z-index: 2;
  width: 1000px;
  height: auto;
  right: 0;
  transform: translateX(50%);
}
@media screen and (max-width: 1300px) {
  .about-company-deco img {
    width: 1000rem;
  }
}
.about-company-deco img:nth-child(2) {
  transform: translateX(-50%);
  right: auto;
  left: 0;
}
.about-company-deco img:nth-child(1) {
  top: 10%;
}
.about-company-deco img:nth-child(2) {
  top: 50%;
}
.about-company .s-container {
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .about-company .s-container {
    max-width: 100%;
  }
}
.about-company-ttl {
  margin-bottom: 80px;
  text-align: center;
}
@media screen and (max-width: 1300px) {
  .about-company-ttl {
    margin-bottom: 80rem;
  }
}
@media screen and (max-width: 768px) {
  .about-company-ttl {
    margin-bottom: 10rem;
  }
}
.about-company-ttl h2 {
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--g-color-black);
  font-size: 53px;
  margin-bottom: 26px;
  font-family: "Times", serif;
}
@media screen and (max-width: 1300px) {
  .about-company-ttl h2 {
    font-size: 53rem;
    margin-bottom: 26rem;
  }
}
@media screen and (max-width: 768px) {
  .about-company-ttl h2 {
    font-size: 28rem;
    margin-bottom: 10rem;
  }
}
.about-company-ttl p {
  color: var(--g-color-black);
  font-size: 21px;
  font-family: "Noto serif", serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
}
@media screen and (max-width: 1300px) {
  .about-company-ttl p {
    font-size: 21rem;
  }
}
@media screen and (max-width: 768px) {
  .about-company-ttl p {
    font-size: 19rem;
  }
}
.about-company__elem {
  background: var(--g-color-white);
  border-radius: 25px;
  padding: 60px 100px;
}
@media screen and (max-width: 1300px) {
  .about-company__elem {
    padding: 60rem 100rem;
  }
}
@media screen and (max-width: 768px) {
  .about-company__elem {
    border-radius: 0;
    padding: 20rem 30rem;
  }
}
.about-company__elem:not(:last-child) {
  margin-bottom: 120px;
}
@media screen and (max-width: 1300px) {
  .about-company__elem:not(:last-child) {
    margin-bottom: 120rem;
  }
}
@media screen and (max-width: 768px) {
  .about-company__elem:not(:last-child) {
    margin-bottom: 0;
  }
}
.about-company__elem ul {
  margin-bottom: 60px;
}
@media screen and (max-width: 1300px) {
  .about-company__elem ul {
    margin-bottom: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .about-company__elem ul {
    margin-bottom: 40rem;
  }
}
.about-company__elem ul li {
  display: flex;
  align-items: start;
  justify-content: left;
  border-bottom: 1px solid #9FA0A0;
  padding: 18px 0;
}
@media screen and (max-width: 1300px) {
  .about-company__elem ul li {
    padding: 18rem 0;
  }
}
@media screen and (max-width: 768px) {
  .about-company__elem ul li {
    flex-direction: column;
    padding: 22rem 0;
  }
}
.about-company__elem ul li:last-child {
  border-bottom: unset;
}
.about-company__elem ul li._forpc {
  display: flex;
}
@media screen and (max-width: 768px) {
  .about-company__elem ul li._forpc {
    display: none;
  }
}
.about-company__elem ul li._forsp {
  display: none;
}
@media screen and (max-width: 768px) {
  .about-company__elem ul li._forsp {
    display: flex;
  }
}
.about-company__elem ul li p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--g-color-black);
  font-weight: 400;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1300px) {
  .about-company__elem ul li p {
    font-size: 18rem;
  }
}
@media screen and (max-width: 768px) {
  .about-company__elem ul li p {
    font-size: 17rem;
  }
}
.about-company__elem ul li p:first-child {
  width: 22%;
}
@media screen and (max-width: 768px) {
  .about-company__elem ul li p:first-child {
    margin-bottom: 10rem;
    text-align: center;
    width: 100%;
  }
}
.about-company__elem-map:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 1300px) {
  .about-company__elem-map:not(:last-child) {
    margin-bottom: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .about-company__elem-map:not(:last-child) {
    margin-bottom: 40rem;
  }
}
.about-company__elem-map-ttl {
  margin-bottom: 20px;
}
@media screen and (max-width: 1300px) {
  .about-company__elem-map-ttl {
    margin-bottom: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .about-company__elem-map-ttl {
    margin-bottom: 10rem;
  }
}
.about-company__elem-map-ttl p {
  text-align: center;
  font-size: 23px;
  line-height: 1.5;
  letter-spacing: 0.23em;
  color: var(--g-color-black);
  font-weight: 500;
}
@media screen and (max-width: 1300px) {
  .about-company__elem-map-ttl p {
    font-size: 23rem;
  }
}
@media screen and (max-width: 768px) {
  .about-company__elem-map-ttl p {
    font-size: 18rem;
  }
}
.about-company__elem-map-main {
  margin: auto;
  width: 606px;
  height: 245px;
  overflow: hidden;
}
@media screen and (max-width: 1300px) {
  .about-company__elem-map-main {
    width: 606rem;
    height: 245rem;
  }
}
@media screen and (max-width: 768px) {
  .about-company__elem-map-main {
    width: 100%;
    height: 165rem;
  }
}
.about-company__elem-map-main iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-blur {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(218, 218, 218, 0.1);
  z-index: 899;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.page-blur p {
  font-size: 60px;
  color: var(--g-color-white);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 1300px) {
  .page-blur p {
    font-size: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .page-blur p {
    font-size: 36rem;
  }
}

.page-company__elem {
  position: relative;
  background: var(--g-color-white);
  border-radius: 18px;
  padding: 100px 120px 80px 120px;
}
@media screen and (max-width: 1300px) {
  .page-company__elem {
    padding: 100rem 120rem 80rem 120rem;
  }
}
@media screen and (max-width: 768px) {
  .page-company__elem {
    border-radius: 15rem;
    padding: 60rem 20rem 40rem 20rem;
  }
}
.page-company__elem-ttl {
  margin-bottom: 100px;
  padding-left: 350px;
}
@media screen and (max-width: 1300px) {
  .page-company__elem-ttl {
    margin-bottom: 100rem;
    padding-left: 350rem;
  }
}
@media screen and (max-width: 768px) {
  .page-company__elem-ttl {
    margin-bottom: 20rem;
    padding-left: 0;
    padding-top: 30rem;
  }
}
.page-company__elem-ttl h2 {
  position: absolute;
  left: 0;
  top: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--g-color-black);
  color: var(--g-color-white);
  font-size: 53px;
  line-height: 1;
  letter-spacing: 0.03em;
  font-family: "Times", serif;
  padding: 40px 35px;
  font-weight: 500;
}
@media screen and (max-width: 1300px) {
  .page-company__elem-ttl h2 {
    font-size: 53rem;
    top: 60rem;
    padding: 40rem 35rem;
  }
}
@media screen and (max-width: 768px) {
  .page-company__elem-ttl h2 {
    padding: 12rem 21rem;
    font-size: 25rem;
    top: 18rem;
  }
}
.page-company__elem-ttl h2 span {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-size: 13px;
  letter-spacing: 0.2em;
  font-weight: 400;
  margin-left: 38px;
}
@media screen and (max-width: 1300px) {
  .page-company__elem-ttl h2 span {
    margin-left: 38rem;
  }
}
@media screen and (max-width: 768px) {
  .page-company__elem-ttl h2 span {
    margin-left: 22rem;
    font-size: 12rem;
  }
}
.page-company__elem-ttl p {
  font-size: 28px;
  line-height: 2;
  letter-spacing: 0.03em;
  color: var(--g-color-black);
  font-weight: 400;
}
@media screen and (max-width: 1300px) {
  .page-company__elem-ttl p {
    font-size: 28rem;
  }
}
@media screen and (max-width: 768px) {
  .page-company__elem-ttl p {
    text-align: center;
    font-size: 17rem;
  }
}
.page-company__elem-ttl._right {
  padding-left: 0;
}
.page-company__elem-ttl._right h2 {
  left: auto;
  right: 0;
}
@media screen and (max-width: 768px) {
  .page-company__elem-ttl._right h2 {
    right: auto;
    left: 0;
  }
}
.page-company__elem-content > p {
  font-size: 16px;
  line-height: 2;
  color: var(--g-color-black);
  letter-spacing: 0.03em;
  font-weight: 400;
}
@media screen and (max-width: 1300px) {
  .page-company__elem-content > p {
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .page-company__elem-content > p {
    font-size: 14rem;
  }
}
.page-company__elem-content__elem {
  padding-top: 60px;
}
@media screen and (max-width: 1300px) {
  .page-company__elem-content__elem {
    padding-top: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .page-company__elem-content__elem {
    padding-top: 40rem;
  }
}
.page-company__elem-content__elem-ttl {
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 1300px) {
  .page-company__elem-content__elem-ttl {
    margin-bottom: 30rem;
  }
}
.page-company__elem-content__elem-ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 1px;
  background: #595757;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .page-company__elem-content__elem-ttl::after {
    display: none;
  }
}
.page-company__elem-content__elem-ttl p {
  display: inline-block;
  padding-right: 20px;
  position: relative;
  z-index: 2;
  background: var(--g-color-white);
  font-size: 21px;
  line-height: 1;
  color: #595757;
  letter-spacing: 0.03em;
  font-weight: 500;
}
@media screen and (max-width: 1300px) {
  .page-company__elem-content__elem-ttl p {
    font-size: 21rem;
    padding-right: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .page-company__elem-content__elem-ttl p {
    font-size: 18rem;
    display: block;
    text-align: center;
    padding-right: 0;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  .page-company__elem-content__elem-ttl p span {
    display: block;
    font-size: 13rem;
  }
}
.page-company__elem-content__elem-main {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 1300px) {
  .page-company__elem-content__elem-main {
    gap: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .page-company__elem-content__elem-main {
    gap: 20rem;
    flex-direction: column-reverse;
  }
}
.page-company__elem-content__elem-main-txt {
  max-width: 100%;
  width: 100%;
}
.page-company__elem-content__elem-main-txt p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--g-color-black);
  letter-spacing: 0.03em;
  font-weight: 400;
}
@media screen and (max-width: 1300px) {
  .page-company__elem-content__elem-main-txt p {
    font-size: 14rem;
  }
}
.page-company__elem-content__elem-main-img {
  max-width: 239px;
  width: 100%;
  height: 296px;
  overflow: hidden;
}
@media screen and (max-width: 1300px) {
  .page-company__elem-content__elem-main-img {
    max-width: 239rem;
    height: 296rem;
  }
}
@media screen and (max-width: 768px) {
  .page-company__elem-content__elem-main-img {
    max-width: auto;
    height: 185rem;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  .page-company__elem-content__elem-main-img._left-img {
    transform: translateX(-15rem);
  }
}
.page-company__elem-content__elem-main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .page-company__elem-content__elem-main-img img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.page-company__elem-content-txt {
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 1300px) {
  .page-company__elem-content-txt {
    margin-top: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .page-company__elem-content-txt {
    margin-top: 40rem;
  }
}
.page-company__elem-content-txt p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--g-color-black);
  letter-spacing: 0.03em;
  font-weight: 400;
}
@media screen and (max-width: 1300px) {
  .page-company__elem-content-txt p {
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .page-company__elem-content-txt p {
    text-align: left;
    font-size: 14rem;
  }
}
.page-company__elem-content-txt p:first-child {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 500;
}
@media screen and (max-width: 1300px) {
  .page-company__elem-content-txt p:first-child {
    font-size: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .page-company__elem-content-txt p:first-child {
    text-align: center;
    font-size: 16rem;
  }
}

.sec-concept {
  background: var(--g-color-green);
  overflow: unset;
  overflow-x: clip;
  padding-top: 100px;
}
@media screen and (max-width: 1300px) {
  .sec-concept {
    padding-top: 100rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-concept {
    padding-top: 0;
  }
}
.sec-concept-deco {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  z-index: 1;
  top: -80px;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1300px) {
  .sec-concept-deco {
    top: -80rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-concept-deco {
    width: 140%;
    transform: translateX(-57%);
    top: -60rem;
  }
}
.sec-concept-deco svg {
  width: 100%;
  height: auto;
}
.sec-concept .s-container {
  position: relative;
  z-index: 2;
}

.sec-story {
  background: var(--g-color-green);
  padding: 80px 0;
  z-index: 2;
  overflow: unset;
  overflow-x: clip;
}
@media screen and (max-width: 1300px) {
  .sec-story {
    padding: 80rem 0;
  }
}
@media screen and (max-width: 768px) {
  .sec-story {
    padding: 60rem 0;
  }
}
.sec-story-deco img {
  position: absolute;
  z-index: 2;
  width: 1000px;
  height: auto;
  left: 0;
  transform: translateX(-50%);
}
@media screen and (max-width: 1300px) {
  .sec-story-deco img {
    width: 1000rem;
  }
}
.sec-story-deco img:nth-child(1) {
  top: -30%;
}

.sec-mind {
  background: var(--g-color-green);
  padding-bottom: 120px;
  z-index: 2;
}
@media screen and (max-width: 1300px) {
  .sec-mind {
    padding-bottom: 120rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-mind {
    padding-bottom: 80rem;
  }
}

.company-products {
  overflow: unset;
  overflow-x: clip;
  padding: 100px 0;
}
@media screen and (max-width: 1300px) {
  .company-products {
    padding: 100rem 0;
  }
}
@media screen and (max-width: 768px) {
  .company-products {
    padding: 60rem 0;
  }
}
.company-products-deco img {
  position: absolute;
  z-index: 2;
  width: 1000px;
  height: auto;
  right: 0;
  transform: translateX(50%);
  bottom: 10%;
}
@media screen and (max-width: 1300px) {
  .company-products-deco img {
    width: 1000rem;
  }
}
.company-products-ttl {
  margin-bottom: 80px;
  text-align: center;
}
@media screen and (max-width: 1300px) {
  .company-products-ttl {
    margin-bottom: 80rem;
  }
}
@media screen and (max-width: 768px) {
  .company-products-ttl {
    margin-bottom: 40rem;
  }
}
.company-products-ttl h2 {
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--g-color-black);
  font-size: 53px;
  margin-bottom: 26px;
  font-family: "Times", serif;
}
@media screen and (max-width: 1300px) {
  .company-products-ttl h2 {
    font-size: 53rem;
    margin-bottom: 26rem;
  }
}
@media screen and (max-width: 768px) {
  .company-products-ttl h2 {
    font-size: 28rem;
    margin-bottom: 10rem;
  }
}
.company-products-ttl p {
  color: var(--g-color-black);
  font-size: 21px;
  font-family: "Noto serif", serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
}
@media screen and (max-width: 1300px) {
  .company-products-ttl p {
    font-size: 21rem;
  }
}
@media screen and (max-width: 768px) {
  .company-products-ttl p {
    font-size: 19rem;
  }
}
.company-products-main {
  background: var(--g-color-green);
  position: relative;
  padding: 100px 90px;
  border-radius: 25px;
  z-index: 3;
}
@media screen and (max-width: 1300px) {
  .company-products-main {
    padding: 100rem 90rem;
  }
}
@media screen and (max-width: 768px) {
  .company-products-main {
    padding: 60rem 30rem;
    border-radius: 15rem;
    padding-top: 20rem;
  }
}
.company-products-main-ttl {
  position: absolute;
  left: 75px;
  top: 0;
  transform: translateY(-60%);
}
@media screen and (max-width: 1300px) {
  .company-products-main-ttl {
    left: 75rem;
  }
}
@media screen and (max-width: 768px) {
  .company-products-main-ttl {
    position: unset;
    transform: translateY(0);
    margin-bottom: 20rem;
    text-align: center;
  }
}
.company-products-main-ttl h2 {
  font-size: 87px;
  color: var(--g-color-black);
  line-height: 1;
  letter-spacing: -0.07em;
}
@media screen and (max-width: 1300px) {
  .company-products-main-ttl h2 {
    font-size: 87rem;
  }
}
@media screen and (max-width: 768px) {
  .company-products-main-ttl h2 {
    font-size: 35rem;
  }
}
.company-products-main-ttl h2 svg {
  width: 230px;
  height: auto;
}
@media screen and (max-width: 1300px) {
  .company-products-main-ttl h2 svg {
    width: 230rem;
  }
}
@media screen and (max-width: 768px) {
  .company-products-main-ttl h2 svg {
    width: 92rem;
  }
}
.company-products-content-txt {
  margin-bottom: 60px;
}
@media screen and (max-width: 1300px) {
  .company-products-content-txt {
    margin-bottom: 60rem;
  }
}
.company-products-content-txt p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--g-color-black);
  letter-spacing: 0.03em;
  font-weight: 400;
}
@media screen and (max-width: 1300px) {
  .company-products-content-txt p {
    font-size: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .company-products-content-txt p {
    font-size: 13rem;
  }
}
.company-products-content-txt p:first-child {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 500;
}
@media screen and (max-width: 1300px) {
  .company-products-content-txt p:first-child {
    font-size: 32rem;
  }
}
@media screen and (max-width: 768px) {
  .company-products-content-txt p:first-child {
    font-size: 17rem;
    text-align: center;
  }
}
.company-products-content-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 74px;
}
@media screen and (max-width: 1300px) {
  .company-products-content-inner {
    gap: 74rem;
  }
}
@media screen and (max-width: 768px) {
  .company-products-content-inner {
    gap: 40rem;
    align-items: center;
    flex-direction: column;
  }
}
.company-products__elem {
  position: relative;
  padding-bottom: 50px;
  width: 260px;
}
@media screen and (max-width: 1300px) {
  .company-products__elem {
    padding-bottom: 50rem;
    width: 260rem;
  }
}
@media screen and (max-width: 768px) {
  .company-products__elem {
    width: 209rem;
  }
}
.company-products__elem-img {
  width: 100%;
  margin-bottom: 30px;
  height: 260px;
  overflow: hidden;
}
@media screen and (max-width: 1300px) {
  .company-products__elem-img {
    margin-bottom: 30rem;
    height: 260rem;
  }
}
@media screen and (max-width: 768px) {
  .company-products__elem-img {
    margin-bottom: 30rem;
    height: 209rem;
  }
}
.company-products__elem-img img {
  transition: transform 0.4s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.company-products__elem-ttl {
  margin-bottom: 15px;
}
@media screen and (max-width: 1300px) {
  .company-products__elem-ttl {
    margin-bottom: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .company-products__elem-ttl {
    margin-bottom: 10rem;
  }
}
.company-products__elem-ttl p {
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
  color: var(--g-color-black);
  letter-spacing: 0.03em;
  font-weight: 500;
}
@media screen and (max-width: 1300px) {
  .company-products__elem-ttl p {
    font-size: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .company-products__elem-ttl p {
    font-size: 17rem;
  }
}
.company-products__elem-txt p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--g-color-black);
  letter-spacing: 0.03em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .company-products__elem-txt p {
    font-size: 13rem;
  }
}
.company-products__elem-btn {
  text-align: center;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.company-products__elem-btn span {
  font-size: 17px;
  line-height: 1;
  font-weight: bold;
  color: var(--g-color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  border-radius: 100px;
  background: var(--g-color-black);
}
@media screen and (max-width: 768px) {
  .company-products__elem-btn span {
    font-size: 14rem;
    padding: 5rem 20rem;
  }
}
.company-products__elem a:hover .company-products__elem-img img {
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  .company-products__elem a:hover .company-products__elem-img img {
    transform: scale(1);
  }
}

.sec-creator {
  background: var(--g-color-green);
  padding: 100px 0;
}
@media screen and (max-width: 1300px) {
  .sec-creator {
    padding: 100rem 0;
  }
}
@media screen and (max-width: 768px) {
  .sec-creator {
    padding: 60rem 0;
  }
}

.news-full-bg img {
  position: absolute;
  z-index: -1;
  width: 1000px;
  height: auto;
  right: 0;
  transform: translateX(50%);
}
@media screen and (max-width: 1300px) {
  .news-full-bg img {
    width: 1000rem;
  }
}
.news-full-bg img:nth-child(even) {
  transform: translateX(-50%);
  right: auto;
  left: 0;
}
.news-full-bg img:nth-child(1) {
  top: 20%;
}
@media screen and (max-width: 768px) {
  .news-full-bg img:nth-child(1) {
    top: 10%;
  }
}
.news-full-bg img:nth-child(2) {
  top: 44%;
}
@media screen and (max-width: 768px) {
  .news-full-bg img:nth-child(2) {
    top: 40%;
  }
}
.news-full-bg img:nth-child(3) {
  top: 70%;
}
@media screen and (max-width: 768px) {
  .news-full-bg img:nth-child(3) {
    top: 65%;
  }
}
.news-full-bg img:nth-child(4) {
  top: 84%;
}
@media screen and (max-width: 768px) {
  .news-full-bg img:nth-child(4) {
    top: 80%;
  }
}

.news-list {
  padding: 100px 0;
}
@media screen and (max-width: 1300px) {
  .news-list {
    padding: 100rem 0;
  }
}
@media screen and (max-width: 768px) {
  .news-list {
    padding: 60rem 0;
  }
}
.news-list-container {
  max-width: 650px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .news-list-container {
    max-width: 290rem;
  }
}
.news-list__elem:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 1300px) {
  .news-list__elem:not(:last-child) {
    margin-bottom: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .news-list__elem:not(:last-child) {
    margin-bottom: 20rem;
  }
}
.news-list__elem-head {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-bottom: 10px;
}
@media screen and (max-width: 1300px) {
  .news-list__elem-head {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .news-list__elem-head {
    margin-bottom: 5rem;
  }
}
.news-list__elem-date p {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--g-color-black);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .news-list__elem-date p {
    font-size: 14rem;
  }
}
.news-list__elem-ctg {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  background: var(--g-color-black);
  border-radius: 100px;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .news-list__elem-ctg {
    margin-left: 5rem;
    padding: 5rem 10rem;
  }
}
.news-list__elem-ctg p {
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--g-color-white);
}
@media screen and (max-width: 768px) {
  .news-list__elem-ctg p {
    font-size: 12rem;
  }
}
.news-list__elem-ttl {
  position: relative;
  display: inline-block;
}
.news-list__elem-ttl::after {
  content: "";
  width: 0;
  height: 1px;
  background: var(--g-color-black);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.4s ease-in-out;
}
.news-list__elem-ttl p {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: var(--g-color-black);
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news-list__elem-ttl p {
    font-size: 16rem;
    -webkit-line-clamp: 2;
  }
}
.news-list__elem a:hover .news-list__elem-ttl::after {
  width: 100%;
  left: 0;
  right: auto;
}

.contact-full-bg img {
  position: absolute;
  z-index: -1;
  width: 1000px;
  height: auto;
  right: 0;
  transform: translateX(50%);
}
@media screen and (max-width: 1300px) {
  .contact-full-bg img {
    width: 1000rem;
  }
}
.contact-full-bg img:nth-child(even) {
  transform: translateX(-50%);
  right: auto;
  left: 0;
}
.contact-full-bg img:nth-child(1) {
  top: 20%;
}
@media screen and (max-width: 768px) {
  .contact-full-bg img:nth-child(1) {
    top: 10%;
  }
}
.contact-full-bg img:nth-child(2) {
  top: 44%;
}
@media screen and (max-width: 768px) {
  .contact-full-bg img:nth-child(2) {
    top: 40%;
  }
}
.contact-full-bg img:nth-child(3) {
  top: 70%;
}
@media screen and (max-width: 768px) {
  .contact-full-bg img:nth-child(3) {
    top: 65%;
  }
}
.contact-full-bg img:nth-child(4) {
  top: 84%;
}
@media screen and (max-width: 768px) {
  .contact-full-bg img:nth-child(4) {
    top: 80%;
  }
}

.sec-contact {
  padding: 100px 0;
}
@media screen and (max-width: 1300px) {
  .sec-contact {
    padding: 100rem 0;
  }
}
@media screen and (max-width: 768px) {
  .sec-contact {
    padding: 60rem 0;
  }
}
.sec-contact-container {
  max-width: 650px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .sec-contact-container {
    max-width: 290rem;
  }
}
.sec-contact-main > p {
  font-size: 20px;
  line-height: 1.8;
  color: var(--g-color-black);
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 1300px) {
  .sec-contact-main > p {
    font-size: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-contact-main > p {
    font-size: 16rem;
  }
}
.sec-contact-main > p:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 1300px) {
  .sec-contact-main > p:not(:last-child) {
    margin-bottom: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-contact-main > p:not(:last-child) {
    margin-bottom: 30rem;
  }
}
.sec-contact-form {
  margin-bottom: 100px;
}
@media screen and (max-width: 1300px) {
  .sec-contact-form {
    margin-bottom: 100rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-contact-form {
    margin-bottom: 60rem;
  }
}
.sec-contact-form__elem:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 1300px) {
  .sec-contact-form__elem:not(:last-child) {
    margin-bottom: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-contact-form__elem:not(:last-child) {
    margin-bottom: 20rem;
  }
}
.sec-contact-form__elem-label {
  margin-bottom: 5px;
}
.sec-contact-form__elem-label label {
  font-size: 20px;
  line-height: 1.8;
  color: var(--g-color-black);
  font-weight: 500;
}
@media screen and (max-width: 1300px) {
  .sec-contact-form__elem-label label {
    font-size: 20rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-contact-form__elem-label label {
    font-size: 18rem;
  }
}
.sec-contact-form__elem-inp input,
.sec-contact-form__elem-inp select,
.sec-contact-form__elem-inp textarea {
  width: 100%;
  height: 50px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--g-color-black);
  padding: 10px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1300px) {
  .sec-contact-form__elem-inp input,
  .sec-contact-form__elem-inp select,
  .sec-contact-form__elem-inp textarea {
    font-size: 18rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-contact-form__elem-inp input,
  .sec-contact-form__elem-inp select,
  .sec-contact-form__elem-inp textarea {
    font-size: 16rem;
    height: 50rem;
  }
}
.sec-contact-form__elem-inp textarea {
  height: 200px;
  max-width: 100%;
  min-width: 100%;
}
@media screen and (max-width: 768px) {
  .sec-contact-form__elem-inp textarea {
    height: 200rem;
  }
}
.sec-contact-form-submit {
  text-align: center;
}
.sec-contact-form-submit button {
  margin: auto;
  width: 260px;
  height: 60px;
  border: unset;
  outline: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
  background: var(--g-color-black);
  border: 1px solid var(--g-color-black);
}
@media screen and (max-width: 1300px) {
  .sec-contact-form-submit button {
    width: 260rem;
    height: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-contact-form-submit button {
    width: 100%;
    height: 60rem;
  }
}
.sec-contact-form-submit button span {
  font-size: 26px;
  line-height: 1;
  color: var(--g-color-white);
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 1300px) {
  .sec-contact-form-submit button span {
    font-size: 26rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-contact-form-submit button span {
    font-size: 22rem;
  }
}
.sec-contact-form-submit button:hover {
  background: var(--g-color-white);
}
.sec-contact-form-submit button:hover span {
  color: var(--g-color-black);
}
.sec-contact-detail {
  display: flex;
  align-items: start;
  justify-content: center;
  margin-bottom: 80px;
  gap: 0 50px;
}
@media screen and (max-width: 1300px) {
  .sec-contact-detail {
    margin-bottom: 80rem;
    gap: 0 50rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-contact-detail {
    flex-direction: column;
    gap: 50rem 0;
  }
}
.sec-contact-detail__elem {
  max-width: 25%;
}
@media screen and (max-width: 768px) {
  .sec-contact-detail__elem {
    max-width: 100%;
  }
}
.sec-contact-detail__elem-ttl {
  margin-bottom: 15px;
}
@media screen and (max-width: 1300px) {
  .sec-contact-detail__elem-ttl {
    margin-bottom: 15rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-contact-detail__elem-ttl {
    display: flex;
    align-items: center;
    justify-content: left;
  }
}
.sec-contact-detail__elem-ttl img {
  margin-bottom: 5px;
  width: 40px;
}
@media screen and (max-width: 1300px) {
  .sec-contact-detail__elem-ttl img {
    margin-bottom: 5rem;
    width: 40rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-contact-detail__elem-ttl img {
    width: 34rem;
    margin-right: 10rem;
    margin-bottom: 0;
  }
}
.sec-contact-detail__elem-ttl p {
  font-size: 22px;
  line-height: 1;
  color: var(--g-color-black);
  font-weight: bold;
}
@media screen and (max-width: 1300px) {
  .sec-contact-detail__elem-ttl p {
    font-size: 22rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-contact-detail__elem-ttl p {
    font-size: 20rem;
  }
}
.sec-contact-detail__elem-txt p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--g-color-black);
  font-weight: 500;
}
@media screen and (max-width: 1300px) {
  .sec-contact-detail__elem-txt p {
    font-size: 18rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-contact-detail__elem-txt p {
    font-size: 16rem;
  }
}/*# sourceMappingURL=style.css.map */