@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Marcellus";
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

a, span {
  display: inline-block;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

html,
body {
  overflow-x: hidden;
}

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

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

.section01 {
  width: 100%;
  height: 50vh;
}

.button {
  margin-top: 5rem;
}

.button a {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  text-decoration: none;
  display: block;
  max-width: 250px;
  border: 1px solid #555;
  background: #eee;
  margin: auto;
  padding: 10px 30px;
  font-family: "Noto Sans Japanese";
  font-weight: 500;
  text-align: center;
  line-height: 1.8;
  text-decoration: none;
  outline: none;
  transition: ease 0.2s;
}

.button a span {
  position: relative;
  z-index: 3;
  color: #333;
}

.button a:hover span {
  color: #fff;
}

.bgskew::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  background: #333;
  width: 120%;
  height: 100%;
  transform: skewX(-25deg);
}

.bgskew:hover::before {
  -webkit-animation: skewanime 0.5s forwards;
          animation: skewanime 0.5s forwards;
}

@-webkit-keyframes skewanime {
  100% {
    left: -10%;
  }
}

@keyframes skewanime {
  100% {
    left: -10%;
  }
}
.top-gallery_inner {
  padding-block: 10rem;
}
@media screen and (max-width: 768px) {
  .top-gallery_inner {
    padding-block: 5rem;
  }
}

.gallery_cards {
  max-width: 71.5625rem;
  width: 100%;
  padding-inline: 2.5rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr));
  gap: 1.875rem;
}
@media (max-width: 500px) {
  .gallery_cards {
    padding-inline: 1.25rem;
  }
}
@media screen and (max-width: 375px) {
  .gallery_cards {
    padding-inline: 0.625rem;
  }
}

.gallery_card {
  max-width: 31.25rem;
  width: 100%;
  height: auto;
  margin-inline: auto;
  padding: 30px 20px;
  outline: 1px solid #333;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 2px 4px rgba(51, 51, 51, 0.5);
}

.gallery_img {
  width: 100%;
  height: auto;
  aspect-ratio: 295/154;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  -o-object-position: top;
     object-position: top;
}

.gallery-card__body {
  display: flex;
  align-items: center;
  margin-top: 1.25rem;
}

.gallery-card__icon img {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
}

.gallery-card__title {
  margin-left: 1.25rem;
}

.gallery-card__name {
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  line-height: 1.25;
}

.gallery-card__job {
  margin-top: 0.625rem;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  line-height: 1.25;
}