@charset "UTF-8";
/* Foundation */
@import 'https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap';
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
hr,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  vertical-align: baseline;
  outline: 0;
}

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

body {
  text-size-adjust: 100%; /* for iOS, Android */
}

li {
  list-style-type: none;
}

a,
button {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent; /* for iOS, Android */
}

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

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

caption,
th {
  text-align: left;
}

button {
  padding: 0;
  background-color: transparent;
  border-style: none;
  border-radius: 0;
  line-height: 1;
  cursor: pointer;
  appearance: none;
}

input,
select,
textarea {
  padding: 0;
  background-color: transparent;
  border-style: none;
  border-radius: 0;
  font-family: inherit;
  line-height: 1;
  appearance: none;
}

strong,
em,
b {
  font-weight: 700;
  font-style: normal;
}

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

@media (max-width: 768.99px) {
  html {
    overflow-x: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }
  html::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }
}

body {
  width: 100%;
  height: auto;
  overflow-x: clip;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  font-family: vdl-v7marugothic, sans-serif;
  font-style: normal;
  color: #2d2d2d;
  letter-spacing: 0.1em;
  text-align: center;
  font-weight: 600;
  margin: 0 auto;
}
body.is-open {
  overflow-y: hidden;
}

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

/* Layout */
.l-header {
  position: relative;
  display: flex;
  align-items: center;
  height: 3.75em;
  background-image: url("../images/bg_dusu02.png");
  background-size: 30% auto;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768.99px) {
  .l-header {
    background-size: 80% auto;
  }
}
.l-header__title {
  margin: 0 auto;
  font-size: 0.9375em;
  font-weight: bold;
  color: #222;
}
.l-header__title span {
  display: inline;
}
@media (max-width: 768.99px) {
  .l-header__title span {
    display: block;
    line-height: 1.2;
  }
}
@media (max-width: 768.99px) {
  .l-header__title span:first-of-type {
    font-size: 0.625em;
  }
}
@media (max-width: 768.99px) {
  .l-header__title span:last-of-type {
    font-size: 1em;
    display: inline;
  }
}
.l-header__hbg {
  position: fixed;
  top: 2rem;
  right: 1rem;
  z-index: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 2.5em;
  transform: translateY(-50%);
  background-color: #fff;
  background-size: 50px;
  border-radius: 50%;
}
.l-header__hbg-line {
  position: relative;
  display: block;
  width: 1.875em;
  height: 0.1875em;
  background-color: #222;
  border-radius: 0.125em;
  transition: ease-in-out 0.5s;
}
.l-header__hbg-line::before {
  position: absolute;
  top: -0.4375em;
  left: 0;
  display: block;
  width: 1.875em;
  height: 0.1875em;
  background-color: #222;
  border-radius: 0.125em;
  content: "";
  transition: ease-in-out 0.5s;
  transform: translateY(-50%);
}
.l-header__hbg-line::after {
  position: absolute;
  top: 0.625em;
  left: 0;
  display: block;
  width: 1.875em;
  height: 0.1875em;
  background-color: #222;
  border-radius: 0.125em;
  content: "";
  transition: ease-in-out 0.5s;
  transform: translateY(-50%);
}
.l-header__hbg-line.is-open {
  background-color: rgba(34, 34, 34, 0);
}
.l-header__hbg-line.is-open::before {
  top: 0;
  transform: translateY(0) rotate(45deg);
}
.l-header__hbg-line.is-open::after {
  top: 0;
  transform: translateY(0) rotate(-45deg);
}
@media (max-width: 768.99px) {
  .l-header__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 800;
  }
  body.is-open .l-header__overlay {
    opacity: 1;
    pointer-events: auto;
  }
}
.l-header__nav {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 800;
  width: 60dvw;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(30px) scale(0.95);
  object-fit: contain;
  font-size: 0.83em;
  font-weight: 600;
  color: #2d2d2d;
}
@media (max-width: 768.99px) {
  .l-header__nav {
    overflow: scroll;
  }
}
.l-header__nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.l-header__nav-list {
  height: auto;
  padding: 1em;
  border-radius: 5px;
  background-color: #fff;
}
@media (min-width: 769px) {
  .l-header__nav-list {
    padding: 0.3em 0.3em 0.1em;
    margin-left: 0;
    opacity: 1;
    background-color: #fff;
  }
}
.l-header__nav-list li {
  background: #f6f6f6;
  border-radius: 5px;
  margin: 8px 0;
  padding: 7px 3px;
  text-align: center;
}
@media (max-width: 768.99px) {
  .l-header__nav-list li {
    padding: 12px 3px;
  }
}
.l-header__nav-list li:hover {
  background: #e0e0e0;
}
.l-header__nav-list li a {
  display: block;
  width: 100%;
  height: 100%;
}
.l-header__nav-list li:first-child {
  background: none;
  margin: 0;
  padding: 0;
}
.l-header__nav-list li:nth-child(8), .l-header__nav-list li:nth-child(9) {
  background: orange;
  color: #fff;
}
.l-header__nav-list li:nth-child(8) a, .l-header__nav-list li:nth-child(9) a {
  color: #fff;
}
.l-header__nav-list li:nth-child(8):hover, .l-header__nav-list li:nth-child(9):hover {
  background: darkorange;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 769px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 75px;
    height: 100dvh;
    transform: translateY(13%);
    clip-path: inset(100% 0 0 0);
    transition: clip-path 0.1s linear, opacity 0.6s ease;
    margin-left: 50px;
    opacity: 0;
    pointer-events: auto;
    line-height: 1.2;
  }
  .l-header__nav span {
    display: inline-block;
  }
  .l-header__nav .small {
    font-size: 0.69rem;
    letter-spacing: 0.01em;
    text-align: justify;
  }
  .l-header__nav .request-materials {
    display: flex;
    flex-direction: column;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.2;
  }
  .l-header__nav .request-materials > span {
    flex: 0 0 auto;
    display: flex;
    gap: 0.2em;
    margin: auto;
  }
  .l-header__nav.is-visible {
    display: block;
    opacity: 1;
    clip-path: inset(0 0 0 0);
    pointer-events: auto;
    visibility: visible;
  }
}
@media (min-width: 769px) {
  .l-header__hbg {
    display: none;
  }
}

