* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

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

a {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

img {
  border: none;
  vertical-align: bottom;
}

address {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

body {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

button {
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
}

body.is-scroll {
  overflow: hidden;
}

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

main {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  main {
    margin-top: 70px;
  }
}

.js-scroll {
  opacity: 0;
  -webkit-transform: translateY(28px);
          transform: translateY(28px);
  -webkit-transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-scroll.is-inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-scroll {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 80px;
  padding: 0 30px 0 20px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .header {
    height: 70px;
    padding-inline: 0;
    padding-left: 20px;
  }
}
@media screen and (max-width: 340px) {
  .header {
    padding-left: 12px;
  }
}

.header__logo-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 769px) and (max-width: 980px) {
  .header__logo-area {
    gap: 8px;
  }
}
@media screen and (max-width: 340px) {
  .header__logo-area {
    gap: 6px;
  }
}

.header__logo a {
  display: block;
  -webkit-transition: scale 0.3s, -webkit-filter 0.3s;
  transition: scale 0.3s, -webkit-filter 0.3s;
  transition: filter 0.3s, scale 0.3s;
  transition: filter 0.3s, scale 0.3s, -webkit-filter 0.3s;
}

@media (any-hover: hover) {
  .header__logo a:hover {
    -webkit-filter: brightness(1.2);
            filter: brightness(1.2);
    scale: 1.03;
  }
}
.header__logo img {
  width: 287px;
  aspect-ratio: 287/53;
}
@media screen and (min-width: 769px) and (max-width: 980px) {
  .header__logo img {
    width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .header__logo img {
    width: 202px;
  }
}
@media screen and (max-width: 340px) {
  .header__logo img {
    width: 170px;
  }
}

.header__mascot img {
  height: 51px;
  margin-right: 15px;
}
@media screen and (min-width: 769px) and (max-width: 980px) {
  .header__mascot img {
    width: 32px;
    height: 41px;
  }
}
@media screen and (max-width: 768px) {
  .header__mascot img {
    width: 28px;
    height: 36px;
    display: none;
  }
}
@media screen and (max-width: 340px) {
  .header__mascot img {
    width: 24px;
    height: 31px;
  }
}

.header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.header__nav-item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.header__mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  background-color: #d2eaec;
  min-width: 225px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s, visibility 0.2s;
  transition: opacity 0.2s, visibility 0.2s;
}

.header__nav-item:hover .header__mega-menu {
  opacity: 1;
  visibility: visible;
}

.header__mega-list {
  padding: 10px 0;
}

.header__mega-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__mega-link a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  width: 100%;
  text-decoration: none;
  color: #333333;
  font-size: 18px;
  white-space: nowrap;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.header__mega-link a::before {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 1/1;
  background: url(../img/common/arrow-green.svg) no-repeat center center/contain;
  margin-right: 10px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.header__nav-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding-inline: 10px;
  text-decoration: none;
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__nav-link:hover {
  cursor: pointer;
}
@media screen and (min-width: 769px) and (max-width: 980px) {
  .header__nav-link {
    padding-inline: 8px;
    font-size: 14px;
  }
}

@media (any-hover: hover) {
  .header__nav-item:hover .header__nav-link {
    color: #f8bc24;
  }
  .header__mega-link a:hover {
    color: #f8bc24;
  }
}
.header__nav-link::before {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 1/1;
  background: url(../img/common/arrow-green.svg) no-repeat center center/contain;
  margin-right: 10px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (min-width: 769px) and (max-width: 980px) {
  .header__nav-link::before {
    width: 12px;
    margin-right: 4px;
  }
}

.header__icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-left: 4px;
}
@media screen and (min-width: 769px) and (max-width: 980px) {
  .header__icons {
    gap: 8px;
    margin-left: 4px;
  }
}

.header__icon-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__icon-link a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

@media (any-hover: hover) {
  .header__icon-link a:hover {
    -webkit-filter: brightness(1.2);
            filter: brightness(1.2);
  }
}
.header__icon-link img {
  width: 32px;
  height: 32px;
}
@media screen and (min-width: 769px) and (max-width: 980px) {
  .header__icon-link img {
    width: 28px;
    height: 28px;
  }
}

.drawer__icon {
  display: none;
}
@media screen and (max-width: 768px) {
  .drawer__icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    width: 70px;
    -webkit-align-self: stretch;
        -ms-flex-item-align: stretch;
            align-self: stretch;
    background-color: #099494;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}
@media screen and (max-width: 340px) {
  .drawer__icon {
    width: 60px;
  }
}

.drawer__icon--bar {
  display: block;
  width: 36px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: rotate 0.3s, translate 0.3s, opacity 0.3s;
  transition: rotate 0.3s, translate 0.3s, opacity 0.3s;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 14px;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
  opacity: 0;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -14px;
}

.drawer {
  position: fixed;
  top: 80px;
  left: 0;
  z-index: 99;
  width: 100%;
  height: calc(100vh - 80px);
  height: calc(100svh - 80px);
  background-color: #d2eaec;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 768px) {
  .drawer {
    top: 70px;
    height: calc(100vh - 70px);
    height: calc(100svh - 70px);
  }
}

.drawer.js-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.drawer__body {
  padding-block: 8px 24px;
}

.drawer__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.drawer__item {
  border-bottom: 1px solid #fff;
}

.drawer__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 28px;
  text-decoration: none;
  color: #333333;
  font-size: 18px;
  font-weight: 500;
}

.drawer__link::before {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 1/1;
  background: url(../img/common/arrow-green.svg) no-repeat center center/contain;
  margin-right: 10px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.drawer__icons {
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}

.drawer__icon-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.drawer__icon-link a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.drawer__icon-link img {
  width: 60px;
  aspect-ratio: 1/1;
}

.footer {
  background-color: #099494;
}

.footer__small {
  height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .footer__small {
    font-size: 12px;
  }
}

.cta {
  padding: 74px 0 48px;
  background-color: #fffdea;
}
@media screen and (max-width: 768px) {
  .cta {
    padding: 50px 0 40px;
  }
}

.cta__logo {
  text-align: center;
}

.cta__logo a {
  display: inline-block;
  -webkit-transition: scale 0.3s, -webkit-filter 0.3s;
  transition: scale 0.3s, -webkit-filter 0.3s;
  transition: filter 0.3s, scale 0.3s;
  transition: filter 0.3s, scale 0.3s, -webkit-filter 0.3s;
}

@media (any-hover: hover) {
  .cta__logo a:hover {
    -webkit-filter: brightness(1.2);
            filter: brightness(1.2);
    scale: 1.03;
  }
}
.cta__logo img {
  width: 376px;
  aspect-ratio: 376/69;
}
@media screen and (max-width: 768px) {
  .cta__logo img {
    width: 100%;
    max-width: 340px;
  }
}

.cta__body {
  margin-top: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 1200px) {
  .cta__body {
    max-width: 800px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .cta__body {
    margin-top: 32px;
    gap: 28px;
  }
}

@media screen and (max-width: 768px) {
  .cta__text-area {
    text-align: center;
  }
}

.cta__heading {
  margin-top: 16px;
  color: #099494;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .cta__heading {
    font-size: 22px;
  }
}

.cta__company {
  margin-top: 30px;
  font-size: 23px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .cta__company {
    font-size: 20px;
  }
}

.cta__address {
  margin-top: 8px;
  font-size: 16px;
  font-style: normal;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .cta__address {
    font-size: 14px;
  }
}

.cta__tel {
  margin-top: 12px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 6px;
  color: #099494;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .cta__tel {
    gap: 4px;
  }
}

.cta__tel-label {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .cta__tel-label {
    font-size: 28px;
  }
}

.cta__tel a {
  color: #099494;
  font-size: 40px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .cta__tel a {
    font-size: 36px;
  }
}

.cta__fax {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 6px;
  color: #099494 !important;
  font-size: 26px;
  font-weight: 700;
}
.cta__fax a {
  color: #099494 !important;
}
@media screen and (max-width: 768px) {
  .cta__fax {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4px;
    font-size: 22px;
  }
}

.cta__fax-label {
  font-size: 21px;
}
@media screen and (max-width: 768px) {
  .cta__fax-label {
    font-size: 18px;
  }
}

.cta__hours {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .cta__hours {
    font-size: 14px;
  }
}

.cta__image {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 503px;
  aspect-ratio: 1004/656;
}
@media screen and (max-width: 768px) {
  .cta__image {
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
    aspect-ratio: 4/3;
  }
}

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

.cta__nav-wrap {
  margin-top: 54px;
}

.cta__nav-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .cta__nav-list {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    max-width: 460px;
    margin-inline: auto;
  }
}

@media screen and (max-width: 768px) {
  .cta__nav-item {
    width: 50%;
  }
}

.cta__nav-item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 16px;
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .cta__nav-item a {
    font-size: 14px;
    padding: 8px 12px;
  }
}

@media (any-hover: hover) {
  .cta__nav-item a:hover {
    color: #f8bc24;
  }
}
.cta__nav-item a::before {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 1/1;
  background: url(../img/common/arrow-green.svg) no-repeat center center/contain;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .cta__nav-item a::before {
    width: 12px;
  }
}

@-webkit-keyframes topFvBgIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes topFvBgIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes topFvTextIn {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 16px);
            transform: translate(-50%, 16px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
@keyframes topFvTextIn {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 16px);
            transform: translate(-50%, 16px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
@-webkit-keyframes topFvSliderIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes topFvSliderIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.top-fv {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top-fv {
    padding-top: 20px;
  }
}

.top-fv__bg {
  width: 100%;
  aspect-ratio: 2761/1282;
  display: block;
  -webkit-animation: topFvBgIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
          animation: topFvBgIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@media screen and (max-width: 768px) {
  .top-fv__bg {
    aspect-ratio: 751/1105;
  }
}

.top-fv__slider {
  margin-top: -112px;
  -webkit-animation: topFvSliderIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
          animation: topFvSliderIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}
@media screen and (max-width: 768px) {
  .top-fv__slider {
    margin-top: -26.6666666667vw;
  }
}

.top-fv__slider .swiper-wrapper {
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.top-fv__slider .swiper-slide img {
  width: 100%;
  display: block;
}

.top-fv__text {
  position: absolute;
  left: 50%;
  bottom: 21.1594202899vw;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 44.1304347826vw;
  height: auto;
  display: block;
  -webkit-animation: topFvTextIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
          animation: topFvTextIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
@media screen and (max-width: 768px) {
  .top-fv__text {
    width: 75.2vw;
    bottom: 50.6666666667vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-fv__bg,
  .top-fv__text,
  .top-fv__slider {
    -webkit-animation: none;
            animation: none;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.top-philosophy {
  padding: 120px 0 90px;
}
@media screen and (max-width: 768px) {
  .top-philosophy {
    padding: 60px 0 50px;
  }
}

.top-philosophy__content {
  margin-top: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
@media (max-width: 1200px) {
  .top-philosophy__content {
    margin-top: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 800px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .top-philosophy__content {
    gap: 32px;
  }
}

.top-philosophy__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.top-philosophy__heading {
  padding-top: 4px;
  color: #099494;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .top-philosophy__heading {
    font-size: 20px;
  }
}

.top-philosophy__body {
  margin-top: 36px;
  color: #333333;
  font-size: 16px;
  line-height: 2;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 768px) {
  .top-philosophy__body {
    margin-top: 20px;
  }
}

.top-philosophy__image.js-scroll {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.top-philosophy__image {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 528px;
  aspect-ratio: 528/408;
  margin-right: -10px;
}
@media (max-width: 1200px) {
  .top-philosophy__image {
    margin-top: -40px;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .top-philosophy__image {
    width: 100%;
    margin-top: 0;
  }
}

.top-philosophy__image img {
  width: 100%;
}

.top-philosophy__btn-wrap {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-philosophy__btn-wrap {
    margin-top: 40px;
  }
}

.top-strength {
  padding: 80px 0 60px;
}
@media screen and (max-width: 768px) {
  .top-strength {
    padding: 60px 0 50px;
  }
}

.top-strength__inner {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .top-strength__inner {
    margin-top: 40px;
  }
}

.top-strength__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 1200px) {
  .top-strength__list {
    gap: 2.5vw;
  }
}
@media screen and (max-width: 768px) {
  .top-strength__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    max-width: 440px;
    margin-inline: auto;
  }
}

.top-strength__item {
  aspect-ratio: 1/1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 1px solid #099494;
  border-radius: 0 25px 0 25px;
  padding: 32px 22px 36px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1200px) {
  .top-strength__item {
    padding: 2vw 1.3333333333vw 2.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .top-strength__item {
    width: 100%;
    max-width: 340px;
    margin-inline: auto;
    padding: 32px 22px 36px;
  }
}

.top-strength__item.js-scroll:nth-child(2) {
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
}

.top-strength__item.js-scroll:nth-child(3) {
  -webkit-transition-delay: 0.24s;
          transition-delay: 0.24s;
}

.top-strength__item-title {
  color: #099494;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .top-strength__item-title {
    font-size: 2.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .top-strength__item-title {
    font-size: 20px;
  }
}

.top-strength__item-image {
  margin-top: 24px;
  height: 129px;
}
@media screen and (max-width: 1200px) {
  .top-strength__item-image {
    margin-top: 2vw;
    height: 10.75vw;
  }
}
@media screen and (max-width: 768px) {
  .top-strength__item-image {
    margin-top: 24px;
    height: 110px;
  }
}

.top-strength__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.top-strength__item-body {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: -0.04em;
}
@media screen and (max-width: 1200px) {
  .top-strength__item-body {
    margin-top: 2vw;
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .top-strength__item-body {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.625;
  }
}

.top-strength__work-area {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .top-strength__work-area {
    margin-top: 60px;
  }
}

.top-strength__work-lead {
  text-align: center;
  font-size: 24px;
  line-height: 1.6666666667;
  font-weight: 300;
}
@media screen and (max-width: 1200px) {
  .top-strength__work-lead {
    padding-inline: 20px;
  }
}
@media screen and (max-width: 768px) {
  .top-strength__work-lead {
    max-width: 540px;
    margin-inline: auto;
    font-size: 18px;
    text-align: left;
  }
}

.top-strength__work-list {
  margin-top: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .top-strength__work-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 500px;
    margin-inline: auto;
  }
}

.top-strength__work-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.top-strength__work-item.js-scroll:nth-child(2) {
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
}

.top-strength__work-item.js-scroll:nth-child(3) {
  -webkit-transition-delay: 0.24s;
          transition-delay: 0.24s;
}

.top-strength__work-item a {
  display: block;
  position: absolute;
  inset: 0;
}

.top-strength__work-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
}

@media (any-hover: hover) {
  .top-strength__work-item a:hover img {
    scale: 1.1;
  }
}
.top-strength__work-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 34%;
  overflow: hidden;
  padding: 20px 24px 24px;
}
@media screen and (min-width: 1440px) {
  .top-strength__work-info {
    height: 30%;
  }
}
@media screen and (max-width: 1200px) {
  .top-strength__work-info {
    padding: 1.6666666667vw 2vw 2vw;
    height: 38%;
  }
}
@media screen and (max-width: 768px) {
  .top-strength__work-info {
    padding: 20px 24px;
  }
}

.top-strength__work-info::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.45;
  mix-blend-mode: multiply;
}

.top-strength__work-item--laser .top-strength__work-info::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #099494;
  mix-blend-mode: multiply;
}

.top-strength__work-item--woodwork .top-strength__work-info::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f1b534;
  mix-blend-mode: multiply;
}

.top-strength__work-item--uvprint .top-strength__work-info::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #e76e90;
  mix-blend-mode: multiply;
}

.top-strength__work-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .top-strength__work-title {
    font-size: 2.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .top-strength__work-title {
    font-size: 18px;
  }
}

.top-strength__work-title::before {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 1/1;
  background: url(../img/top/top_ico_arr_white.svg) no-repeat center center/contain;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.top-strength__work-body {
  margin-top: 6px;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .top-strength__work-body {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .top-strength__work-body {
    font-size: 16px;
  }
}

.top-strength__material-btn {
  margin-top: 84px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .top-strength__material-btn {
    margin-top: 32px;
  }
}

.top-strength__material-btn a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 391px;
  aspect-ratio: 391/93;
  border: 1px solid #099494;
  color: #333333;
  text-decoration: none;
  font-size: 16px;
  padding-left: 24px;
}
@media screen and (max-width: 768px) {
  .top-strength__material-btn a {
    width: 100%;
    max-width: 391px;
    margin-inline: 20px;
    padding-left: 40px;
  }
}

.top-strength__material-btn a::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 87px;
  aspect-ratio: 87/59;
  background: url(../img/top/top_ico_material.png) no-repeat center center/contain;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (max-width: 420px) {
  .top-strength__material-btn a::before {
    width: 60px;
    left: 20px;
  }
}

@media (any-hover: hover) {
  .top-strength__material-btn a:hover::before {
    -webkit-transform: translateY(-50%) scale(1.15);
            transform: translateY(-50%) scale(1.15);
  }
}
.top-field {
  padding: 68px 0 120px;
}
@media screen and (max-width: 768px) {
  .top-field {
    padding: 60px 0 80px;
  }
}

.top-field__list {
  margin-top: 68px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .top-field__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 500px;
    margin-inline: auto;
    gap: 40px;
  }
}

.top-field__item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.top-field__item.js-scroll:nth-child(2) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

.top-field__image {
  width: 518px;
  aspect-ratio: 1034/610;
}
@media screen and (max-width: 1200px) {
  .top-field__image {
    width: 43.1666666667vw;
  }
}
@media screen and (max-width: 768px) {
  .top-field__image {
    width: 100%;
  }
}

.top-field__title {
  margin-top: 30px;
  color: #099494;
  font-size: 26px;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-field__title {
    margin-top: 16px;
    font-size: 18px;
  }
}

.top-field__body {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .top-field__body {
    margin-top: 12px;
  }
}

.top-sdgs {
  background: #ffeb94;
  padding: 96px 0 82px;
}
@media screen and (max-width: 768px) {
  .top-sdgs {
    padding: 50px 0;
  }
}

.top-sdgs__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 70px;
}
@media screen and (max-width: 1200px) {
  .top-sdgs__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
  }
}

.top-sdgs__text-area {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.top-sdgs__badge {
  margin-top: 8px;
  display: inline-block;
  border: 1px solid #333333;
  border-radius: 18px;
  padding: 10px 20px 10px 16px;
  font-size: 16px;
}

.top-sdgs__heading {
  margin-top: 20px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.7142857143;
}
@media screen and (max-width: 768px) {
  .top-sdgs__heading {
    margin-top: 16px;
    font-size: 24px;
    word-break: keep-all;
  }
}

.top-sdgs__subheading {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.7142857143;
}
@media screen and (max-width: 768px) {
  .top-sdgs__subheading {
    font-size: 24px;
  }
}

.top-sdgs__body {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 768px) {
  .top-sdgs__body {
    margin-top: 16px;
  }
}

.top-sdgs__btn {
  margin-top: 30px;
}
@media screen and (max-width: 1200px) {
  .top-sdgs__btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    margin-top: 40px;
  }
}

.top-sdgs__btn.--pc {
  display: block;
}
@media screen and (max-width: 1200px) {
  .top-sdgs__btn.--pc {
    display: none;
  }
}

.top-sdgs__btn.--sp {
  display: none;
}
@media screen and (max-width: 1200px) {
  .top-sdgs__btn.--sp {
    display: block;
  }
}

.top-sdgs__btn a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  width: 320px;
  height: 69px;
  border: 1px solid #ff0211;
  background: #fff;
  color: #333333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .top-sdgs__btn a {
    width: 100%;
    height: auto;
    padding: 14px 24px;
    font-size: 16px;
    line-height: 1.2;
  }
}

.top-sdgs__btn a::before {
  content: "";
  display: block;
  width: 35px;
  aspect-ratio: 1/1;
  background: url(../img/top/top_ico_mercari.svg) no-repeat center center/contain;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-transition: scale 0.3s;
  transition: scale 0.3s;
}

@media (any-hover: hover) {
  .top-sdgs__btn.--pc a:hover::before {
    scale: 1.15;
  }
}
.top-sdgs__btn a::after {
  content: "";
  display: block;
  width: 6px;
  aspect-ratio: 6/8;
  background: url(../img/top/top_ico_arr_mercari.svg) no-repeat center center/contain;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.top-sdgs__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}
@media screen and (max-width: 1200px) {
  .top-sdgs__images {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.top-sdgs__images img {
  width: 215px;
}
@media screen and (max-width: 768px) {
  .top-sdgs__images img {
    width: 100%;
  }
}

.top-sdgs__images img.js-scroll:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}

.top-sdgs__images img.js-scroll:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.top-sdgs__images img.js-scroll:nth-child(4) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.top-instagram {
  padding: 160px 0 110px;
}
.top-instagram h2 {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .top-instagram {
    padding: 60px 0 80px;
  }
}

.top-instagram__grid {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 200px);
  gap: 34px;
}
@media screen and (max-width: 1200px) {
  .top-instagram__grid {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .top-instagram__grid {
    width: 100%;
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.top-instagram__item {
  width: 200px;
  height: 200px;
  background: #d0d0d0;
}
@media screen and (max-width: 1200px) {
  .top-instagram__item {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 768px) {
  .top-instagram__item {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
}

.top-instagram__item.js-scroll:nth-child(2) {
  -webkit-transition-delay: 0.06s;
          transition-delay: 0.06s;
}

.top-instagram__item.js-scroll:nth-child(3) {
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
}

.top-instagram__item.js-scroll:nth-child(4) {
  -webkit-transition-delay: 0.18s;
          transition-delay: 0.18s;
}

.top-instagram__item.js-scroll:nth-child(5) {
  -webkit-transition-delay: 0.24s;
          transition-delay: 0.24s;
}

.top-instagram__item.js-scroll:nth-child(6) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.top-instagram__item.js-scroll:nth-child(7) {
  -webkit-transition-delay: 0.36s;
          transition-delay: 0.36s;
}

.top-instagram__item.js-scroll:nth-child(8) {
  -webkit-transition-delay: 0.42s;
          transition-delay: 0.42s;
}

.top-instagram__bnr-area {
  margin-top: 110px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 1200px) {
  .top-instagram__bnr-area {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .top-instagram__bnr-area {
    margin-top: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}

.top-instagram__bnr img {
  display: block;
  max-width: 100%;
  height: auto;
}

.top-instagram__bnr:first-child img {
  width: 387px;
}
@media screen and (max-width: 1200px) {
  .top-instagram__bnr:first-child img {
    width: 30.8333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .top-instagram__bnr:first-child img {
    width: 100%;
    max-width: 387px;
  }
}

@media screen and (max-width: 1200px) {
  .top-instagram__bnr:last-child img {
    width: 20vw;
  }
}
@media screen and (max-width: 768px) {
  .top-instagram__bnr:last-child img {
    width: 100%;
    max-width: 256px;
  }
}

.company-greeting {
  padding: 110px 0 80px;
}
@media screen and (max-width: 768px) {
  .company-greeting {
    padding: 50px 0 60px;
  }
}

.company-greeting__image {
  width: 100%;
  aspect-ratio: 1680/821;
}

.company-greeting .section-title {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .company-greeting .section-title {
    margin-top: 32px;
  }
}

.company-greeting__message {
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .company-greeting__message {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .company-greeting__message {
    margin-top: 40px;
  }
}

.company-greeting__text {
  color: #333333;
  font-size: 16px;
  line-height: 1.875;
}

.company-greeting__illustration {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 508px;
  aspect-ratio: 1017/801;
}
@media screen and (max-width: 1200px) {
  .company-greeting__illustration {
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
  }
}

.company-info {
  padding: 70px 0 170px;
}
@media screen and (max-width: 768px) {
  .company-info {
    padding: 60px 0 80px;
  }
}

.company-info__image {
  margin-top: 60px;
  width: 100%;
  aspect-ratio: 1680/714;
}
@media screen and (max-width: 768px) {
  .company-info__image {
    margin-top: 32px;
  }
}

.company-info__table {
  margin-top: 46px;
  display: grid;
  grid-template-columns: 186px 1fr;
}
@media screen and (max-width: 768px) {
  .company-info__table {
    margin-top: 32px;
    grid-template-columns: 1fr;
  }
}

.company-info__dt {
  padding: 15px 0 15px 24px;
  color: #099494;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 700;
  border-bottom: 1px solid #099494;
}
@media screen and (max-width: 768px) {
  .company-info__dt {
    padding: 15px 0 4px;
    border-bottom: none;
  }
}

.company-info__dd {
  padding: 15px 0 15px 24px;
  color: #333333;
  font-size: 18px;
  line-height: 1.6;
  border-bottom: 1px solid #cbcbcb;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  word-break: keep-all;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .company-info__dd {
    padding: 0 0 15px;
  }
}

.company-info__map {
  margin-top: 60px;
  width: 100%;
  aspect-ratio: 12/5;
}
@media screen and (max-width: 768px) {
  .company-info__map {
    margin-top: 32px;
    aspect-ratio: 4/3;
  }
}

.company-info__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.materials-lead {
  padding: 140px 0 170px;
}
@media screen and (max-width: 768px) {
  .materials-lead {
    padding: 40px 0 60px;
  }
}

.materials-lead .material-list {
  margin-top: 58px;
}
@media screen and (max-width: 768px) {
  .materials-lead .material-list {
    margin-top: 32px;
  }
}

.materials .sub-notes {
  margin-top: 60px;
  padding: 34px 34px 46px;
}
@media screen and (max-width: 768px) {
  .materials .sub-notes {
    margin-top: 40px;
    padding: 28px 12px 32px;
    word-break: keep-all;
  }
}

@media screen and (max-width: 1024px) {
  .material-list {
    max-width: 500px;
    margin-inline: auto;
  }
}

.material-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 70px;
}
@media screen and (max-width: 1024px) {
  .material-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}

.material-item + .material-item {
  margin-top: 60px;
}

.material-item__image {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 320px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 1024px) {
  .material-item__image {
    width: 100%;
  }
}

.material-item__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  color: #333333;
  font-size: 22px;
  font-weight: 500;
  border-bottom: 1px solid #099494;
}
@media screen and (max-width: 768px) {
  .material-item__title {
    gap: 10px;
    padding-bottom: 16px;
    font-size: 17px;
  }
}

.material-item__title::before {
  content: "";
  display: block;
  width: 9px;
  aspect-ratio: 1/1;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  background-color: #099494;
  border-radius: 50%;
}

.material-item__text {
  margin-top: 26px;
  color: #333333;
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .material-item__text {
    margin-top: 20px;
  }
}

.materials-uvprint {
  padding: 170px 0;
  background-color: #eff7f6;
}
@media screen and (max-width: 768px) {
  .materials-uvprint {
    padding: 50px 0 60px;
  }
}

.materials-uvprint__text {
  margin-top: 50px;
  color: #333333;
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .materials-uvprint__text {
    max-width: 500px;
    margin-inline: auto;
    margin-top: 32px;
    text-align: left;
  }
}
.materials-uvprint .material-list {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .materials-uvprint .material-list {
    margin-top: 32px;
  }
}

.materials-uvprint .sub-notes {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .materials-uvprint .sub-notes {
    margin-top: 40px;
  }
}

.woodwork-craftsman {
  padding: 110px 0 190px;
}
@media screen and (max-width: 768px) {
  .woodwork-craftsman {
    padding: 40px 0 60px;
  }
}

.woodwork-craftsman__image {
  width: 100%;
  aspect-ratio: 1680/821;
}

.woodwork-craftsman__text-area {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .woodwork-craftsman__text-area {
    margin-top: 32px;
  }
}

.woodwork-craftsman__text {
  color: #333333;
  font-size: 18px;
  line-height: 1.2777777778;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .woodwork-craftsman__text {
    font-size: 16px;
    text-align: left;
  }
}

.woodwork-craftsman__text + .woodwork-craftsman__text {
  margin-top: 23px;
}

.woodwork-craftsman__gallery {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 23px;
}
@media screen and (max-width: 768px) {
  .woodwork-craftsman__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 50px;
  }
}

.woodwork-craftsman__gallery-item {
  width: 100%;
  aspect-ratio: 522/368;
}

.woodwork-craftsman__app-notes.sub-notes {
  margin-top: 104px;
  padding: 32px 0 44px;
  background-color: #e2f2ef;
}
@media screen and (max-width: 768px) {
  .woodwork-craftsman__app-notes.sub-notes {
    margin-top: 32px;
  }
}

.woodwork-craftsman__app-title {
  color: #333333;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .woodwork-craftsman__app-title {
    font-size: 17px;
  }
}

.woodwork-craftsman__app-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 50px;
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .woodwork-craftsman__app-list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 40px;
    margin-top: 28px;
  }
}

.woodwork-craftsman__app-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.woodwork-craftsman__app-icon {
  height: 118px;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .woodwork-craftsman__app-icon {
    height: 52px;
  }
}

.woodwork-craftsman__app-icon img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.woodwork-craftsman__app-label {
  margin-top: 24px;
  color: #333333;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .woodwork-craftsman__app-label {
    margin-top: 8px;
    font-size: 14px;
  }
}

.laser-machine {
  padding: 110px 0 50px;
}
@media screen and (max-width: 768px) {
  .laser-machine {
    padding: 40px 0 60px;
  }
}

.laser-machine__image {
  width: 100%;
  aspect-ratio: 1680/821;
}

.laser-machine__title {
  margin-top: 44px;
  color: #099494;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .laser-machine__title {
    margin-top: 24px;
    font-size: 18px;
  }
}

.laser-machine__lead {
  margin-top: 34px;
  color: #333333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7222222222;
  text-align: center;
  word-break: keep-all;
}
@media screen and (max-width: 768px) {
  .laser-machine__lead {
    margin-top: 16px;
    font-size: 16px;
    text-align: left;
    word-break: normal;
  }
}

.laser-size__columns {
  margin-top: 90px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1200px) {
  .laser-size__columns {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 80px auto 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .laser-size__columns {
    max-width: 500px;
    margin: 40px auto 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
}

.laser-size__column {
  width: 50%;
}
@media screen and (max-width: 1200px) {
  .laser-size__column {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .laser-size__column {
    width: 100%;
  }
}

.sub-notes.laser-size__notes {
  padding: 30px 32px 24px;
}
@media screen and (max-width: 768px) {
  .sub-notes.laser-size__notes {
    padding: 24px 20px 28px;
  }
}

.laser-size__notes {
  height: 100%;
}

.laser-size__app-list {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px 50px;
}
@media screen and (max-width: 768px) {
  .laser-size__app-list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 24px 40px;
    margin-top: 28px;
  }
}

.laser-size__app-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.laser-size__app-icon {
  height: 118px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1200px) {
  .laser-size__app-icon {
    height: 9.8333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .laser-size__app-icon {
    width: 52px;
    height: 52px;
  }
}

.laser-size__app-icon img {
  width: auto;
  height: 100%;
  max-width: 100%;
}

.laser-size__app-label {
  margin-top: 24px;
  color: #333333;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .laser-size__app-label {
    margin-top: 8px;
    font-size: 14px;
  }
}

.laser-size__notes-text {
  margin-top: 30px;
  color: #333333;
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .laser-size__notes-text {
    margin-top: 24px;
    font-size: 14px;
  }
}

.laser-size__notes-text + .laser-size__notes-text {
  margin-top: 28px;
}

.laser-size__image {
  margin-top: 50px;
  width: 100%;
  max-width: 406px;
  aspect-ratio: 798/695;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .laser-size__image {
    margin-top: 24px;
  }
}

.laser-size__link {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .laser-size__link {
    margin-top: 20px;
  }
}

.laser-size__link a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .laser-size__link a {
    font-size: 14px;
  }
}

.laser-size__link a::before {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 1/1;
  background: url(../../../img/common/arrow-green.svg) no-repeat center center/contain;
  margin-right: 8px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

@media (any-hover: hover) {
  .laser-size__link a:hover {
    color: #099494;
  }
}
.laser-feature {
  padding: 50px 0 50px;
}
@media screen and (max-width: 768px) {
  .laser-feature {
    padding: 40px 0 60px;
  }
}

.laser-feature__list {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .laser-feature__list {
    margin-top: 32px;
  }
}

.laser-feature__list li {
  position: relative;
  padding-left: 28px;
  color: #333333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7222222222;
}
@media screen and (max-width: 768px) {
  .laser-feature__list li {
    padding-left: 14px;
    font-size: 16px;
  }
}

.laser-feature__list li::before {
  content: "";
  position: absolute;
  top: 0.5lh;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 9px;
  aspect-ratio: 1/1;
  background-color: #099494;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .laser-feature__list li::before {
    width: 7px;
  }
}

.laser-feature__list li + li {
  margin-top: 8px;
}

.laser-feature__gallery {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 24px;
}
@media screen and (max-width: 768px) {
  .laser-feature__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 32px;
  }
}

.laser-feature__gallery-item {
  width: 100%;
  aspect-ratio: 522/368;
}

.laser-work {
  padding: 40px 0 174px;
}
@media screen and (max-width: 768px) {
  .laser-work {
    padding: 40px 0 80px;
  }
}

.laser-work__lead {
  margin-top: 30px;
  color: #333333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7222222222;
  text-align: center;
  word-break: keep-all;
}
@media screen and (max-width: 768px) {
  .laser-work__lead {
    margin-top: 20px;
    font-size: 16px;
    text-align: left;
    word-break: normal;
  }
}

.laser-work__gallery {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
@media screen and (max-width: 768px) {
  .laser-work__gallery {
    width: 100%;
    gap: 12px;
    margin-top: 24px;
  }
}

.laser-work__gallery-item {
  width: 100%;
  max-width: 397px;
  aspect-ratio: 794/558;
}

.laser-combination {
  padding: 120px 0;
  background-color: #eff7f6;
}
@media screen and (max-width: 768px) {
  .laser-combination {
    padding: 40px 0 100px;
  }
}

.laser-combination__title {
  color: #099494;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .laser-combination__title {
    font-size: 18px;
  }
}

.laser-combination__list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
@media screen and (max-width: 1200px) {
  .laser-combination__list {
    max-width: 500px;
    margin: 60px auto 0;
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
@media screen and (max-width: 768px) {
  .laser-combination__list {
    margin: 40px auto 0;
    gap: 30px;
  }
}

.laser-combination__label {
  width: 100%;
  padding: 12px 20px 11px;
  background-color: #fff;
  border: 1px solid #099494;
  border-radius: 21px;
  color: #333333;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .laser-combination__label {
    padding: 8px 16px;
    font-size: 14px;
  }
}

.laser-combination__image {
  margin-top: 18px;
  width: 100%;
  aspect-ratio: 700/492;
}
@media screen and (max-width: 768px) {
  .laser-combination__image {
    margin-top: 12px;
  }
}

.uvprint-notice {
  padding: 116px 0 50px;
}
@media screen and (max-width: 768px) {
  .uvprint-notice {
    padding: 40px 0 20px;
  }
}

.uvprint-notice__image {
  width: 100%;
  aspect-ratio: 1680/821;
}

.uvprint-notice__box {
  margin-top: 58px;
  padding: 26px 30px 20px;
  background-color: #fffdea;
  border: 2px solid #f8bc24;
}
@media screen and (max-width: 768px) {
  .uvprint-notice__box {
    margin-top: 32px;
    padding: 28px 20px 32px;
  }
}

.uvprint-notice__title {
  padding-bottom: 20px;
  color: #f8bc24;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid #f8bc24;
}
@media screen and (max-width: 768px) {
  .uvprint-notice__title {
    padding-bottom: 16px;
    font-size: 17px;
  }
}

.uvprint-notice__text {
  margin-top: 16px;
  color: #333333;
  font-size: 18px;
  line-height: 1.7222222222;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .uvprint-notice__text {
    margin-top: 16px;
    font-size: 16px;
    text-align: left;
  }
}

.uvprint-machine {
  padding: 50px 0 40px;
}
@media screen and (max-width: 768px) {
  .uvprint-machine {
    padding: 40px 0 60px;
  }
}

.uvprint-machine__title {
  color: #099494;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .uvprint-machine__title {
    font-size: 18px;
  }
}

.uvprint-machine__lead {
  margin-top: 36px;
  color: #333333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7222222222;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .uvprint-machine__lead {
    margin-top: 16px;
    text-align: left;
  }
}

.uvprint-machine__notes {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .uvprint-machine__notes {
    margin-top: 40px;
  }
}

.uvprint-machine__app-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 50px;
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .uvprint-machine__app-list {
    gap: 40px;
    margin-top: 28px;
  }
}

