@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関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
}

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

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

body {
  font-size: 62.5%;
  color: #333;
}
body.no-scroll {
  overflow: hidden;
}

main {
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

.sp_only {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp_only {
    display: none;
  }
}

.pc_only {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc_only {
    display: block;
  }
}

.section {
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .section {
    padding: 0 150px;
  }
}

.section-title {
  font-family: "Outfit", serif;
  font-weight: 700;
  color: #28180A;
  text-transform: uppercase;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 3.75rem;
  }
}
.section-title span {
  color: #DE8430;
}

.top-section-title {
  color: #28180A;
  font-family: "Outfit", serif;
  font-weight: bold;
  font-size: 2.25rem;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: left;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .top-section-title {
    font-size: 3.75rem;
  }
}

.top-section-title::before {
  display: block;
  font-size: 4rem;
  color: #F9F6F0;
  position: absolute;
  top: -1rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .top-section-title::before {
    font-size: 9.375rem;
  }
}

.top-section-title__japanese {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 0.75rem;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .top-section-title__japanese {
    font-size: 0.875rem;
  }
}

.top-section-title::after {
  content: "";
  display: block;
  width: 1.875rem;
  height: 1px;
  background-color: #DE8430;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .top-section-title::after {
    margin-top: 1rem;
    width: 3.3rem;
  }
}

.button {
  display: block;
  width: 11.25rem;
  height: 2.5rem;
  position: relative;
  padding: 0.8rem 0;
  padding-left: 2.5rem;
  font-size: 0.75rem;
  font-family: "Outfit", serif;
  font-weight: bold;
  letter-spacing: 0;
  text-align: left;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  border: 1px solid #DE8430;
  color: #DE8430;
  background-color: #fff;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .button {
    padding-left: 2rem;
    letter-spacing: 0;
    font-size: 0.875rem;
  }
}

.button::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 16px;
  right: 40px;
  width: 11px;
  height: 5px;
  border-right: 1px solid #DE8430;
  border-bottom: 1px solid #DE8430;
  transform: skew(45deg, 0);
  transition: 0.3s;
}

@media screen and (min-width: 768px) {
  .button:hover {
    color: #fff;
    background-color: #DE8430;
    opacity: 1;
  }
  .button:hover::before {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    right: 30px;
  }
}

.header {
  position: fixed;
  height: 2.5rem;
  background-color: transparent;
  z-index: 3;
  top: 0;
  overflow: visible;
  z-index: 5;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header {
    overflow: hidden;
    height: 4.375rem;
  }
}

.header.Disappear {
  animation: DisappearAnime 0.5s forwards;
}

.header.colored {
  background-color: #fff;
}

@keyframes DisappearAnime {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-4.375rem);
  }
}
.header.Appear {
  animation: AppearAnime 0.5s forwards;
}