@media (min-width: 769px) {
  .l-section {
    max-width: min(100dvw, 75em);
    margin: 0 auto;
  }
}

.lazy-load {
  opacity: 0;
  transform: translateY(10px); /* 下に少しずらす */
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.lazy-load.loaded {
  opacity: 1;
}

.l-footer {
  width: 100%;
}
.l-footer__bg {
  background-color: #ebebeb;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.l-footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  line-height: 1.5;
}
@media (max-width: 768.99px) {
  .l-footer__inner {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
}
.l-footer__access {
  flex: 1;
  text-align: left;
}
@media (max-width: 768.99px) {
  .l-footer__access {
    text-align: center;
  }
}
.l-footer__access p:first-of-type {
  background-color: #000;
  color: #fff;
  font-weight: bold;
  padding: 0.3em 1em;
  display: inline-block;
  border-radius: 5px;
  margin-bottom: 1rem;
}
.l-footer__tel {
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 1rem;
}
@media (max-width: 768.99px) {
  .l-footer__tel {
    margin-bottom: 1rem;
  }
}
.l-footer__nav {
  flex: 1;
}
@media (max-width: 768.99px) {
  .l-footer__nav {
    width: 100%;
  }
}
.l-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.l-footer__nav-list a {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fff;
  color: #000;
  padding: 1rem;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.l-footer__nav-list a:hover {
  background-color: #fdbb63;
}
.l-footer__nav-list a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.3s;
}
.l-footer__copy {
  text-align: center;
  font-size: 0.75rem;
  color: #666;
  background: #fff;
  padding: 1rem;
  font-weight: 500;
}

/* Object */
/* Project */
.p-nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-nav__menu a {
  display: inline-flex;
  align-items: center;
}
.p-nav__menu a::before {
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-right: 8px;
  background-color: #222;
  content: "";
  transform: translateY(1px);
}
.p-nav__menu .p-nav__button--no-border::before, .p-nav__menu .p-nav__button--no-border::after {
  display: none;
}

.p-parallax {
  height: 100vh;
  overflow: hidden;
}
.p-parallax__text-wrapper {
  height: 100vh;
}
.p-parallax__text {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-align: center;
}

.p-content {
  padding: 100px;
  background: #f5f5f5;
}

.p-section__keyvisual {
  margin-top: unset;
}

@media (min-width: 769px) {
  .p-section__gridSlider {
    max-width: min(100dvw, 80em);
    margin: 12.5em auto 0;
  }
}

.p-section__accordion {
  max-width: min(100dvw, 80em);
  margin: 12.5em auto 0;
}

.p-embla-wrapper {
  flex: 0 0 80%;
  width: 85%;
  margin: auto;
  margin-inline: 1.25em;
  border: 10px solid #fff;
  background: #FFE6DE;
  border-radius: 1.875em;
  padding: 0.625em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 769px) {
  .p-embla-wrapper {
    max-width: 650px;
    margin: auto;
  }
}
.p-embla-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5em;
}
.p-embla-wrapper .p-embla-box {
  border-radius: 0.625em;
  background-color: #fff;
}

.p-kv .p-embla {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 1.25em;
  margin: auto;
  aspect-ratio: 20/11;
  position: relative;
}
@media (max-width: 768.99px) {
  .p-kv .p-embla {
    width: 90%;
    height: 70vh;
    aspect-ratio: 50/79;
  }
}
.p-kv .p-embla__slide {
  flex: 0 0 100%;
  min-width: 0;
  position: relative;
}
.p-kv .p-embla__slide img {
  aspect-ratio: 20/11;
  width: 100%;
}
@media (max-width: 768.99px) {
  .p-kv .p-embla__slide img {
    aspect-ratio: 50/79;
  }
}
.p-kv .p-embla__caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  writing-mode: horizontal-tb;
  color: white;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  z-index: 2;
}
@media (max-width: 768.99px) {
  .p-kv .p-embla__caption {
    width: 100%;
    font-size: 3.5rem;
    line-height: 1.4;
  }
}
.p-kv .p-embla__caption h2 img {
  margin-top: 6px;
  width: 10%;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.6));
}
.p-kv .p-embla__caption .kv_small {
  font-size: 2.2rem;
}
@media (max-width: 768.99px) {
  .p-kv .p-embla__caption .kv_small {
    font-size: 2.6rem;
  }
}

