@charset "UTF-8";
/* SASS */
/* cf. https://www.cherrypieweb.com/4353 */
.font-size-dummy {
  font-size: 0.75rem; /* 12px */
  font-size: 0.8125rem; /* 13px */
  font-size: 0.875rem; /* 14px */
  font-size: 1rem; /* 16px */
  font-size: 1.25rem; /* 20px */
  font-size: 1.5rem; /* 24px */
  font-size: 1.75rem; /* 28px */
  font-size: 2rem; /* 32px */
  font-size: 2.25rem; /* 36px */
  font-size: 3rem; /* 48px */
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", "IBM Plex Sans JP", "游ゴシック Medium", "Yu Gothic", YuGothic, YuGothicMedium, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background-color: #e2dbe3;
  color: #221c24;
  font-size: 1rem;
}

h1,
h2 {
  line-height: 1.4;
}

h2,
h3 {
  margin-top: 0;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}

h2 {
  text-align: center;
}

ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

p {
  margin: 0;
  line-height: 1.8;
}

figure {
  margin: 0;
}

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

a {
  text-decoration: none;
}

a,
input,
textarea {
  transition: all 0.15s ease-in-out;
}

input[type=submit]:hover {
  cursor: pointer;
}

/* Reusable Classes */
.container {
  max-width: 1280px;
  margin: 0 auto;
}

.font-dotgothic {
  font-family: "DotGothic16", "游ゴシック Medium", "Yu Gothic", YuGothic, YuGothicMedium, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0.1em;
}

/* Header */
.header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
}

img.header-logo-img {
  width: 32px;
  height: auto;
}

.header-nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
}

.header-nav-menu > .header-nav-menu-item > a {
  color: #221c24;
  text-decoration: none;
}

.header-nav-menu > .header-nav-menu-item > a:hover,
.header-nav-menu > .header-nav-menu-item > a:focus {
  color: #916f8a;
  text-decoration: underline;
}

/* Main - Hero */
h1.main-hero-txt-title {
  text-align: center;
}

h1.main-hero-txt-title img {
  width: 280px;
}

p.main-hero-txt-copy {
  font-size: 1.5rem;
  text-align: center;
}

p.main-hero-txt-copy > span {
  display: inline-block;
  text-align: left;
}

.main-hero-img {
  text-align: center;
}

.main-hero-img img {
  width: 480px;
}

/* Main - Service */
.main-service-item:last-child {
  margin-bottom: 0;
}

.main-service-item-txt h3 {
  text-align: center;
}

.main-service-item-img {
  text-align: center;
}

/* Main - Works */
.swiper {
  width: 100%;
  height: 100%;
  padding-bottom: 48px;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
  margin-top: -48px;
  background-color: #221c24;
  color: #ffffff;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.25rem;
}

figure a {
  display: block;
  padding: 16px 0;
}

figure a:hover {
  opacity: 0.8;
}

figurecaption > span {
  display: inline-block;
}

figurecaption .works-label {
  font-size: 0.75rem;
  background-color: #221c24;
  color: #ffffff;
  width: auto;
  padding: 8px 16px;
}

figurecaption .works-name {
  font-size: 1rem;
  margin-top: 8px;
  color: #221c24;
}

/* Main - About */
.main-about-img {
  text-align: center;
}

.main-about-img img {
  width: 320px;
}

.main-about h3 {
  margin-top: 32px;
}

.main-about-txt ul li {
  padding-left: 16px;
  position: relative;
}

.main-about-txt ul li::before {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #6c5367;
  position: absolute;
  left: 4px;
  top: 50%;
  margin-top: -4px;
}

.main-about-txt-links a {
  color: #221c24;
}

.main-about-txt-links a:hover,
.main-about-txt-links a:focus {
  color: #916f8a;
  text-decoration: underline;
}

/* Footer */
.footer-info {
  text-align: center;
  padding: 16px 0;
}

/* .footer-contact-form {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 100%;
}
.footer-contact-form iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
} */
.footer-contact-form {
  text-align: center;
}

.footer-contact-form iframe {
  border: none;
  max-width: 100%;
  max-height: 100vh;
}/*# sourceMappingURL=style.css.map */