@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: 14px;
}
@media (max-width: 375px) {
  html {
    font-size: 4vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3157894737vw;
  }
}
@media (min-width: 1140px) {
  html {
    font-size: 15px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #28180A;
  background: #fff;
}

main {
  overflow: hidden;
}

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

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

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: auto;
}

.inner {
  width: 100%;
  padding: 0 20px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    padding: 0 25px;
  }
}

.l-header {
  padding: 7px 0;
}
@media screen and (min-width: 768px) {
  .l-header {
    padding: 16px 0;
  }
}

.l-inner {
  width: 100%;
  margin: auto;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1190px;
    padding: 0 25px;
  }
}

.l-section {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .l-section {
    margin-top: 100px;
  }
}

.c-button {
  display: inline-block;
  background: #fff;
  color: #DE8430;
  font-size: 12px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1;
  border: 1px solid #DE8430;
  text-align: center;
  min-width: 12rem;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .c-button {
    font-size: 14px;
  }
}

.c-button:hover {
  background: #DE8430;
  color: #fff;
  opacity: 1;
}

.c-button:hover span::before,
.c-button:hover span::after {
  background: #fff;
  right: 1.4666666667rem;
}

.c-button span {
  position: relative;
  display: inline-block;
  padding: 0.8rem 4rem 0.8rem 2rem;
}

.c-button span::before {
  content: "";
  width: 12px;
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
  background: #DE8430;
  transition: all 0.3s ease-in-out;
}

.c-button span::after {
  content: "";
  width: 4px;
  height: 1px;
  right: 2.1333333333rem;
  position: absolute;
  bottom: 50%;
  transform: translateY(-50%);
  right: 2.1333333333rem;
  transform: translateY(-50%) rotate(45deg);
  background: #DE8430;
  transition: all 0.3s ease-in-out;
}

.c-button2 {
  display: inline-block;
  min-width: 130px;
  background: #DE8430;
  color: #fff;
  border: 1px solid #DE8430;
  padding: 0.3333333333rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease-in-out;
}

.c-button2:hover {
  background: #fff;
  color: #DE8430;
  opacity: 1;
}
.c-button2:hover .c-button2 .c-icon path {
  fill: #DE8430;
}

.c-button2 .c-icon {
  transition: all 0.3s ease-in-out;
}

.c-button2:hover .c-icon path {
  fill: #DE8430;
}

.c-card {
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  margin: auto;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .c-card {
    max-width: 100%;
  }
}

.c-card::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0);
}

.c-card:hover {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.c-card:hover::before {
  background-color: rgba(255, 255, 255, 0.4);
}

.c-card__image img {
  aspect-ratio: 335/173;
}
@media screen and (min-width: 768px) {
  .c-card__image img {
    aspect-ratio: 399/186;
  }
}

.c-card__body {
  padding: 1rem 1.7333333333rem;
}
@media screen and (min-width: 768px) {
  .c-card__body {
    padding: 1.5rem 1.8666666667rem;
  }
}

.c-card__time {
  color: #AAA;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .c-card__time {
    font-size: 14px;
  }
}

.c-card__title {
  margin-top: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .c-card__title {
    font-size: 16px;
  }
}

.p-Details__text {
  margin-top: 5px;
  font-size: 14px;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .p-Details__text {
    font-size: 15px;
  }
}

.c-section-title,
.c-section-title--center {
  position: relative;
  color: #28180A;
  font-family: "Outfit", sans-serif;
  font-size: 36px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .c-section-title,
  .c-section-title--center {
    font-size: 60px;
  }
}

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

.c-section-title span,
.c-section-title--center span {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  color: #F9F6F0;
  font-family: "Outfit", sans-serif;
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  z-index: -1;
  letter-spacing: 3px;
}
@media screen and (min-width: 768px) {
  .c-section-title span,
  .c-section-title--center span {
    font-size: 150px;
  }
}