.p-embla {
  position: relative;
  overflow: hidden;
}
@media (min-width: 769px) {
  .p-embla__viewport {
    display: contents;
  }
}
.p-embla__container {
  display: flex;
}
.p-embla__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin-top: 1em;
}
.p-embla__slide {
  flex: 0 0 100%;
  min-width: 0;
}
.p-embla__prev, .p-embla__next {
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.125em 0.375em rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, color 0.3s;
  margin-bottom: 0.3em;
}
.p-embla--1 .p-embla__container .p-embla__slide, .p-embla--2 .p-embla__container .p-embla__slide {
  flex: 0 0 50%;
  margin-right: 1.25em;
}
@media (max-width: 768.99px) {
  .p-embla--1 .p-embla__container .p-embla__slide, .p-embla--2 .p-embla__container .p-embla__slide {
    flex: 0 0 100%;
  }
}
.p-embla--1 .p-embla__container .p-embla__slide img, .p-embla--2 .p-embla__container .p-embla__slide img {
  width: 100%;
  height: auto;
}
@media (min-width: 769px) {
  .p-embla--2 .p-embla__container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4.375em;
    margin-inline: 4.375em;
  }
}
@media (min-width: 769px) {
  .p-embla--2 .p-embla__container .p-embla__slide {
    margin-right: 0;
  }
}
.p-embla--3 .p-embla__container {
  display: flex;
  gap: 3.125em;
  align-items: start;
}
@media (max-width: 768.99px) {
  .p-embla--3 .p-embla__container {
    gap: 0.625em;
  }
}
.p-embla--3 .p-embla__container .p-embla__slide {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 80px;
}
@media (max-width: 768.99px) {
  .p-embla--3 .p-embla__container .p-embla__slide {
    width: 50px;
  }
}
.p-embla--3 .p-embla__container .p-embla__slide .p-embla__contents {
  display: grid;
  box-sizing: border-box;
  padding: 1.25em;
  gap: 0.0625em 1.25em;
  grid-template-areas: "image title" "image text";
}
@media (max-width: 768.99px) {
  .p-embla--3 .p-embla__container .p-embla__slide .p-embla__contents {
    grid-template-areas: "title" "image" "text";
    padding: 0.625em;
  }
}
.p-embla--3 .p-embla__container .p-embla__slide .p-embla__contents h3 {
  grid-area: title;
  font-size: 1.3rem;
  font-weight: bold;
  align-content: center;
}
.p-embla--3 .p-embla__container .p-embla__slide .p-embla__contents img {
  grid-area: image;
  aspect-ratio: 4/3;
  border-radius: 15px;
  object-fit: cover;
}
@media (min-width: 769px) {
  .p-embla--3 .p-embla__container .p-embla__slide .p-embla__contents img {
    width: 250px;
    height: 187px;
  }
}
.p-embla--3 .p-embla__container .p-embla__slide .p-embla__contents p {
  grid-area: text;
  font-size: 0.8rem;
  text-align: left;
  font-weight: 600;
  margin: 0 auto;
}
@media (max-width: 768.99px) {
  .p-embla--3 .p-embla__container .p-embla__slide .p-embla__contents p {
    padding-top: 1em;
  }
}
.p-embla--4 .p-embla__viewport {
  overflow: hidden;
  padding-inline: 1.25em;
}
.p-embla--4 .p-embla__container {
  display: flex;
}
.p-embla--4 .p-embla__container .p-embla__slide {
  flex: 0 0 15%;
  margin-right: 1em;
}
@media (max-width: 768.99px) {
  .p-embla--4 .p-embla__container .p-embla__slide {
    flex: 0 0 70%;
    margin-right: 1em;
  }
}
.p-embla--4 .p-embla__container .p-embla__slide img {
  aspect-ratio: 243/538;
}
@media (max-width: 768.99px) {
  .p-embla--img1 img {
    aspect-ratio: 396/449;
  }
}
@media (max-width: 768.99px) {
  .p-embla--img2 img {
    aspect-ratio: 396/493;
  }
}
@media (max-width: 768.99px) {
  .p-embla--img3 img {
    aspect-ratio: 359/465;
  }
}
.p-embla__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625em;
  flex-wrap: wrap;
}
@media (max-width: 768.99px) {
  .p-embla__dots {
    max-width: 16.25em;
  }
}
.p-embla__dot {
  width: 0.625em;
  height: 0.625em;
  border-radius: 50%;
  background-color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}
