@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/*-- 追記 --*/
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}
*::-moz-selection {
  background-color: color(selection);
}
*::selection {
  background-color: color(selection);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 10vw;
}

body {
  font-family: "Noto Sans JP", serif;
  line-height: 1.7;
  font-size: 16px;
  letter-spacing: 0.1em;
}

a {
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}
@media (min-width: 769px) {
  a a[href^="tel:"] {
    pointer-events: none;
  }
}

img {
  image-rendering: -webkit-optimize-contrast;
}

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

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

table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
}
table th,
table td {
  word-break: break-all;
}

h1,
h2,
h3,
h4 {
  font-family: "Zen Kaku Gothic New", serif;
  color: #4b3d37;
  font-weight: 500;
}

p, span, li, dt, dd, a {
  font-family: "Noto Sans JP", serif;
  color: #282828;
  font-size: 16px;
  line-height: 1.8;
  text-decoration: none;
}

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

.is-tab {
  display: none;
}
@media screen and (max-width: 1024px) {
  .is-tab {
    display: block;
  }
}

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

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.l-container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .l-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fbdfdc;
  padding: 24px 40px 24px 190px;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 10px 20px 10px 120px;
    display: block;
  }
}

.header__logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 42px 20px;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f8c8ba;
  border-bottom-right-radius: 20px;
}
@media screen and (max-width: 768px) {
  .header__logo {
    padding: 25px 10px;
  }
}
.header__logo a {
  display: block;
  width: 100%;
}
.header__logo img {
  width: 120px;
  aspect-ratio: 112/70;
}
@media screen and (max-width: 768px) {
  .header__logo img {
    width: 80px;
    border-bottom-right-radius: 20px;
  }
}