.uvprint-machine__app-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.uvprint-machine__app-icon {
  width: 97px;
  aspect-ratio: 192/232;
}
@media screen and (max-width: 768px) {
  .uvprint-machine__app-icon {
    width: 52px;
  }
}

.uvprint-machine__app-label {
  margin-top: 24px;
  color: #333333;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .uvprint-machine__app-label {
    margin-top: 8px;
  }
}

.uvprint-machine__notes-list {
  margin-top: 30px;
  padding-right: 6px;
}
@media screen and (max-width: 768px) {
  .uvprint-machine__notes-list {
    margin-top: 28px;
  }
}

.uvprint-machine__notes-list li {
  position: relative;
  padding-left: 26px;
  color: #333333;
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .uvprint-machine__notes-list li {
    padding-left: 20px;
  }
}

.uvprint-machine__notes-list li::before {
  content: "";
  position: absolute;
  top: 0.5lh;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 10px;
  width: 5px;
  height: 5px;
  background-color: #333333;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .uvprint-machine__notes-list li::before {
    left: 5px;
  }
}

.uvprint-machine__notes-annotation {
  display: block;
  margin-top: 4px;
  padding-bottom: 10px;
  color: #333333;
  font-size: 14px;
}

.uvprint-paint__notes {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .uvprint-paint__notes {
    margin-top: 40px;
  }
}