.p-embla__dot.is-selected {
  background-color: #8af98e;
}

.p-embla__dots--2 .p-embla__dots {
  padding-top: 0.5em;
}
.p-embla__dots--2 .p-embla__dot {
  width: 1.5625em;
  height: 1.5625em;
  margin-bottom: 1em;
  background-color: #fde7ae;
  border: 5px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0.125em 0.375em rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.p-embla__dots--2 .p-embla__dot.is-selected {
  background-color: #8af98e;
  box-shadow: 0 0.1875em 0.5em rgba(0, 0, 0, 0.3);
  transform: scale(1.1);
}

.triangle-right {
  width: 0;
  height: 0;
  border-top: 0.5625em solid transparent;
  border-bottom: 0.5625em solid transparent;
  border-left: 0.9375em solid #8af98e;
  margin-left: 0.3em;
}

.triangle-left {
  width: 0;
  height: 0;
  border-top: 0.5625em solid transparent;
  border-bottom: 0.5625em solid transparent;
  border-right: 0.9375em solid #8af98e;
  margin-left: -0.3em;
}

.shadow {
  margin: 0 auto 1rem auto;
  filter: drop-shadow(0.2rem 0.2rem 0.2rem rgba(0, 0, 0, 0.1));
  /* 	box-shadow: 0.4rem 0.4rem 0.45rem rgba(0, 0, 30, 0.3); */
}

/* Component */
.c-button {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768.99px) {
  .c-button {
    flex-direction: column;
    align-items: center;
  }
}
.c-button__item {
  display: inline-block;
  background-color: #fdbb63;
  color: #fff;
  width: 280px;
  padding: 0.8em 2.5em 0.8em 1.5em;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1rem;
  position: relative;
  text-decoration: none;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}
.c-button__item::after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 15px;
  height: 15px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.c-button__item:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.c-notice {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 32px;
  background-color: #f0e68c;
  color: #222;
}

.c-scrolldown {
  position: absolute;
  bottom: 2%;
  left: 50%;
  font-size: 0.7rem;
  color: #fff;
  transform: translateX(-50%);
}
.c-scrolldown a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-scrolldown a::before {
  position: absolute;
  top: 1.2em;
  display: block;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  content: "";
  animation: circlemove 2s ease-in-out infinite, cirlemovehide 2s ease-out infinite;
}
.c-scrolldown a::after {
  display: block;
  width: 2px;
  height: 35px;
  background-color: #fff;
  border-radius: 10px;
  content: "";
}

@keyframes circlemove {
  0% {
    top: 1.2em;
  }
  100% {
    top: 95%;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.c-accordion {
  margin-inline: 1.25em;
}
@media (min-width: 769px) {
  .c-accordion {
    margin-inline: 4.375em;
  }
}
.c-accordion__item {
  width: 100%;
  border: 1px solid #000;
}
.c-accordion__item:not(:last-child) {
  border-bottom: none;
}
.c-accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2em 0;
  padding-inline: 2.5em;
  cursor: pointer;
}
.c-accordion__title {
  font-size: 1.125em;
}
.c-accordion__icon {
  width: 2em;
  height: 2em;
  background-image: url("../images/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.6s ease;
}
.c-accordion__icon.is-open {
  background-image: url("../images/chevron-up.svg");
  transform: rotate(360deg);
}
.c-accordion__content {
  max-height: 0;
  padding: 0;
  overflow: hidden;
  border-top: none;
  transition: all 0.6s ease-out;
  padding-inline: 2.5em;
}
.c-accordion__content.is-open {
  max-height: 1000px;
  padding: 2em 0;
  border-top: 1px dashed #000;
  padding-inline: 2.5em;
}

.c-sp__innr {
  display: block;
}
@media (max-width: 768.99px) {
  .c-sp__innr {
    display: none;
  }
}

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

.c-pc {
  display: block;
}
@media (max-width: 768.99px) {
  .c-pc {
    display: none;
  }
}

.c-sp {
  display: none;
  padding-top: 2em;
  margin: -2em;
  text-align: center;
}
@media (max-width: 768.99px) {
  .c-sp {
    display: block;
  }
}

.c-sp-br {
  display: block;
}
@media (min-width: 769px) {
  .c-sp-br {
    display: none;
  }
}

@media (max-width: 768.99px) {
  .c-sp__break h2:nth-of-type(1) {
    display: none;
  }
}
.c-sp__break h2:nth-of-type(2) {
  display: none;
}
@media (max-width: 768.99px) {
  .c-sp__break h2:nth-of-type(2) {
    display: block;
  }
}
@media (max-width: 768.99px) {
  .c-sp__break h3:nth-of-type(1) {
    display: none;
  }
}
.c-sp__break h3:nth-of-type(2) {
  display: none;
}
@media (max-width: 768.99px) {
  .c-sp__break h3:nth-of-type(2) {
    display: block;
  }
}
@media (max-width: 768.99px) {
  .c-sp__break p:nth-of-type(1) {
    display: none;
  }
}
.c-sp__break p:nth-of-type(2) {
  display: none;
}
@media (max-width: 768.99px) {
  .c-sp__break p:nth-of-type(2) {
    display: block;
  }
}

.c-sp-contents {
  display: block;
  margin-left: 1em;
  margin-right: 1em;
  text-align: center;
}
@media (min-width: 769px) {
  .c-sp-contents {
    display: none;
  }
}
.c-sp-contents__box {
  padding: 1em;
  border: 4px solid #e3e3e3;
  text-align: center;
  border-radius: 20px;
}
.c-sp-contents__box h3 {
  letter-spacing: 0.5em;
  font-weight: 200;
  font-size: 1.1rem;
  margin-bottom: 1em;
}
.c-sp-contents__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-sp-contents__list > li {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.5em 0;
}
.c-sp-contents__list > li a {
  text-decoration: none;
  color: inherit;
}
.c-sp-contents__list > li ul {
  margin-top: 0.5em;
  padding-left: 1em;
}
.c-sp-contents__list > li ul li {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.4;
  margin: 2em 0;
}
.c-sp-contents__list > li ul li a {
  display: inline-block;
  padding: 0.2em 0;
}

.c-fixed-footer {
  position: fixed;
  width: 100%;
  gap: 0.5rem;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  z-index: 700;
  padding: 0.5rem 0.5rem;
  background-color: #FFB59E;
  border-top: 1px solid #ddd;
  overflow-x: auto;
  overflow-y: hidden;
}
@media (min-width: 769px) {
  .c-fixed-footer {
    display: none;
  }
}
.c-fixed-footer__btn {
  position: relative;
  display: inline-flex;
  white-space: nowrap;
  text-align: center;
  padding: 0.5em 0.5em 0.5em 2em;
  margin: 0.2em 0 0.1em;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: bold;
  background-color: #fff;
  text-decoration: none;
  border-right: 1px solid #fff;
  white-space: nowrap;
  text-align: center;
}
.c-fixed-footer__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 0.8em;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.c-fixed-footer__btn:first-child {
  flex-basis: 60%;
}
.c-fixed-footer__btn:nth-child(2) {
  flex-basis: 40%;
}

.c-section-label {
  font-size: 1.2rem;
}

.c-text__kv-under--title {
  text-align: left;
  margin: 2em 2.5em 0;
}
.c-text__ttl h2 {
  letter-spacing: 0.4em;
}
.c-text__ttl h3 {
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.1;
}
.c-text__ttl p {
  padding-top: 0.2em;
  font-size: 1.1rem;
  line-height: 1.3;
}
.c-text__ttl__ls04 {
  letter-spacing: 0.4em;
}
.c-text__lead {
  max-width: 580px;
  margin: auto;
}
@media (max-width: 768.99px) {
  .c-text__lead {
    width: 90%;
  }
}
.c-text__desc {
  width: 600px;
  margin: auto;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 768.99px) {
  .c-text__desc {
    width: 80%;
  }
}
.c-text__outro {
  width: 600px;
  margin: auto;
  line-height: 1.6;
}
@media (max-width: 768.99px) {
  .c-text__outro {
    width: 80%;
  }
}
.c-text__fadeout {
  margin-bottom: 40%;
}
.c-text__fadeout span {
  display: block;
}
.c-text__fadeout span:nth-of-type(1) {
  font-size: 1.4rem;
  padding-bottom: 3em;
}
.c-text__fadeout span:nth-of-type(2) {
  font-size: 1.2rem;
  padding-bottom: 3em;
}
.c-text__fadeout span:nth-of-type(3) {
  font-size: 1rem;
  padding-bottom: 3.5em;
}
.c-text__fadeout span:nth-of-type(4) {
  font-size: 0.8rem;
  padding-bottom: 4em;
}
.c-text__fadeout span:nth-of-type(5) {
  font-size: 0.6rem;
  padding-bottom: 6em;
}
.c-text__fadeout span:nth-of-type(6) {
  font-size: 0.4rem;
}
.c-text__beginning {
  position: relative;
  overflow: visible;
  margin-left: 35px;
  margin-bottom: 10em;
  font-size: 1.05rem;
}
@media (max-width: 768.99px) {
  .c-text__beginning {
    margin-bottom: 2em;
  }
}
.c-text__beginning::after {
  content: "";
  position: absolute;
  top: 50px;
  left: 21.5%;
  width: 100vw;
  height: 100%;
  background-image: url("../images/img_bg01_pc.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
@media (max-width: 768.99px) {
  .c-text__beginning::after {
    top: 0;
    left: -2em;
    background-image: url("../images/img_bg01_sp.png");
  }
}
.c-text__beginning p {
  position: relative;
  z-index: 1;
  text-align: left;
  line-height: 2;
}

.c-job {
  position: relative;
  overflow: visible;
  margin-left: 180px;
}
.c-job::after {
  content: "";
  position: absolute;
  top: 50px;
  right: -25%;
  width: 100%;
  height: 100%;
  background-image: url("../images/img_path_pc.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.6;
}
.c-job__list {
  position: relative;
  z-index: 1;
  text-align: left;
  line-height: 2;
}
@media (max-width: 768.99px) {
  .c-job {
    margin-left: 0;
  }
  .c-job::after {
    right: 0;
    display: none;
  }
  .c-job__list {
    margin: 0 10%;
    padding: 20px;
    border: 8px solid #fff;
    border-radius: 10px;
    position: relative;
    background-image: url("../images/img_path_sp.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    z-index: 0;
  }
  .c-job__list li {
    position: relative;
    z-index: 1;
  }
}

.c-career {
  padding: 5em 0;
}
@media (max-width: 768.99px) {
  .c-career {
    padding-top: 3em;
    padding-bottom: 3em;
    background-color: #f6f6f6;
  }
}
@media (max-width: 768.99px) and (max-width: 768.99px) {
  .c-career {
    padding-top: 0;
  }
}
.c-career__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 1rem;
  align-items: stretch;
  margin-left: 180px;
}
@media (max-width: 768.99px) {
  .c-career__inner {
    display: flex;
    flex-direction: column;
    margin-left: 0;
  }
}
.c-career__textgroup {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 768.99px) {
  .c-career__textgroup {
    display: contents;
  }
}
.c-career__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  text-align: left;
  line-height: 1.6;
}
@media (max-width: 768.99px) {
  .c-career__text {
    order: 1;
    align-items: center;
    text-align: center;
  }
}
.c-career__hashtag {
  font-weight: bold;
  font-size: 0.9rem;
}
.c-career__title {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
}
.c-career__lead {
  font-size: 1rem;
  color: #666;
}
.c-career__desc {
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 2em;
}
@media (max-width: 768.99px) {
  .c-career__desc {
    margin-top: 0.5em;
  }
}
.c-career__support {
  font-size: 0.95rem;
  line-height: 1.6;
  text-align: left;
  margin-top: 2em;
}
@media (max-width: 768.99px) {
  .c-career__support {
    order: 3;
    margin-top: 0.5rem;
    text-align: center;
    background-color: #fff;
    width: 80%;
    padding: 1em;
    border-radius: 10px;
    margin: auto;
  }
}
.c-career__image {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.c-career__image img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 768.99px) {
  .c-career__image {
    order: 2;
    margin-top: 0.5rem;
  }
}

.c-totop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background-color: #333;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
}
.c-totop:hover {
  background-color: #555;
}
.c-totop.is-visible {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 768.99px) {
  .c-totop {
    display: none;
  }
}

.c-about {
  position: relative;
  overflow: visible;
  margin-bottom: 5em;
}
.c-about::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 10%;
  border-bottom: 3px solid #ececec;
}
.c-about__text p {
  margin: 1em auto 0 auto;
  width: 500px;
  font-weight: 400;
  text-align: left;
  margin-top: 2em;
  margin-bottom: 2em;
}
@media (max-width: 768.99px) {
  .c-about__text p {
    width: 45%;
  }
}
.c-about__list {
  list-style: none;
  padding-left: 1em;
  font-weight: 600;
}
.c-about__list li {
  margin-bottom: 0.5em;
}

.c-more-info {
  position: relative;
  z-index: 0;
  padding-top: 4em;
  overflow: visible;
}
@media (max-width: 768.99px) {
  .c-more-info {
    padding-top: 4em;
    padding-bottom: 2em;
  }
}
.c-more-info::before {
  content: "";
  position: absolute;
  margin: 0 auto;
  width: 220px;
  inset: 0;
  background-color: #fff;
  z-index: 3;
}
@media (min-width: 769px) {
  .c-more-info::before {
    margin: 0 auto;
    width: 300px;
  }
}
.c-more-info__bg {
  position: relative;
  padding-top: 3em;
  overflow: visible;
}
@media (max-width: 768.99px) {
  .c-more-info__bg {
    padding-top: 2em;
  }
}
.c-more-info__bg h2,
.c-more-info__bg p {
  position: relative;
  z-index: 3;
}
.c-more-info__bg::after {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 650px;
  height: 600px;
  background: url("../images/bg_triangle.svg") no-repeat center top;
  background-size: contain;
  z-index: -1;
}
@media (max-width: 768.99px) {
  .c-more-info__bg::after {
    top: 100px;
    width: 110%;
  }
}

.c-graduate__inner {
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 769px) {
  .c-graduate__inner {
    flex-direction: column;
    align-items: stretch;
  }
}
.c-graduate__item {
  width: 100%;
  margin-bottom: 3em;
  text-align: center;
}
.c-graduate__item p {
  font-size: 1.3rem;
  padding-bottom: 0.5em;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .c-graduate__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .c-graduate__item:nth-child(odd) {
    align-items: flex-start;
    text-align: left;
  }
  .c-graduate__item:nth-child(even) {
    align-items: flex-end;
    text-align: right;
  }
}

/* Utility */
.u-width50p {
  width: 50%;
  margin: auto;
}

.u-font-mincho {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 700;
}

.u-font-bblod {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
}
@media (min-width: 769px) {
  .u-font-bblod {
    font-size: 2rem;
  }
}

.u-font-blod {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
}
@media (min-width: 769px) {
  .u-font-blod {
    font-size: 1.7rem;
  }
}

.u-font-bbbig {
  font-size: 2.8rem;
  line-height: 1.6;
}
@media (min-width: 769px) {
  .u-font-bbbig {
    font-size: 2.8rem;
  }
}

.u-font-bbig {
  font-size: 2rem;
  line-height: 1.6;
}
@media (min-width: 769px) {
  .u-font-bbig {
    font-size: 2.8rem;
  }
}

.u-font-big {
  font-size: 1.4rem;
  line-height: 1.6;
}
@media (min-width: 769px) {
  .u-font-big {
    font-size: 2rem;
  }
}

.u-font-medium {
  font-size: 1.2rem;
  line-height: 1.6;
}
@media (min-width: 769px) {
  .u-font-medium {
    font-size: 1.5rem;
  }
}

.u-font-mmedium {
  font-size: 1.1rem;
  line-height: 1.6;
}
@media (min-width: 769px) {
  .u-font-mmedium {
    font-size: 1.3rem;
  }
}

.u-font-small {
  font-size: 1rem;
}
@media (min-width: 769px) {
  .u-font-small {
    font-size: 1rem;
  }
}

.u-font-ssmall {
  font-size: 0.9rem;
}
@media (min-width: 769px) {
  .u-font-ssmall {
    font-size: 0.9rem;
  }
}

.u-font-20 {
  font-size: 0.9rem;
}
@media (min-width: 769px) {
  .u-font-20 {
    font-size: 1.1rem;
  }
}

.u-font-lineh3 {
  line-height: 3;
}

.u-font-lineh1 {
  line-height: 1.1;
}

.u-font-lineh15 {
  line-height: 1.5;
}

.u-font-wg5 {
  font-weight: 500;
}

.u-font-wg4 {
  font-weight: 400;
}

.u-font-left {
  text-align: left;
}

.fukidashi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
}

.fukidashi::before {
  content: "";
  width: 30px;
  height: 2px;
  transform: rotate(60deg);
  box-sizing: border-box;
  background-color: #333333;
}

.fukidashi::after {
  content: "";
  width: 30px;
  height: 2px;
  transform: rotate(-60deg);
  box-sizing: border-box;
  background-color: #333333;
}

.u-bg__yellow {
  background-color: #fffdf3;
}
.u-bg__green {
  background-color: #eefee8;
}
.u-bg__blue {
  background-color: #e9fcfe;
}
.u-bg__purple {
  background-color: #f6f3ff;
}
.u-bg__beige {
  background-color: #e5e2cc;
}
.u-bg__gray {
  background-color: #f6f6f6;
}
.u-bg__area {
  position: relative;
  z-index: 1;
}
.u-bg__area::before {
  content: "";
  position: absolute;
  margin: 0 auto;
  width: 220px;
  inset: 0;
  background-color: #fff;
  border-radius: 16px;
  z-index: -1;
  bottom: -2em;
}
@media (min-width: 769px) {
  .u-bg__area::before {
    margin: 0 auto;
    width: 300px;
  }
}
.u-bg__flour {
  position: relative;
  z-index: 0;
}
.u-bg__flour::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background-image: url("../images/bg_flour.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.6;
}
@media (max-width: 768.99px) {
  .u-bg__flour::before {
    background-image: url("../images/bg_flour_sp.png");
    background-size: contain;
    opacity: 0.8;
  }
}
.u-bg__confetti {
  position: relative;
  z-index: 0;
}
.u-bg__confetti::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 30%;
  width: 70%;
  height: 145px;
  background-image: url("../images/bg_dusu02.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.9;
}
.u-bg__confetti-sp {
  position: relative;
  z-index: 0;
}
.u-bg__confetti-sp::before {
  display: none;
}
@media (max-width: 768.99px) {
  .u-bg__confetti-sp::before {
    display: block;
    content: "";
    position: absolute;
    top: -8em;
    left: 0;
    width: 100%;
    height: 500px;
    background-image: url("../images/bg_dust_pastel.png");
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.9;
  }
}
.u-bg__nnstep {
  position: relative;
  z-index: 0;
}
.u-bg__nnstep::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 450px;
  aspect-ratio: 360/159;
  background-image: url("../images/bg_nnstep.png");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
@media (max-width: 768.99px) {
  .u-bg__nnstep::before {
    top: -10px;
    width: 320px;
  }
}
.u-bg__marker {
  display: inline-block;
  position: relative;
  z-index: -1;
}
.u-bg__marker::before {
  content: "";
  position: absolute;
  top: 15px;
  left: -0.2em;
  width: calc(100% + 0.4em);
  height: 100%;
  background-image: url("../images/bg_marker.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  opacity: 0.9;
}
@media (max-width: 768.99px) {
  .u-bg__marker::before {
    left: -0.1em;
    width: calc(100% + 0.2em);
  }
}
.u-bg__w100 {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.u-mt1 {
  margin-top: 1em;
}

.u-mt2 {
  margin-top: 2em;
}

.u-mt3 {
  margin-top: 3em;
}

.u-mt8 {
  margin-top: 8em;
}

.u-mt13 {
  margin-top: 13em;
}

.u-mb2 {
  margin-bottom: 2em;
}

.u-mb3 {
  margin-bottom: 3em;
}

.u-mb30 {
  margin-bottom: 30em;
}

.u-mb5 {
  margin-bottom: 5em;
}

.u-my2 {
  margin-top: 2em;
  margin-bottom: 2em;
}

.u-my2-5 {
  margin-top: 2.5em;
  margin-bottom: 2.5em;
}

.u-my1 {
  margin-top: 1em;
  margin-bottom: 1em;
}

.u-my3 {
  margin-top: 3em;
  margin-bottom: 3em;
}

.u-my4 {
  margin-top: 4em;
  margin-bottom: 4em;
}

.u-my5 {
  margin-top: 5em;
  margin-bottom: 5em;
}
@media (max-width: 768.99px) {
  .u-my5 {
    margin-top: 1em;
    margin-bottom: 1em;
  }
}

.u-my10 {
  margin-top: 10em;
  margin-bottom: 10em;
}
@media (max-width: 768.99px) {
  .u-my10 {
    margin-top: 5em;
    margin-bottom: 5em;
  }
}

.u-my30 {
  margin-top: 30em;
  margin-bottom: 30em;
}
@media (max-width: 768.99px) {
  .u-my30 {
    margin-top: 5em;
    margin-bottom: 15em;
  }
}

.u-sp-my2 {
  margin-top: 10em;
  margin-bottom: 10em;
}
@media (max-width: 768.99px) {
  .u-sp-my2 {
    margin-top: 2em;
    margin-bottom: 2em;
  }
}

@media (max-width: 768.99px) {
  .u-sp-my1 {
    margin-top: 1em;
    margin-bottom: 1em;
  }
}

@media (max-width: 768.99px) {
  .u-sp-my20 {
    margin-top: 20em;
    margin-bottom: 20em;
  }
}

.u-mx10p {
  margin-left: 10%;
  margin-right: 10%;
}
@media (max-width: 768.99px) {
  .u-mx10p {
    margin-left: 1%;
    margin-right: 1%;
  }
}

.u-ml15p {
  margin-left: 15%;
}

.u-pt05 {
  padding-top: 0.5em;
}

.u-pt1 {
  padding-top: 1em;
}

.u-pt2 {
  padding-top: 2em;
}

.u-pt3 {
  padding-top: 3em;
}

.u-pt4 {
  padding-top: 4em;
}

.u-pt5 {
  padding-top: 5em;
}

.u-pb1 {
  padding-bottom: 1em;
}

.u-pb2 {
  padding-bottom: 2em;
}

.u-pb3 {
  padding-bottom: 3em;
}

.u-py1 {
  padding-top: 1em;
  padding-bottom: 1em;
}

.u-py2 {
  padding-top: 2em;
  padding-bottom: 2em;
}

.u-py3 {
  padding-top: 3em;
  padding-bottom: 3em;
}

.u-py4 {
  padding-top: 4em;
  padding-bottom: 4em;
}

.u-py5 {
  padding-top: 5em;
  padding-bottom: 5em;
}

.u-color-red {
  color: #f95c5c;
}

.u-color-green {
  color: #405439;
}

.u-color-blue {
  color: #375a5e;
}

.u-color-purple {
  color: #515c94;
}

.u-color-bk {
  color: #222;
}

@media (max-width: 768.99px) {
  .u-img-ul-wrapper {
    width: 100vw;
    overflow-x: hidden;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
}

.u-img-1 {
  margin: 3em 0;
}
@media (max-width: 768.99px) {
  .u-img-1 {
    display: inline-block;
    transform: scale(1.1);
    transform-origin: center;
    margin: 9em 0;
  }
}

@media (max-width: 768.99px) {
  .u-img-2 {
    display: inline-block;
    transform: scale(1);
    transform-origin: center;
    margin: 1em 0;
    margin-left: -0.5em;
  }
}

@media (max-width: 768.99px) {
  .u-img-3 {
    display: inline-block;
    transform: scale(0.954);
    transform-origin: center;
    margin: 1em 0;
    margin-left: -0.4em;
  }
}

.u-img-4 {
  margin: 3em 0;
}
@media (max-width: 768.99px) {
  .u-img-4 {
    display: inline-block;
    transform: scale(1.1);
    transform-origin: center;
    margin: 9em 0;
  }
}

.u-img-ul {
  margin: 3em 0;
}
@media (max-width: 768.99px) {
  .u-img-ul {
    display: inline-block;
    transform: scale(1.34);
    transform-origin: center;
    margin: 8em 0;
  }
}
