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

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

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

/* 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]) {
  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;
  }
}
html {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  overflow-x: hidden;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  -webkit-font-smoothing: antialiased;
}
body.is-fixed {
  overflow: auto;
}
@media screen and (max-width: 1023px) {
  body.is-fixed {
    overflow: hidden;
  }
}

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

ol {
  margin: 0;
  padding-left: 1em;
}

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

a,
button,
input[type=submit] {
  text-decoration: none;
  color: #000;
  transition: all 0.3s;
  cursor: pointer;
}

input,
textarea,
select,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}

input[type=checkbox],
input[type=radio] {
  width: auto;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #cecece;
}

button:disabled {
  opacity: 0.7;
  pointer-events: none;
}

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

.is-max-lg {
  display: none !important;
}
@media screen and (max-width: 1023px) {
  .is-max-lg {
    display: block !important;
  }
}

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

.text-center {
  text-align: center;
}

.whitespace-nowrap {
  white-space: nowrap;
}

/* l-wrapper */
/* l-inner */
.l-inner {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* l-header */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  padding-left: 18px;
  background: #fff;
}
@media screen and (max-width: 1023px) {
  .l-header {
    height: 43px;
    padding-left: 20px;
    box-shadow: none;
  }
}
.l-header.is-scrolled {
  background: #fff !important;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.06) !important;
}
.l-header__logo {
  display: block;
  width: 97px;
}
@media screen and (max-width: 1023px) {
  .l-header__logo {
    width: 78px;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__nav {
    position: fixed;
    z-index: 30;
    top: 0;
    right: 0;
    transform: translateX(100%);
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.9);
    width: 236px;
    height: 100%;
    padding: 20px;
  }
}
.l-header__nav.is-active {
  transform: translateX(0);
}
.l-header__nav__head {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-header__nav__head {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
  }
}
.l-header__nav__headTitle {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ed6504;
}
.l-header__nav__headClose {
  width: 20px;
  cursor: pointer;
}
.l-header__nav__title {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-header__nav__title {
    position: relative;
    display: block;
    margin-bottom: 36px;
    font-size: 14px;
  }
}
.l-header__nav__title:after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 31px;
  height: 1px;
  background: #000;
}
.l-header__nav__list {
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 1023px) {
  .l-header__nav__list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px 0;
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__nav__list:after {
    content: "";
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 31px;
    height: 1px;
    background: #000;
  }
}
.l-header__nav__list--sp {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-header__nav__list--sp {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }
}
.l-header__nav__list--sp::after {
  display: none;
}
.l-header__nav__list--sp .c-btn {
  margin: 20px auto 0;
  font-size: 14px;
  height: 50px;
}
.l-header__nav__list--sp .c-btn:before {
  width: 18px;
}
.l-header__nav__item {
  width: 200px;
  height: 62px;
  border-left: 1px solid #d5d5d5;
}
@media screen and (max-width: 1259px) {
  .l-header__nav__item {
    width: 170px;
  }
}
@media screen and (max-width: 1109px) {
  .l-header__nav__item {
    width: 150px;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__nav__item {
    width: auto;
    height: auto;
    border: none;
  }
}
@media screen and (min-width: 1024px) {
  .l-header__nav__item:nth-child(5) {
    display: none;
  }
}
.l-header__nav__item a {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1259px) {
  .l-header__nav__item a {
    font-size: 15px;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__nav__item a {
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  .l-header__nav__item a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: #ff5a01;
    transition: all 0.3s;
  }
}
.l-header__nav__item a.is-active:after {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .l-header__nav__item--main a:hover:after {
    width: 100%;
  }
}
.l-header__nav__item--pcCta {
  width: 229px;
}
@media screen and (max-width: 1259px) {
  .l-header__nav__item--pcCta {
    width: 200px;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__nav__item--pcCta {
    display: none;
  }
}
.l-header__nav__item--pcCta a {
  font-size: 17px;
  border-radius: 0;
}
.l-header__nav__item--pcCta a:before {
  width: 13px;
}
.l-header__spArea {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-header__spArea {
    display: flex;
  }
}
.l-header .l-header__btn {
  display: flex;
  font-size: 13px;
  width: 125px;
  height: 43px;
  border-radius: 0;
}
.l-header .l-header__btn:before {
  width: 11px;
}
.l-header__toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 43px;
  height: 43px;
  background-image: linear-gradient(to bottom, #fff 0%, #d1d1d1 100%);
}
.l-header__toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 15px;
  height: 2px;
  background: #da3d01;
  transition: all 0.3s;
}
.l-header__toggle span:first-child {
  top: 40%;
}
.l-header__toggle span:last-child {
  top: 62%;
}
@media screen and (max-width: 1023px) {
  .l-header__overlay {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 10;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__overlay.is-active {
    opacity: 1;
    visibility: visible;
  }
}

.home .l-header {
  box-shadow: none;
}
@media screen and (min-width: 1024px) {
  .home .l-header {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 1023px) {
  .home .l-header {
    background: none;
  }
}
@media screen and (min-width: 1024px) {
  .home .l-header__logo {
    position: absolute;
    top: 50px;
    left: 72px;
    width: 150px;
  }
}
@media screen and (min-width: 1024px) {
  .home .l-header__nav {
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.13);
  }
}
@media screen and (min-width: 1024px) {
  .home .l-header__nav__item:first-child {
    border-left-width: 0px;
  }
}
@media screen and (min-width: 1024px) {
  .home .l-header.is-scrolled {
    justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .home .l-header.is-scrolled .l-header__logo {
    position: relative;
    top: auto;
    left: auto;
    width: 97px;
  }
}
@media screen and (min-width: 1024px) {
  .home .l-header.is-scrolled .l-header__nav {
    box-shadow: none;
  }
}
@media screen and (min-width: 1024px) {
  .home .l-header.is-scrolled .l-header__nav__item:first-child {
    border-left-width: 1px;
  }
}

/* l-footer */
.l-footer {
  color: #fff;
}
.l-footer__inner {
  max-width: 1232px;
  padding-left: 86px;
}
@media screen and (max-width: 1023px) {
  .l-footer__inner {
    padding: 0 20px;
  }
}
.l-footer__top {
  padding: 60px 0 72px;
  background: #000;
}
.l-footer__top__inner {
  display: flex;
  flex-direction: row;
  gap: 0 86px;
}
@media screen and (max-width: 767px) {
  .l-footer__top__inner {
    display: flex;
    flex-direction: column;
  }
}
.l-footer__info {
  width: 473px;
}
@media screen and (max-width: 767px) {
  .l-footer__info {
    width: 100%;
  }
}
.l-footer__info .l-footer__nav {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-footer__info .l-footer__nav {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0 43px;
    margin-bottom: 30px;
  }
}
.l-footer__logo .c-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-footer__logo .c-btn {
    display: flex;
    max-width: 170px;
    height: 70px;
    font-size: 17px;
    text-align: center;
    line-height: 1.2;
  }
}
.l-footer__logo__link {
  display: block;
  width: 191px;
}
@media screen and (max-width: 767px) {
  .l-footer__logo__link {
    width: 121px;
  }
}
.l-footer__address {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  margin-top: 30px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .l-footer__address {
    margin-top: 44px;
    font-size: 12px;
  }
}
.l-footer__address a {
  color: #fff;
}
.l-footer__nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0 86px;
}
@media screen and (max-width: 1209px) {
  .l-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 30px 0;
    max-width: 273px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    display: none;
  }
}
.l-footer__nav__main {
  display: flex;
  flex-direction: column;
  gap: 36px 0;
  font-size: 14px;
  flex-shrink: 0;
}
.l-footer__nav__title {
  position: relative;
}
.l-footer__nav__title a {
  color: #fff;
}
.l-footer__nav__title:after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 31px;
  height: 1px;
  background: #fff;
}
.l-footer__nav__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.l-footer__nav__list:after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 31px;
  height: 1px;
  background: #fff;
}
.l-footer__nav__list:last-child:after {
  display: none;
}
.l-footer__nav__item a {
  font-size: 14px;
  color: #fff;
}
.l-footer__nav .c-btn {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .l-footer__nav .c-btn {
    display: none;
  }
}
.l-footer__btm {
  padding: 20px 0;
  background: #ed6504;
}
.l-footer__copy {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    text-align: center;
  }
}

