@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

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

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 10px;
}
@media (max-width: 1024px) {
  html {
    font-size: vw(1024, 10);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: vw(375, 10);
  }
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #a2a2a2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

.inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1024px;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 60rem;
    padding: 0 20px;
  }
}

img {
  width: 100%;
  height: 100%;
}

.c-btn {
  background-color: #007bff;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-size: 1.6rem;
  padding: 1rem 2rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.c-btn:hover {
  background-color: #0056b3;
}

.imgbox {
  display: flex;
  gap: 1rem;
}

.title {
  letter-spacing: -0.033em;
  font-size: 1.6rem;
  font-family: "DINArabic-Bold", sans-serif;
}

.about__inner {
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .about__inner {
    flex-direction: column;
    gap: 2.4rem;
  }
}

.about__textbox {
  padding-top: 8rem;
}
@media screen and (max-width: 767px) {
  .about__textbox {
    padding-top: 0;
  }
}

.about__text {
  margin-top: 3.6rem;
  line-height: 1.71428571em;
}
@media screen and (max-width: 767px) {
  .about__text {
    margin-top: 2.6rem;
    font-size: 0.95rem;
  }
}

.about__textbox .about__text:nth-of-type(2) {
  margin-top: 2rem;
}

.about__img {
  aspect-ratio: 304/380;
  width: min(21.1vw, 304px);
  height: min(26.3vw, 380px);
}
@media screen and (max-width: 767px) {
  .about__img {
    width: 100%;
    height: auto;
  }
}

.about__img img {
  aspect-ratio: 304/380;
  -o-object-fit: cover;
     object-fit: cover;
}

.company__logo {
  margin-top: 12.3rem;
}

.company__logo img {
  width: 9.7rem;
  height: 4.2rem;
}

.company__logo p {
  font-family: "DINArabic-Bold", sans-serif;
  margin-top: 0.5rem;
  font-size: 0.7rem;
}

.company__list {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .company__list {
    padding: 0 2rem;
  }
}

.company__item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .company__item {
    font-size: 0.95rem;
  }
}

.company__head {
  letter-spacing: 0.15em;
  width: 19.6rem;
}
@media screen and (max-width: 767px) {
  .company__head {
    width: 26.6vw;
  }
}

.company__body {
  width: 33.3rem;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
  .company__body {
    width: 100%;
  }
}

.company__item:not(:first-child) {
  margin-top: 1.5rem;
}

.contact {
  text-align: center;
  display: flex;
}

.contact__text {
  margin-top: 9.2rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1rem;
  letter-spacing: 0.165em;
}
@media screen and (max-width: 767px) {
  .contact__text {
    text-align: left;
    font-size: 0.95rem;
  }
}

.contact__btn {
  margin-top: 2.4rem;
  font-size: 1.2rem;
}

.contact__btn span {
  font-weight: 600;
  border-bottom: 1px solid #a2a2a2;
  font-family: "DINArabic-Bold", sans-serif;
}

.creative {
  text-align: center;
}

.creative__text {
  letter-spacing: 0.068em;
  margin-top: 2rem;
  text-align: left;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .creative__text {
    font-size: 0.95rem;
  }
}

.creative__list {
  margin-top: 7rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .creative__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.creative__item {
  position: relative;
  padding: 1.8rem 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .creative__item {
    font-size: 0.95rem;
  }
}

.creative__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/deco_left.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
  width: 100%;
  height: 100%;
}

.creative__item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../images/deco_right.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  width: 100%;
  height: 100%;
}

.creative-item__title {
  border-bottom: 1px solid #a2a2a2;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-family: "DINArabic-Bold", sans-serif;
}

.creative-item__cont {
  margin-top: 1.2rem;
}

footer {
  padding-bottom: 5rem;
  font-size: 1.2rem;
  letter-spacing: -0.051em;
  font-family: "DINArabic-Bold", sans-serif;
}
@media screen and (max-width: 767px) {
  footer {
    font-size: 1.1rem;
  }
}

