/* --------------------------------------------------------------------------------
 * web fonts
-------------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@200;400;500;700&display=swap&subset=japanese");
@font-face {
  font-family: 'Bodoni Bold';
  src: url('../fonts/BodoniSvtyTwoITCTT-Bold.woff') format('woff');
}

/* ----------------------------------------------------------------------
 parameters
---------------------------------------------------------------------- */
:root {
  --bodoni-bold: 'Bodoni Bold', serif;
  --color-primary: #78828c;
  --color-secondary: #aeb4ba;
  --color-green: #78e600;
}

/* ----------------------------------------------------------------------
 reset (exculding 'sup')
---------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

input, textarea {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

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

caption, th {
  text-align: left;
}

img {
  vertical-align: middle;
}

/* ----------------------------------------------------------------------
 basic setting
---------------------------------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-primary);
  line-height: 1.5;
  /*
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  */
}

body * {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

input, button, textarea, select {
  color: var(--color-primary);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

textarea {
  vertical-align: top;
}

*:focus {
  outline: none;
}

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

a:hover {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* ----------------------------------------------------------------------
 common class
---------------------------------------------------------------------- */
@media only screen and (min-width: 751px) {
  .pc-non {
    display: none !important;
  }
}
@media only screen and (max-width: 750px) {
  .sp-non {
    display: none !important;
  }
}
.mb-0 {
  margin-bottom: 0;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-50 {
  margin-bottom: 50px;
}

.mt-10 {
  margin-top: 10px;
}
.mt-20 {
  margin-top: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-60 {
  margin-top: 60px;
}
.mt-70 {
  margin-top: 70px;
}
.mt-80 {
  margin-top: 70px;
}
@media screen and (max-width: 750px){
  .mt-20-sp {
    margin-top: 20px;
  }
  .mt-30-sp {
    margin-top: 30px;
  }
}

.t-center {
  text-align: center;
}
@media screen and (min-width: 751px){
  .t-center-pc {
    text-align: center;
  }
  .t-left-pc {
    text-align: left;
  }
  .t-right-pc {
    text-align: right;
  }
}
@media screen and (max-width: 750px){
  .t-center-sp {
    text-align: center;
  }
  .t-left-sp {
    text-align: left;
  }
  .t-right-sp {
    text-align: right;
  }
}


.ls-0 {
  letter-spacing: 0 !important;
}

.link-tel {
  color: inherit;
  text-decoration: none;
}

.wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .wrapper {
    width: auto;
  }
}

.hover {
  transition: 0.2s;
  text-decoration: none;
  color: inherit;
}
@media only screen and (min-width: 751px) {
  .hover:hover {
    opacity: 0.7;
  }
}

.title-primary {
  text-align: center;
  .en {
    display: block;
    font-size: 32px;
    font-family: var(--bodoni-bold);
    letter-spacing: 0.3em;
    padding-left: 0.15em;
    @media screen and (max-width: 750px){
      font-size: 28px;
    }
  }
  .ja {
    display: block;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.3em;
    padding-left: 0.15em;
    @media screen and (max-width: 750px){
      font-size: 18px;
    }
  }
}
.title-secondary {
  font-size: 26px;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 22px;
  }
}

.text-primary {
  font-size: 16px;
  font-feature-settings: "palt";
  letter-spacing: 0.15em;
  line-height: 2;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 68px;
  margin: 0 auto;
  background-color: #aeb4ba;
  color: #Fff;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-radius: 50vh;
  text-decoration: none;
  transition: opacity 0.2s;
  &:before {
    content: "";
    border: 1px solid #fff;
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    border-radius: 50vh;
    pointer-events: none;
    clip-path: polygon(0 0, 94% 0, 94% 50%, 100% 50%, 100% 100%, 6% 100%, 6% 50%, 0 50%);
  }
  @media (hover: hover) {
    &:hover {
      opacity: 0.7;
    }
  }
  @media screen and (max-width: 750px){
    font-size: 18px;
    height: 48px;
  }
  &.-green {
    background-color: var(--color-green);
  }
}
.btn-green {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.3em;
  padding: 4px 0 6px 0.15em;
  text-align: center;
  display: inline-block;
  width: 260px;
  max-width: 100%;
  color: #fff;
  text-decoration: none;
  background-color: #78e600;
  border-radius: 50vh;
  transition: opacity 0.2s;
  @media (hover: hover) {
    &:hover {
      opacity: 0.7;
    }
  }
}
.btn-gray {
  font-size: 16px;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.15em;
  padding: 7px 0 9px 0.075em;
  text-align: center;
  display: inline-block;
  width: 260px;
  max-width: 100%;
  color: #fff;
  text-decoration: none;
  background-color: #aeb4ba;
  border-radius: 50vh;
  transition: opacity 0.2s;
  @media (hover: hover) {
    &:hover {
      opacity: 0.7;
    }
  }
  &.-thin {
    letter-spacing: 0.05em;
  }
}
.btn-submit {
  -webkit-appearance: none;
  font-size: 20px;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.15em;
  padding: 4px 0 6px 0.075em;
  text-align: center;
  display: inline-block;
  width: 260px;
  max-width: 100%;
  border-style: none;
  background-color: #fff;
  border-radius: 50vh;
  transition: opacity 0.2s;
  cursor: pointer;
  @media (hover: hover) {
    &:hover {
      opacity: 0.7;
    }
  }
}

.js-parallax {
  background-position: center 50%;
}

/* ----------------------------------------------------------------------
 layout
---------------------------------------------------------------------- */
.header {
  position: relative;
  height: 100px;
  @media screen and (max-width: 750px){
    height: 76px;
  }
}
.header__inner {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100px;
  z-index: 1000;
  background-color: #fff;
  padding: 0 30px;
  @media screen and (max-width: 750px){
    height: 76px;
    padding: 0 20px;
  }
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.header__logo {
  width: 86px;
  @media screen and (max-width: 750px){
    width: 228px;
  }
}
.header__right {
  display: flex;
  align-items: center;
  @media screen and (max-width: 750px){
    display: none;
  }
}
.header__navi {
  display: flex;
  align-items: center;
  border-right: 1px solid #bbc0c5;
  li {
    padding: 0;
    border-left: 1px solid #bbc0c5;
    a {
      display: block;
      width: 130px;
      text-align: center;
      color: inherit;
      font-size: 13px;
      letter-spacing: 0.3em;
      text-decoration: none;
      position: relative;
      left: 0.15em;
      .en {
        display: inline-block;
        transform: rotateX(0deg);
        transition: transform 0.3s;
        transform-origin: top center;
      }
      .ja {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        text-align: center;
        transition: transform 0.3s;
        transform: rotateX(90deg);
        transform-origin: bottom center;
      }
      &:hover {
        .en {
          transform: rotateX(-90deg);
        }
        .ja {
          transform: rotateX(0deg);
        }
      }
    }
  }
}
.header__sns {
  display: flex;
  margin-left: 24px;
  gap: 10px;
  li {
    width: 34px;
  }
}
.header__price {
  margin-left: 12px;
  a {
    display: block;
    width: 94px;
    height: 35px;
    background: url(../img/icon_catalog.svg) no-repeat center center/contain;
    color: inherit;
    text-decoration: none;
    font-size: 11px;
    line-height: 1.2;
    text-align: center;
    letter-spacing: 0.05em;
    text-decoration: none;
    padding: 4px 0 0 18px;
  }
}
.headerTel {
  margin-left: 14px;
}
.headerTel__tel {
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 0.21em;
}
.headerTel__time {
  font-size: 7.5px;
  letter-spacing: 0.08em;
}
.header__menu {
  display: none;
  @media screen and (max-width: 750px){
    display: block;
    width: 42px;
    height: 42px;
    background-color: #aeb4ba;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #fff;
  }
}

.spmenu {
  @media screen and (min-width: 751px){
    display: none !important;
  }
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: calc(100dvh - 72px);
  z-index: 1000;
  background-color: #78828c;
  display: none;
  .footer__logo {
    display: none;
  }
}
.spmenu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
  padding: 0 20px;
}
.spmenu__logo {
  width: 228px;
}
.spmenu__close {
  width: 30px;
  .text {
    display: block;
    text-align: center;
    font-size: 10px;
    color: #fff;
  }
}
.spmenu__inner {
  height: calc(100% - 76px);
  overflow-y: auto;
  padding: 20px 0 0;
}
.spmenu__navi {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 15px;
}

.bottomNavi {
  display: none;
  @media screen and (max-width: 750px){
    display: block;
    position: fixed;
    z-index: 50;
    bottom: 0px;
    left: 0px;
    width: 100%;
    background-color: #fff;
    height: 72px;
    padding: 8px 0;
  }
}
.bottomNavi__list {
  display: flex;
  justify-content: space-between;
  li {
    padding: 10px;
    width: 28%;
    border-right: 1px solid #78828c;
    text-align: center;
    &.bottomNavi__price {
      border-right: none;
      width: 44%;
      a {
        display: inline-block;
        width: 94px;
        height: 35px;
        background: url(../img/icon_catalog.svg) no-repeat center center/contain;
        color: inherit;
        text-decoration: none;
        font-size: 11px;
        line-height: 1.2;
        text-align: center;
        letter-spacing: 0.05em;
        text-decoration: none;
        padding: 4px 0 0 18px;
      }
    }
  }
}

.main {
  padding-bottom: 100px;
  @media screen and (max-width: 750px){
    padding-bottom: 40px;
  }
}

.homeMv {
  position: fixed;
  top: 100px;
  left: 0px;
  width: 100%;
  z-index: -1;
}
.homeMv__slider {
  .slick-slide {
    overflow: hidden;
  }
  img {
    width: 100%;
    aspect-ratio: 1346 / 658;
    object-fit: cover;
    @media screen and (max-width: 750px){
      aspect-ratio: 375 / 660;
    }
  }
  .animation {
    animation: fdzm 10s 0s forwards linear;
  }
}
@keyframes fdzm {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.homeNews {
  margin-top: 48.8vw;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 10px;
  background-color: #fff;
  @media screen and (max-width: 750px){
    margin-top: calc(175vw + 78px);
    padding: 50px 15px 40px;
  }
}
.newsList {
  display: flex;
  gap: 50px 10px;
  max-width: 998px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
  @media screen and (max-width: 750px){
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.newsList__item {
  width: calc((100% - 20px) / 3);
  max-width: 326px;
  padding: 0 20px;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.newsList__thumb {
  margin: 0 -20px;
  img {
    width: 100%;
    aspect-ratio: 326 / 184;
    object-fit: cover;
  }
}
.newsList__time {
  display: block;
  text-align: center;
  padding: 20px 0 20px 0.075em;
  font-feature-settings: "palt";
  letter-spacing: 0.15em;
  border-bottom: 1px solid #78828c;
}
.newsList__title {
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  margin-top: 10px;
}

.homeProduct {
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.homeProductHeader {
  height: 400px;
  border-left: 10px solid #fff;
  border-right: 10px solid #fff;
  padding: 300px 0 0 30px;
  background-size: cover;
  background-repeat: no-repeat;
  @media screen and (max-width: 750px){
    height: 280px;
    padding: 200px 0 0 20px;
  }
  .title-primary {
    text-align: left;
    color: #fff;
  }
}
.homeProduct__inner {
  padding: 60px 10px 0;
  @media screen and (max-width: 750px){
    padding: 50px 15px 0;
  }
}
.homeProduct__h3 {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.1em;
  @media screen and (max-width: 750px){
    font-size: 22px;
  }
}
.productList {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 10px;
  max-width: 1346px;
  margin-left: auto;
  margin-right: auto;
  @media screen and (max-width: 750px){
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.productList__item {
  width: calc((100% - 20px) / 3);
  max-width: 442px;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  @media screen and (max-width: 750px){
    width: 100%;
    max-width: 442px;
    padding: 0;
  }
}
.productList__thumb {
  margin: 0 -30px;
  @media screen and (max-width: 750px){
    margin: 0;
  }
  img {
    width: 100%;
    aspect-ratio: 442 / 248;
    object-fit: cover;
  }
}
.productList__name {
  font-size: 20px;
  font-weight: 500;
  font-weight: 500;
  letter-spacing: 0.3em;
  padding: 20px 0;
  border-bottom: 1px solid #78828c;
}
.productList__catch {
  min-height: 2em;
}
.productList__price {
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.1em;
}
.productList__bottom {
  margin-top: auto;
  margin-top: 30px;
}
.productList__more {
  text-align: center;
  .btn-green {
    width: 100%;
  }
}
.productList__buttons {
  display: flex;
  margin-top: 10px;
  gap: 10px;
  .item {
    width: calc(50% - 5px);
  }
}
.homeUsed {
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 24px;
  &:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 204px;
    background: #78828c;
    z-index: -1;
  }
  @media screen and (max-width: 750px){
    padding: 50px 0 0;
    &:after {
      display: none;
    }
  }
}
.homeUsedList {
  display: flex;
  justify-content: center;
  gap: 10px;
  @media screen and (max-width: 750px){
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.homeUsedList__item {
  width: 495px;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.homeUsedList__thumb {
  position: relative;
  img {
    width: 100%;
    aspect-ratio: 495 / 278;
    object-fit: cover;
    @media screen and (max-width: 750px){
      aspect-ratio: 375 / 280;
    }
  }
  &:after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 120px;
    background-color: #78828c;
    mix-blend-mode: multiply;
    z-index: 1;
  }
}
.homeUsedList__btn {
  margin-top: 20px;
  text-align: center;
  @media screen and (max-width: 750px){
    margin: 0;
    padding: 24px 0;
    background-color: #78828c;
  }
}
.homeUsedList__bottom {
  position: absolute;
  z-index: 2;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  .title-primary {
    color: #fff;
  }
}
.channel {
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding: 64px 10px 0;
  @media screen and (max-width: 750px){
    padding: 36px 15px 0;
  }
}
.channel__inner {
  padding: 0 10px;
  @media screen and (max-width: 750px){
    padding: 0 0;
  }
}
.channel__logo {
  text-align: center;
  img {
    width: 80px;
  }
}
.channel__play {
  margin-top: 10px;
  text-align: center;
  img {
    width: 60px;
  }
}
.channelList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 40px auto 0;
  max-width: 1000px;
  @media screen and (max-width: 750px){
    margin-top: 20px;
    gap: 3px;
  }
}
.channelList__item {
  width: calc((100% - 20px) / 3);
  max-width: 326px;
  @media screen and (max-width: 750px){
    width: calc((100% - 6px) / 3);
  }
  img {
    width: 100%;
    aspect-ratio: 326 / 184;
    object-fit: cover;
  }
}
.contact {
  border: 10px solid #fff;
  border-top-style: none;
  background-color: #bbc0c5;
  padding-top: 50px;
  padding-bottom: 80px;
  color: #fff;
  @media screen and (max-width: 750px){
    padding: 60px 0 40px;
    border-style: none;
  }
}
.contact__inner {
  padding: 0 10px;
  @media screen and (max-width: 750px){
    padding: 0 15px;
  }
}
.contactTel {
  text-align: center;
}
.contactTel__tel {
  font-size: 40px;
  font-weight: 200;
  letter-spacing: 0.15em;
  @media screen and (max-width: 750px){
    font-size: 32px;
    margin-top: 20px;
  }
}
.contactTel__time {
  font-size: 13px;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}
.contactLine {
  margin: 30px auto 0;
  max-width: 1000px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  text-decoration: none;
  @media screen and (max-width: 750px){
    flex-direction: column;
    align-items: center;
    padding: 24px 0;
  }
}
.contactLine__icon {
  width: 80px;
}
.contactLine__text {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: #06c755;
  letter-spacing: 0.1em;
  @media screen and (max-width: 750px){
    font-size: 14px;
    margin-top: 24px;
  }
  strong {
    font-size: 20px;
    @media screen and (max-width: 750px){
      font-size: 18px;
    }
  }
}
.contactLine__qr {
  width: 72px;
  @media screen and (max-width: 750px){
    display: none;
  }
}
.contactForm {
  margin: 30px auto 0;
  max-width: 1000px;
}
.contactForm__title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.3em;
}
.contactTable {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 60px;
  @media screen and (max-width: 750px){
    margin-top: 20px;
  }
  dl {
    display: flex;
    @media screen and (max-width: 750px){
      flex-direction: column;
    }
    dt {
      width: 250px;
      background-color: #78828c;
      padding: 10px 15px;
      font-size: 16px;
      letter-spacing: 0.1em;
      position: relative;
      @media screen and (max-width: 750px){
        width: 100%;
      }
      .required {
        color: var(--color-primary);
        display: inline-block;
        padding: 3px 15px;
        border-radius: 10px;
        background-color: #fff;
        position: absolute;
        top: 8px;
        right: 15px;
      }
    }
    dd {
      flex: 1;
      background-color: #fff;
      color: var(--color-primary);
    }
    .form-text {
      height: 46px;
      width: 100%;
      padding: 0 0.5em;
      border-style: none;
      color: var(--color-primary);
      @media screen and (max-width: 750px){
        height: 50px;
      }
    }
    .form-textarea {
      height: 150px;
      width: 100%;
      padding: 0.25em 0.5em;
      border-style: none;
      color: var(--color-primary);
      @media screen and (max-width: 750px){
        height: 200px;
      }
    }
  }
}
.mw_wp_form_confirm {
  dd {
    padding: 0.625em 0.5em;
  }
}
.contactForm__btn {
  margin-top: 50px;
  text-align: center;
}
.footer {
  border: 10px solid #fff;
  border-top-style: none;
  background-color: #78828c;
  @media screen and (max-width: 750px){
    border-style: none;
    padding-bottom: 72px;
  }
}
.footer__inner {
  display: flex;
  @media screen and (max-width: 750px){
    flex-direction: column;
  }
}
.footer__left {
  width: 50%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 10px;
  @media screen and (max-width: 750px){
    width: 100%;
    height: auto;
    padding: 36px 15px 24px;
    display: block;
    text-align: center;
  }
}
.footer__logo {
  width: 95px;
  margin-right: 45px;
  @media screen and (max-width: 750px){
    margin: 0 auto;
  }
}
.footer__name {
  font-size: 20px;
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.5em;
  @media screen and (max-width: 750px){
    margin-top: 10px;
  }
}
.footer__address {
  font-size: 16px;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  width: 400px;
  text-align-last: justify;
  @media screen and (max-width: 750px){
    width: 100%;
    font-size: 14px;
  }
}
.footer__tel {
  font-size: 36px;
  font-weight: 200;
  letter-spacing: 0.218em;
  white-space: nowrap;
  text-align-last: justify;
  margin-top: 10px;
  @media screen and (max-width: 750px){
    font-size: 32px;
    letter-spacing: 0.2em;
  }
}
.footer__time {
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.2em;
  width: 400px;
  text-align-last: justify;
  @media screen and (max-width: 750px){
    font-size: 12px;
    letter-spacing: 0.1em;
    width: 100%;
  }
}
.footer__list {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
  @media screen and (max-width: 750px){
    justify-content: center;
  }
  li {
    width: 34px;
  }
}
.footer__right {
  width: 50%;
  @media screen and (max-width: 750px){
    width: 100%;
    height: 234px;
  }
  iframe {
    width: 100%;
    height: 100%;
    vertical-align: bottom;
  }
}
.copyright {
  font-size: 11px;
  font-feature-settings: "palt";
  letter-spacing: 0.156em;
  margin-top: 60px;
  @media screen and (max-width: 750px){
    margin-top: 20px;
  }
}

.pageHero {
  height: 400px;
  margin: 0 10px 60px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  @media screen and (max-width: 750px){
    height: 280px;
    margin: 0 0 40px;
  }
  &.-company {
    background-image: url(../img/company/bg_hero.jpg);
    @media screen and (max-width: 750px){
      background-image: url(../img/company/bg_hero_sp.jpg);
    }
  }
  &.-privacy {
    background-image: url(../img/company/bg_hero_02.jpg);
    @media screen and (max-width: 750px){
      background-image: url(../img/company/bg_hero_02_sp.jpg);
    }
  }
  &.-news {
    background-image: url(../img/news/bg_hero.jpg);
    @media screen and (max-width: 750px){
      background-image: url(../img/news/bg_hero_sp.jpg);
    }
  }
  &.-news-single {
    background-image: url(../img/news/bg_hero_single.jpg);
    @media screen and (max-width: 750px){
      background-image: url(../img/news/bg_hero_single_sp.jpg);
    }
  }
  &.-product {
    background-image: url(../img/product/bg_hero.jpg);
    @media screen and (max-width: 750px){
      background-image: url(../img/product/bg_hero_sp.jpg);
    }
  }
  &.-end {
    background-image: url(../img/end/bg_hero.jpg);
    @media screen and (max-width: 750px){
      background-image: url(../img/end/bg_hero_sp.jpg);
    }
  }
}
.pageHero__title {
  color: #fff;
  position: absolute;
  bottom: 30px;
  left: 30px;
  @media screen and (max-width: 750px){
    bottom: 20px;
    left: 20px;
  }
  .en {
    display: block;
    font-size: 32px;
    font-family: var(--bodoni-bold);
    letter-spacing: 0.3em;
    padding-left: 0.15em;
    @media screen and (max-width: 750px){
      font-size: 28px;
    }
  }
  .ja {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.3em;
    padding-left: 0.15em;
    @media screen and (max-width: 750px){
      font-size: 18px;
    }
  }
}
.about {
  padding: 0px 10px 60px;
  @media screen and (max-width: 750px){
    padding: 0px 15px 40px;
  }
}
.about__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 750px){
    flex-direction: column;
  }
}
.about__left {
  width: 42%;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.about__right {
  width: 50%;
  @media screen and (max-width: 750px){
    width: 100%;
    margin-top: 30px;
  }
}
.about__table {
  width: 100%;
  tr {
    border-top: 1px solid #78828c;
    border-bottom: 1px solid #78828c;
  }
  th {
    width: 28%;
    padding: 10px;
    border-right: 1px solid #78828c;
  }
  td {
    padding: 10px;
  }
  @media screen and (max-width: 750px){
    display: block;
    border-top: 1px solid #78828c;
    tr,
    th,
    td,
    tbody {
      display: block;
    }
    tr {
      border-top-style: none;
    }
    th {
      width: 100%;
      padding: 10px 0 0 0;
      border-style: none;
    }
    td {
      padding: 10px 0;
    }
  }
}
.privacy {
  
}
.privacy__inner {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0px 10px 0;
}
.privacy__block {
  + .privacy__block {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px dashed #78828c;
  }
}

.newsSingle {
  padding: 0 10px;
}
.newsSingle__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.newsSingle__header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #78828c;
}
.newsSingle__time {
  font-size: 16px;
  letter-spacing: 0.15em;
  display: block;
  position: relative;
  top: 4px;
}
.newsSingle__cat {
  font-size: 16px;
  display: flex;
  gap: 4px;
  li {
    color: #fff;
    background-color: #c9cdd1;
    border-radius: 10px;
    padding: 3px 20px;
  }
}
.newsSingle__title {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 20px;
  @media screen and (max-width: 750px){
    font-size: 20px;
  }
}
.newsSingle__content {
  margin-top: 20px;
}

.productArchives {
  padding: 0 10px;
}
.productHero {
  height: 658px;
  margin: 0 10px 60px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  @media screen and (max-width: 750px){
    height: calc(100dvh - 148px);
    margin: 0 0 40px;
    padding: 0 15px;
  }
}
.productHero__catch {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.productHero__title {
  font-size: 60px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  @media screen and (max-width: 750px){
    letter-spacing: 0;
  }
}
.productSingle {
  padding: 0 10px;
  @media screen and (max-width: 750px){
    padding: 0 15px;
  }
}
.productSingle__free {
  max-width: 1000px;
  margin: 0 auto 50px;
}
.productSingle__price {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 50px;
  @media screen and (max-width: 750px){
    margin-bottom: 40px;
  }
}
.productSingle__buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  @media screen and (max-width: 750px){
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
  }
  .item {
    width: 480px;
    @media screen and (max-width: 750px){
      width: 100%;
    }
  }
}
.productSingle__catch {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
  @media screen and (max-width: 750px){
    font-size: 22px;
    text-align: left;
  }
}
.productSingle__text {
  max-width: 1000px;
  font-size: 16px;
  font-feature-settings: "palt";
  letter-spacing: 0.15em;
  line-height: 2;
  margin: 0 auto 40px;
  @media screen and (max-width: 750px){
    
  }
}
.productConcept__block {
  display: flex;
  max-width: 1346px;
  margin: 0 auto;
  @media screen and (min-width: 751px){
    &:nth-child(2n) {
      flex-direction: row-reverse;
    }
  }
  @media screen and (max-width: 750px){
    flex-direction: column;
    + .productConcept__block {
      margin-top: 40px;
    }
  }
}
.productConcept__thumb {
  position: relative;
  width: 50%;
  @media screen and (max-width: 750px){
    width: 100%;
  }
  img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    @media screen and (max-width: 750px){
      position: static;
      height: auto;
    }
  }
}
.productConcept__info {
  width: 50%;
  min-height: 380px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  @media screen and (max-width: 750px){
    width: 100%;
    min-height: auto;
    padding: 20px 0;
  }
}
.productConcept__num {
  font-family: var(--bodoni-bold);
  font-size: 32px;
  letter-spacing: 0.2em;
  color: var(--color-green);
}
.productConcept__title {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 20px;
  @media screen and (max-width: 750px){
    font-size: 22px;
  }
}
.productConcept__text {
  font-size: 16px;
  letter-spacing: 0.15em;
  line-height: 2;
  margin-top: 30px;
}
.productEquip {
  margin: 70px auto 0;
  max-width: 1000px;
  @media screen and (max-width: 750px){
    margin: 60px auto 0;
  }
}
.productEquipList {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 40px;
}
.productEquipList__item {
  width: calc((100% - 120px) / 4);
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.productEquipList__thumb {
  img {
    width: 100%;
    aspect-ratio: 226 / 165;
    object-fit: cover;
  }
}
.productEquipList__title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 15px;
}
.productEquipList__text {
  font-size: 16px;
  line-height: 2;
  margin-top: 10px;
}

.productCamera {
  max-width: 1000px;
  margin: 70px auto 0;
  @media screen and (max-width: 750px){
    margin: 60px auto 0;
  }
}
.productCamera__theta {
  iframe {
    max-width: 100%;
  }
}

.productOthers {
  margin-top: 80px;
  padding: 0 10px;
  @media screen and (max-width: 750px){
    margin-top: 60px;
    padding: 0 15px;
  }
}

.endArchives {
  padding: 0 10px;
  @media screen and (max-width: 750px){
    padding: 0 15px;
  }
}
.endBlock {
  max-width: 1000px;
  margin: 0 auto;
  + & {
    margin-top: 40px;
  }
}
.endBlock__title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.3em;
  padding-bottom: 15px;
  border-bottom: 1px solid #78828c;
}
.endBlock__text {
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-top: 10px;
}
.endBlockGallery {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 750px){
    flex-direction: column;
    gap: 14px;
  }
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    @media screen and (max-width: 750px){
      height: auto;
      aspect-ratio: 345 / 195;
    }
  }
}
.endBlockGallery__left {
  width: 66.4%;
  height: 375px;
  @media screen and (max-width: 750px){
    width: 100%;
    height: auto;
  }
}
.endBlockGallery__right {
  width: 32.5%;
  height: 375px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  @media screen and (max-width: 750px){
    width: 100%;
    height: auto;
    flex-direction: row;
    gap: 10px;
  }
  .item {
    height: 182px;
    @media screen and (max-width: 750px){
      height: auto;
    }
  }
}
.endBlock__movies {
  display: flex;
  margin-top: 30px;
  gap: 10px;
  @media screen and (max-width: 750px){
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
  }
  .item {
    width: calc((100% - 20px) / 3);
    @media screen and (max-width: 750px){
      width: 100%;
    }
    margin: 0 auto;
    img {
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
    }
  }
}

.fv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  overflow: hidden;
  background-color: var(--color-green);
  transition: background-color 0s linear 0.3s;
  &.is-active {
    background-color: transparent;
  }
}
@media screen and (min-width: 769px){
  .fv__paint {
    width: 124vw;
    height: 126vw;
    position: absolute;
    &.-paint01 {
      top: 50%;
      left: -18vw;
      transform: translateY(-50%);
      .img {
        width: 100%;
        height: 100%;
        transform-origin: top center;
        transition: height 0.3s linear 0.9s;
        position: absolute;
        top: 0px;
        left: 0px;
        overflow: hidden;
        background: url(../img/home/paint_logo.svg) no-repeat top left/100%;
      }
      &.is-active {
        .img {
          height: 0px;
        }
      }
    }
    &.-paint02 {
      top: 18%;
      left: -45.8vw;
      transform: translateY(-50%);
      .img {
        width: 100%;
        height: 100%;
        transform-origin: top center;
        transition: height 0.3s linear 0.6s;
        position: absolute;
        bottom: 0px;
        left: 0px;
        overflow: hidden;
        background: url(../img/home/paint.svg) no-repeat bottom left/100%;
      }
      &.is-active {
        .img {
          height: 0px;
        }
      }
    }
    &.-paint03 {
      top: 68%;
      left: 39vw;
      transform: translateY(-50%);
      .img {
        width: 100%;
        height: 100%;
        transform-origin: top center;
        transition: height 0.3s linear 0.3s;
        position: absolute;
        top: 0px;
        left: 0px;
        overflow: hidden;
        background: url(../img/home/paint.svg) no-repeat top left/100%;
      }
      &.is-active {
        .img {
          height: 0px;
        }
      }
    }
  }
}
@media screen and (max-width: 768px){
  .fv__paint {
    width: 240vw;
    height: 237vw;
    position: absolute;
    &.-paint01 {
      top: 50%;
      left: -75vw;
      transform: translateY(-52%);
      .img {
        width: 100%;
        height: 100%;
        transform-origin: top center;
        transition: height 0.3s linear 0.9s;
        position: absolute;
        top: 0px;
        left: 0px;
        overflow: hidden;
        background: url(../img/home/paint_logo_sp.svg) no-repeat top left/100%;
      }
      &.is-active {
        .img {
          height: 0px;
        }
      }
    }
    &.-paint02 {
      top: 50%;
      left: -72vw;
      transform: translateY(5%);
      .img {
        width: 100%;
        height: 100%;
        transform-origin: bottom center;
        transition: width 0.3s linear 0.6s;
        position: absolute;
        bottom: 0px;
        right: 0px;
        overflow: hidden;
        background: url(../img/home/paint_sp.svg) no-repeat bottom left/100%;
      }
      &.is-active {
        .img {
          width: 0px;
        }
      }
    }
    &.-paint03 {
      top: 50%;
      left: -52vw;
      transform: translateY(-83%);
      .img {
        width: 100%;
        height: 100%;
        transform-origin: top center;
        transition: height 0.3s linear 0.3s;
        position: absolute;
        top: 0px;
        left: 0px;
        overflow: hidden;
        background: url(../img/home/paint_sp.svg) no-repeat top left/100%;
      }
      &.is-active {
        .img {
          height: 0px;
        }
      }
    }
  }
}