.header__catchCopy {
  font-weight: 300;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .header__catchCopy {
    font-size: 12px;
    letter-spacing: 0.1em;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .header__nav {
    gap: 24px;
    justify-content: flex-end;
    padding-top: 10px;
  }
}

.header__contact {
  font-family: "Montserrat", serif;
  text-transform: uppercase;
  display: block;
  width: 130px;
  padding: 6px 0;
  text-align: center;
  border: 1px solid #282828;
  border-radius: 100px;
  background-color: #fbdfdc;
  transition: 0.3s background-color ease;
}
@media screen and (max-width: 768px) {
  .header__contact {
    padding: 3px 0;
    font-size: 14px;
    width: 110px;
  }
}
@media (any-hover: hover) {
  .header__contact:hover {
    background-color: #fff1ef;
  }
}

.header__hamburger {
  cursor: pointer;
  width: 40px;
  height: 12px;
  position: relative;
}
.header__hamburger span {
  width: 100%;
  height: 1px;
  background-color: #4b3d37;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
.header__hamburger span:nth-child(1) {
  top: 0;
}
.header__hamburger span:nth-child(2) {
  top: 12px;
}
.header__hamburger.is-open span:nth-child(1) {
  top: 6px;
  transform: rotate(150deg);
}
.header__hamburger.is-open span:nth-child(2) {
  top: 6px;
  transform: rotate(-150deg);
}

.header__menu {
  position: fixed;
  top: 89px;
  right: -100%;
  z-index: 9;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  padding-top: 120px;
  width: 100%;
  height: calc(100vh - 89px);
  background-color: rgba(251, 223, 220, 0.85);
  transition: 0.3s;
  overflow: auto;
  padding-bottom: 24px;
}
.header__menu.is-open {
  right: 0;
}
@media screen and (max-width: 768px) {
  .header__menu {
    top: 83px;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
    padding: 24px 20px 0;
  }
}

.header__listItem {
  padding-left: 20px;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .header__listItem {
    margin-top: 8px;
  }
}
.header__listItem a {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .header__listItem a {
    font-size: 16px;
  }
}
@media (any-hover: hover) {
  .header__listItem a:hover {
    text-decoration: underline;
  }
}
.header__listItem:has(.c-buttonWithArrow) {
  padding-left: 0;
}

.footer {
  padding-top: 30px;
}

.footer__inner {
  background-color: #f8c8bb;
  border-radius: 20px;
  padding-top: 100px;
  padding-bottom: 110px;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.footer__container {
  max-width: 1060px;
}

.footer__logoWrapper {
  width: 112px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer__logoWrapper {
    width: 80px;
  }
}

.footer__contents {
  padding-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .footer__contents {
    padding-top: 32px;
    display: block;
  }
}

.footer__letContent {
  padding-top: 5px;
}
@media screen and (max-width: 768px) {
  .footer__letContent {
    padding-top: 0;
    text-align: center;
  }
}

.footer__companyInfo {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .footer__companyInfo {
    gap: 16px;
    text-align: left;
  }
}

.footer__companyInfoContent dt {
  font-weight: 700;
  padding-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .footer__companyInfoContent dt {
    padding-bottom: 0;
  }
}

.footer__contactButton {
  background-color: #fff;
  font-size: 18px;
  width: min(100%, 240px);
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border-radius: 100px;
  margin-top: 36px;
  padding: 15px 30px;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .footer__contactButton {
    font-size: 16px;
    padding: 12px 30px;
    margin-top: 24px;
  }
}
.footer__contactButton .arrow {
  display: block;
  width: 20px;
  position: relative;
  margin-right: 20px;
  transition: 0.3s transform ease;
}
.footer__contactButton .arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #ed856b;
  border-bottom: 1px solid #ed856b;
  transform: translateY(-50%) rotate(-45deg);
}
.footer__contactButton .arrow::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: #ed856b;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (any-hover: hover) {
  .footer__contactButton:hover .arrow {
    transform: translateX(5px);
  }
}

.footer__rightContents {
  display: flex;
  align-items: flex-start;
  gap: 68px;
}
@media screen and (max-width: 768px) {
  .footer__rightContents {
    flex-direction: column;
    gap: 8px;
    padding-top: 24px;
  }
}

.footer__rightContent {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.footer__rightContent ul {
  padding-left: 22px;
  padding-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .footer__rightContent ul {
    padding-left: 12px;
    padding-bottom: 20px;
  }
}
.footer__rightContent ul li {
  padding-top: 13px;
}
@media screen and (max-width: 768px) {
  .footer__rightContent ul li {
    padding-top: 8px;
  }
}
.footer__rightContent ul li a {
  color: #4b3d37;
  text-transform: uppercase;
}
@media (any-hover: hover) {
  .footer__rightContent ul li a:hover {
    text-decoration: underline;
  }
}
.footer__rightContent .c-buttonWithArrow:nth-of-type(2) {
  margin-top: 8px;
}

.footer__copyright {
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 300;
  text-align: center;
  padding: 22px 0;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    padding: 8px 0;
  }
}

.c-section {
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .c-section {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.c-sectionTitle__eng {
  font-family: "Montserrat", serif;
  font-size: 50px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #4b3d37;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .c-sectionTitle__eng {
    font-size: 32px;
  }
}

.c-sectionTitle__jp {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 20px;
  color: #4b3d37;
  line-height: 1;
  padding-top: 24px;
}
@media screen and (max-width: 768px) {
  .c-sectionTitle__jp {
    font-size: 18px;
    padding-top: 8px;
  }
}

.c-buttonWithArrow {
  font-size: 13px;
  font-family: "Montserrat", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  text-transform: uppercase;
}
.c-buttonWithArrow .arrow {
  display: inline-block;
  margin-right: 14px;
  width: 40px;
  height: 40px;
  background-color: #f8c8ba;
  transition: 0.3s transform ease;
  border-radius: 50%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-buttonWithArrow .arrow {
    width: 30px;
    height: 30px;
    margin-right: 8px;
  }
}
.c-buttonWithArrow .arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 22px;
  width: 5px;
  height: 5px;
  border-right: 1px solid #4b3d37;
  border-bottom: 1px solid #4b3d37;
  transform: translateY(-50%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .c-buttonWithArrow .arrow::before {
    left: 17px;
  }
}
.c-buttonWithArrow .arrow::after {
  content: "";
  display: block;
  position: absolute;
  width: 14px;
  height: 1px;
  background-color: #4b3d37;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (any-hover: hover) {
  .c-buttonWithArrow:hover .arrow {
    transform: translateX(5px);
  }
}
.c-buttonWithArrow.header__link {
  font-size: 18px;
  font-family: "Noto Sans JP", serif;
}
@media screen and (max-width: 768px) {
  .c-buttonWithArrow.header__link {
    font-size: 16px;
  }
}
.c-buttonWithArrow.header__link .arrow {
  background-color: #fff;
  margin-right: 18px;
}
@media (any-hover: hover) {
  .c-buttonWithArrow.header__link:hover {
    text-decoration: none;
  }
}
.c-buttonWithArrow.footer__button {
  font-size: 16px;
  font-family: "Noto Sans JP", serif;
}
.c-buttonWithArrow.footer__button .arrow {
  background-color: rgba(255, 255, 255, 0.5);
  margin-right: 18px;
}
@media (any-hover: hover) {
  .c-buttonWithArrow.footer__button:hover {
    text-decoration: none;
  }
}

.c-fv {
  position: relative;
  padding-top: 89px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: #fbdfdc;
}
@media screen and (max-width: 768px) {
  .c-fv {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.c-fv__img {
  height: 32vw;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
  border-radius: 20px;
}
@media screen and (max-width: 1024px) {
  .c-fv__img {
    aspect-ratio: 4/3;
    height: auto;
  }
}

.c-fv__title {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-size: clamp(1.75rem, 0.4839rem + 2.6411vw, 3.125rem);
  letter-spacing: 0.2em;
  color: #fff;
  text-shadow: rgba(40, 40, 40, 0.4) 0 0 10px;
  position: absolute;
  text-align: center;
  margin: auto;
  left: 0;
  right: 0;
  top: 56%;
  transform: translateY(-44%);
  z-index: 1;
}

.c-table {
  margin: 0 auto;
  padding-top: 30px;
  max-width: 920px;
}
@media screen and (max-width: 768px) {
  .c-table {
    padding-top: 24px;
  }
}

.c-table__content {
  display: flex;
  padding: 16px 0;
  border-bottom: 1px solid #282828;
}
@media screen and (max-width: 768px) {
  .c-table__content {
    padding: 8px 0;
  }
}

.c-table__head {
  width: 25%;
  padding-left: 24px;
}
@media screen and (max-width: 768px) {
  .c-table__head {
    width: 40%;
    padding-left: 16px;
    padding-right: 24px;
  }
}

.c-table__body {
  width: 75%;
  padding-right: 24px;
}
@media screen and (max-width: 768px) {
  .c-table__body {
    width: 60%;
    padding-right: 16px;
  }
}

.c-breadcrumbs {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .c-breadcrumbs {
    padding: 16px 0;
  }
}
.c-breadcrumbs span.home {
  width: 15px;
  height: 15px;
  display: inline-block;
  background-image: url(../images/common/house_icon.png);
  background-size: cover;
}
.c-breadcrumbs a span,
.c-breadcrumbs span.post {
  font-size: 14px;
  font-weight: 300;
}
.c-breadcrumbs .current-item {
  font-size: 14px;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: min(100%, 320px);
}

.p-topFv {
  padding: 89px 30px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-topFv {
    padding: 120px 20px 0;
  }
}
.p-topFv::after {
  content: "";
  display: block;
  background-color: #fbdfdc;
  width: 100%;
  height: calc(100% - 48px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-topFv__img img {
  border-radius: 20px;
  aspect-ratio: 154/65;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 768px) {
  .p-topFv__img img {
    aspect-ratio: 1/1;
  }
}

.p-topFv__title {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-weight: 700;
  font-size: clamp(2rem, 0.3887rem + 3.3613vw, 3.75rem);
  letter-spacing: 0.2em;
  color: #fff;
  line-height: 1.5;
  position: absolute;
  left: 12.5vw;
  top: 48%;
  transform: translateY(-52%);
  text-shadow: rgba(40, 40, 40, 0.4) 0 0 10px;
}
@media screen and (max-width: 1024px) {
  .p-topFv__title {
    top: 50%;
    transform: translateY(-50%);
  }
}

.p-topFv__news {
  background-color: #f8c8ba;
  padding: 21px 27px 21px 46px;
  border-radius: 16px 0 0 16px;
  width: min(100%, 900px);
  margin-left: auto;
  margin-right: -30px;
  margin-top: 60px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .p-topFv__news {
    width: min(100%, 357px);
    padding: 16px;
    margin-right: -20px;
    margin-top: 32px;
  }
}

.p-topFv__newsInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 46px;
}
@media screen and (max-width: 1024px) {
  .p-topFv__newsInner {
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .p-topFv__newsInner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}

.p-topFv__newsHead {
  font-family: "Montserrat", serif;
  font-weight: 500;
  font-size: 22px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .p-topFv__newsHead {
    font-size: 16px;
  }
}

.p-topFv__newsDate {
  font-size: 16px;
  font-family: "Montserrat", serif;
  font-weight: 300;
  color: #4b3d37;
  padding-right: 24px;
}
@media screen and (max-width: 768px) {
  .p-topFv__newsDate {
    font-size: 12px;
  }
}

.p-topFv__newsTitle {
  color: #4b3d37;
  letter-spacing: 0.1em;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  .p-topFv__newsTitle {
    font-size: 12px;
  }
}

.p-topFv__newsLink {
  display: flex;
  align-items: center;
  flex: 1;
}
@media (any-hover: hover) {
  .p-topFv__newsLink:hover .p-topFv__newsTitle {
    text-decoration: underline;
  }
}

.p-topFv__newsBtn {
  width: 145px;
}
@media screen and (max-width: 768px) {
  .p-topFv__newsBtn {
    margin-top: 8px;
    margin-left: auto;
  }
}
.p-topFv__newsBtn .arrow {
  background-color: rgba(255, 255, 255, 0.5);
}

.p-topBusiness {
  padding-top: 115px;
  padding-bottom: 115px;
}
@media screen and (max-width: 768px) {
  .p-topBusiness {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.p-topBusiness__contents {
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 78px;
}
@media screen and (max-width: 768px) {
  .p-topBusiness__contents {
    padding-top: 60px;
    gap: 32px;
  }
}

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

.p-topBusiness__img {
  border-radius: 20px;
  aspect-ratio: 2/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 768px) {
  .p-topBusiness__img {
    border-radius: 20px 20px 0 0;
  }
}

.p-topBusiness__textArea {
  width: 54%;
  background-color: #f8c8bb;
  margin-left: -4%;
  border-radius: 20px;
  margin-top: 80px;
  height: 325px;
  padding: 60px 50px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-topBusiness__textArea {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    border-radius: 0 0 20px 20px;
    height: auto;
    padding: 70px 20px 20px;
  }
}

.p-topBusiness__title {
  font-size: 24px;
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 500;
  color: #4b3d37;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-topBusiness__title {
    font-size: 18px;
  }
}

.p-topBusiness__text {
  padding-top: 32px;
}
@media screen and (max-width: 768px) {
  .p-topBusiness__text {
    padding-top: 8px;
    font-size: 14px;
  }
}

.p-topBusiness__content {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .p-topBusiness__content {
    flex-direction: column-reverse;
  }
}
.p-topBusiness__content .p-topBusiness__textArea {
  position: relative;
}
.p-topBusiness__content .p-topBusiness__textArea::before {
  position: absolute;
  font-family: "Montserrat", serif;
  font-weight: 300;
  font-size: 50px;
  color: #4b3d37;
  top: -42px;
  left: 50px;
}
@media screen and (max-width: 768px) {
  .p-topBusiness__content .p-topBusiness__textArea::before {
    font-size: 32px;
    top: 20px;
    left: 20px;
  }
}
.p-topBusiness__content:nth-of-type(1) .p-topBusiness__textArea::before {
  content: "01";
}
.p-topBusiness__content:nth-of-type(2) .p-topBusiness__textArea::before {
  content: "02";
}
.p-topBusiness__content:nth-of-type(3) .p-topBusiness__textArea::before {
  content: "03";
}
.p-topBusiness__content:nth-of-type(4) .p-topBusiness__textArea::before {
  content: "04";
}
.p-topBusiness__content:nth-of-type(5) .p-topBusiness__textArea::before {
  content: "05";
}
.p-topBusiness__content:nth-of-type(even) {
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  .p-topBusiness__content:nth-of-type(even) {
    flex-direction: column-reverse;
  }
}
.p-topBusiness__content:nth-of-type(even) .p-topBusiness__textArea {
  margin-left: 0;
  margin-right: -4%;
  background-color: #fbdfdc;
}

.p-topCompany__container {
  background-color: #f8c9c7;
  border-radius: 20px;
  padding-top: 90px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .p-topCompany__container {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

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

.p-topCompany__imgWrapper {
  width: 110px;
  margin: 0 auto;
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .p-topCompany__imgWrapper {
    width: 80px;
    padding-top: 32px;
  }
}

.p-topCompany__text {
  text-align: center;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-topCompany__text {
    padding: 24px 20px 0;
    font-size: 14px;
  }
}

.p-topCompany__buttonArea {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding-top: 55px;
}
@media screen and (max-width: 1024px) {
  .p-topCompany__buttonArea {
    padding: 48px 8px 0;
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .p-topCompany__buttonArea {
    flex-direction: column;
    padding: 24px 20px 0;
    gap: 16px;
  }
}

.p-topCompany__button {
  background-color: #fff;
  width: min(100%, 340px);
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border-radius: 100px;
  padding: 25px 28px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-topCompany__button {
    padding: 16px 20px;
  }
}
.p-topCompany__button .arrow {
  display: block;
  width: 20px;
  position: relative;
  transition: 0.3s transform ease;
}
.p-topCompany__button .arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #ed856b;
  border-bottom: 1px solid #ed856b;
  transform: translateY(-50%) rotate(-45deg);
}
.p-topCompany__button .arrow::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: #ed856b;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (any-hover: hover) {
  .p-topCompany__button:hover .arrow {
    transform: translateX(5px);
  }
}

.p-topRecruit {
  padding-top: 115px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .p-topRecruit {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.p-topRecruit__container {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
@media screen and (max-width: 1024px) {
  .p-topRecruit__container {
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .p-topRecruit__container {
    flex-direction: column;
    align-items: normal;
    gap: 8px;
  }
}

.p-topRecruit__imgWrapper {
  width: 50%;
  padding-top: 5px;
}
@media screen and (max-width: 768px) {
  .p-topRecruit__imgWrapper {
    width: 100%;
    order: 2;
    padding-top: 16px;
  }
}

.p-topRecruit__img {
  border-radius: 20px;
}

.p-topRecruit__textArea {
  width: 550px;
}
@media screen and (max-width: 1024px) {
  .p-topRecruit__textArea {
    width: auto;
    flex: 1;
  }
}
@media screen and (max-width: 768px) {
  .p-topRecruit__textArea {
    display: contents;
  }
}

.p-topRecruit__title .c-sectionTitle__jp {
  font-size: 24px;
  padding-top: 20px;
}
@media screen and (max-width: 1024px) {
  .p-topRecruit__title .c-sectionTitle__jp {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-topRecruit__title .c-sectionTitle__jp {
    padding-top: 8px;
    font-size: 18px;
  }
}

.p-topRecruit__text {
  padding-top: 70px;
}
@media screen and (max-width: 1024px) {
  .p-topRecruit__text {
    padding-top: 32px;
  }
}
@media screen and (max-width: 768px) {
  .p-topRecruit__text {
    order: 3;
    padding-top: 16px;
  }
}

.p-topRecruit__buttonArea {
  text-align: right;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-topRecruit__buttonArea {
    margin-top: 0;
    order: 4;
  }
}

.p-topRecruit__button .arrow {
  background-color: #f8c8ba;
}

.p-topCorporation {
  padding-top: 32px;
  padding-bottom: 32px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-topCorporation {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.p-topCorporation::after {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 86%;
  height: 100%;
  border-radius: 20px;
  background-color: #f8c8bb;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-topCorporation::after {
    width: 100%;
    left: 0;
    border-radius: 0;
  }
}

.p-topCorporation__container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .p-topCorporation__container {
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .p-topCorporation__container {
    flex-direction: column;
    align-items: normal;
    gap: 8px;
  }
}

.p-topCorporation__textArea {
  width: 580px;
  padding-top: 90px;
  padding-left: 30px;
}
@media screen and (max-width: 1024px) {
  .p-topCorporation__textArea {
    padding-top: 48px;
    width: auto;
    flex: 1;
  }
}
@media screen and (max-width: 768px) {
  .p-topCorporation__textArea {
    display: contents;
  }
}

.p-topCorporation__title .c-sectionTitle__jp {
  font-size: 34px;
  padding-top: 0;
}
@media screen and (max-width: 1024px) {
  .p-topCorporation__title .c-sectionTitle__jp {
    font-size: 24px;
  }
}

.p-topCorporation__text {
  padding-top: 70px;
}
@media screen and (max-width: 1024px) {
  .p-topCorporation__text {
    padding-top: 32px;
  }
}
@media screen and (max-width: 768px) {
  .p-topCorporation__text {
    order: 3;
    padding-top: 16px;
  }
}

.p-topCorporation__buttonArea {
  text-align: right;
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .p-topCorporation__buttonArea {
    margin-top: 0;
    order: 4;
  }
}

.p-topCorporation__button .arrow {
  background-color: rgba(255, 255, 255, 0.5);
}

.p-topCorporation__imgWrapper {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .p-topCorporation__imgWrapper {
    width: 100%;
    order: 2;
    padding-top: 16px;
  }
}

.p-topCorporation__img {
  border-radius: 20px;
}

.p-instagram {
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .p-instagram {
    padding-top: 60px;
  }
}

.p-instagram__inner {
  background-color: #fbdfdc;
  border-radius: 20px;
  padding-top: 92px;
  padding-bottom: 110px;
}
@media screen and (max-width: 768px) {
  .p-instagram__inner {
    padding-bottom: 60px;
  }
}

.p-instagram__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.p-instagram__title::after {
  content: "";
  position: absolute;
  width: 146px;
  height: 66px;
  background-image: url(../images/pages/top/followMe.png);
  background-size: cover;
  top: -65px;
  right: -96px;
}
@media screen and (max-width: 768px) {
  .p-instagram__title::after {
    top: -45px;
    right: -40px;
    width: 100px;
    height: 45px;
  }
}

.p-instagram__cards {
  padding-top: 95px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .p-instagram__cards {
    padding-top: 32px;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

.p-instagram__card figcaption {
  font-size: 18px;
  text-align: center;
  font-family: "Zen Kaku Gothic New", serif;
  text-transform: uppercase;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-instagram__card figcaption {
    font-size: 16px;
    padding-top: 8px;
    line-height: 1.4;
  }
}
.p-instagram__card figcaption small {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .p-instagram__card figcaption small {
    font-size: 14px;
  }
}

.p-business {
  padding-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .p-business {
    padding-bottom: 60px;
  }
}

.p-business__contents {
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media screen and (max-width: 768px) {
  .p-business__contents {
    padding-top: 60px;
    gap: 60px;
  }
}

.p-business__content {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 50px;
  padding: 30px 0 32px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-business__content {
    flex-direction: column-reverse;
    justify-content: center;
    padding: 0;
    gap: 0;
  }
}
.p-business__content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 89%;
  height: 100%;
  background-color: #fbdfdc;
  z-index: -1;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .p-business__content::after {
    width: 100%;
  }
}
.p-business__content:nth-of-type(odd) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .p-business__content:nth-of-type(odd) {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.p-business__content:nth-of-type(odd)::after {
  left: auto;
  right: 0;
  background-color: #f8c8bb;
}

.p-business__textArea {
  width: 550px;
  padding-top: 72px;
}
@media screen and (max-width: 768px) {
  .p-business__textArea {
    width: 100%;
    padding: 20px;
  }
}

.p-business__title {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 34px;
  font-weight: 500;
  color: #4b3d37;
}
@media screen and (max-width: 768px) {
  .p-business__title {
    font-size: 24px;
  }
}

.p-business__catchcopy {
  font-family: "Zen Kaku Gothic New", serif;
  font-size: 24px;
  font-weight: 500;
  color: #ec7e63;
  padding-top: 56px;
}
@media screen and (max-width: 768px) {
  .p-business__catchcopy {
    font-size: 18px;
    padding-top: 16px;
  }
}

.p-business__text {
  padding-top: 24px;
}
@media screen and (max-width: 768px) {
  .p-business__text {
    padding-top: 8px;
  }
}

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

.p-business__img {
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .p-business__img {
    border-radius: 20px 20px 0 0;
  }
}

.p-business__buttonArea, .p-business__buttonArea--horizontal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 36px 0 50px;
}
@media screen and (max-width: 768px) {
  .p-business__buttonArea, .p-business__buttonArea--horizontal {
    padding: 20px 0 0;
    gap: 12px;
  }
}

.p-business__button {
  font-size: 18px;
  font-family: "Zen Kaku Gothic New", serif;
  color: #4b3d37;
  background-color: #fff;
  width: min(100%, 340px);
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border-radius: 100px;
  padding: 0 28px;
  height: 80px;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .p-business__button {
    height: 60px;
    padding: 0 20px;
  }
}
.p-business__button .arrow {
  display: block;
  width: 20px;
  position: relative;
  transition: 0.3s transform ease;
}
.p-business__button .arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #ed856b;
  border-bottom: 1px solid #ed856b;
  transform: translateY(-50%) rotate(-45deg);
}
.p-business__button .arrow::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: #ed856b;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (any-hover: hover) {
  .p-business__button:hover .arrow {
    transform: translateX(5px);
  }
}
.p-business__button:has(.instagram) {
  font-size: 16px;
  font-family: "Montserrat", "Zen Kaku Gothic New", serif;
  text-transform: none;
}
.p-business__button:has(.instagram) .instagram {
  width: 40px;
  height: 40px;
  background-image: url(../images/common/instagram_icon.png);
  background-size: cover;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .p-business__button:has(.instagram) .instagram {
    margin-right: 8px;
  }
}

.p-business__buttonArea--horizontal {
  flex-direction: row;
  align-items: center;
  gap: 30px;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .p-business__buttonArea--horizontal {
    flex-direction: column;
    gap: 12px;
    padding: 20px 0 0;
  }
}
.p-business__buttonArea--horizontal .p-business__button {
  width: min(100%, 260px);
}
@media screen and (max-width: 768px) {
  .p-business__buttonArea--horizontal .p-business__button {
    width: min(100%, 340px);
  }
}

.p-company__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-company__inner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.p-greeting {
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .p-greeting {
    padding-top: 60px;
  }
}

.p-greeting__content {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-greeting__content {
    flex-direction: column;
    align-items: normal;
    gap: 16px;
    padding-top: 24px;
  }
}

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

.p-greeting__textArea {
  flex: 1;
}

.p-greeting__headText {
  font-size: 24px;
  border-bottom: 1px solid #282828;
  padding-bottom: 16px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-greeting__headText {
    font-size: 18px;
    padding-bottom: 8px;
  }
}

.p-greeting__text {
  padding-top: 16px;
}
@media screen and (max-width: 768px) {
  .p-greeting__text {
    padding-top: 8px;
  }
}

.p-philosophy__content {
  padding-top: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-philosophy__content {
    padding-top: 24px;
  }
}

.p-philosophy__headText {
  font-size: 24px;
  border-bottom: 1px solid #282828;
  padding: 0 24px 16px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-philosophy__headText {
    font-size: 18px;
    padding-bottom: 8px;
  }
}

.p-philosophy__text {
  padding-top: 16px;
}
@media screen and (max-width: 768px) {
  .p-philosophy__text {
    padding-top: 8px;
  }
}

.p-news__content {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .p-news__content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.p-news__title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  padding-top: 60px;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}

.page-numbers.current {
  position: relative;
}
.page-numbers.current::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #282828;
  position: absolute;
  bottom: 3px;
}

.paginav-prev,
.paginav-next {
  width: 10px;
  height: 10px;
  display: block;
  cursor: pointer;
  position: relative;
}
.paginav-prev::after,
.paginav-next::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.paginav-prev::after {
  border-top: 1px solid #282828;
  border-left: 1px solid #282828;
}

.paginav-next::after {
  border-right: 1px solid #282828;
  border-bottom: 1px solid #282828;
}

.p-single__content {
  padding-top: 120px;
  padding-bottom: 120px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .p-single__content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.p-single__title {
  font-size: 20px;
  padding-bottom: 16px;
  padding-top: 8px;
  border-bottom: 1px solid #282828;
}

.p-single__body {
  padding-top: 40px;
}
.p-single__body > * {
  margin-top: 20px;
}

.post-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 24px;
}

.post-navigation__content a {
  width: 10px;
  height: 10px;
  display: block;
  cursor: pointer;
}
.post-navigation__content a::after {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  rotate: 45deg;
}

.post-next a {
  margin-right: 16px;
}
.post-next a::after {
  border-left: 2px solid #333;
  border-bottom: 2px solid #333;
}

.post-previous a {
  margin-left: 16px;
}
.post-previous a::after {
  border-right: 2px solid #333;
  border-top: 2px solid #333;
}

.p-contact__contents {
  padding-top: 120px;
  padding-bottom: 60px;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-contact__contents {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

.contact__content {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .contact__content {
    flex-direction: column;
    gap: 8px;
  }
}

.wpcf7-form-control-wrap {
  width: 100%;
  display: block;
}

.contact__head {
  width: 250px;
}
@media screen and (max-width: 768px) {
  .contact__head {
    width: 100%;
  }
}
.contact__head span {
  font-size: 12px;
  background-color: #f8c8bb;
  border-radius: 5px;
  margin-left: 8px;
  padding: 2px 4px;
}

.contact__body {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .contact__body {
    width: 100%;
  }
}
.contact__body .radio {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
}

.contact__input,
.contact__zip,
.contact__address {
  color: #282828;
  font-family: "Noto Sans JP", serif;
  width: 100%;
  padding: 8px 16px;
  line-height: 2;
  letter-spacing: 0.1em;
  box-sizing: border-box;
}

span:has(.contact__zip) {
  margin-bottom: 16px;
}

p:has(.contact__submit, .contact__submit--gray) {
  margin-top: 40px;
}

.contact__submit, .contact__submit--gray {
  background-color: #f8c8bb;
  color: #4b3d37;
  border: 2px solid #f8c8bb;
  width: min(100%, 240px);
  padding: 12px 0;
  margin: 0 auto;
  display: block;
  cursor: pointer;
  transition: 0.3s all ease;
}
@media (any-hover: hover) {
  .contact__submit:hover, .contact__submit--gray:hover {
    background-color: #fff;
    color: #ff5858;
    border: 2px solid #ff5858;
  }
}

.contact__submit--gray {
  color: #fff;
  background-color: #666;
  border: 2px solid #666;
}
@media (any-hover: hover) {
  .contact__submit--gray:hover {
    color: #666;
    border: 2px solid #666;
  }
}

#autozip {
  display: none !important;
}