.uvprint-paint__list {
  margin-top: 46px;
}
@media screen and (max-width: 768px) {
  .uvprint-paint__list {
    margin-top: 28px;
  }
}

.uvprint-paint__item + .uvprint-paint__item {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .uvprint-paint__item + .uvprint-paint__item {
    margin-top: 28px;
  }
}

.uvprint-paint__item-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #099494;
  font-size: 20px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .uvprint-paint__item-title {
    font-size: 16px;
  }
}

.uvprint-paint__item-title::before {
  content: "";
  display: block;
  width: 9px;
  aspect-ratio: 1/1;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  background-color: #099494;
  border-radius: 50%;
}

.uvprint-paint__item-text {
  margin-top: 10px;
  color: #333333;
  font-size: 16px;
  line-height: 1.75;
}

.uvprint-paint__image-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .uvprint-paint__image-list {
    max-width: 500px;
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }
}

.uvprint-paint__image-item {
  width: 100%;
  aspect-ratio: 3/2;
}

.uvprint-size__notes {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .uvprint-size__notes {
    margin-top: 40px;
  }
}

.uvprint-size__columns {
  margin-top: 35px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
}
@media screen and (max-width: 1024px) {
  .uvprint-size__columns {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    margin-top: 28px;
  }
}

.uvprint-size__column {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .uvprint-size__column {
    width: 100%;
  }
}