/* l-main */
.l-main {
  padding-top: 62px;
  padding-bottom: 80px;
}
@media screen and (max-width: 1023px) {
  .l-main {
    padding-top: 43px;
    padding-bottom: 60px;
  }
}
.l-main--noMargin {
  padding-bottom: 0;
}

@media screen and (max-width: 1023px) {
  .home .l-main {
    padding-top: 0;
  }
}

/* l-cta */
.l-cta {
  padding: 50px 0;
  background-image: url("../img/common/bg_cta.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .l-cta {
    padding: 60px 0;
    background-image: url("../img/common/bg_cta_sp.webp");
  }
}
.l-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.l-cta__box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0 30px;
  max-width: 788px;
  width: 100%;
  margin: 0 auto;
  padding: 36px;
  backdrop-filter: blur(34px);
  background-color: rgba(255, 255, 255, 0.93);
}
@media screen and (max-width: 767px) {
  .l-cta__box {
    display: flex;
    flex-direction: column;
    max-width: 343px;
    gap: 20px 0;
    padding: 20px 20px 35px;
    background-color: rgba(255, 255, 255, 0.73);
  }
}
.l-cta__title {
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .l-cta__title {
    max-width: 291px;
    width: 100%;
    font-size: 26px;
  }
}
.l-cta__title small {
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .l-cta__title small {
    font-size: 20px;
  }
}
.l-cta__title strong {
  position: relative;
  font-weight: 700;
  color: #ed6504;
}
.l-cta__title strong:after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ed6504;
}
@media screen and (max-width: 767px) {
  .l-cta__title strong:after {
    bottom: 2px;
  }
}
.l-cta__title strong.l-cta__title__lg {
  font-size: 50px;
}
@media screen and (max-width: 767px) {
  .l-cta__title strong.l-cta__title__lg {
    font-size: 33px;
  }
}
.l-cta__title span {
  font-size: 37px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .l-cta__title span {
    font-size: 24px;
  }
}

/* l-breadcrumb */
.l-breadcrumb {
  padding: 20px 0;
  background: #eaeaea;
}
@media screen and (max-width: 767px) {
  .l-breadcrumb {
    display: none;
  }
}
.l-breadcrumb__list {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}
.l-breadcrumb__list li:after {
  content: "/";
  margin-left: 12px;
}
.l-breadcrumb__list li a,
.l-breadcrumb__list li span {
  font-size: 18px;
  line-height: 1.7;
}
.l-breadcrumb__list li a {
  text-decoration: underline;
}
.l-breadcrumb__list li:last-child:after {
  display: none;
}

.home .l-breadcrumb {
  opacity: 0;
  visibility: hidden;
}

/* l-job */
.l-job__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .l-job__inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
.l-job__card {
  max-width: 335px;
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
  border: 1px solid;
}
.l-job__card--order {
  border-color: #00929c;
}
.l-job__card--order .l-job__card__title {
  background: #00929c;
}
.l-job__card--design {
  border-color: #2b8251;
}
.l-job__card--design .l-job__card__title {
  background: #2b8251;
}
.l-job__card--estimate {
  border-color: #a25534;
}
.l-job__card--estimate .l-job__card__title {
  background: #a25534;
}
.l-job__card__detailsImg {
  display: none;
}
.l-job__card__title {
  padding: 10px;
  border-radius: 8px 8px 0 0;
  font-size: 18px;
  text-align: center;
  color: #fff;
}
.l-job__card__box {
  padding: 20px;
}
.l-job__card__img {
  margin-bottom: 15px;
}
.l-job__card__img img {
  aspect-ratio: 293/165;
  object-fit: cover;
  object-position: center 30%;
}
.l-job__card__income {
  margin-bottom: 11px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eaeaea;
  text-align: center;
  font-weight: 700;
}
.l-job__card__income span {
  font-weight: 500;
}
.l-job__note {
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-job--details .l-job__inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .l-job--details .l-job__card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0 15px;
    max-width: none;
    padding: 20px;
  }
}
@media screen and (min-width: 768px) {
  .l-job--details .l-job__card__detailsImg {
    display: block;
    width: 240px;
  }
}
.l-job--details .l-job__card__detailsImg img {
  aspect-ratio: 1;
}
@media screen and (min-width: 768px) {
  .l-job--details .l-job__card__head {
    flex: 1;
  }
}
@media screen and (min-width: 768px) {
  .l-job--details .l-job__card__title {
    width: fit-content;
    margin-bottom: 11px;
    padding: 8px 24px;
    font-size: 20px;
    border-radius: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-job--details .l-job__card__box {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-job--details .l-job__card__img {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .l-job--details .l-job__card__income {
    font-size: 18px;
    text-align: left;
  }
}

/* l-place */
.l-place {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  margin-top: 40px;
}
.l-place__box {
  padding: 30px 22px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .l-place__box {
    padding-right: 0;
    padding-left: 0;
    border-radius: 0;
  }
}
.l-place__box--tokai {
  background: #f5eaea;
}
.l-place__box--kanto {
  background: #f1f4ff;
}
.l-place__box--kansai {
  background: #e5f5e9;
}
.l-place__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}
.l-place__title__sub {
  font-size: 14px;
  font-weight: 500;
}
.l-place__title__main {
  font-size: 22px;
}
@media screen and (min-width: 768px) {
  .l-place__list .swiper-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
  }
}
.l-place__list .swiper-slide {
  height: auto;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .l-place__list .swiper-slide {
    width: fit-content;
  }
}
.l-place__list__btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-place__list__btn {
    display: block;
    position: absolute;
    z-index: 1;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76%;
    margin: 0 auto;
    height: 28px;
  }
}
@media screen and (max-width: 640px) {
  .l-place__list__btn {
    width: 94%;
  }
}
.l-place__list__btn .swiper-button-prev,
.l-place__list__btn .swiper-button-next {
  width: 28px;
  height: 28px;
  background-image: url("../img/common/arrow_slider.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.l-place__list__btn .swiper-button-prev {
  transform: rotate(180deg);
}

/* l-placeSlider */
@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%);
  }
}
.l-placeSliderWrap {
  position: relative;
}
.l-placeSliderWrap .l-placeSlider__title {
  position: absolute;
  z-index: 1;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  padding: 9px 30px;
  background: #fff;
  border-radius: 9999px;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.25);
  font-size: 24px;
  line-height: 1;
  color: #00105a;
}
@media screen and (max-width: 1023px) {
  .l-placeSliderWrap .l-placeSlider__title {
    top: -16px;
    padding: 7px 22px;
    font-size: 18px;
  }
}