.footer__inner {
  max-width: 126.4rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    max-width: 60rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.footer__nav-list {
  flex-wrap: wrap;
}

.footer__nav {
  display: block;
  margin-bottom: 2.8rem;
}

.footer__nav-item a {
  display: block;
  padding: 1rem 3.5rem;
}
@media screen and (max-width: 767px) {
  .footer__nav-item a {
    padding: 1rem 2rem;
  }
}

.footer__copy {
  padding-left: 3.5rem;
}
@media screen and (max-width: 767px) {
  .footer__copy {
    max-width: 60rem;
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 1.2rem;
  }
}

header {
  margin-top: 7.2rem;
  font-size: 1rem;
  font-family: "DINArabic-Bold", sans-serif;
}
@media screen and (max-width: 767px) {
  header {
    margin-top: 18rem;
    font-size: 1rem;
  }
}

.header__inner {
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .header__inner {
    max-width: 60rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.header__nav-item a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.8rem;
}

.message {
  position: relative;
}

.message__inner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.message__text {
  font-size: 1.35rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .message__text {
    font-size: 1.2rem;
  }
}

.mission__inner {
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .mission__inner {
    flex-direction: column;
    gap: 2.4rem;
  }
}

.mission__img {
  aspect-ratio: 304/380;
  width: min(21.1vw, 304px);
  height: min(26.3vw, 380px);
}
@media screen and (max-width: 767px) {
  .mission__img {
    width: 100%;
    height: auto;
  }
}

.mission__img img {
  aspect-ratio: 304/380;
  -o-object-fit: cover;
     object-fit: cover;
}

.mission__text {
  margin-top: 1.4rem;
  line-height: 1.72523135em;
  font-size: 0.95rem;
}

.mv {
  margin-top: 8rem;
  height: calc(100vh - 338px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mv {
    margin-top: 7rem;
  }
}

.mv__inner.inner {
  max-width: 310px;
}
@media screen and (max-width: 767px) {
  .mv__inner.inner {
    max-width: 33rem;
    padding: 0;
  }
}

.mv__logo {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  max-width: 18.6rem;
}
@media screen and (max-width: 767px) {
  .mv__logo {
    max-width: 13.3rem;
  }
}

.mv__title {
  font-family: "DINArabic-Bold", sans-serif;
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.051em;
}
@media screen and (max-width: 767px) {
  .mv__title {
    margin-top: 0.6rem;
    font-size: 1rem;
  }
}

.mv__subtitle {
  font-family: "DINArabic-Bold", sans-serif;
  margin-top: 1rem;
  font-size: 1rem;
  letter-spacing: -0.051em;
}

.privacy {
  padding: 10.5rem 0 12rem;
}

.privacy__inner {
  max-width: 112rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .privacy__inner {
    padding: 0 1.5rem;
    max-width: 60rem;
  }
}

.privacy__title {
  font-family: "DINArabic-Bold", sans-serif;
  font-size: 1.4rem;
  letter-spacing: -0.033em;
}

.privacy__cont {
  margin-top: 6.6rem;
  max-width: 84rem;
  margin-left: auto;
  margin-right: auto;
}

.privacy__item:not(:first-child) {
  margin-top: 3.5rem;
}

.privacy-item__text {
  margin-top: 1.5rem;
  font-size: 1rem;
  letter-spacing: 0.165em;
  line-height: 1.60715067em;
  font-weight: 500;
}

.privacy-item__head {
  font-size: 1.3rem;
  letter-spacing: 0.165em;
}

.privacy-item__list {
  margin-top: 1.4rem;
  font-weight: 500;
}

.privacy-item__item {
  line-height: 1.5em;
  list-style-type: disc;
  letter-spacing: 0.165em;
  margin-left: 2em;
}

.privacy__inquiry {
  margin-top: 11rem;
  font-size: 1.3rem;
  letter-spacing: 0.165em;
  line-height: 1.60715067em;
}

.privacy-item__mail, .privacy__mail {
  border-bottom: 1px solid #a2a2a2;
}

section#message,
section#about,
section#mission,
section#service,
section#sustainability,
section#creative,
section#company,
section#contact {
  padding: 11.1rem 0;
  min-height: 100vh;
  max-height: 76.8rem;
}
@media screen and (max-width: 767px) {
  section#message,
  section#about,
  section#mission,
  section#service,
  section#sustainability,
  section#creative,
  section#company,
  section#contact {
    max-height: initial;
  }
}

.service__cont {
  margin-top: 6.8rem;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .service__cont {
    flex-direction: column;
    gap: 2.4rem;
  }
}

.service__heading {
  font-family: "DINArabic-Bold", sans-serif;
}

.service__img {
  aspect-ratio: 304/380;
  width: min(21.1vw, 304px);
  height: min(26.3vw, 380px);
}
@media screen and (max-width: 767px) {
  .service__img {
    width: 100%;
    height: auto;
  }
}

.service__img img {
  aspect-ratio: 304/380;
  -o-object-fit: cover;
     object-fit: cover;
}

.service__item {
  border-bottom: 1px solid #a2a2a2;
  width: 110%;
}
@media screen and (max-width: 767px) {
  .service__item {
    width: 100%;
  }
}

.service__item:not(:first-child) {
  margin-top: 3.9rem;
}

.sustainability__inner {
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .sustainability__inner {
    flex-direction: column;
    gap: 2.4rem;
  }
}

.sustainability__img {
  aspect-ratio: 304/380;
  width: min(21.1vw, 304px);
  height: min(26.3vw, 380px);
}
@media screen and (max-width: 767px) {
  .sustainability__img {
    width: 100%;
    height: auto;
  }
}

.sustainability__img img {
  aspect-ratio: 304/380;
  -o-object-fit: cover;
     object-fit: cover;
}

.sustainability__textbox {
  width: 40.8rem;
}
@media screen and (max-width: 767px) {
  .sustainability__textbox {
    width: 100%;
  }
}

.sustainability__text {
  margin-top: 1.4rem;
  line-height: 1.72523135em;
  font-size: 0.95rem;
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.fade-in.visible {
  opacity: 1;
}

.flex {
  display: flex;
}

.msg {
  writing-mode: vertical-rl;
  letter-spacing: 0.434em;
  line-height: 1.3125em;
}

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

.pc-only {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.upper {
  text-transform: uppercase;
}
/*# sourceMappingURL=style.css.map */