.uvprint-size__box {
  background-color: #fff;
  padding: 28px 30px 28px;
}

.uvprint-size__badge {
  width: 350px;
  padding: 11px 24px 12px;
  margin-inline: auto;
  background-color: #fff;
  border: 1px solid #099494;
  border-radius: 21px;
  color: #333333;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .uvprint-size__badge {
    width: 100%;
    max-width: 220px;
    padding: 8px 20px;
    font-size: 15px;
  }
}

.uvprint-size__image {
  margin-top: 20px;
  width: 100%;
  aspect-ratio: 1016/858;
}
@media screen and (max-width: 768px) {
  .uvprint-size__image {
    margin-top: 24px;
  }
}

.uvprint-size__link {
  margin-top: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .uvprint-size__link {
    margin-top: 20px;
  }
}

.uvprint-size__link a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (max-width: 768px) {
  .uvprint-size__link a {
    font-size: 14px;
  }
}

.uvprint-size__link a::before {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 1/1;
  background: url(../../../img/common/arrow-green.svg) no-repeat center center/contain;
  margin-right: 8px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

@media (any-hover: hover) {
  .uvprint-size__link a:hover {
    color: #099494;
  }
}
.uvprint-feature {
  padding: 40px 0 170px;
}
@media screen and (max-width: 768px) {
  .uvprint-feature {
    padding: 40px 0 80px;
  }
}

.uvprint-feature__body {
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .uvprint-feature__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    margin-top: 32px;
  }
}