.l-placeSlider {
  width: 100%;
  overflow: hidden;
  padding: 7px 0;
  background: #fff;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1023px) {
  .l-placeSlider {
    padding: 5px 0;
  }
}
.l-placeSlider__box {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 32px 0;
  animation: slide-left 30s linear infinite;
  width: max-content;
  background-image: linear-gradient(to bottom, #ed5d04 0%, #ff5900 100%);
}
@media screen and (max-width: 1023px) {
  .l-placeSlider__box {
    padding: 22px 0;
  }
}
.l-placeSlider__list {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.l-placeSlider__item {
  padding: 0 50px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
  background-image: url("../img/common/slash_slider.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}
@media screen and (max-width: 1023px) {
  .l-placeSlider__item {
    padding: 0 30px;
    font-size: 18px;
  }
}

/* c-btn */
.c-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 291px;
  width: 100%;
  height: 65px;
  background-image: linear-gradient(to bottom, #ed6504 0%, #d73600 100%);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  border-radius: 2px;
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.15);
}
.c-btn:before {
  content: "";
  margin-right: 10px;
  background-image: url("../img/common/i_mail.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 25px;
  height: 19px;
}
.c-btn:hover {
  filter: brightness(1.1);
}
.c-btn--outline {
  max-width: none;
  width: fit-content;
  height: 60px;
  margin: 0 auto;
  padding: 24px 46px 24px 20px;
  background-color: #fff;
  background-image: url("../img/common/arrow_btn.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  background-size: 16px;
  border: 1px solid #fc5e0f;
  text-shadow: none;
  font-size: 18px;
  font-weight: 500;
  color: #fc5e0f;
  text-align: left;
  justify-content: flex-start;
}
@media screen and (max-width: 1023px) {
  .c-btn--outline {
    height: auto;
    padding-top: 18px;
    padding-bottom: 18px;
    text-align: center;
    line-height: 1.2;
  }
}
.c-btn--outline:before {
  display: none;
}
.c-btn--submit {
  max-width: 240px;
  font-size: 20px;
}
.c-btn--submit:before {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 7px;
  height: 14px;
  margin: 0;
  background-image: url("../img/common/arrow_send.svg");
}
.c-btn--back {
  max-width: 240px;
  background-image: linear-gradient(to bottom, #ed6504 0%, #d73600 100%);
}
.c-btn--back:before {
  position: absolute;
  top: 50%;
  left: 10px;
  z-index: 1;
  transform: translateY(-50%);
  width: 7px;
  height: 14px;
  margin: 0;
  background-image: url("../img/common/arrow_back.svg");
}
.c-btn--back:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  background: #fff;
}
.c-btn--back span {
  position: relative;
  z-index: 2;
  font-size: 20px;
  background-image: linear-gradient(to bottom, #ed6504 0%, #d73600 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-btn--footer {
  max-width: 273px;
}

/* c-pageHeader */
.c-pageHeader {
  height: 335px;
  margin-bottom: 80px;
  background-image: url("../img/common/bg_page-header.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .c-pageHeader {
    height: auto;
    margin-bottom: 60px;
    padding: 23px 0;
    background-image: linear-gradient(to right, #fff 0%, #f6f6f6 100%);
  }
}
.c-pageHeader--noMargin {
  margin-bottom: 0;
}
.c-pageHeader__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  gap: 52px 0;
}
@media screen and (max-width: 767px) {
  .c-pageHeader__inner {
    gap: 30px 0;
  }
}
.c-pageHeader__title {
  font-size: 50px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-pageHeader__title {
    font-size: 30px;
    line-height: 1.2;
  }
}
.c-pageHeader__title::first-letter {
  color: #ff5a01;
}
.c-pageHeader__text {
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-pageHeader__text {
    font-size: 14px;
  }
}
.c-pageHeader__text:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 40px;
  height: 4px;
  background: #ff5a01;
}
@media screen and (max-width: 767px) {
  .c-pageHeader__text:before {
    top: -15px;
    height: 2px;
  }
}

/* c-title */
.c-title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px 0;
  margin-bottom: 74px;
}
@media screen and (max-width: 767px) {
  .c-title {
    gap: 14px 0;
    margin-bottom: 58px;
  }
}
.c-title:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -34px;
  background-image: url("../img/common/deco_title.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 25px;
  height: 14px;
}
.c-title--white {
  color: #fff;
}
.c-title--white .c-title__en {
  color: #fff;
}
.c-title--l {
  align-items: flex-start;
}
@media screen and (max-width: 1023px) {
  .c-title--l {
    align-items: center;
  }
}
.c-title--l:after {
  left: 0;
  transform: translateX(0);
}
@media screen and (max-width: 1023px) {
  .c-title--l:after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.c-title__ja {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-title__ja {
    font-size: 30px;
  }
}
.c-title__en {
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ed6504;
}
@media screen and (max-width: 767px) {
  .c-title__en {
    font-size: 14px;
  }
}

/* c-pagetop */
.c-pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: block;
  width: 60px;
  height: 60px;
  transition: none;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .c-pagetop {
    width: 40px;
  }
}

/* c-mediaBlock */
.c-mediaBlock {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  padding: 80px 0;
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock {
    display: flex;
    flex-direction: column;
    gap: 24px 0;
    padding: 60px 20px;
  }
}
.c-mediaBlock__head {
  width: 50%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  padding: 0 60px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock__head {
    max-width: none;
    width: 100%;
    padding: 0;
  }
}
.c-mediaBlock__head__box {
  max-width: 600px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock__head__box {
    max-width: none;
  }
}
.c-mediaBlock__head__lead {
  position: relative;
  margin-bottom: 78px;
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock__head__lead {
    margin-bottom: 47px;
    font-size: 22px;
  }
}
.c-mediaBlock__head__lead:after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 40px;
  height: 4px;
  background: #000;
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock__head__lead:after {
    bottom: -25px;
    height: 3px;
  }
}
.c-mediaBlock__head__lead--pickup {
  font-size: 40px;
  font-weight: 900;
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock__head__lead--pickup {
    text-shadow: 0 0 9px rgb(255, 255, 255);
    font-size: 35px;
  }
}
.c-mediaBlock__head__lead--pickup small {
  font-size: 30px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock__head__lead--pickup small {
    font-size: 26px;
  }
}
.c-mediaBlock__head__lead--office {
  font-size: 40px;
  font-weight: 800;
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock__head__lead--office {
    text-shadow: 0 0 9px rgb(255, 255, 255);
    font-size: 24px;
  }
}
.c-mediaBlock__head__lead--office small {
  font-size: 30px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock__head__lead--office small {
    font-size: 18px;
  }
}
.c-mediaBlock__head__text {
  font-size: 18px;
  line-height: 1.7;
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock__head__text {
    font-size: 16px;
  }
}
.c-mediaBlock__head__text .marker {
  background: linear-gradient(transparent 70%, #ffe1d1 70%);
}
.c-mediaBlock__head__text .strong {
  color: #de4601;
}
.c-mediaBlock__img {
  max-width: 50%;
  width: 50vw;
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock__img {
    max-width: none;
    width: 100%;
  }
}
.c-mediaBlock__img picture {
  height: 100%;
}
.c-mediaBlock__img img {
  object-fit: cover;
  height: 100%;
  border-radius: 30px 0 0 30px;
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock__img img {
    border-radius: 20px;
  }
}
.c-mediaBlock--reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock--reverse {
    display: flex;
    flex-direction: column;
  }
}
.c-mediaBlock--reverse .c-mediaBlock__head {
  justify-content: flex-start;
}
.c-mediaBlock--reverse .c-mediaBlock__img img {
  border-radius: 0 30px 30px 0;
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock--reverse .c-mediaBlock__img img {
    border-radius: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock--subMv {
    display: flex;
    flex-direction: column;
    flex-direction: column-reverse;
    gap: 24px 0;
    padding: 60px 20px;
  }
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock--env {
    padding-bottom: 21.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .c-mediaBlock--env {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock--env .c-title {
    align-items: flex-start;
  }
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock--env .c-title__ja {
    text-shadow: 0 0 9px rgb(255, 255, 255);
  }
}
@media screen and (max-width: 767px) {
  .c-mediaBlock--env .c-title__ja {
    line-height: 1.2;
  }
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock--env .c-title:after {
    left: 0;
    transform: translateX(0);
  }
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock--env .c-mediaBlock__head__lead {
    text-shadow: 0 0 9px rgb(255, 255, 255);
  }
}
@media screen and (max-width: 767px) {
  .c-mediaBlock--env .c-mediaBlock__head__lead {
    line-height: 1.6;
  }
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock--env .c-mediaBlock__img {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: 61.8666666667vw;
    padding: 0;
  }
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock--env .c-mediaBlock__img img {
    aspect-ratio: 232/243;
    border-radius: 0 0 0 30px;
  }
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock--about .c-title {
    align-items: flex-start;
  }
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock--about .c-title__ja {
    text-align: left;
    text-shadow: 0 0 9px rgb(255, 255, 255);
  }
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock--about .c-title:after {
    left: 0;
    transform: translateX(0);
  }
}
.c-mediaBlock--about .c-mediaBlock__head__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 27px;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.8;
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock--about .c-mediaBlock__head__text {
    align-items: flex-start;
    gap: 20px 0;
    font-size: 16px;
  }
}
.c-mediaBlock--about .c-mediaBlock__head__text p strong {
  background: linear-gradient(transparent 70%, #ffe1d1 70%);
}
.c-mediaBlock--about .c-mediaBlock__head__text ul {
  display: flex;
  flex-direction: column;
  gap: 14px 0;
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock--about .c-mediaBlock__head__text ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 334px;
  }
}
.c-mediaBlock--about .c-mediaBlock__head__text ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 196px;
  height: 44px;
  background-image: linear-gradient(to left, #ed6504 0%, #ff5900 100%);
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock--about .c-mediaBlock__head__text ul li {
    width: 162px;
    height: 40px;
  }
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock--about .c-mediaBlock__img {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: 61.8666666667vw;
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .c-mediaBlock--about .c-mediaBlock__img img {
    height: 724px;
    border-radius: 0 0 0 120px;
  }
}
@media screen and (max-width: 1023px) {
  .c-mediaBlock--about .c-mediaBlock__img img {
    aspect-ratio: 232/385;
    height: 385px;
    border-radius: 0 0 0 30px;
  }
}

/* c-miniMediaBlock */
.c-miniMediaBlock {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 20px;
  max-width: 830px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-miniMediaBlock {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
  }
}
.c-miniMediaBlock__img {
  max-width: 380px;
}
.c-miniMediaBlock__head {
  display: flex;
  flex-direction: column;
  gap: 26px 0;
}
@media screen and (max-width: 767px) {
  .c-miniMediaBlock__head {
    gap: 20px 0;
  }
}
.c-miniMediaBlock__list {
  list-style: disc;
  font-size: 20px;
  padding-left: 1.5em;
}
@media screen and (max-width: 767px) {
  .c-miniMediaBlock__list {
    padding-left: 0;
    font-size: 16px;
  }
}
.c-miniMediaBlock__title {
  font-size: 20px;
}
.c-miniMediaBlock__title::first-letter {
  color: #ff5a01;
}
.c-miniMediaBlock__btn {
  width: fit-content;
  padding: 8px 30px;
  border: 1px solid #3a3a3a;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  color: #343434;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-miniMediaBlock__btn {
    margin-left: auto;
  }
}

/* c-profile */
.c-profile {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 20px;
}
.c-profile__img {
  width: 272px;
}
@media screen and (max-width: 767px) {
  .c-profile__img {
    display: none;
  }
}
.c-profile__img img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
}
.c-profile__head {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .c-profile__head {
    display: flex;
    flex-direction: column;
    gap: 16px 0;
  }
}
.c-profile__head__main {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eaeaea;
}
@media screen and (max-width: 767px) {
  .c-profile__head__main {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0 20px;
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
  }
}
.c-profile__head__main__img {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-profile__head__main__img {
    display: block;
    width: 100px;
    flex-shrink: 0;
  }
}
.c-profile__head__main__img img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
}
.c-profile__head__main__position {
  width: fit-content;
  margin-bottom: 11px;
  padding: 11px 20px;
  background: #e6e6e6;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-profile__head__main__position {
    padding: 11px 14px;
    font-size: 16px;
  }
}
.c-profile__head__main__title {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-profile__head__main__title {
    font-size: 20px;
    line-height: 1.5;
  }
}
.c-profile__head__main__title span {
  font-family: "Oswald", sans-serif;
}
.c-profile__head__text {
  line-height: 1.8;
}

/* c-checkList */
.c-checkList {
  width: fit-content;
  margin: 0 auto;
}
.c-checkList li {
  padding-left: 30px;
  background-image: url("../img/common/i_check.svg");
  background-repeat: no-repeat;
  background-position: left 8px;
  background-size: 20px;
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .c-checkList li {
    background-position: left 4px;
    font-size: 16px;
  }
}

/* c-place */
.c-placeCard {
  display: flex;
  flex-direction: column;
  max-width: 286px;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .c-placeCard {
    max-width: none;
  }
}
.c-placeCard__title {
  padding: 10px;
  border-radius: 10px 10px 0 0;
  font-size: 18px;
  color: #fff;
  text-align: center;
}
.c-placeCard__title--tokai {
  background: #7f3737;
}
.c-placeCard__title--kanto {
  background: #37467f;
}
.c-placeCard__title--kansai {
  background: #377f49;
}
.c-placeCard__box {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
  padding: 20px;
  border-radius: 0 0 10px 10px;
}
.c-placeCard__text strong {
  display: block;
}
.c-placeCard__style {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  font-size: 14px;
  font-weight: 500;
}
.c-placeCard__style dt {
  width: fit-content;
  flex-shrink: 0;
  padding: 4px 10px;
  background: #e7e7e7;
  border-radius: 6px;
}

/* c-form */
.c-form {
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  max-width: 560px;
  width: 100%;
  margin: 40px auto 0;
}
@media screen and (max-width: 640px) {
  .c-form {
    margin-top: 30px;
  }
}
.c-form--input .c-form__label {
  padding-top: 8px;
}
.c-form--confirm {
  gap: 40px 0;
}
@media screen and (max-width: 640px) {
  .c-form--confirm {
    gap: 24px 0;
  }
}
.c-form--confirm .c-form__group {
  gap: 6px 34px;
}
.c-form__error {
  font-size: 14px;
  color: #ea0000;
}
.c-form__group {
  display: flex;
  flex-direction: row;
  gap: 10px 20px;
}
@media screen and (max-width: 640px) {
  .c-form__group {
    display: flex;
    flex-direction: column;
  }
}
.c-form__label {
  width: 130px;
  font-weight: 500;
  text-align: right;
}
@media screen and (max-width: 640px) {
  .c-form__label {
    width: auto;
    text-align: left;
    padding-top: 0;
  }
}
.c-form__label small {
  font-size: 12px;
  font-weight: 500;
}
.c-form__input {
  flex: 1;
}
.c-form__input input,
.c-form__input select,
.c-form__input textarea {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  padding: 8px 14px;
}
.c-form__input--age input {
  width: 80px;
}
.c-form__input--tel input {
  width: 176px;
}
.c-form__input--select {
  position: relative;
}
.c-form__input--select:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 12px;
  height: 6px;
  background-image: url("../img/common/arrow_select.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}
.c-form__input__note {
  font-size: 12px;
  line-height: 1.4;
  margin-top: 10px;
}
.c-form__btns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
@media screen and (max-width: 640px) {
  .c-form__btns {
    display: flex;
    flex-direction: column;
    flex-direction: column-reverse;
    align-items: center;
  }
}

/* c-tip */
.c-tip {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  padding: 8px 14px;
  background: #f55c02;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .c-tip {
    font-size: 14px;
  }
}
.c-tip:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #f55c02 transparent transparent transparent;
  border-width: 11px 11px 0px 0px;
}
.c-tip small {
  font-size: 14px;
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  .c-tip small {
    font-size: 10px;
  }
}
.c-tip--rounded {
  border-radius: 9999px;
}
.c-tip--blue {
  background: #070e4a;
  margin: 0;
}
@media screen and (max-width: 1023px) {
  .c-tip--blue {
    font-size: 14px;
  }
}
.c-tip--blue:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  border-color: #070e4a transparent transparent transparent;
}
.c-tip--sm {
  margin: 0 0 0 10px;
  padding: 5px 9px;
  background: #e94600;
  font-size: 15px;
}
@media screen and (max-width: 1023px) {
  .c-tip--sm {
    font-size: 10px;
  }
}
.c-tip--sm:before {
  left: -6px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #e94600 transparent transparent;
  border-width: 6.5px 6px 6.5px 0px;
}
@media screen and (max-width: 1023px) {
  .c-tip--sm:before {
    left: -4px;
    border-width: 4.5px 4px 4.5px 0px;
  }
}