.c-section-title--center span {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (min-width: 768px) {
  .c-section-title--center span {
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
  }
}

.c-section-sub-title,
.c-section-sub-title--center {
  position: relative;
  color: #28180A;
  font-size: 12px;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .c-section-sub-title,
  .c-section-sub-title--center {
    font-size: 14px;
  }
}

.c-section-sub-title--center {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-section-sub-title--center {
    text-align: center;
  }
}

.c-section-sub-title::before,
.c-section-sub-title--center::before {
  content: "";
  width: 30px;
  height: 1px;
  position: absolute;
  bottom: -10px;
  left: 0;
  background: #DE8430;
}
@media screen and (min-width: 768px) {
  .c-section-sub-title::before,
  .c-section-sub-title--center::before {
    width: 50px;
    bottom: -20px;
  }
}

.c-section-sub-title--center::before {
  left: 0;
}
@media screen and (min-width: 768px) {
  .c-section-sub-title--center::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.c-title2 {
  position: relative;
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  padding-left: 50px;
}
@media screen and (min-width: 768px) {
  .c-title2 {
    font-size: 60px;
    padding-left: 0;
  }
}

.c-title2::first-letter {
  color: #DE8430;
}

.c-title2::before {
  content: "";
  width: 50px;
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
  background: #DE8430;
}
@media screen and (min-width: 768px) {
  .c-title2::before {
    width: 160px;
    left: -180px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1439px) {
  .c-title2 {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding-left: 180px;
  }
  .c-title2::before {
    left: 0;
  }
}
.c-title2--center {
  position: relative;
  text-align: center;
  padding-left: 0;
}

.c-title2--center::before {
  content: "";
  width: 50px;
  height: 1px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  background: #DE8430;
}
@media screen and (min-width: 768px) {
  .c-title2--center::before {
    width: 180px;
    top: -100px;
  }
}

.p-404 {
  position: relative;
  padding: 45px 0;
}
@media screen and (min-width: 768px) {
  .p-404 {
    padding: 100px 0;
  }
}

.p-404::before {
  content: "";
  width: 30%;
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: radial-gradient(#DE8430 20%, transparent 20%), radial-gradient(#DE8430 20%, transparent 20%);
  background-size: 20px 20px;
  background-position: 0 0, 20px 20px;
  transform: skewX(-10deg) scale(1);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-404::before {
    transform: skewX(-10deg) scale(1.5);
  }
}

.p-404__text {
  font-size: 20px;
  text-align: center;
  margin-top: 30px;
}

.p-404__btn {
  text-align: center;
  margin-top: 30px;
}

.p-about-bg {
  width: 100%;
  padding-top: 105px;
  aspect-ratio: 375/105;
  background: url("../../assets/images/common/about-bg.png") no-repeat center center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-about-bg {
    padding-top: 350px;
    aspect-ratio: 1440/350;
  }
}

.p-about-company {
  position: relative;
  padding: 60px 0;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-about-company {
    padding: 100px 0;
  }
}

.p-about-company__inner {
  width: 100%;
  max-width: 600px;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-about-company__inner {
    max-width: 575px;
  }
}

.p-about-company__body {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-about-company__body {
    margin-top: 55px;
  }
}

.p-about-company__dl {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #EBE8E2;
  padding: 16px 0;
  text-align: center;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-about-company__dl {
    flex-direction: row;
    gap: 3rem;
    padding: 17px 30px;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.p-about-company__dl:first-child {
  padding-top: 0;
}

.p-about-company__dt {
  color: #DE8430;
  font-weight: 700;
  line-height: 1;
  min-width: 100%;
}
@media screen and (min-width: 768px) {
  .p-about-company__dt {
    min-width: 60px;
  }
}

.p-about-company__dd {
  font-family: "Outfit", sans-serif;
  line-height: 1;
}

.p-font-ja {
  font-family: "Noto Sans JP", sans-serif;
}

.p-about-company__section-title {
  position: relative;
}

.p-about-company__section-title::after {
  display: block;
  content: "";
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  max-width: 100px;
  height: 100px;
  position: absolute;
  top: -75px;
  right: 0;
  left: -23px;
  background-image: radial-gradient(#DE8430 20%, transparent 20%), radial-gradient(#DE8430 20%, transparent 20%);
  background-size: 20px 20px;
  background-position: 0 0, 20px 20px;
  transform: skewX(-10deg) scale(0.7);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-about-company__section-title::after {
    left: 185px;
    top: -100px;
    transform: skewX(-10deg) scale(0.9);
  }
}

.p-about-company__ornament1 {
  position: relative;
}

.p-about-company__ornament1::before {
  content: "";
  width: 75px;
  height: 90px;
  background: rgba(222, 163, 48, 0.8);
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  position: absolute;
  top: -62px;
  right: auto;
  left: -40px;
  transform: skewX(2deg);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-about-company__ornament1::before {
    width: 100px;
    height: 120px;
    top: -100px;
    left: 150px;
    transform: skewX(2deg);
  }
}

.p-about-company__ornament1::after {
  content: "";
  width: 35px;
  height: 50px;
  background: rgba(222, 132, 48, 0.8);
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  position: absolute;
  top: -60px;
  right: auto;
  left: 34px;
  transform: skewX(-1deg);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-about-company__ornament1::after {
    content: "";
    width: 37px;
    height: 80px;
    top: -100px;
    left: 255px;
    transform: skewX(-4deg);
  }
}

.p-about-company__ornament2,
.p-about-company__ornament3 {
  position: relative;
}

.p-about-company__ornament2::before {
  content: "";
  width: 50px;
  height: 90px;
  background: rgba(222, 132, 48, 0.8);
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  position: absolute;
  top: -50px;
  right: -35px;
  transform: skewX(-3deg);
}
@media screen and (min-width: 768px) {
  .p-about-company__ornament2::before {
    width: 70px;
    height: 140px;
    top: -100px;
    right: 40px;
    transform: skewX(-4deg);
  }
}

.p-about-company__ornament3::before {
  content: "";
  width: 30px;
  height: 20px;
  background: rgba(222, 163, 48, 0.8);
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  position: absolute;
  top: -40px;
  right: 14px;
  transform: skewX(10deg);
}
@media screen and (min-width: 768px) {
  .p-about-company__ornament3::before {
    width: 45px;
    height: 30px;
    top: -75px;
    right: 120px;
    transform: skewX(9deg);
  }
}

.p-about-company__ornament3::after {
  content: "";
  width: 30px;
  height: 85px;
  background: rgba(222, 163, 48, 0.8);
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  position: absolute;
  top: -18px;
  right: 25px;
  transform: skewX(-6deg);
}
@media screen and (min-width: 768px) {
  .p-about-company__ornament3::after {
    width: 45px;
    height: 120px;
    top: -40px;
    right: 135px;
    transform: skewX(-6deg);
  }
}

.p-about-company::before {
  content: "";
  width: 150px;
  height: 250px;
  background: rgba(222, 163, 48, 0.8);
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  position: absolute;
  bottom: 0;
  right: -125px;
  transform: skewX(-2deg);
}
@media screen and (min-width: 768px) {
  .p-about-company::before {
    width: 70px;
    height: 365px;
    bottom: 0;
    right: -42px;
    transform: skewX(-8deg);
  }
}

.p-about-company::after {
  content: "";
  width: 100px;
  height: 140px;
  position: absolute;
  bottom: -70px;
  right: -10px;
  background-image: radial-gradient(#DE8430 20%, transparent 20%), radial-gradient(#DE8430 20%, transparent 20%);
  background-size: 20px 20px;
  background-position: 0 0, 20px 20px;
  transform: skewX(-10deg) scale(0.5);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-about-company::after {
    bottom: -15px;
    right: 15px;
    transform: skewX(-10deg) scale(0.9);
  }
}

.p-about-company__inner::before {
  content: "";
  width: 60px;
  height: 70px;
  background: rgba(222, 132, 48, 0.8);
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  position: absolute;
  bottom: -35px;
  left: -20px;
  transform: skewX(2deg);
}
@media screen and (min-width: 768px) {
  .p-about-company__inner::before {
    width: 100px;
    height: 135px;
    bottom: -15px;
    left: -35px;
    transform: skewX(0.5deg);
  }
}

.p-about-company__inner::after {
  content: "";
  width: 100px;
  height: 180px;
  position: absolute;
  bottom: -75px;
  left: 0;
  background-image: radial-gradient(#DE8430 20%, transparent 20%), radial-gradient(#DE8430 20%, transparent 20%);
  background-size: 20px 20px;
  background-position: 0 0, 20px 20px;
  transform: skewX(-10deg) scale(0.5);
  z-index: 1;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-about-company__inner::after {
    display: block;
    bottom: -5px;
    left: 12px;
    transform: skewX(-10deg) scale(0.9);
  }
}

.p-about-creative {
  margin: 0;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-about-creative {
    margin-top: 25px;
  }
}

.p-about-creative__inner {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}

.p-about-creative__contents {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-about-creative__contents {
    flex-direction: row;
  }
}

.p-about-creative__image-left {
  position: relative;
  width: 100%;
  max-width: 78%;
  height: 100%;
  margin-right: auto;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .p-about-creative__image-left {
    max-width: 29%;
    margin-right: auto;
  }
}

.p-about-creative__image-left::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -8%;
  transform: skewX(-11deg);
  box-shadow: 5px 0px 20px 3px rgba(0, 0, 0, 0.08);
}

.p-about-creative__image-left img {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
}

.p-about-creative__contents-right {
  display: flex;
}

.p-about-creative__heading {
  width: 100%;
  max-width: 100%;
  padding: 20px 28px;
}
@media screen and (min-width: 768px) {
  .p-about-creative__heading {
    max-width: 520px;
    padding: 90px 0 170px;
    margin-left: 1.9333333333rem;
  }
}

.p-about-creative__title {
  color: #DE8430;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .p-about-creative__title {
    font-size: 32px;
  }
}

.p-about-creative__text {
  font-size: 14px;
  line-height: 180%;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .p-about-creative__text {
    font-size: 15px;
    line-height: 200%;
    margin-top: 2.6666666667rem;
  }
}

.p-about-creative__image-right {
  position: relative;
  width: 100%;
  max-width: 86.6%;
  height: 100%;
  margin-top: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-about-creative__image-right {
    max-width: 33.5%;
  }
}

.p-about-creative__image-right img {
  -webkit-clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  aspect-ratio: 344/216;
}
@media screen and (min-width: 768px) {
  .p-about-creative__image-right img {
    aspect-ratio: 415/375;
  }
}

.p-about-creative__image-right::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: -9%;
  transform: skewX(-11.5deg);
  box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.08);
}

.p-about-message {
  position: relative;
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .p-about-message {
    margin-top: 200px;
  }
}

.p-about-message::before {
  content: "";
  width: 260px;
  height: 180px;
  position: absolute;
  top: -50px;
  right: -105px;
  background-image: radial-gradient(#DE8430 20%, transparent 20%), radial-gradient(#DE8430 20%, transparent 20%);
  background-size: 20px 20px;
  background-position: 0 0, 20px 20px;
  transform: skewX(-10deg) scale(0.45);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-about-message::before {
    width: 240px;
    height: 180px;
    top: -75px;
    right: -10px;
    transform: skewX(-11deg) scale(1.05);
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .p-about-message::before {
    top: -7vw;
    transform: skewX(-11deg) scale(0.5);
  }
}

@media screen and (min-width: 768px) {
  .p-about-message__inner {
    max-width: 1130px;
  }
}

.p-about-message__contents {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .p-about-message__contents {
    flex-direction: row;
  }
}

.p-about-message__right {
  width: 100%;
  max-width: 100%;
  margin-top: 20px;
  margin-right: auto;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .p-about-message__right {
    max-width: 390px;
    margin-top: 40px;
  }
}

.p-about-message__title {
  color: #DE8430;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .p-about-message__title {
    line-height: 125%;
    font-size: 28px;
  }
}

.p-about-message__text {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 180%;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .p-about-message__text {
    font-size: 15px;
    line-height: 160%;
    margin-top: 20px;
  }
}

.p-about-message__name {
  text-align: right;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 180%;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .p-about-message__name {
    font-size: 15px;
    line-height: 160%;
    margin-top: 10px;
  }
}

.p-about-message__image {
  width: 100%;
  max-width: 100%;
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .p-about-message__image {
    max-width: 540px;
    margin-top: -20px;
  }
}

.p-about-message__image img {
  aspect-ratio: 540/326;
}

.p-about-vision {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-about-vision {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-about-vision__inner {
    max-width: 1130px;
  }
}

.p-about-vision__items {
  width: 100%;
  max-width: 600px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .p-about-vision__items {
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.6666666667rem 10rem;
    margin-top: 45px;
  }
}

.p-about-vision__number,
.p-about-vision__title {
  text-align: center;
}

.p-about-vision__number {
  color: #DE8430;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-about-vision__number {
    font-size: 15px;
  }
}

.p-about-vision__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .p-about-vision__title {
    font-size: 28px;
    margin-top: 10px;
  }
}

.p-about-vision__text {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-about-vision__text {
    font-size: 15px;
    margin-top: 30px;
  }
}

.p-about {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-about {
    margin-top: 100px;
  }
}

.p-about::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-about::before {
    display: block;
    content: "";
    width: 260px;
    height: 180px;
    position: absolute;
    top: -105px;
    left: -100px;
    background-image: radial-gradient(#DE8430 20%, transparent 20%), radial-gradient(#DE8430 20%, transparent 20%);
    background-size: 20px 20px;
    background-position: 0 0, 20px 20px;
    transform: skewX(-10deg);
    z-index: 1;
  }
}

@media screen and (min-width: 768px) {
  .l-about__inner {
    width: 100vw;
    max-width: 100%;
    margin: 0 calc(50% - 50vw);
    padding: 0;
  }
}

.p-about__contents {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-about__contents {
    flex-direction: row;
    margin-top: 0;
  }
}

.p-about__image {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  max-height: 100%;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
}
@media screen and (min-width: 768px) {
  .p-about__image {
    width: 100%;
    max-width: 52%;
    margin: 0;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 88% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 88% 100%, 0% 100%);
    position: relative;
    left: -5px;
    top: -10px;
  }
}

.p-about__image img {
  width: 95%;
  margin-left: 0;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 88% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 88% 100%, 0% 100%);
  aspect-ratio: 742/493;
}
@media screen and (min-width: 768px) {
  .p-about__image img {
    width: 100%;
  }
}

.p-about__text {
  width: 100%;
  max-width: 100%;
  margin-top: 20px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .p-about__text {
    margin-top: 45px;
    max-width: 543px;
    font-size: 15px;
  }
}

.p-about__btn {
  margin-top: 23px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about__btn {
    margin-top: 40px;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.p-Details {
  padding: 45px 0;
}
@media screen and (min-width: 768px) {
  .p-Details {
    padding: 100px 0;
  }
}

.p-Details__section-title {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .p-Details__section-title {
    font-size: 40px;
  }
}

.p-Details__contents {
  position: relative;
  display: block;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  margin: auto;
  height: 100%;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-Details__contents {
    max-width: 800px;
    margin-top: 50px;
  }
}

.p-Details__contents:hover {
  opacity: 1;
}

.p-Details__body {
  padding: 1rem 1.7333333333rem;
  border: 2px solid #DE8430;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-Details__body {
    padding: 1.5rem 1.8666666667rem;
  }
}

.p-Details img {
  aspect-ratio: 335/173;
}
@media screen and (min-width: 768px) {
  .p-Details img {
    aspect-ratio: 399/186;
  }
}

.p-Details__time {
  color: #AAA;
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .p-Details__time {
    font-size: 14px;
  }
}

.c-card__text {
  margin-top: 5px;
  font-size: 14px;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .c-card__text {
    font-size: 15px;
  }
}

.p-drawer__icon {
  position: fixed;
  top: 0;
  right: 0;
  padding: 10px;
  background: #DE8430;
  z-index: 1000;
}
.p-drawer__icon.is-active {
  padding: 10px 18px;
}
.p-drawer__icon.is-active .p-drawer__icon-bar1 {
  width: 20px;
  height: 2px;
  top: 50%;
  right: 20px;
  transform: rotate(-45deg);
}
.p-drawer__icon.is-active .p-drawer__icon-bar2 {
  display: none;
}
.p-drawer__icon.is-active .p-drawer__icon-bar3 {
  width: 20px;
  height: 2px;
  top: 50%;
  right: 20px;
  transform: rotate(45deg);
}
.p-drawer__icon.is-active .p-drawer__icon-text {
  display: block;
}

.p-drawer__icon-bars {
  width: 20px;
  height: 20px;
  display: block;
  position: relative;
  z-index: 1000;
  cursor: pointer;
}

.p-drawer__icon-bar1,
.p-drawer__icon-bar2,
.p-drawer__icon-bar3 {
  position: absolute;
  width: 20px;
  height: 1px;
  background: #fff;
  top: 0;
  left: 0;
  transition: ease 0.5s;
}

.p-drawer__icon-bar1 {
  top: 4px;
}

.p-drawer__icon-bar2 {
  top: 10px;
  width: 16px;
}

.p-drawer__icon-bar3 {
  top: 16px;
}

.p-drawer__icon-text {
  display: none;
  position: fixed;
  top: 13px;
  right: 45px;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.7px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.p-drawer__icon-text:hover {
  color: #DE8430;
}

.p-drawer__content {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  background: rgba(98, 58, 20, 0.95);
  z-index: 250;
  transform: translateX(105%);
  transition: all 0.5s;
  padding: 11.6666666667rem 3.3333333333rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.p-drawer__content.is-active {
  transform: translateX(0);
}

.p-drawer__content-items {
  text-align: center;
}

.p-drawer__content-item {
  text-align: left;
}

.p-drawer__content-item:not(:first-child) {
  margin-top: 1rem;
}

.p-drawer__content-item a {
  display: block;
  color: #fff;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 1.8px;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease-in-out;
}

.p-drawer__content-item a:hover {
  color: #DE8430;
}
.p-drawer__content-item a:hover .c-icon path {
  fill: #DE8430;
}

.p-drawer__content-item .c-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-drawer__content-item .c-icon svg {
  width: 15px;
  height: 15px;
}

.p-drawer__content-item .c-icon svg path {
  transition: all 0.3s ease-in-out;
}

.p-drawer__content-copy-right {
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
}

.p-faq {
  position: relative;
  width: 100%;
  padding-bottom: 50px;
  padding-top: 125px;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .p-faq {
    padding-top: 224px;
    padding-bottom: 100px;
  }
}

.p-faq::before {
  content: "";
  width: 100%;
  height: 100%;
  max-height: 200px;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../../assets/images/common/p-faq_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .p-faq::before {
    max-height: 437px;
  }
}

.p-faq__body {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
  background: #fff;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.05);
  padding: 4.8666666667rem 1.3333333333rem 1.3333333333rem;
}
@media screen and (min-width: 768px) {
  .p-faq__body {
    max-width: 100%;
    padding: 8.4666666667rem 11.3333333333rem 4rem;
  }
}

.p-faq__heading {
  position: absolute;
  top: -20px;
  left: 0;
  transform: translateX(20px);
}
@media screen and (min-width: 768px) {
  .p-faq__heading {
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.p-faq__box {
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.05);
}

.p-faq__box:first-child .p-faq__box-a {
  display: block;
}

.p-faq__box:first-child .p-faq__box-q::after {
  background: url("../../assets/images/common/arrow_top.png") no-repeat center center;
  background-size: contain;
}

.p-faq__box:not(:first-child) {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-faq__box:not(:first-child) {
    margin-top: 15px;
  }
}

.p-faq__box-q {
  position: relative;
}

.p-faq__box-q p {
  color: #fff;
  background: #DE8430;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  padding: 14px 40px 14px 30px;
}
@media screen and (min-width: 768px) {
  .p-faq__box-q p {
    font-size: 18px;
    padding: 10px 40px 10px 80px;
  }
}

.p-faq__box-q::before {
  content: "Q.";
  width: 14px;
  height: 100%;
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: "Outfit", sans-serif;
  display: flex;
  align-items: inherit;
  justify-content: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-faq__box-q::before {
    width: 18px;
    top: 0;
    left: 40px;
    align-items: center;
    font-size: 18px;
  }
}

.p-faq__box-q::after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  background: url("../../assets/images/common/arrow_bottom.png") no-repeat center center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-faq__box-q::after {
    width: 15px;
    height: 15px;
    right: 20px;
  }
}

.p-faq__box.is-open .p-faq__box-q::after {
  background: url("../../assets/images/common/arrow_top.png") no-repeat center center;
  background-size: contain;
}

.p-faq__box-a {
  display: none;
  position: relative;
}
.p-faq__box-a.is-open {
  display: block;
}

.p-faq__box-a p {
  padding: 10px 15px 10px 30px;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  .p-faq__box-a p {
    padding: 15px 40px 15px 80px;
    font-size: 15px;
  }
}

.p-faq__box-a::before {
  content: "A.";
  width: 14px;
  height: 100%;
  position: absolute;
  top: 10px;
  left: 10px;
  color: #DE8430;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  display: flex;
  align-items: inherit;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-faq__box-a::before {
    width: 18px;
    height: 20px;
    left: 40px;
    top: 16px;
    align-items: center;
    font-size: 18px;
  }
}

.p-footer {
  color: #fff;
  background: #623A14;
  padding: 50px 0 20px;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding: 100px 0 40px;
  }
}

.p-footer__inner {
  max-width: 1130px;
}

.p-footer__contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .p-footer__contents {
    flex-direction: row;
  }
}

.p-footer__items {
  text-align: center;
  letter-spacing: 0.2px;
}
@media screen and (min-width: 768px) {
  .p-footer__items {
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.p-footer__items {
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-footer__items {
    font-size: 15px;
  }
}

.p-footer__item-address {
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 25px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-footer__item-address {
    margin-top: 0;
  }
}

.p-footer__item-tel {
  font-family: "Outfit", sans-serif;
  margin-top: 15px;
}

.p-footer__item-fax {
  font-family: "Outfit", sans-serif;
  margin-top: 5px;
}

.p-footer__btn {
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__btn {
    margin-top: 20px;
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.p-footer__map {
  width: 100%;
  max-width: 632px;
}

.p-footer__map iframe {
  width: 100%;
  height: auto;
}

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

.p-footer__map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.p-footer__nav-navigation {
  text-align: center;
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-navigation {
    margin-top: 100px;
  }
}

.p-footer__logo {
  width: 100%;
  max-width: 105px;
  margin: auto;
}

.p-footer__logo a:hover {
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}

.p-footer__nav {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-footer__nav {
    margin-top: 25px;
  }
}

.p-footer__nav-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.p-footer__nav-item {
  position: relative;
}

.p-footer__nav-item:last-child::before {
  display: none;
}

.p-footer__nav-item::before {
  content: "";
  width: 1px;
  height: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -10px;
  background: #fff;
}

.p-footer__nav-item a {
  font-size: 14px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-item a {
    font-size: 15px;
  }
}

.p-footer__nav-item a:hover {
  color: #DE8430;
  opacity: 1;
}

.p-footer__copy-right {
  margin-top: 50px;
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-footer__copy-right {
    margin-top: 60px;
  }
}

.p-footer__top-btn {
  transition: all 0.3s ease-in-out;
}

.p-footer__top-btn a {
  display: block;
  position: fixed;
  bottom: 10px;
  right: 10px;
  color: #fff;
  background: #DE8430;
  border: 1px solid #fff;
  text-align: center;
  padding: 5px;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-footer__top-btn a {
    bottom: 20px;
    right: 20px;
    padding: 10px;
  }
}

.p-footer__top-btn a:hover {
  opacity: 0.8;
}

.p-footer__top-btn img {
  width: 12px;
}
@media screen and (min-width: 768px) {
  .p-footer__top-btn img {
    width: 16px;
  }
}

.p-footer__top-btn span {
  font-size: 12px;
  font-weight: 700;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .p-footer__top-btn span {
    font-size: 15px;
    font-weight: 700;
  }
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
  .p-footer__contact {
    width: 50%;
  }
}
.p-header {
  min-height: 40px;
}
@media screen and (min-width: 768px) {
  .p-header {
    min-height: auto;
  }
}

.fixed-header {
  position: fixed;
  top: 0;
  width: 100%;
  opacity: 0.95;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.p-first-view__bg {
  background: url("../../assets/images/common/mv_bg.png") no-repeat center center;
  background-size: cover;
}

.p-header__inner {
  width: 100%;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding: 0 50px;
  }
}

.p-header__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-header__logo {
  position: relative;
  font-family: Outfit;
  font-size: 25.132px;
  font-size: 25.132px;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  background: url("../../assets/images/common/orange_logo-bg.png");
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    font-size: 36px;
  }
}

.p-header__logo:hover {
  opacity: 0.8;
}

.p-header__logo a:hover {
  opacity: 1;
}

.p-header__lists {
  display: flex;
  align-items: center;
  gap: 2.0666666667rem;
}

.p-header__list {
  font-weight: 600;
}

.p-header__list a {
  font-size: 15px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}

.p-header__list a:hover {
  color: #DE8430;
  opacity: 1;
}

.p-mv__container {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-mv__container {
    width: 100%;
    max-width: 1440px;
    margin: auto;
    display: flex;
    flex-direction: row-reverse;
    margin-top: 20px;
  }
}

.p-mv__photo-wrap {
  width: 100%;
  max-width: 355px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (min-width: 768px) {
  .p-mv__photo-wrap {
    max-width: calc(882px + 4%);
    margin-right: 0;
  }
}

.p-mv__photo {
  width: 100%;
  overflow-y: clip;
}

.p-photo {
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  transform: scale(1.2);
}
@media screen and (min-width: 768px) {
  .p-photo {
    transform: scale(1);
  }
}

.p-photo-inner {
  width: 100%;
  height: 100%;
  background: url("../../assets/images/common/mv_image.png") no-repeat center center;
  background-size: cover;
}

.p-photo-1 {
  width: 115%;
  height: 100%;
  -webkit-clip-path: polygon(34% 0%, 100% 0%, 64% 100%, 0% 100%);
          clip-path: polygon(34% 0%, 100% 0%, 64% 100%, 0% 100%);
}
@media screen and (min-width: 768px) {
  .p-photo-1 {
    width: 100%;
    margin-left: 37%;
    transform: skewX(-3.54deg);
    -webkit-clip-path: polygon(26% 0%, 100% 0%, 74% 100%, 0% 100%);
            clip-path: polygon(26% 0%, 100% 0%, 74% 100%, 0% 100%);
  }
}

.p-photo-1 .p-photo-inner {
  height: 12.7rem;
  background-position: -5% 50%;
  transform: scale(1.2);
}
@media screen and (min-width: 768px) {
  .p-photo-1 .p-photo-inner {
    width: 100%;
    height: 31.4333333333rem;
    transform: skewX(3.5deg) scale(1.4);
    background-position: -5% 50%;
  }
}

.p-photo-2 {
  width: 138%;
  -webkit-clip-path: polygon(42% 0%, 100% 0%, 58% 100%, 0% 100%);
          clip-path: polygon(42% 0%, 100% 0%, 58% 100%, 0% 100%);
  margin-left: -13px;
  transform: scale(1.1);
}
@media screen and (min-width: 768px) {
  .p-photo-2 {
    width: 130%;
    -webkit-clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
            clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
    margin-left: 7%;
    transform: none;
    transform: scale(1);
  }
}

.p-photo-2 .p-photo-inner {
  height: 17.2rem;
  background-position: 33% 50%;
}
@media screen and (min-width: 768px) {
  .p-photo-2 .p-photo-inner {
    height: 42rem;
    transform: none;
    transform: scale(1.1);
    background-position: 31% 50%;
  }
}

.p-photo-3 {
  width: 150%;
  -webkit-clip-path: polygon(42% 0%, 100% 0%, 58% 100%, 0% 100%);
          clip-path: polygon(42% 0%, 100% 0%, 58% 100%, 0% 100%);
  margin-left: -22px;
  transform: scale(1);
}
@media screen and (min-width: 768px) {
  .p-photo-3 {
    width: 133%;
    -webkit-clip-path: polygon(41% 0%, 100% 0%, 59% 100%, 0% 100%);
            clip-path: polygon(41% 0%, 100% 0%, 59% 100%, 0% 100%);
    margin-left: -8%;
    transform: none;
  }
}

.p-photo-3 .p-photo-inner {
  height: 18.8rem;
  background-position: 67% 50%;
}
@media screen and (min-width: 768px) {
  .p-photo-3 .p-photo-inner {
    width: 110%;
    height: 44.6666666667rem;
    background-position: 71% 50%;
    transform: none;
  }
}

.p-photo-4 {
  margin-left: -14px;
  width: 120%;
  -webkit-clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
          clip-path: polygon(40% 0%, 100% 0%, 60% 100%, 0% 100%);
}
@media screen and (min-width: 768px) {
  .p-photo-4 {
    width: 109%;
    transform: skewX(-3deg);
    margin-left: -10%;
    -webkit-clip-path: polygon(28% 0%, 100% 0%, 72% 100%, 0% 100%);
            clip-path: polygon(28% 0%, 100% 0%, 72% 100%, 0% 100%);
  }
}

.p-photo-4 .p-photo-inner {
  height: 14.3662666667rem;
  background-position: 100% 0;
  transform: scale(1.1);
}
@media screen and (min-width: 768px) {
  .p-photo-4 .p-photo-inner {
    height: 34rem;
    transform: skewX(3deg) scale(1.3);
    background-position: 105% 0px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
  .p-mv__photo-wrap {
    max-width: 882px;
    justify-content: flex-end;
  }
  .p-mv__photo-wrap::before {
    left: 31.2%;
    left: 19.8vw;
    transform: skewX(-3.8deg);
  }
  .p-mv__photo {
    max-width: 12vw;
  }
  .p-photo-1 .p-photo-inner {
    height: 24vw;
    background-position: -6% 50%;
  }
  .p-photo-2 .p-photo-inner {
    height: 32.44vw;
  }
  .p-photo-3 .p-photo-inner {
    height: 34.92vw;
  }
  .p-photo-4 .p-photo-inner {
    height: 26.38vw;
    background-position: 105% 0px;
  }
}
.p-mv__inner {
  position: relative;
  width: 100%;
  max-width: 335px;
  margin: auto;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 768px) {
  .p-mv__inner {
    width: 44.4%;
    padding: 0;
    margin-left: 4.6666666667rem;
  }
}

@media screen and (min-width: 768px) {
  .p-mv__contents {
    margin-top: 20px;
  }
}

.p-mv__title-wrap {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-mv__title-wrap {
    margin-top: 0;
  }
}

.p-mv__title {
  color: #28180A;
  font-family: "Outfit", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.5px;
}
@media screen and (min-width: 768px) {
  .p-mv__title {
    font-size: clamp(80px, 10vw, 128px);
    letter-spacing: 3.84px;
    white-space: nowrap;
  }
}
@media (min-width: 1140px) {
  .p-mv__title {
    font-size: 128px;
  }
}

.p-mv__title span {
  display: block;
}

.p-mv__sub-title {
  margin-top: 15px;
  color: #28180A;
  font-family: "Noto Sans JP";
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .p-mv__sub-title {
    margin-top: 25px;
    letter-spacing: 4px;
    white-space: nowrap;
    line-height: 180%;
    letter-spacing: 3px;
  }
}

.p-mv__bottom-bg {
  margin-top: 20px;
  padding: 30px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 38.02%, #FFF 100%);
}
@media screen and (min-width: 768px) {
  .p-mv__bottom-bg {
    margin-top: -38px;
    padding: 76px 0;
  }
}

.p-first-view__bg {
  position: relative;
}

.p-first-view__bg::before {
  content: "";
  width: 33px;
  height: 53px;
  background: rgba(222, 163, 48, 0.8);
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  position: absolute;
  top: 0px;
  left: 56%;
  transform: translateX(-56%) skewX(-1deg);
}
@media screen and (min-width: 768px) {
  .p-first-view__bg::before {
    width: 100px;
    height: 105px;
    top: 0;
    left: 30.5%;
    transform: translateX(-30%) skewX(2deg);
  }
}

.p-first-view__bg::after {
  content: "";
  width: 23px;
  height: 25px;
  flex-shrink: 0;
  background: rgba(222, 132, 48, 0.8);
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: calc(57% + 30px);
  transform: translateX(-57%) skewX(4deg);
}
@media screen and (min-width: 768px) {
  .p-first-view__bg::after {
    width: 43px;
    height: 62px;
    left: calc(30.5% + 87px);
    transform: translateX(-30%) skewX(-2deg);
  }
}

.p-first-view__bg__ornament {
  position: relative;
  display: none;
}
@media screen and (min-width: 768px) {
  .p-first-view__bg__ornament {
    display: block;
    width: 40px;
    height: 35px;
    flex-shrink: 0;
    background: rgba(222, 132, 48, 0.8);
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    position: absolute;
    top: 0;
    left: 17%;
    transform: translateX(-17%) skewX(4deg);
    z-index: -1;
  }
}

.p-mv__bottom-bg {
  position: relative;
}

.p-mv__bottom-bg::before {
  content: "";
  width: 45px;
  height: 70px;
  flex-shrink: 0;
  background: rgba(222, 132, 48, 0.8);
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  position: absolute;
  bottom: -24px;
  left: 18%;
  transform: translateX(-18%) skewX(-1deg);
}
@media screen and (min-width: 768px) {
  .p-mv__bottom-bg::before {
    width: 52px;
    height: 157px;
    background: rgba(222, 132, 48, 0.8);
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
            clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    position: absolute;
    bottom: 100px;
    left: calc(42.4% - 52px);
    transform: translateX(-42.4%) skewX(-3.5deg);
    display: none;
  }
}

.p-mv__photo-1 {
  position: relative;
  overflow-y: clip;
}
@media screen and (min-width: 768px) {
  .p-mv__photo-1 {
    overflow-y: visible;
  }
}

@media screen and (min-width: 768px) {
  .p-mv__photo-1::before {
    content: "";
    display: block;
    width: 70px;
    height: 200px;
    background: rgba(222, 132, 48, 0.8);
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    position: absolute;
    bottom: -116px;
    left: 21px;
    transform: skewX(-5deg);
    position: absolute;
    bottom: -145px;
    left: 1px;
    transform: skewX(-6deg);
  }
}

.p-mv__photo-2 {
  position: relative;
  overflow-y: clip;
}
@media screen and (min-width: 768px) {
  .p-mv__photo-2 {
    overflow-y: visible;
  }
}

@media screen and (min-width: 768px) {
  .p-mv__photo-2::before {
    content: "";
    width: 40px;
    height: 25px;
    flex-shrink: 0;
    background: rgba(222, 163, 48, 0.8);
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
            clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    position: absolute;
    bottom: 28px;
    left: -151px;
    transform: skewX(10deg);
  }
}

@media screen and (min-width: 768px) {
  .p-mv__photo-2::after {
    content: "";
    width: 40px;
    height: 119px;
    flex-shrink: 0;
    background: rgba(222, 163, 48, 0.8);
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
            clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    position: absolute;
    bottom: 58px;
    left: -135px;
    transform: skewX(-7deg);
    z-index: -1;
  }
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
  .p-mv__photo-1::before {
    left: -10px;
  }
  .p-mv__photo-2::before {
    bottom: 0;
    left: calc(-70% - 11px);
    transform: translateX(70%) skewX(10deg);
  }
  .p-mv__photo-2::after {
    bottom: 2.5vw;
    left: -65%;
    transform: translateX(65%) skewX(-7deg);
  }
}
@media screen and (min-width: 901px) and (max-width: 1151px) {
  .p-mv__photo-2::before {
    bottom: 0;
    left: calc(-60% - 13px);
    transform: translateX(65%) skewX(10deg);
  }
  .p-mv__photo-2::after {
    bottom: 30px;
    left: -60%;
    transform: translateX(65%) skewX(-5deg);
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .p-mv__photo-2::before {
    bottom: -1vw;
    left: calc(-48% - 13px);
    transform: translateX(48%) skewX(10deg);
  }
  .p-mv__photo-2::after {
    left: -48%;
    transform: translateX(48%) skewX(-5deg);
  }
}
.p-mv__bottom-bg span {
  position: relative;
  display: block;
}

.p-mv__bottom-bg span::before {
  content: "";
  width: 30px;
  height: 20px;
  flex-shrink: 0;
  background: rgba(222, 163, 48, 0.8);
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  position: absolute;
  bottom: -25px;
  left: calc(20% + 36px);
  transform: translateX(-20%) skewX(10deg);
}
@media screen and (min-width: 768px) {
  .p-mv__bottom-bg span::before {
    bottom: 95px;
    left: calc(47.3% + 40px);
    transform: translateX(-47.3%) skewX(12deg);
    display: none;
  }
}

.p-mv__bottom-bg span::after {
  content: "";
  width: 30px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(222, 163, 48, 0.8);
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  position: absolute;
  bottom: 0;
  left: calc(20% + 43px);
  transform: translateX(-20%) skewX(-1deg);
}
@media screen and (min-width: 768px) {
  .p-mv__bottom-bg span::after {
    height: 20px;
    bottom: 121px;
    left: calc(47.7% + 38px);
    transform: translateX(-47.7%) skewX(12deg);
    display: none;
  }
}

.p-mv {
  position: relative;
  overflow: hidden;
}

.p-mv::before {
  content: "";
  width: 36px;
  height: 124px;
  background: rgba(222, 132, 48, 0.8);
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  position: absolute;
  bottom: 24%;
  left: -24px;
  transform: translateY(-24%) skewX(-7deg);
}
@media screen and (min-width: 768px) {
  .p-mv::before {
    width: 90px;
    height: 150px;
    bottom: 47%;
    left: -64px;
    transform: translateY(-47%) skewX(-2deg);
  }
}

.p-mv::after {
  content: "";
  width: 40px;
  height: 220px;
  background: rgba(222, 163, 48, 0.8);
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  position: absolute;
  bottom: 4%;
  right: -25px;
  transform: translateY(-4%) skewX(-8deg);
}
@media screen and (min-width: 768px) {
  .p-mv::after {
    width: 120px;
    height: 260px;
    right: -80px;
    bottom: 11%;
    transform: translateY(-11%) skewX(-4deg);
  }
}

.p-service {
  position: relative;
}

.p-service::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-service::before {
    display: block;
    content: "";
    width: 260px;
    height: 160px;
    position: absolute;
    top: -180px;
    right: -60px;
    background-image: radial-gradient(#FFF7B1 20%, transparent 20%), radial-gradient(#FFF7B1 20%, transparent 20%);
    background-size: 20px 20px;
    background-position: 0 0, 20px 20px;
    transform: skewX(-10deg);
    z-index: 1;
  }
}

@media screen and (min-width: 768px) {
  .p-service_inner {
    max-width: 100%;
  }
}

.p-service_items {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-service_items {
    margin-top: 80px;
  }
}

.p-service_item {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  display: flex;
  align-items: center;
  color: #fff;
  background: linear-gradient(101deg, transparent 21%, #DE8430 21%);
}
@media screen and (min-width: 768px) {
  .p-service_item {
    padding: 0 10.416%;
    padding: 3.1333333333rem 6.6666666667rem 3.1333333333rem 10rem;
    background: linear-gradient(101deg, transparent 16%, #DE8430 16%);
  }
}

.p-service_item:not(:first-child) {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .p-service_item:not(:first-child) {
    margin-top: 50px;
  }
}

.p-service_item:nth-child(2n) {
  background: linear-gradient(280deg, transparent 18%, #DE8430 11.6%);
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-service_item:nth-child(2n) {
    padding: 3.1333333333rem 10rem 3.1333333333rem 6.6666666667rem;
  }
}

.p-service_item:nth-child(2n) .p-service_container {
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-service_item:nth-child(2n) .p-service_container {
    flex-direction: row-reverse;
  }
}

.p-service_item:nth-child(2n) .p-service_left {
  margin-left: auto;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .p-service_item:nth-child(2n) .p-service_left {
    margin: 0;
  }
}

.p-service_item:nth-child(2n) .p-service_number-wrap {
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  position: absolute;
  left: -3.9333333333rem;
  top: 50%;
  transform: translateY(-50%);
}

.p-service_item:nth-child(2n) .p-service_right {
  padding: 0 24% 3rem 1.3333333333rem;
}
@media screen and (min-width: 768px) {
  .p-service_item:nth-child(2n) .p-service_right {
    padding: 0;
    justify-content: end;
  }
}

.p-service_item:nth-child(2n) .p-service_contents {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .p-service_item:nth-child(2n) .p-service_contents {
    margin-right: 6rem;
  }
}

.p-service .p-service_item--color2 {
  background: linear-gradient(281deg, transparent 20%, #DE9830 20%);
}
@media screen and (min-width: 768px) {
  .p-service .p-service_item--color2 {
    background: linear-gradient(281deg, transparent 16%, #DE9830 16%);
  }
}

.p-service .p-service_item--color3 {
  background: linear-gradient(101deg, transparent 21%, #DEAD30 21%);
}
@media screen and (min-width: 768px) {
  .p-service .p-service_item--color3 {
    background: linear-gradient(101deg, transparent 15%, #DEAD30 15%);
  }
}

.p-service_container {
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-service_container {
    max-width: 1325px;
    flex-direction: row;
  }
}

.p-service_left {
  position: relative;
  width: 100%;
  max-width: 89.33%;
  margin-top: 30px;
  margin-left: 0;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-service_left {
    max-width: 51%;
    margin-top: 0;
    margin: 0;
  }
}

.p-service_image img {
  aspect-ratio: 335/200;
}
@media screen and (min-width: 768px) {
  .p-service_image img {
    aspect-ratio: 2/1;
  }
}

.p-service_number-wrap {
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  position: absolute;
  right: -3.9333333333rem;
  top: 50%;
  transform: translateY(-50%);
}

.p-service_number-line {
  border: 1px solid #fff;
  width: 1px;
  height: 48.6%;
}

.p-service_number {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  align-items: center;
}

.p-service_number-main {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.6px;
  margin-bottom: 1.3333333333rem;
}

.p-service_number-sub {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  writing-mode: vertical-rl;
  margin-top: 1.3333333333rem;
}

.p-service_right {
  display: flex;
  margin-top: 25px;
  width: 100%;
  padding: 0 1.3333333333rem 3rem 15.2%;
}
@media screen and (min-width: 768px) {
  .p-service_right {
    padding: 0;
    margin-top: 0;
  }
}

.p-service_contents {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .p-service_contents {
    width: 100%;
    max-width: 455px;
    margin-left: 6rem;
  }
}

.p-service_title {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-service_title {
    font-size: 28px;
  }
}

.p-service_sub-title {
  font-size: 13px;
  line-height: 1;
  margin-top: 10px;
}

.p-service_text {
  margin-top: 10px;
  font-size: 14px;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .p-service_text {
    margin-top: 15px;
    font-size: 15px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
  .p-service_number span {
    font-size: min(1.5vw, 20px);
  }
}
.p-works-main {
  margin-top: 0;
  padding: 60px 0;
}
@media screen and (min-width: 768px) {
  .p-works-main {
    padding: 20px 0 100px;
  }
}

.p-works-main__heading {
  display: flex;
  align-items: baseline;
  flex-direction: column;
  gap: 22px;
}
@media screen and (min-width: 768px) {
  .p-works-main__heading {
    align-items: center;
    flex-direction: row;
    gap: 6.6666666667rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439px) {
  .p-works-main__heading {
    gap: 30px;
    flex-direction: column;
  }
}

.p-works-main__text {
  width: 100%;
  max-width: 600px;
  margin: auto;
  font-size: 14px;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .p-works-main__text {
    max-width: 100%;
  }
}

.p-works-main__article {
  margin-top: 25px;
}
@media screen and (min-width: 768px) {
  .p-works-main__article {
    margin-top: 50px;
  }
}

.p-works-main__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-works-main__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.6666666667rem 2rem;
  }
}

.p-works-main__item {
  display: flex;
  flex-direction: column;
}

.p-works-main__page-nav {
  margin-top: 45px;
}
@media screen and (min-width: 768px) {
  .p-works-main__page-nav {
    margin-top: 60px;
  }
}

.p-works-main__page-nav-items {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-works-main__page-nav-item {
  margin: 0 10px;
}

.p-works-main__page-nav-item a {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
}

.number-btn {
  border-bottom: 1px solid #ECE1D7;
  text-align: center;
  min-width: 12px;
}

.number-btn:hover {
  border-bottom: 1px solid #DE8430;
}

.number-btn--first {
  border-bottom: 1px solid #DE8430;
}

.return-btn {
  margin: 0 13px 0 0;
}

.next-btn {
  margin: 0 0 0 13px;
}

.return-btn img {
  width: 12px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

.next-btn img {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-works-main__page-nav-item:nth-child(4) {
  position: relative;
  margin-right: 16px;
}

.p-works-main__page-nav-item:nth-child(5) {
  margin-left: 16px;
}

.p-works-main__page-nav-item:nth-child(4)::before {
  content: "…";
  width: 12px;
  height: 9px;
  position: absolute;
  top: 0;
  right: -20px;
}

.p-works {
  position: relative;
  padding: 110px 0 50px;
}
@media screen and (min-width: 768px) {
  .p-works {
    margin-top: 100px;
    padding: 100px 0;
  }
}

.p-works::before {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-works::before {
    display: block;
    content: "";
    width: 70px;
    height: 360px;
    background: rgba(222, 163, 48, 0.8);
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    position: absolute;
    bottom: 32px;
    right: -43px;
    transform: skewX(-8deg);
  }
}

.p-works::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-works::after {
    display: block;
    content: "";
    width: 100px;
    height: 140px;
    position: absolute;
    bottom: -5px;
    right: 12px;
    background-image: radial-gradient(#DE8430 20%, transparent 20%), radial-gradient(#DE8430 20%, transparent 20%);
    background-size: 20px 20px;
    background-position: 0 0, 20px 20px;
    transform: skewX(-10deg) scale(0.9);
    z-index: 1;
  }
}

.p-works__inner {
  position: relative;
}

.p-works__inner::before {
  content: "";
  width: 50px;
  height: 70px;
  background: rgba(222, 132, 48, 0.8);
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  position: absolute;
  bottom: -65px;
  left: -5px;
  transform: none;
}
@media screen and (min-width: 768px) {
  .p-works__inner::before {
    width: 100px;
    height: 120px;
    bottom: -80px;
    left: -45px;
    transform: none;
  }
}

.p-works__inner::after {
  content: "";
  width: 100px;
  height: 180px;
  position: absolute;
  bottom: -75px;
  left: -5px;
  background-image: radial-gradient(#DE8430 20%, transparent 20%), radial-gradient(#DE8430 20%, transparent 20%);
  background-size: 20px 20px;
  background-position: 0 0, 20px 20px;
  transform: skewX(-10deg) scale(0.45);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-works__inner::after {
    bottom: -80px;
    transform: skewX(-11deg) scale(0.9);
  }
}

@media screen and (min-width: 1441px) {
  .p-works__inner::after {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    max-width: 100px;
    left: 125px;
  }
  .p-works__inner::before {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    max-width: 100px;
    left: 75px;
  }
}
.p-works__contents {
  position: relative;
  display: flex;
  align-items: baseline;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-works__contents {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3.3333333333rem;
  }
}

.p-works__contents::before {
  display: block;
  content: "";
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  max-width: 120px;
  height: 100px;
  position: absolute;
  top: -80px;
  right: -20px;
  left: auto;
  background-image: radial-gradient(#DE8430 20%, transparent 20%), radial-gradient(#DE8430 20%, transparent 20%);
  background-size: 20px 20px;
  background-position: 0 0, 20px 20px;
  transform: skewX(-10deg) scale(0.6);
}
@media screen and (min-width: 768px) {
  .p-works__contents::before {
    left: 5px;
    top: -125px;
    transform: skewX(-10deg) scale(0.9);
  }
}

.p-works__ornament1 {
  position: relative;
}

.p-works__ornament1::before {
  content: "";
  width: 60px;
  height: 70px;
  background: rgba(222, 163, 48, 0.8);
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  position: absolute;
  top: -52px;
  right: 28px;
  transform: skewX(2deg);
}
@media screen and (min-width: 768px) {
  .p-works__ornament1::before {
    content: "";
    width: 100px;
    height: 115px;
    top: -120px;
    left: -30px;
    transform: skewX(1deg);
  }
}

.p-works__ornament1::after {
  content: "";
  width: 25px;
  height: 45px;
  background: rgba(222, 132, 48, 0.8);
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  position: absolute;
  top: -55px;
  right: 0;
  transform: skewX(-2deg);
}
@media screen and (min-width: 768px) {
  .p-works__ornament1::after {
    content: "";
    width: 40px;
    height: 75px;
    top: -120px;
    left: 70px;
    transform: skewX(-4deg);
  }
}

.p-works__ornament2,
.p-works__ornament3 {
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-works__ornament2::before {
    content: "";
    width: 70px;
    height: 130px;
    background: rgba(222, 132, 48, 0.8);
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    position: absolute;
    bottom: -10px;
    right: 40px;
    transform: skewX(-3deg);
  }
}

@media screen and (min-width: 768px) {
  .p-works__ornament3::before {
    content: "";
    width: 45px;
    height: 30px;
    background: rgba(222, 163, 48, 0.8);
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    position: absolute;
    bottom: 70px;
    right: 115px;
    transform: skewX(10deg);
  }
}

@media screen and (min-width: 768px) {
  .p-works__ornament3::after {
    content: "";
    width: 45px;
    height: 115px;
    background: rgba(222, 163, 48, 0.8);
    -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    position: absolute;
    bottom: -50px;
    right: 130px;
    transform: skewX(-5deg);
  }
}

.p-works__text {
  width: 100%;
  max-width: 100%;
  margin-top: 35px;
  font-size: 14px;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .p-works__text {
    max-width: 540px;
    margin-top: 0;
    font-size: 15px;
  }
}

.p-works__article {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-works__article {
    margin-top: 80px;
  }
}

.p-works__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-works__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 2rem;
  }
}

.p-works__item {
  display: flex;
  flex-direction: column;
}

.p-works__btn {
  text-align: center;
  margin-top: 35px;
}
@media screen and (min-width: 768px) {
  .p-works__btn {
    margin-top: 70px;
  }
}

.u-about-bg {
  position: relative;
  background: linear-gradient(280deg, transparent 46%, #F4F4F4 0%);
  padding: 50px 0 110px;
}
@media screen and (min-width: 768px) {
  .u-about-bg {
    padding: 100px 0;
    background: linear-gradient(280deg, transparent 56.2%, #F4F4F4 0%);
  }
}

.p-about-creative__en-title {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-about-creative__en-title {
    display: block;
    position: absolute;
    top: -130px;
    left: 0;
    color: #F4F4F4;
    font-size: 150px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    line-height: 1;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .p-about-creative__en-title {
    font-size: clamp(64px, 10vw, 150px);
  }
}

.p-about-message__en-title {
  position: absolute;
  bottom: 45px;
  right: 0;
  color: #E8E4E0;
  font-family: "Outfit", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-about-message__en-title {
    bottom: -20px;
    font-size: 150px;
    z-index: -1;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  .p-about-message__en-title {
    font-size: clamp(64px, 10vw, 150px);
  }
}

.u-about-creative__en-title-sp {
  display: block;
  position: absolute;
  top: -58px;
  left: auto;
  right: 0;
  color: #F4F4F4;
  font-family: "Outfit", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .u-about-creative__en-title-sp {
    display: none;
  }
}

.u-about-photo-inner {
  width: 100%;
  height: 100%;
  background: url("../../assets/images/common/about-mv-bg.png") no-repeat center center;
  background-size: cover;
}

.u-about-mv__contents {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .u-about-mv__contents {
    margin-top: 120px;
  }
}

.u-about-mv__sub-title {
  letter-spacing: inherit;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .u-about-mv__sub-title {
    letter-spacing: 4px;
    margin-top: 25px;
  }
}

.u-about-mv::before {
  bottom: 14%;
  transform: translateY(-14%) skewX(-7deg);
}
@media screen and (min-width: 768px) {
  .u-about-mv::before {
    bottom: 47%;
    left: -64px;
    transform: translateY(-47%) skewX(-2deg);
  }
}

.u-about-mv::after {
  bottom: 0;
  right: -27px;
  transform: translateY(-4%) skewX(-8deg);
}
@media screen and (min-width: 768px) {
  .u-about-mv::after {
    width: 120px;
    height: 260px;
    right: -80px;
    bottom: 11%;
    transform: translateY(-11%) skewX(-4deg);
  }
}

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

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

.u-mv__title-right {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .u-mv__title-right {
    padding-left: 6rem;
  }
}

.u-works-photo-inner {
  width: 100%;
  height: 100%;
  background: url("../../assets/images/common/works-mv-bg.png") no-repeat center center;
  background-size: cover;
}

.u-works-mv__contents {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .u-works-mv__contents {
    margin-top: 120px;
  }
}

.u-works-mv__sub-title {
  letter-spacing: inherit;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .u-works-mv__sub-title {
    letter-spacing: 4px;
    margin-top: 25px;
  }
}

.u-works-mv::before {
  bottom: 14%;
  transform: translateY(-14%) skewX(-7deg);
}
@media screen and (min-width: 768px) {
  .u-works-mv::before {
    bottom: 47%;
    left: -64px;
    transform: translateY(-47%) skewX(-2deg);
  }
}

.u-works-mv::after {
  bottom: 0;
  right: -27px;
  transform: translateY(-4%) skewX(-8deg);
}
@media screen and (min-width: 768px) {
  .u-works-mv::after {
    width: 120px;
    height: 260px;
    right: -80px;
    bottom: 11%;
    transform: translateY(-11%) skewX(-4deg);
  }
}
/*# sourceMappingURL=style.css.map */