.uvprint-feature__list {
  width: 750px;
}
@media screen and (max-width: 768px) {
  .uvprint-feature__list {
    width: 100%;
  }
}

.uvprint-feature__list li {
  position: relative;
  padding-left: 24px;
  color: #333333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .uvprint-feature__list li {
    padding-left: 14px;
    font-size: 16px;
  }
}

.uvprint-feature__list li::before {
  content: "";
  position: absolute;
  top: 0.5lh;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 8px;
  aspect-ratio: 1/1;
  background-color: #099494;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .uvprint-feature__list li::before {
    width: 6px;
  }
}

.uvprint-feature__list li + li {
  margin-top: 8px;
}

.uvprint-feature__image-list {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 267px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .uvprint-feature__image-list {
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
  }
}

.uvprint-feature__image-item {
  width: 100%;
  aspect-ratio: 534/504;
}

.uvprint-feature__gallery {
  margin-top: 76px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 23px;
}
@media screen and (max-width: 768px) {
  .uvprint-feature__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 32px;
  }
}

.uvprint-feature__gallery-item {
  width: 100%;
  aspect-ratio: 522/368;
}

.inner {
  width: 100%;
  max-width: 1200px;
  padding-inline: 40px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-inline: 20px;
  }
}

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

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

.btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.btn a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 302px;
  padding: 20px 24px;
  border: 1.5px solid #099494;
  border-radius: 50px;
  -webkit-box-shadow: 0 5px 0 0 #f8bc24;
          box-shadow: 0 5px 0 0 #f8bc24;
  color: #333333;
  font-size: 16px;
  -webkit-transition: translate 0.15s, -webkit-box-shadow 0.15s;
  transition: translate 0.15s, -webkit-box-shadow 0.15s;
  transition: translate 0.15s, box-shadow 0.15s;
  transition: translate 0.15s, box-shadow 0.15s, -webkit-box-shadow 0.15s;
}
@media screen and (max-width: 768px) {
  .btn a {
    width: 280px;
    font-size: 15px;
    padding: 13px 44px;
  }
}