/* p-home */
.p-home__mv {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-home__mv {
    justify-content: flex-start;
  }
}
.p-home__mv picture {
  width: 71.4583333333vw;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-home__mv picture {
    width: 100%;
  }
}
.p-home__mv picture img {
  object-fit: cover;
  width: auto;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-home__mv picture img {
    width: 100%;
  }
}
.p-home__mv__head {
  display: flex;
  flex-direction: column;
  gap: 2.2222222222vw 0;
  position: absolute;
  top: 12.8472222222vw;
  left: 2.9166666667vw;
}
@media screen and (max-width: 767px) {
  .p-home__mv__head {
    gap: 3.7333333333vw 0;
    left: 0;
    top: 58.6666666667vw;
    padding: 4.2666666667vw 5.3333333333vw;
    background: #fff;
  }
}
.p-home__mv__headTitle {
  padding: 1.4583333333vw;
  background: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 2.5vw;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-home__mv__headTitle {
    padding: 0;
    font-size: 5.3333333333vw;
  }
}
.p-home__mv__headTitle strong {
  font-size: 3.2638888889vw;
  color: #de4601;
}
@media screen and (max-width: 767px) {
  .p-home__mv__headTitle strong {
    font-size: 6.4vw;
  }
}
.p-home__mv__headTitle strong.strong {
  position: relative;
}
.p-home__mv__headTitle strong.strong:after {
  content: "";
  position: absolute;
  bottom: -0.1388888889vw;
  left: 0;
  width: 100%;
  height: 0.3472222222vw;
  border-top: 0.0694444444vw solid #ffa47a;
  border-bottom: 0.0694444444vw solid #ffa47a;
}
@media screen and (max-width: 767px) {
  .p-home__mv__headTitle strong.strong:after {
    bottom: -0.8vw;
    height: 1.0666666667vw;
    border-top-width: 0.2666666667vw;
    border-bottom-width: 0.2666666667vw;
  }
}
.p-home__mv__headList {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 0 1.3888888889vw;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-home__mv__headList {
    gap: 0 3.4666666667vw;
    margin: 0 auto;
  }
}
.p-home__mv__headList:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.2916666667vw;
  height: 2.2916666667vw;
  background-image: url("../img/home/i_multiplication.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-home__mv__headList:before {
    width: 5.6vw;
    height: 5.6vw;
  }
}
.p-home__mv__headList li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 13.0555555556vw;
  height: 3.9583333333vw;
  font-family: "Noto Serif JP", serif;
  background: #000;
  border: 1px solid #fff;
  font-size: 1.5972222222vw;
  font-weight: 800;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-home__mv__headList li {
    width: 31.7333333333vw;
    height: 9.6vw;
    font-size: 3.7333333333vw;
    border: none;
  }
}
.p-home__mv__list {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1.8055555556vw;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 1.3888888889vw 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6944444444vw 0;
}
@media screen and (max-width: 767px) {
  .p-home__mv__list {
    right: auto;
    left: 0;
    padding: 4.2666666667vw;
    border-radius: 0;
  }
}
.p-home__mv__list li {
  padding-left: 2.6388888889vw;
  background-image: url("../img/home/i_checkbox.svg");
  background-repeat: no-repeat;
  background-position: left 0.0694444444vw;
  background-size: 2.4305555556vw 2.1527777778vw;
  font-size: 1.3888888889vw;
}
@media screen and (max-width: 767px) {
  .p-home__mv__list li {
    padding-left: 6.4vw;
    background-position: left 0.5333333333vw;
    background-size: 5.6vw 5.0666666667vw;
    font-size: 3.7333333333vw;
  }
}
.p-home__mv__list li strong {
  color: #070e4a;
}
.p-home__pickup {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 40px;
  justify-content: center;
  padding: 150px 60px 80px;
  background-image: url("../img/home/bg_pickup.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media screen and (max-width: 1209px) {
  .p-home__pickup {
    display: flex;
    flex-direction: column;
    gap: 40px 0;
    padding: 60px 0;
    background-image: url("../img/home/bg_pickup_sp.webp");
  }
}
.p-home__pickup__head {
  width: 350px;
  flex-shrink: 0;
}
@media screen and (max-width: 1209px) {
  .p-home__pickup__head {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
}
.p-home__pickup__head .c-mediaBlock__head__text {
  text-shadow: 0 0 9px rgb(255, 255, 255);
}
.p-home__pickup__place {
  max-width: 926px;
}
@media screen and (max-width: 1209px) {
  .p-home__pickup__place {
    max-width: none;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-home__pickup__place .l-place__list .swiper-wrapper {
    gap: 30px;
  }
}
.p-home__pickup__place .l-place__list .c-placeCard__title {
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
}
.p-home__pickup__place .l-place__list .swiper-slide:first-child .c-placeCard__title, .p-home__pickup__place .l-place__list .swiper-slide:last-child .c-placeCard__title {
  background-image: linear-gradient(to left, #b2a297 0%, #bfb8b3 52%, #b2a297 100%);
  color: #000;
}
.p-home__pickup__place .l-place__list .swiper-slide:nth-child(2) .c-placeCard__title, .p-home__pickup__place .l-place__list .swiper-slide:nth-child(4) .c-placeCard__title {
  background-image: linear-gradient(to left, #9f5e2f 0%, #b77a4f 50%, #9f5e2f 100%);
}
.p-home__pickup__place .l-place__list .swiper-slide:nth-child(3) .c-placeCard__title, .p-home__pickup__place .l-place__list .swiper-slide:nth-child(5) .c-placeCard__title {
  background-image: linear-gradient(to left, #3c5d78 0%, #577599 50%, #16468f 100%);
}
.p-home__msg .c-mediaBlock {
  padding: 0;
}
@media screen and (max-width: 1023px) {
  .p-home__msg .c-mediaBlock {
    padding: 60px 20px;
  }
}
.p-home__msg .c-mediaBlock__head {
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-home__msg .c-mediaBlock__head {
    text-align: left;
  }
}
.p-home__msg .c-mediaBlock__head__text {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
}
@media screen and (max-width: 1023px) {
  .p-home__msg .c-mediaBlock__head__text {
    font-size: 16px;
  }
}
.p-home__msg .c-mediaBlock__head__text p {
  text-align: center;
  text-shadow: 0 0 9px rgb(255, 255, 255);
}
@media screen and (max-width: 1023px) {
  .p-home__msg .c-mediaBlock__head__text p {
    text-align: left;
  }
}
.p-home__msg .c-mediaBlock__head .c-tip {
  margin-bottom: 20px;
}
@media screen and (max-width: 1023px) {
  .p-home__msg .c-mediaBlock__head .c-title {
    align-items: flex-start;
  }
}
.p-home__msg .c-mediaBlock__head .c-title__ja {
  font-weight: 700;
  text-shadow: 0 0 9px rgb(255, 255, 255);
}
@media screen and (max-width: 1023px) {
  .p-home__msg .c-mediaBlock__head .c-title__ja {
    text-align: left;
  }
}
@media screen and (max-width: 1023px) {
  .p-home__msg .c-mediaBlock__head .c-title:after {
    left: 0;
    transform: translateX(0);
  }
}
.p-home__msg .c-mediaBlock__img {
  height: 1072px;
}
@media screen and (max-width: 1023px) {
  .p-home__msg .c-mediaBlock__img {
    position: absolute;
    top: 0;
    right: 0;
    width: 61.8666666667vw;
    max-height: 900px;
    height: auto;
  }
}
.p-home__msg .c-mediaBlock__img img {
  border-radius: 120px 0 0 0;
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .p-home__msg .c-mediaBlock__img img {
    object-fit: cover;
    max-height: 900px;
    border-radius: 0 0 0 30px;
  }
}
.p-home__msg__list {
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media screen and (max-width: 1209px) {
  .p-home__msg__list {
    gap: 0 24px;
    justify-content: flex-start;
  }
}
.p-home__msg__item {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .p-home__msg__item {
    gap: 10px 0;
  }
}
.p-home__msg__itemImg {
  position: relative;
}
.p-home__msg__itemImg:before {
  content: "";
  position: absolute;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
}
.p-home__msg__itemText {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .p-home__msg__itemText {
    font-size: 14px;
    text-align: center;
  }
}
.p-home__msg__itemText:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  right: -16px;
}
@media screen and (max-width: 1023px) {
  .p-home__msg__itemText:after {
    right: -20px;
  }
}
.p-home__salary {
  padding: 80px 0;
  background-image: linear-gradient(to bottom right, #fc671d 0%, #ffe48c 100%);
}
@media screen and (max-width: 1023px) {
  .p-home__salary {
    padding: 60px 0;
  }
}
.p-home__salary__inner {
  max-width: 930px;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__inner {
    max-width: 620px;
  }
}
.p-home__salary__example {
  display: flex;
  flex-direction: row;
  gap: 0 33px;
  margin-bottom: 52px;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__example {
    display: flex;
    flex-direction: column;
    gap: 16px 0;
    margin-bottom: 30px;
  }
}
.p-home__salary__exampleList {
  display: flex;
  flex-direction: column;
  gap: 17px 0;
  width: 292px;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__exampleList {
    display: flex;
    flex-direction: row;
    gap: 0 11px;
    width: 100%;
  }
}
.p-home__salary__exampleItem {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px 0;
  height: 221px;
  background: #fff;
  border-radius: 9px;
  padding: 0 32px 0;
  cursor: pointer;
  border: 5px solid #fff;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__exampleItem {
    justify-content: flex-start;
    gap: 8px 0;
    width: 50%;
    height: 116px;
    border-width: 2px;
    padding: 11px;
  }
}
.p-home__salary__exampleItem:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  right: 20px;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__exampleItem:before {
    top: auto;
    right: auto;
    left: 50%;
    bottom: 7px;
    transform: translateX(-50%) rotate(135deg);
  }
}
.p-home__salary__exampleItem:after {
  opacity: 0;
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%) rotate(45deg);
  width: 21px;
  height: 21px;
  border-top: 5px solid #fff;
  border-right: 5px solid #fff;
  background: #fff;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__exampleItem:after {
    top: auto;
    right: auto;
    left: 50%;
    bottom: -9px;
    transform: translateX(-50%) rotate(135deg);
    width: 16px;
    height: 16px;
    border-width: 2px;
  }
}
.p-home__salary__exampleItem .label {
  width: fit-content;
  margin: 0 auto;
  padding: 11px 22px;
  background: #00929c;
  border-radius: 9999px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__exampleItem .label {
    padding: 8px 15px;
    font-size: 10px;
  }
}
.p-home__salary__exampleItem--order .label {
  background: #00929c;
}
.p-home__salary__exampleItem--order.is-active {
  border-color: #00929c;
}
.p-home__salary__exampleItem--order.is-active:before {
  display: none;
}
.p-home__salary__exampleItem--order.is-active:after {
  opacity: 1;
  border-top-color: #00929c;
  border-right-color: #00929c;
}
.p-home__salary__exampleItem--design .label {
  background: #2b8251;
}
.p-home__salary__exampleItem--design.is-active {
  border-color: #2b8251;
}
.p-home__salary__exampleItem--design.is-active:before {
  display: none;
}
.p-home__salary__exampleItem--design.is-active:after {
  opacity: 1;
  border-top-color: #2b8251;
  border-right-color: #2b8251;
}
.p-home__salary__exampleItem .income {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
}
.p-home__salary__exampleItem .income span {
  font-size: 25px;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__exampleItem .income span {
    font-size: 12px;
  }
}
.p-home__salary__exampleItem .income span strong {
  font-family: "Oswald", sans-serif;
  font-size: 52px;
  color: #e94600;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__exampleItem .income span strong {
    font-size: 34px;
  }
}
.p-home__salary__exampleMain {
  flex: 1;
}
.p-home__salary__exampleMain .item {
  display: none;
  box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.15);
}
.p-home__salary__exampleMain .item__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 11px;
  padding: 18px;
  border-radius: 7px 7px 0 0;
  font-size: 24px;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__exampleMain .item__head {
    gap: 0 7px;
    padding: 11px;
    border-radius: 4px 4px 0 0;
    font-size: 14px;
  }
}
.p-home__salary__exampleMain .item__head__img {
  width: 46px;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__exampleMain .item__head__img {
    width: 25px;
  }
}
.p-home__salary__exampleMain .item__head small {
  font-size: 19px;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__exampleMain .item__head small {
    font-size: 11px;
  }
}
.p-home__salary__exampleMain .item__head__title {
  padding: 11px 20px;
  background: #fff;
  font-size: 24px;
  line-height: 1;
  border-radius: 9999px;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__exampleMain .item__head__title {
    padding: 6px 11px;
    font-size: 14px;
  }
}
.p-home__salary__exampleMain .item__box {
  background: #fff;
  border-radius: 0 0 7px 7px;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__exampleMain .item__box {
    border-radius: 0 0 4px 4px;
  }
}
.p-home__salary__exampleMain .item__media {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 22px;
  padding: 28px 22px;
  border-bottom: 1px solid #bfe2e4;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__exampleMain .item__media {
    gap: 0 13px;
    padding: 17px 13px;
  }
}
.p-home__salary__exampleMain .item__media__img {
  width: 265px;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__exampleMain .item__media__img {
    width: 161px;
  }
}
.p-home__salary__exampleMain .item__media__img img {
  border-radius: 11px;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__exampleMain .item__media__img img {
    border-radius: 7px;
  }
}
.p-home__salary__exampleMain .item__media__income {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__exampleMain .item__media__income {
    flex: none;
    width: fit-content;
  }
}
.p-home__salary__exampleMain .item__media__incomeLabel {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  padding: 9px 16px;
  background: #e94600;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__exampleMain .item__media__incomeLabel {
    padding: 3px 10px;
    font-size: 11px;
  }
}
.p-home__salary__exampleMain .item__media__incomeAmount {
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  color: #e94600;
  white-space: nowrap;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__exampleMain .item__media__incomeAmount {
    font-size: 16px;
  }
}
.p-home__salary__exampleMain .item__media__incomeAmount strong {
  background-image: linear-gradient(to bottom, #ff6f00 10%, #e94600 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Oswald", sans-serif;
  font-size: 82px;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__exampleMain .item__media__incomeAmount strong {
    font-size: 49px;
  }
}
.p-home__salary__exampleMain .item__info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 18px;
  padding: 22px 30px 25px;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__exampleMain .item__info {
    gap: 5px;
    padding: 16px;
  }
}
.p-home__salary__exampleMain .item__info dl {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 11px;
  font-size: 20px;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__exampleMain .item__info dl {
    gap: 0 6px;
    font-size: 14px;
  }
}
.p-home__salary__exampleMain .item__info dl dt {
  font-weight: 700;
}
.p-home__salary__exampleMain .item__info dl dd .marker {
  background: linear-gradient(transparent 70%, #ffcbad 70%);
}
.p-home__salary__exampleMain .item--order .item__head {
  background: #00929c;
}
.p-home__salary__exampleMain .item--order .item__head__title {
  color: #00929c;
}
.p-home__salary__exampleMain .item--design .item__head {
  background: #2b8251;
}
.p-home__salary__exampleMain .item--design .item__head__title {
  color: #2b8251;
}
.p-home__salary__overtimeTitle {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  padding: 24px;
  background: #070e4a;
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__overtimeTitle {
    padding: 16px;
  }
}
.p-home__salary__overtimeTitle span {
  font-size: 24px;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__overtimeTitle span {
    font-size: 18px;
  }
}
.p-home__salary__overtimeTitle span small {
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__overtimeTitle span small {
    font-size: 14px;
  }
}
.p-home__salary__overtimeTitle img {
  width: 20px;
}
.p-home__salary__overtimeBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 43px;
  padding: 30px 20px;
  background: #fff;
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__overtimeBox {
    display: flex;
    flex-direction: column;
    flex-direction: column-reverse;
    gap: 30px 0;
  }
}
.p-home__salary__overtimeBox .img {
  width: 320px;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__overtimeBox .img {
    width: 100%;
  }
}
.p-home__salary__overtimeBox .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__overtimeBox .text {
    text-align: left;
  }
}
.p-home__salary__overtimeBox .text p {
  line-height: 1.8;
}
.p-home__salary__overtimeBox .text p .marker {
  font-size: 20px;
  background: linear-gradient(transparent 70%, #ffcbad 70%);
  font-weight: 900;
}
.p-home__salary__overtimeBox .text p .marker strong {
  font-size: 30px;
  color: #f55c02;
  line-height: 1;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__overtimeBox .text p .marker strong {
    font-size: 24px;
  }
}
.p-home__salary__overtimeBox .text p:last-child {
  padding: 20px 10px;
  border: 1px solid #fc8727;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-home__salary__overtimeBox .text p:last-child {
    padding: 14px 10px;
    white-space: nowrap;
  }
}
.p-home__salary__overtimeBox .text p:last-child strong {
  font-size: 20px;
  color: #f45700;
  text-decoration: underline;
}
.p-home__job {
  padding: 80px 0 30px;
}
.p-home__job .l-job {
  margin-bottom: 60px;
}
.p-home__place {
  padding: 80px 0;
  background-image: url("../img/common/bg_placement.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-home__place {
    padding: 60px 0;
    background-image: url("../img/common/bg_placement_sp.webp");
  }
}
.p-home__place .l-placeSlider {
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 1023px) {
  .p-home__place__area {
    padding: 0;
  }
}
.p-home__place .l-place {
  margin-bottom: 60px;
}
@media screen and (max-width: 1023px) {
  .p-home__place .l-place {
    margin-bottom: 40px;
  }
}
.p-home__holiday {
  padding: 80px 0;
  background: #fcfcfc;
}
@media screen and (max-width: 1023px) {
  .p-home__holiday {
    padding: 60px 0;
  }
}
.p-home__holiday .c-btn {
  margin-top: 40px;
}
.p-home__office {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  background-image: url("../img/home/bg_office.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  min-height: 740px;
}
@media screen and (max-width: 1023px) {
  .p-home__office {
    justify-content: flex-start;
    background-color: #fff;
    background-image: url("../img/home/bg_office_sp.webp");
    background-position: left top;
    background-size: contain;
    min-height: auto;
  }
}
.p-home__office__head {
  width: 50vw;
  padding: 40px 60px;
  background: rgba(255, 255, 255, 0.83);
  backdrop-filter: blur(14px);
}
@media screen and (max-width: 1023px) {
  .p-home__office__head {
    width: 100%;
    padding: 60px 0 30px;
    background: none;
    backdrop-filter: none;
  }
}
.p-home__office__headBox {
  max-width: 600px;
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .p-home__office__headBox {
    max-width: none;
  }
}
@media screen and (max-width: 1023px) {
  .p-home__office__headBox .c-title {
    align-items: flex-end;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .p-home__office__headBox .c-title__ja {
    text-align: right;
  }
}
@media screen and (max-width: 1023px) {
  .p-home__office__headBox .c-title:after {
    left: auto;
    right: 20px;
    transform: translateX(0);
  }
}
@media screen and (max-width: 1023px) {
  .p-home__office__headBox .c-mediaBlock__head__lead {
    text-align: right;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .p-home__office__headBox .c-mediaBlock__head__lead:after {
    left: auto;
    right: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .p-home__office__headBox .c-mediaBlock__head__text {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.p-home__office__list {
  margin-top: 40px;
}
@media screen and (max-width: 1023px) {
  .p-home__office__list {
    margin-top: 50px;
  }
}
.p-home__office__list .swiper-wrapper {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
@media screen and (min-width: 768px) {
  .p-home__office__list .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 30px;
  }
}
.p-home__office__list .swiper-slide {
  height: auto;
}
.p-home__office__list .swiper-slide img {
  aspect-ratio: 183/142;
}
.p-home__office__list__btn {
  display: none;
}
@media screen and (max-width: 1023px) {
  .p-home__office__list__btn {
    display: block;
    position: absolute;
    z-index: 1;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76%;
    margin: 0 auto;
    height: 28px;
  }
}
@media screen and (max-width: 640px) {
  .p-home__office__list__btn {
    width: 94%;
  }
}
.p-home__office__list__btn .swiper-button-prev,
.p-home__office__list__btn .swiper-button-next {
  width: 28px;
  height: 28px;
  background-image: url("../img/common/arrow_slider.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-home__office__list__btn .swiper-button-prev {
  transform: rotate(180deg);
}
.p-home__voice {
  padding: 80px 0 10px;
}
@media screen and (max-width: 1023px) {
  .p-home__voice {
    padding: 30px 0 60px;
  }
}

/* p-flow */
.p-flow__list {
  display: flex;
  flex-direction: column;
  gap: 53px 0;
}
.p-flow__item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.p-flow__item:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -33px;
  transform: translateX(-50%);
  width: 19px;
  height: 13px;
  background-image: url("../img/flow/arrow_flow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-flow__item:last-child::after {
  display: none;
}
.p-flow__item__title {
  display: flex;
  flex-direction: row;
  gap: 0 10px;
  width: fit-content;
  margin: 0 auto;
  padding: 20px 40px;
  background: #ff5a01;
  border-radius: 9999px;
  font-size: 20px;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-flow__item__title {
    padding: 14px 40px;
    font-size: 18px;
  }
}
.p-flow__item__title .num {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-flow__item__title .num {
    font-size: 20px;
  }
}
.p-flow__item__title .title {
  font-weight: 500;
}
.p-flow__item__text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-flow__item__text {
    text-align: left;
  }
}
.p-flow__item__note {
  font-size: 14px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-flow__item__note {
    text-align: left;
  }
}
.p-flow__item__note a {
  display: inline-flex;
}
.p-flow__item__note a img {
  display: inline;
  width: 9px;
}
.p-flow__item a {
  color: #ff5a01;
  text-decoration: underline;
}

/* p-comment */
.p-comment__list {
  display: flex;
  flex-direction: column;
  gap: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-comment__list {
    gap: 30px 0;
  }
}

/* p-voice */
.p-voice__list {
  display: flex;
  flex-direction: column;
  gap: 60px 0;
}
@media screen and (max-width: 767px) {
  .p-voice__list {
    gap: 30px 0;
  }
}

/* p-entry */
.p-entry__text {
  text-align: center;
}
.p-entry__text--thanks {
  font-size: 20px;
  line-height: 1.95;
}

/* p-env */
.p-env__info__inner {
  max-width: 1294px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 40px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .p-env__info__inner {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    padding-bottom: 0;
  }
}
.p-env__info__item {
  position: relative;
  width: 390px;
}
@media screen and (max-width: 767px) {
  .p-env__info__item {
    max-width: 336px;
    width: 100%;
    margin: 0 auto;
  }
}
.p-env__info__item--employee p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-env__info__item--employee p {
    font-size: 34px;
  }
}
.p-env__info__item--employee p span {
  font-family: "Oswald", sans-serif;
  font-size: 93px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-env__info__item--employee p span {
    font-size: 80px;
  }
}

/* p-about */
@media screen and (min-width: 1024px) {
  .p-about .c-mediaBlock:first-of-type {
    padding-top: 0;
  }
}
@media screen and (max-width: 1023px) {
  .p-about .c-mediaBlock:not(:first-of-type) {
    padding-top: 0;
  }
}

/* p-recruit */
.p-recruit__place {
  padding: 80px 0;
  background-image: url("../img/common/bg_placement.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-recruit__place {
    padding: 60px 0 0;
    background-image: url("../img/common/bg_placement_sp.webp");
  }
}
@media screen and (max-width: 767px) {
  .p-recruit__place__inner {
    padding: 0;
  }
}
.p-recruit__place__note {
  margin-top: 40px;
  font-size: 14px;
  text-align: center;
}
.p-recruit__job {
  padding-bottom: 80px;
}/*# sourceMappingURL=style.css.map */