@keyframes AppearAnime {
  from {
    opacity: 0;
    transform: translateY(4.375rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header__inner {
  margin: auto;
  max-width: 1440px;
  height: inherit;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 0 3.4722222222vw;
  }
}

.header__logo {
  max-width: 4.625rem;
  width: 100%;
  height: inherit;
  margin-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .header__logo {
    max-width: 6.65rem;
    margin-left: 0;
  }
}

.header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

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

.header__nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

.header__nav-list {
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item.header__nav-item_contact {
  margin-left: 0.9375rem;
  display: flex;
  align-items: center;
  position: relative;
}

.header__nav-item a {
  padding: 0 0.9375rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 0.9375rem;
  line-height: 1;
  text-transform: uppercase;
  color: #28180A;
  font-family: "Outfit", serif;
  font-weight: 600;
}

.header__nav-item.header__nav-item_page--current a {
  color: #DE8430;
}

.header__nav-item.header__nav-item_contact a {
  padding: 0.625rem 1.25rem;
  padding-right: 2.375rem;
  position: relative;
  height: initial;
  color: #fff;
  background-color: #DE8430;
}

.header__nav-item.header__nav-item_contact a::after {
  content: "";
  margin-left: 0.625rem;
  width: 0.6875rem;
  height: 0.75rem;
  display: inline-block;
  background-image: url(../images/contact_icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  right: 1.1875rem;
  top: 50%;
  transform: translateY(-50%);
}

.header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 2.5rem;
  height: inherit;
  background-color: #DE8430;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger::before {
  content: "";
  display: block;
  position: absolute;
  left: -3.1rem;
  top: 0.8rem;
  content: "Close";
  text-transform: uppercase;
  color: #fff;
  font-size: 0.875rem;
  font-family: "Outfit", serif;
  font-weight: bold;
  opacity: 0;
  transition: 0.3s;
}

.header__hamburger.is-open {
  background-color: transparent;
  position: relative;
}
.header__hamburger.is-open::before {
  display: block;
  opacity: 1;
  transition: 0.3s;
}

.header__hamburger span {
  position: relative;
  left: 0.75rem;
  display: block;
  height: 1px;
  background-color: #fff;
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  width: 0.9375rem;
  top: -0.25rem;
}

.header__hamburger span:nth-of-type(2) {
  width: 0.75rem;
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  width: 0.9375rem;
  top: 0.25rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  width: 1.3125rem;
  height: 2px;
  top: 0.4rem;
  left: 0.8rem;
  transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  width: 1.3125rem;
  height: 2px;
  top: 0.2rem;
  left: 0.8rem;
  transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  padding: 10.5rem 0;
  position: fixed;
  z-index: 900;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: rgba(98, 58, 20, 0.95);
  overflow-y: scroll;
  scrollbar-width: none;
  transition: 0.6s;
  z-index: 5;
}

.header__drawer-inner {
  max-width: 17.1875rem;
  margin: auto;
}

.header__drawer.is-open {
  right: 0;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-item a {
  padding: 0.58rem 0;
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  text-align: left;
  text-transform: uppercase;
}

.header__drawer-item.header__drawer-item_page--current a {
  color: #DE8430;
}

.header__drawer-item.header__drawer-item_item--contact a::after {
  content: "";
  margin-bottom: 0.6rem;
  margin-left: 0.85rem;
  width: 0.9375rem;
  height: 0.9375rem;
  display: inline-block;
  background-image: url(./../images/contact_icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__drawer-copyright {
  position: absolute;
  color: #fff;
  bottom: 0;
  margin-bottom: 3.125rem;
  font-size: 0.625rem;
  font-family: "Outfit", serif;
  font-weight: 500;
}

.mv {
  position: relative;
  height: 173.3333333333vw;
  min-height: 25rem;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .mv {
    height: 55.5555555556vw;
  }
}

.mv__inner {
  height: inherit;
  min-height: inherit;
}

.mv__title-wrapper {
  position: absolute;
  z-index: 2;
  top: 72.3%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 20px;
  color: #28180A;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .mv__title-wrapper {
    top: 55%;
    left: 0;
    transform: translateY(-50%);
    width: initial;
    padding: 4.8vw;
  }
}

.mv__main-title {
  font-size: 13.3333333333vw;
  font-family: "Outfit", serif;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.02em;
  text-indent: -40vw;
  padding-left: 40vw;
}
@media screen and (min-width: 768px) {
  .mv__main-title {
    line-height: 0.9;
    letter-spacing: 0.03em;
    font-size: 8rem;
    text-indent: -5.8rem;
    padding-left: 5.8rem;
  }
}

.mv__sub-title {
  font-size: 4vw;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  margin-top: 1.25rem;
  letter-spacing: 0.23em;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .mv__sub-title {
    letter-spacing: 0.2em;
    font-size: 1.125rem;
    margin-top: 1.8rem;
  }
}

.mv__img,
.mv__img img {
  height: inherit;
  min-height: inherit;
}

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

.about {
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .about {
    margin-top: 6.25rem;
  }
  .about::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 12%;
    height: 11vw;
    background-image: url(../images/about_dots.png);
    background-repeat: no-repeat;
    background-position: 0 100%;
    background-size: contain;
    z-index: 1;
  }
}

.layout-about {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .layout-about {
    margin-top: 6.25rem;
  }
}

.about__section-title {
  grid-row: 1;
  margin-bottom: 1.8rem;
}
@media screen and (min-width: 768px) {
  .about__section-title {
    margin-bottom: 1.6rem;
  }
}

.about__section-title::before {
  content: "About";
}
@media screen and (min-width: 768px) {
  .about__section-title::before {
    top: -3.6rem;
  }
}

.about__text-wrapper {
  display: contents;
  padding-top: 6.2rem;
}
@media screen and (min-width: 768px) {
  .about__text-wrapper {
    display: block;
    margin-left: 0.25rem;
  }
}

.about__inner {
  display: grid;
  grid-auto-rows: auto 1fr auto auto;
}
@media screen and (min-width: 768px) {
  .about__inner {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}

.about__text {
  grid-row: 3;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .about__text {
    margin-top: 0;
    letter-spacing: 0.06em;
    line-height: 1.65;
  }
}

.about .button {
  grid-row: 4;
  margin: auto;
  margin-top: 1.4rem;
}
@media screen and (min-width: 768px) {
  .about .button {
    margin-top: 2rem;
    margin-left: 0;
  }
}

.about__img {
  grid-row: 2;
  height: 64.5333333333vw;
  width: calc(100% + 20px);
  margin-left: -20px;
  max-width: inherit;
}
.about__img img {
  height: 100%;
}
@media screen and (min-width: 768px) {
  .about__img {
    width: 51.5972222222vw;
    height: 33.6805555556vw;
    aspect-ratio: 743/485;
    margin-left: -150px;
  }
}

.service {
  overflow: hidden;
}

.layout-service {
  margin-top: 3.125rem;
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .layout-service {
    margin-top: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .service__section-title {
    margin-bottom: 4.85rem;
    text-align: center;
  }
}

.service__section-title::before {
  content: "Service";
  top: -1.1rem;
  left: 0;
  transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .service__section-title::before {
    top: -3.4rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (min-width: 768px) {
  .service__section-title::after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.service__item {
  display: flex;
  flex-direction: column-reverse;
  justify-content: start;
  position: relative;
  height: 133.3333333333vw;
  margin-top: 1.5625rem;
  margin-left: -20px;
  margin-right: -20px;
  padding-top: 1.875rem;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .service__item {
    gap: 2.6875rem;
    height: 27.2222222222vw;
    height: auto;
    margin-left: 0;
    margin-right: 0;
    padding-top: 1.875rem;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 2.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .service__item + .service__item {
    margin-top: 3.125rem;
  }
}

@media screen and (min-width: 768px) {
  .service__item .service__item-text-wrapper::before {
    display: block;
    position: absolute;
    color: #fff;
    z-index: -1;
    font-family: "Outfit", serif;
    font-weight: bold;
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .service__item:nth-of-type(1) .service__item-text-wrapper::before {
    content: "01";
    left: -0.8rem;
    top: 0.2rem;
  }
}

@media screen and (min-width: 768px) {
  .service__item:nth-of-type(2) .service__item-text-wrapper::before {
    content: "02";
    right: -0.8rem;
    top: 1.1rem;
  }
}

@media screen and (min-width: 768px) {
  .service__item:nth-of-type(3) .service__item-text-wrapper::before {
    content: "03";
    left: -0.8rem;
    top: -0.8rem;
  }
}

@media screen and (min-width: 768px) {
  .service__item .service__item-text-wrapper::after {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    z-index: 0;
    background-color: #fff;
    height: 60%;
  }
}

@media screen and (min-width: 768px) {
  .service__item:nth-of-type(1) .service__item-text-wrapper::after {
    top: 3rem;
    left: 0;
  }
}

@media screen and (min-width: 768px) {
  .service__item:nth-of-type(3) .service__item-text-wrapper::after {
    top: 1.8rem;
    left: 0;
  }
}

@media screen and (min-width: 768px) {
  .service__item:nth-of-type(2) .service__item-text-wrapper::after {
    top: 3.6rem;
    right: 0;
  }
}

@media screen and (min-width: 768px) {
  .service__item .service__item-img-wrapper::after {
    display: block;
    position: absolute;
    z-index: 1;
    font-family: "Outfit", serif;
    font-weight: bold;
    font-size: 1.25rem;
    transform: translateY(-100%) rotate(90deg);
    color: #fff;
    padding-left: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .service__item:nth-of-type(1) .service__item-img-wrapper::after {
    content: "Design";
    right: -5.3rem;
    bottom: 1.3vw;
    background-color: #DE8430;
  }
}

@media screen and (min-width: 768px) {
  .service__item:nth-of-type(2) .service__item-img-wrapper::after {
    content: "SNS";
    left: -4.6rem;
    bottom: 1.3vw;
    background-color: #DE9830;
  }
}

@media screen and (min-width: 768px) {
  .service__item:nth-of-type(3) .service__item-img-wrapper::after {
    content: "Marketing";
    right: -6.1rem;
    bottom: 1.4vw;
    background-color: #DEAD30;
  }
}

.service__item:nth-of-type(odd) {
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .service__item:nth-of-type(odd) {
    justify-content: start;
    margin-right: -150px;
    padding-right: 150px;
    flex-direction: row-reverse;
  }
}

.service__item:nth-of-type(even) {
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .service__item:nth-of-type(even) {
    margin-left: -150px;
    padding-left: 150px;
    flex-direction: row;
    justify-content: end;
  }
}

.service__item::before {
  left: 0;
  top: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}

.service__item:nth-of-type(1)::before {
  -webkit-clip-path: polygon(25.5% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(25.5% 0, 100% 0, 100% 100%, 0 100%);
}
@media screen and (min-width: 768px) {
  .service__item:nth-of-type(1)::before {
    -webkit-clip-path: polygon(94px 0, 100% 0, 100% 100%, 18px 100%);
            clip-path: polygon(94px 0, 100% 0, 100% 100%, 18px 100%);
  }
}

.service__item:nth-of-type(2)::before {
  -webkit-clip-path: polygon(0 0, 100% 0, 74.4% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 74.4% 100%, 0 100%);
}
@media screen and (min-width: 768px) {
  .service__item:nth-of-type(2)::before {
    -webkit-clip-path: polygon(0 0, calc(100% - 18px) 0, calc(100% - 94px) 100%, 0 100%);
            clip-path: polygon(0 0, calc(100% - 18px) 0, calc(100% - 94px) 100%, 0 100%);
  }
}

.service__item:nth-of-type(3)::before {
  -webkit-clip-path: polygon(25.5% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(25.5% 0, 100% 0, 100% 100%, 0 100%);
}
@media screen and (min-width: 768px) {
  .service__item:nth-of-type(3)::before {
    -webkit-clip-path: polygon(73px 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(73px 0, 100% 0, 100% 100%, 0 100%);
  }
}

.service__item:nth-of-type(1)::before {
  background-color: #DE8430;
}

.service__item:nth-of-type(2)::before {
  background-color: #DE9830;
}

.service__item:nth-of-type(3)::before {
  background-color: #DEAD30;
}

.service__item-text-wrapper {
  margin-top: 1rem;
  color: #fff;
  position: relative;
  padding-left: 12%;
}
@media screen and (min-width: 768px) {
  .service__item-text-wrapper {
    width: 34.4444444444vw;
    padding-left: 2.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .service__item:nth-of-type(1) .service__item-text-wrapper {
    padding-top: 2.8vw;
  }
}

@media screen and (min-width: 768px) {
  .service__item:nth-of-type(2) .service__item-text-wrapper {
    padding-top: 3.6vw;
  }
}

@media screen and (min-width: 768px) {
  .service__item:nth-of-type(3) .service__item-text-wrapper {
    padding-top: 2.8vw;
  }
}

.service__item:nth-of-type(even) .service__item-text-wrapper {
  padding-left: 0;
  padding-right: 20%;
}
@media screen and (min-width: 768px) {
  .service__item:nth-of-type(even) .service__item-text-wrapper {
    padding-right: 2.5625rem;
  }
}

.service__item-title {
  font-family: "Outfit", serif;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .service__item-title {
    font-size: 1.75rem;
  }
}

.service__item-japanese-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  display: block;
}
@media screen and (min-width: 768px) {
  .service__item-japanese-title {
    font-size: 0.8125rem;
    line-height: 0.5;
  }
}

.service__item-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .service__item-text {
    font-size: 0.9375rem;
    margin-top: 1.8vw;
  }
}

.service__item-img-wrapper {
  transform: translateX(-20px);
  position: relative;
}
@media screen and (min-width: 768px) {
  .service__item-img-wrapper {
    margin-top: 1rem;
    transform: translateX(0);
    width: 41.6666666667vw;
    height: 20.8333333333vw;
  }
}

.service__item:nth-of-type(even) .service__item-img-wrapper {
  transform: translateX(20px);
}
@media screen and (min-width: 768px) {
  .service__item:nth-of-type(even) .service__item-img-wrapper {
    transform: translateX(0);
  }
}

.service__img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 335/200;
}
@media screen and (min-width: 768px) {
  .service__img {
    aspect-ratio: auto;
  }
}

.works {
  background-image: url(../images/works_decoration_top.png), url(../images/works_decoration_bottom.png);
  background-repeat: no-repeat no-repeat;
  background-position: top right, bottom left;
  background-size: 23%, 19%;
}
@media screen and (min-width: 768px) {
  .works {
    background-image: url(../images/works_decoration_pc.png);
    background-size: cover;
    background-position: center;
  }
}

.layout-works {
  margin-top: 3rem;
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .layout-works {
    margin-top: 6.2rem;
    padding-top: 7rem;
    padding-bottom: 6.23rem;
  }
}

@media screen and (min-width: 768px) {
  .works__title-text-wrapper {
    display: flex;
    justify-content: space-between;
  }
}

.works__section-title {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .works__section-title .top-section-title__japanese {
    text-align: left;
  }
}

.works__section-title::before {
  content: "Works";
}
@media screen and (min-width: 768px) {
  .works__section-title::before {
    top: -3.5rem;
  }
}

.works__text {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .works__text {
    font-size: 0.9375rem;
    line-height: 1.5;
    width: 47.5%;
    padding-top: 0.8rem;
  }
}

.works .button {
  margin: auto;
  margin-top: 1.8rem;
}
@media screen and (min-width: 768px) {
  .works .button {
    margin-top: 4.3rem;
  }
}

.works__list {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .works__list {
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .works-list {
    display: flex;
    flex-wrap: wrap;
  }
}

.works-list__item {
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  position: relative;
}
@media screen and (min-width: 768px) {
  .works-list__item {
    max-width: calc(33.333% - 1.875rem * 2 / 3);
    width: 100%;
  }
}

.works-list__item::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  z-index: -1;
}

.works-list__item + .works-list__item {
  margin-top: 1.4rem;
}
@media screen and (min-width: 768px) {
  .works-list__item + .works-list__item {
    margin-top: 0;
    margin-left: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .works-list__item:nth-of-type(3n+1) {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .works-list__item:nth-of-type(n+4) {
    margin-top: 4.375rem;
    margin-top: 3.65rem;
  }
}

.works-list__item-link {
  display: flex;
  flex-direction: column-reverse;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 0 2.5rem 0 rgba(0, 0, 0, 0.05);
  justify-content: start;
}

.works-list__item-date {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.5;
  color: #AAA;
  margin-top: 0.13rem;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 768px) {
  .works-list__item-date {
    margin-top: 0.9375rem;
  }
}

.works-list__item-img {
  width: 100%;
}

.works-list__item-img img {
  width: 100%;
  aspect-ratio: 335/173;
  -o-object-fit: cover;
     object-fit: cover;
}

.works-list__item-content {
  display: flex;
  flex-direction: column-reverse;
  padding: 1.25rem 1.5625rem 1.5625rem;
}
@media screen and (min-width: 768px) {
  .works-list__item-content {
    padding: 0.75rem 1.875rem 1.875rem;
  }
}

.works-list__item-title {
  font-size: 0.9375rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .works-list__item-title {
    margin-top: 0;
    font-size: 1rem;
  }
}

.works-list__item-text {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .works-list__item-text {
    margin-top: 0;
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

.faq {
  background-image: url(../images/faq_background_sp.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .faq {
    background-image: url(../images/faq_background_pc.png);
    min-height: 53.125rem;
  }
}

.layout-faq {
  margin-top: 0;
  padding-top: 7.8125rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .layout-faq {
    padding-top: 14rem;
    padding-bottom: 6.25rem;
  }
}

.faq__section-title {
  top: -1.4rem;
  position: absolute;
}
@media screen and (min-width: 768px) {
  .faq__section-title {
    top: -2.6rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (min-width: 768px) {
  .faq__section-title::after {
    width: 3.3rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.faq__section-title::before {
  content: "FAQ";
}
@media screen and (min-width: 768px) {
  .faq__section-title::before {
    top: -3.6rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (min-width: 768px) {
  .top-section-title__japanese {
    text-align: center;
  }
}

.faq__inner {
  position: relative;
  background-color: #fff;
  padding: 4.66rem 1.25rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .faq__inner {
    max-width: 71.25rem;
    margin: auto;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.25);
    padding-bottom: 3.75rem;
  }
}

.faq__list {
  margin: auto;
}
@media screen and (min-width: 768px) {
  .faq__list {
    width: 72.8%;
    max-width: 800px;
    margin-top: 3.3rem;
  }
}

.faq-list__item + .faq-list__item {
  margin-top: 0.6rem;
}
@media screen and (min-width: 768px) {
  .faq-list__item + .faq-list__item {
    margin-top: 1.1rem;
  }
}

.faq-list__item-question {
  background-color: #DE8430;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 0.875rem;
  position: relative;
  padding: 0.6rem 2rem 0.6rem 1.9rem;
  text-indent: -1.2rem;
}
@media screen and (min-width: 768px) {
  .faq-list__item-question {
    padding: 0.5rem 4.3rem 0.3rem 4.6rem;
    font-size: 1.125rem;
    text-indent: -2.2rem;
  }
}

.faq-list__item-question span {
  font-family: "Outfit", serif;
  margin-right: 0.4rem;
}
@media screen and (min-width: 768px) {
  .faq-list__item-question span {
    margin-right: 1.2rem;
  }
}

.faq-list__item-question::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.1875rem solid #fff;
  border-right: 0.1875rem solid #fff;
  transform: translateY(-50%) rotate(315deg);
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .faq-list__item-question::before {
    width: 0.8125rem;
    height: 0.8125rem;
  }
}

.faq-list__item-question.is-open::before {
  transform: translateY(-50%) rotate(135deg);
}

.faq-list__item-answer {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  padding: 0.6rem 1.1rem 0.6rem 1.9rem;
  text-indent: -1.2rem;
  line-height: 1.55;
}
@media screen and (min-width: 768px) {
  .faq-list__item-answer {
    padding-left: 5rem;
    padding-right: 2rem;
    font-size: 0.9375rem;
    text-indent: -2.4rem;
  }
}

.faq-list__item-answer span {
  font-family: "Outfit", serif;
  color: #DE8430;
  font-weight: bold;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .faq-list__item-answer span {
    font-size: 1.125rem;
    margin-right: 1.2rem;
  }
}

.footer {
  padding-top: 3.1rem;
  padding-bottom: 1.1rem;
  background-color: #623A14;
  color: #fff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 6.4rem;
  }
}

.footer__inner {
  margin: auto;
  padding: 0 20px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding: 0 180px;
    padding-bottom: 1.3rem;
  }
}

.footer__wrap {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .footer__wrap {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1080px;
    margin: auto;
  }
}

@media screen and (min-width: 768px) {
  .footer__map-wrapper {
    width: 58.5185185185%;
  }
}

.footer__map {
  width: 100%;
  aspect-ratio: 335/300;
  height: auto;
}
@media screen and (min-width: 768px) {
  .footer__map {
    width: 100%;
    aspect-ratio: 630/300;
  }
}

.footer__sns {
  margin-top: 1.5625rem;
  display: flex;
  justify-content: left;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .footer__sns {
    margin-top: 2.5rem;
  }
}

.footer__sns-icon {
  display: block;
  max-width: 1.875rem;
  width: 100%;
}

.footer__sns-icon + .footer__sns-icon {
  margin-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .footer__sns-icon + .footer__sns-icon {
    margin-left: 1.875rem;
  }
}

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

.footer__addres-wrapper {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .footer__addres-wrapper {
    margin-top: 0;
  }
}

.footer__address {
  margin-top: 0.625rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
  font-family: "Outfit", serif;
  font-weight: 500;
  font-size: 0.875rem;
  font-style: normal;
}
@media screen and (min-width: 768px) {
  .footer__address {
    text-align: left;
    margin-top: 4.6rem;
    font-size: 0.875rem;
  }
}

.footer__address span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.footer__contact-button {
  background-color: #DE8430;
  display: block;
  width: 8.125rem;
  line-height: 35px;
  margin: auto;
  margin-top: 1rem;
  text-align: center;
  font-size: 0.75rem;
  font-family: "Outfit", serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .footer__contact-button {
    margin-top: 1.5625rem;
    margin-left: 0;
    font-size: 0.875rem;
  }
}

.footer__logo {
  max-width: 12.5rem;
  width: 100%;
  display: block;
  margin: auto;
  margin-top: 3rem;
  width: 6.75rem;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    margin-top: 6rem;
    max-width: 13.75rem;
    width: 6.625rem;
  }
}

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

.footer__nav {
  margin-top: 0.6rem;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    margin-top: 0.9rem;
  }
}

.footer__nav-items {
  display: flex;
  justify-content: center;
}

.footer__nav-item {
  position: relative;
}

.footer__nav-item + .footer__nav-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 0.9375rem;
  background: #fff;
}

.footer__nav-item a {
  padding: 0.9375rem 0.625rem;
  position: relative;
  display: block;
  line-height: 1;
  font-size: 0.875rem;
  font-family: "Outfit", serif;
  font-weight: 600;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .footer__nav-item a {
    font-size: 0.875rem;
    padding-right: 0.6875rem;
    padding-left: 0.6875rem;
  }
}

.footer__copyright {
  margin-top: 2.3rem;
  display: block;
  line-height: 1;
  letter-spacing: -0.01em;
  text-align: center;
  font-size: 0.625rem;
  font-family: "Outfit", serif;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 2.9rem;
  }
}

.footer__page-top {
  padding-top: 1rem;
  position: absolute;
  bottom: 0.625rem;
  right: 0.625rem;
  width: 2.1875rem;
  height: 2.1875rem;
  background-color: #DE8430;
  color: #fff;
  font-size: 0.75rem;
  font-family: "Outfit", serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  display: block;
}
@media screen and (min-width: 768px) {
  .footer__page-top {
    padding-top: 1.4rem;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 3.125rem;
    height: 3.125rem;
    font-size: 0.9375rem;
  }
}

.footer__page-top:hover {
  background-color: rgba(222, 132, 48, 0.8);
}

.footer__page-top:before {
  position: absolute;
  top: 0.6rem;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  content: "";
  display: block;
  width: 0.4rem;
  height: 0.4rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
@media screen and (min-width: 768px) {
  .footer__page-top:before {
    top: 0.9rem;
    width: 0.6rem;
    height: 0.6rem;
  }
}

.footer__copyright span {
  text-transform: uppercase;
}

.mv.sub-mv {
  height: 153.5vw;
}
@media screen and (min-width: 768px) {
  .mv.sub-mv {
    margin-top: inherit;
    height: 55.5555555556vw;
  }
}
.mv.sub-mv .mv__title-wrapper {
  top: 76.4%;
}
@media screen and (min-width: 768px) {
  .mv.sub-mv .mv__title-wrapper {
    top: 61%;
  }
}
.mv.sub-mv .mv__main-title {
  text-transform: uppercase;
}
.mv.sub-mv .mv__sub-title {
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .mv.sub-mv .mv__sub-title {
    margin-top: 1.95rem;
  }
}
.mv.sub-mv .mv__img img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: top;
     object-position: top;
}

.sub-creative {
  position: relative;
}
@media screen and (min-width: 768px) {
  .sub-creative {
    height: 40.9722222222vw;
  }
}

.layout-sub-creative {
  margin-top: 0.3rem;
}
@media screen and (min-width: 768px) {
  .layout-sub-creative {
    margin-top: 5.48vw;
    padding-top: 7.42vw;
    padding-bottom: 11.8vw;
  }
}

.sub-creative__section-title {
  color: #DE8430;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .sub-creative__section-title {
    font-size: 2rem;
  }
}

.sub-creative__text {
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  padding: 0 0.625rem;
  margin-top: 0.9rem;
  line-height: 1.77;
}
@media screen and (min-width: 768px) {
  .sub-creative__text {
    color: #000;
    font-size: 0.9375rem;
    margin-top: 2.5rem;
    padding: 0;
    line-height: 2;
  }
}

.sub-creative__inner {
  display: grid;
}

.sub-creative__text-wrapper {
  grid-row: 2;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .sub-creative__text-wrapper {
    width: 36.1805555556vw;
    margin: auto;
  }
}

.sub-creative__img:nth-of-type(1) {
  grid-row: 1;
  margin-left: -20px;
  width: 84.2666666667vw;
}
@media screen and (min-width: 768px) {
  .sub-creative__img:nth-of-type(1) {
    position: absolute;
    width: 30.9vw;
    top: 0;
    left: 1.1875rem;
  }
}

.sub-creative__img:nth-of-type(2) {
  grid-row: 3;
  margin-right: -20px;
  justify-self: end;
  width: 96.5333333333vw;
  margin-top: 0.3rem;
  position: relative;
}
.sub-creative__img:nth-of-type(2)::before {
  content: "Creative";
  display: block;
  text-transform: uppercase;
  color: #f4f4f4;
  font-size: 17.0666666667vw;
  font-family: "Outfit", serif;
  font-weight: bold;
  position: absolute;
  top: -23%;
  right: 0.4rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .sub-creative__img:nth-of-type(2)::before {
    left: -64.7vw;
    bottom: -4vw;
    right: auto;
    top: auto;
    font-size: 10.4166666667vw;
  }
}
@media screen and (min-width: 768px) {
  .sub-creative__img:nth-of-type(2) {
    position: absolute;
    width: 35.2vw;
    bottom: 0;
    right: 1.4rem;
  }
}

.vision-message-wrapper {
  position: relative;
  background-image: linear-gradient(100.4deg, #f4f4f4 0, #f4f4f4 52.6%, transparent 52.6%, transparent 100%);
}
@media screen and (min-width: 768px) {
  .vision-message-wrapper {
    background-image: linear-gradient(100.4deg, #f4f4f4 0, #f4f4f4 43.6%, transparent 43.6%, transparent 100%);
  }
}

@media screen and (min-width: 768px) {
  .vision-message-wrapper .section__inner {
    margin: auto;
    max-width: 67.5rem;
  }
}

.sub-vision__section-title,
.sub-message__section-title,
.sub-works__section-title {
  padding-left: 3.1rem;
  position: relative;
}
.sub-vision__section-title::before,
.sub-message__section-title::before,
.sub-works__section-title::before {
  content: "";
  display: block;
  height: 1px;
  width: 3rem;
  background-color: #DE8430;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateX(-20px);
}
@media screen and (min-width: 768px) {
  .sub-vision__section-title,
  .sub-message__section-title,
  .sub-works__section-title {
    padding-left: 0;
  }
  .sub-vision__section-title::before,
  .sub-message__section-title::before,
  .sub-works__section-title::before {
    width: 9.6rem;
    transform: translateX(-180px);
  }
}

.layout-sub-vision {
  padding-top: 2.3rem;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .layout-sub-vision {
    padding-top: 4.8rem;
    padding-right: 11.25rem;
    padding-left: 11.25rem;
  }
}

.sub-vision_list {
  margin-top: 0.6rem;
}
@media screen and (min-width: 768px) {
  .sub-vision_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 103.75rem;
    margin: auto;
    margin-top: 2.1rem;
    gap: 3rem;
  }
}

.sub-vision__item {
  font-family: "Noto Sans JP", sans-serif;
}
.sub-vision__item:nth-of-type(1) .sub-vision__item-title::before {
  content: "#01";
}
.sub-vision__item:nth-of-type(2) .sub-vision__item-title::before {
  content: "#02";
}
.sub-vision__item:nth-of-type(3) .sub-vision__item-title::before {
  content: "#03";
}
.sub-vision__item:nth-of-type(4) .sub-vision__item-title::before {
  content: "#04";
}
.sub-vision__item .sub-vision__item-title::before {
  color: #DE8430;
  display: block;
  text-align: center;
  font-family: "Outfit", serif;
  font-size: 0.875rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .sub-vision__item .sub-vision__item-title::before {
    margin-bottom: 0.3rem;
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 768px) {
  .sub-vision__item {
    width: calc(50% - 9.375rem * 1 / 2);
  }
}

.sub-vision__item + .sub-vision__item {
  margin-top: 0.53rem;
}
@media screen and (min-width: 768px) {
  .sub-vision__item + .sub-vision__item {
    margin-top: 0;
  }
}

.sub-vision__item-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .sub-vision__item-title {
    font-size: 1.75rem;
  }
}

.sub-vision__item-text {
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 0.4rem;
}
@media screen and (min-width: 768px) {
  .sub-vision__item-text {
    font-size: 0.9375rem;
    margin-top: 1.5rem;
  }
}

.layout-sub-message {
  margin-top: 3.63rem;
  padding-bottom: 6.7rem;
  position: relative;
}
.layout-sub-message::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../images/about_dots_sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 0.2rem;
  right: -1rem;
  width: 6.5rem;
  height: 5.6rem;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .layout-sub-message {
    padding-bottom: 6rem;
    margin-top: 10.13rem;
    padding-right: 11.25rem;
    padding-left: 11.25rem;
  }
  .layout-sub-message::before {
    background-image: url(../images/about_dots_pc.png);
    background-size: contain;
    top: -4.5rem;
    right: -1rem;
    width: 16.5rem;
    height: 13rem;
  }
}

.sub-message__inner {
  display: grid;
  position: relative;
}
@media screen and (min-width: 768px) {
  .sub-message__inner {
    display: flex;
    justify-content: space-between;
  }
}
.sub-message__inner::after {
  content: "Message";
  display: block;
  text-transform: uppercase;
  color: #E8E4E0;
  font-size: 4rem;
  font-family: "Outfit", serif;
  font-weight: bold;
  position: absolute;
  right: -20px;
  bottom: -4.1rem;
  line-height: 1;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .sub-message__inner::after {
    font-size: min(9.375rem, 10.4166666667vw);
    bottom: -7.1rem;
    right: -11.2rem;
  }
}

.sub-message__section-title {
  grid-row: 1;
}

.sub-message__text-wrapper {
  display: contents;
}
@media screen and (min-width: 768px) {
  .sub-message__text-wrapper {
    display: block;
    width: 37.037037037%;
  }
}

.sub-message__head-text {
  margin-top: 1.1rem;
  color: #DE8430;
  font-size: 1.25rem;
  font-weight: bold;
  font-family: "Outfit", serif;
  grid-row: 3;
}
@media screen and (min-width: 768px) {
  .sub-message__head-text {
    margin-top: 1.4rem;
    font-size: 1.75rem;
    line-height: 1.4;
  }
}

.sub-message__sub-text {
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Outfit", serif;
  margin-top: 0.6rem;
  line-height: 1.78;
  grid-row: 4;
}
@media screen and (min-width: 768px) {
  .sub-message__sub-text {
    font-size: 0.9375rem;
    margin-top: 0.8rem;
    line-height: 1.6;
  }
}

.sub-message__ceo {
  text-align: right;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: bold;
  margin-top: 0.3rem;
  letter-spacing: 0.08em;
  grid-row: 5;
}
@media screen and (min-width: 768px) {
  .sub-message__ceo {
    font-size: 0.9375rem;
    margin-top: 0.9rem;
  }
}

.sub-message__img {
  grid-row: 2;
  margin-top: 1.5rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .sub-message__img {
    width: 50%;
    margin-top: 3.2rem;
  }
}

.sub-company {
  display: flex;
  flex-direction: column-reverse;
}

.layout-sub-company {
  padding: 0;
  margin-top: 0;
}

.sub-company__inner {
  padding: 2.2rem 20px 3.2rem;
  background-image: url(../images/company_bg_sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}
@media screen and (min-width: 768px) {
  .sub-company__inner {
    background-image: url(../images/company_bg_pc.png);
    padding-top: 4.6rem;
    padding-bottom: 6.1rem;
  }
}

.sub-company__section-title {
  text-align: center;
  position: relative;
}
.sub-company__section-title::before {
  content: "";
  display: block;
  width: 1px;
  height: 3.1rem;
  background-color: #DE8430;
  position: absolute;
  left: 50%;
  top: -3.6rem;
}
@media screen and (min-width: 768px) {
  .sub-company__section-title::before {
    top: -10.9rem;
    height: 11.3rem;
  }
}

.sub-company__details {
  margin-top: 2.3rem;
}
@media screen and (min-width: 768px) {
  .sub-company__details {
    width: 32.875rem;
    margin: 2.4rem auto 0;
  }
}

.sub-company__details-data {
  text-align: center;
  border-bottom: 1px solid #EBE8E2;
}
@media screen and (min-width: 768px) {
  .sub-company__details-data {
    display: flex;
    padding-bottom: 0.8rem;
    text-align: left;
  }
}

.sub-company__details-data + .sub-company__details-data {
  margin-top: 1.2rem;
}
@media screen and (min-width: 768px) {
  .sub-company__details-data + .sub-company__details-data {
    margin-top: 1rem;
  }
}

.sub-company__details-data dt {
  color: #DE8430;
  font-size: 0.9375rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .sub-company__details-data dt {
    padding-left: 1.8125rem;
    width: 25.7142857143%;
  }
}

.sub-company__details-data dd {
  color: #333;
  font-size: 0.9375rem;
  font-family: "Outfit", serif;
  font-weight: 400;
  padding-top: 0.4rem;
  padding-bottom: 0.7rem;
}
@media screen and (min-width: 768px) {
  .sub-company__details-data dd {
    padding: 0;
  }
}

@media screen and (min-width: 768px) {
  .sub-company__img {
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  }
}

.layout-sub-works {
  margin-top: 0.73rem;
}
@media screen and (min-width: 768px) {
  .layout-sub-works {
    margin-top: 4.53rem;
    padding-bottom: 10.5rem;
  }
}

@media screen and (min-width: 768px) {
  .sub-works__text-wrapper {
    display: flex;
    justify-content: start;
    gap: 7vw;
  }
}

.sub-works__text {
  color: #333;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin-top: 0.8rem;
}
@media screen and (min-width: 768px) {
  .sub-works__text {
    margin-top: 1.6rem;
  }
}

.sub-works__list {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .sub-works__list {
    margin-top: 2.2rem;
  }
}/*# sourceMappingURL=style.css.map */