@media (any-hover: hover) {
  .btn a:hover {
    translate: 0 5px;
    -webkit-box-shadow: 0 0 0 0 #f8bc24;
            box-shadow: 0 0 0 0 #f8bc24;
  }
}
.btn a::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 14px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: url(../img/common/arrow-green.svg) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .btn a::before {
    width: 12px;
  }
}

.section-title {
  text-align: center;
  color: #099494;
  font-size: 32px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
}

.section-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background-color: #f8bc24;
  margin-top: 26px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .section-title::after {
    width: 48px;
    margin-top: 18px;
  }
}

.sub-title {
  width: 100%;
  padding: 18px 24px;
  border: 1px solid #099494;
  border-radius: 30px;
  color: #099494;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sub-title {
    padding: 8px 16px;
    font-size: 18px;
    line-height: 1.2;
  }
}

.page-fv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 200px;
  background-color: #099494;
}
@media screen and (max-width: 768px) {
  .page-fv {
    height: 100px;
  }
}

.page-fv__title {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-fv__title {
    font-size: 24px;
  }
}

.sub-notes {
  background-color: #eff7f6;
  padding: 30px 34px 40px;
}
@media screen and (max-width: 768px) {
  .sub-notes {
    padding: 32px 20px 36px;
  }
}

.sub-notes--white {
  background-color: #fff;
}

.sub-notes__title {
  padding-bottom: 18px;
  color: #333333;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid #099494;
}
@media screen and (max-width: 768px) {
  .sub-notes__title {
    padding-bottom: 16px;
    font-size: 18px;
  }
}

.sub-notes__text {
  margin-top: 24px;
  color: #333333;
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sub-notes__text {
    margin-top: 16px;
  }
}