@charset "UTF-8";
/* ----------------------------------------------
　PC設定
------------------------------------------------*/
.p-mv {
  background: var(--beige01);
  min-height: 890px;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  /* 最後ゆっくりになる拡大→等倍アニメ */
}
.p-mv::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: url(/images/bg_main.svg) center/auto 100% no-repeat;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}
.p-mv__main {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: min(12.5vw, 200px);
}
.p-mv__subCatch {
  font-size: var(--fs22_50);
  letter-spacing: 0.2em;
}
.p-mv__mainCatch {
  font-size: var(--fs50_130);
  line-height: 1;
  font-weight: 500;
  font-style: italic;
  color: var(--maincol);
  letter-spacing: 0.2em;
}
.p-mv__comName {
  font-size: var(--fs18_44);
  letter-spacing: 0.1em;
}
.p-mv__slider {
  width: 75.625%;
  -webkit-mask-image: url("/images/mask_main.svg");
          mask-image: url("/images/mask_main.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 45.53%;
          mask-size: 45.53%;
  -webkit-mask-position: center;
          mask-position: center;
  position: relative;
  z-index: 5;
}
.p-mv__slide {
  overflow: hidden;
}
.p-mv__slide.swiper-slide-active img {
  transform: scale(1.15);
  animation: zoomOutOnce 1.5s ease-out 1 forwards;
}
.p-mv__scrollArea {
  position: absolute;
  bottom: 0;
  right: 8.125vw;
  transform: translateY(50%);
  z-index: 5;
  display: flex;
  flex-direction: row-reverse;
  grid-gap: var(--m50);
  align-items: flex-starta;
}
.p-mv__scrollText {
  font-size: var(--fs14_18);
  writing-mode: vertical-rl;
}
.p-mv__scrollBar {
  height: 276px;
  width: 1px;
  background-color: var(--beige05);
  position: relative;
  z-index: 1;
}
.p-mv__scrollBar::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12.31%;
  background-color: var(--beige06);
  position: absolute;
  top: 0;
  left: 0%;
  animation: scrollDown 3s cubic-bezier(0, 0, 0.2, 1) infinite forwards;
}
@keyframes zoomOutOnce {
  from {
    transform: scale(1.15);
  }
  to {
    transform: scale(1);
  }
}
@keyframes scrollDown {
  from {
    transform: translateY(0%);
  }
  to {
    transform: translateY(712%);
  }
}

.p-about {
  padding-top: var(--m150);
  padding-bottom: var(--m170);
  background: linear-gradient(to top, var(--beige03), rgba(224, 217, 202, 0)), url(/images/bg_about.png) bottom center/120% no-repeat;
}
.p-about .c-title {
  margin-bottom: var(--m50);
}
.p-about__catch {
  margin-bottom: var(--m90);
}
.p-about__catch__line {
  line-height: 2.5;
  letter-spacing: 0.05em;
  text-align: center;
  display: block;
  font-size: var(--fs18_24);
}
.p-about__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.p-about__box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--m50) 0;
}
.p-about__box:not(:last-of-type) {
  border-right: 1px solid var(--beige02);
}
.p-about__boxTitle {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--m35);
}
.p-about__boxTitle__en {
  font-size: var(--fs32_50);
  font-weight: 600;
  font-style: italic;
  color: var(--maincol);
  line-height: 1;
  margin-bottom: var(--m16);
  display: block;
}
.p-about__boxTitle__en .big {
  font-size: var(--fs46_80);
  font-weight: 600;
  font-style: italic;
  color: var(--maincol);
  line-height: 1;
}
.p-about__boxTitle__jp {
  font-size: var(--fs14_18);
  color: var(--gray01);
}
.p-about__boxIcon {
  margin-bottom: var(--m35);
}
.p-about__boxIcon img {
  height: var(--m60_83);
  width: auto;
}
.p-about__boxText__line {
  font-size: var(--fs14_20);
  text-align: center;
  display: block;
  line-height: 1.75;
}

.p-separator {
  aspect-ratio: 16/5;
  background-image: url(/images/bg.jpg);
  background-position: center 58%;
  background-size: 102.6875%;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.p-separator::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(81, 69, 65, 0.3), rgba(81, 69, 65, 0.3));
}
.p-separator__text {
  font-size: 8.125vw;
  color: var(--beige03);
  font-weight: 400;
  letter-spacing: 0.2em;
  position: absolute;
  bottom: 0;
  right: 0;
  line-height: 1;
  transform: translateY(0.15em);
}

.p-message {
  padding-top: var(--m250);
  padding-bottom: var(--m300);
  position: relative;
  z-index: 1;
}
.p-message::before {
  content: "";
  display: inline-block;
  width: 31.25%;
  height: 100%;
  background-color: var(--beige03);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.p-message__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.p-message__textArea {
  width: 54%;
}
.p-message .c-title {
  margin-bottom: var(--m65);
}
.p-message__catch {
  margin-bottom: var(--m55);
}
.p-message__catch__line {
  font-size: var(--fs18_24);
  line-height: 2;
  display: block;
}
.p-message__text__line {
  font-size: var(--fs14_16);
  display: block;
  line-height: 2.2;
}
.p-message__image {
  width: 37.8%;
  aspect-ratio: 483/620;
  overflow: hidden;
  box-shadow: 11px 11px 8px rgba(51, 51, 51, 0.1);
}
.p-message__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-group {
  padding-top: var(--m200);
  margin-bottom: var(--m180);
  position: relative;
  z-index: 1;
}
.p-group::before {
  content: "";
  display: inline-block;
  width: 100%;
  position: absolute;
  left: 0%;
  aspect-ratio: 1600/347;
  background: linear-gradient(to bottom, rgba(242, 240, 236, 0) 0%, var(--beige01) 97%);
  top: 0%;
  z-index: -1;
  transform: translateY(45%);
}
.p-group__bg {
  display: inline-block;
  width: 100%;
  position: absolute;
  left: 0%;
  aspect-ratio: 1600/500;
  overflow: hidden;
  background: url(/images/bg_group.jpg) center 20%/100.8% no-repeat;
  top: 0;
  z-index: -2;
}
.p-group__inner {
  max-width: 1360px;
  padding: var(--m16_80) var(--m16_80) var(--m16_70);
  border-radius: var(--m20);
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 11px 11px 8px rgba(51, 51, 51, 0.1);
}
.p-group .c-title {
  margin-bottom: var(--m50);
}
.p-group__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  grid-gap: var(--m40) 3.3%;
}
.p-group__box {
  width: 48.35%;
}
.p-group__box:nth-of-type(2) .p-group__box__image img {
  transform: translateY(-9%);
}
.p-group__box__link {
  border-radius: var(--m16);
  background-color: var(--beige01);
  padding: var(--m16_35) var(--m16_40) var(--m16_25);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-gap: var(--m16_40) var(--m16_30);
}
.p-group__box__title {
  width: 100%;
  border-radius: 100vw;
  background-color: var(--black01);
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: var(--m14);
  padding: 10px;
  order: 1;
  transition: all 0.5s;
}
.p-group__box__title::before {
  content: "";
  display: inline-block;
  width: var(--fs22_28);
  aspect-ratio: 1/1;
  background: url(/images/logo_sk.svg) center/100% no-repeat;
}
.p-group__box__titleText {
  font-size: var(--fs16_20);
  color: #fff;
  max-width: calc(100% - var(--m14) - var(--fs22_28));
}
.p-group__box__text {
  width: calc(49.4% - var(--m16_30) / 2);
  font-size: var(--fs14_16);
  order: 3;
}
.p-group__box__text::after {
  content: "";
  display: block;
  width: 35px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: url(/images/arrow_bt.svg) center/28.57% no-repeat, var(--black01);
  margin: 10px 0 0 auto;
  transition: all 0.5s;
}
.p-group__box__image {
  width: calc(50.6% - var(--m16_30) / 2);
  aspect-ratio: 214/147;
  overflow: hidden;
  order: 2;
}

.p-contact {
  margin-bottom: var(--m250);
}
.p-contact .c-title {
  margin-bottom: var(--m80);
}
.p-contact__text {
  margin-bottom: var(--m65);
}
.p-contact__text__line {
  text-align: center;
  font-size: var(--fs14_16);
  display: block;
  line-height: 2;
}
.p-contact__attention {
  margin-bottom: var(--m80);
}
.p-contact__attention__line {
  text-align: center;
  font-size: var(--fs14_15);
  display: block;
  color: var(--accentcol);
  line-height: 2;
}
.p-contact__attention__line .req {
  font-size: 12px;
  color: #fff;
  padding: 0 0.5em;
  background-color: var(--accentcol);
  border-radius: 3px;
  display: inline-block;
  margin-right: 0.5em;
}

.p-company {
  padding-top: var(--m200);
  margin-bottom: var(--m180);
  position: relative;
  z-index: 1;
}
.p-company::before {
  content: "";
  display: inline-block;
  width: 100%;
  position: absolute;
  left: 0%;
  aspect-ratio: 1600/347;
  background: linear-gradient(to bottom, rgba(242, 240, 236, 0) 0%, var(--beige01) 97%);
  top: 0%;
  transform: translateY(45%);
  z-index: -1;
}
.p-company__bg {
  display: inline-block;
  width: 100%;
  position: absolute;
  left: 0%;
  aspect-ratio: 1600/500;
  overflow: hidden;
  background: url(/images/bg_company.jpg) center 80%/100.8% no-repeat;
  top: 0;
  z-index: -2;
}
.p-company__inner {
  max-width: 1360px;
  padding: var(--m16_80) var(--m16_80) var(--m16_70);
  border-radius: var(--m20);
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 11px 11px 8px rgba(51, 51, 51, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-gap: 0 5.34%;
}
.p-company .c-title {
  margin-bottom: var(--m70);
  width: 100%;
}
.p-company__outline {
  width: 41.66%;
}
.p-company__Row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
.p-company__Row:not(:last-of-type) {
  margin-bottom: var(--m16_40);
}
.p-company__dt {
  font-weight: 400;
  font-size: var(--fs14_16);
  width: 30%;
}
.p-company__dd {
  font-size: var(--fs14_16);
  width: 70%;
}
.p-company__link {
  font-size: var(--fs14_16);
  text-decoration: underline;
  display: flex;
  align-items: center;
  grid-gap: 0.5rem;
  color: var(--mainblack);
}
.p-company__link::after {
  content: "";
  display: inline-block;
  width: var(--fs14_17);
  aspect-ratio: 1/1;
  background: url(/images/icon_blank.svg) center/100% no-repeat;
}
.p-company__map {
  width: 53%;
}
.p-company__map iframe {
  height: 100%;
}

/* ----------------------------------------------
　PAD以下設定
------------------------------------------------*/
@media all and (min-width: 769px) {
  .p-group__box__link:hover .p-group__box__title {
    background-color: var(--accentcol);
  }
  .p-group__box__link:hover .p-group__box__text::after {
    background: url(/images/arrow_bt.svg) center/28.57% no-repeat, var(--accentcol);
  }
}
@media all and (max-width: 1024px) {
  .p-mv {
    min-height: unset;
    aspect-ratio: 1/0.75;
  }
  .p-mv__slider {
    width: 100%;
  }
  .p-group__box {
    width: 100%;
  }
}
@media all and (max-width: 890px) {
  .p-company__outline {
    width: 100%;
  }
  .p-company__map {
    width: 100%;
    margin-top: var(--m40);
    aspect-ratio: 2/1.5;
  }
}
@media all and (max-width: 768px) {
  .p-mv {
    aspect-ratio: 1/1;
  }
}
@media all and (max-width: 767px) {
  .p-message__textArea {
    width: 100%;
    margin-bottom: var(--m40);
  }
  .p-message__image {
    width: 100%;
  }
  .p-message__text__line.inline {
    display: inline;
  }
  .p-message__text__line.indent {
    margin-left: -0.5em;
  }
}
/* ----------------------------------------------
　SP調整
------------------------------------------------*/
@media all and (max-width: 600px) {
  .p-mv {
    aspect-ratio: 1/1.5;
  }
  .p-mv__mainCatch {
    text-align: center;
    line-height: 1.5;
    text-shadow: 5px 5px 8px rgba(255, 255, 255, 0.35);
  }
  .p-mv__subCatch {
    font-size: 20px;
  }
  .p-mv__slider {
    -webkit-mask-size: 77%;
            mask-size: 77%;
  }
  .p-mv__scrollArea {
    right: 3vw;
    grid-gap: var(--m25);
  }
  .p-about__box {
    flex: unset;
    width: 50%;
  }
  .p-about__box:not(:last-of-type) {
    border-right: unset;
  }
  .p-about__box:nth-of-type(1) {
    border-right: 1px solid var(--beige02);
  }
  .p-about__boxText {
    width: 90%;
  }
  .p-separator {
    aspect-ratio: 16/7;
  }
  .p-group__box__text {
    width: 100%;
  }
  .p-group__box__image {
    width: 100%;
  }
  .p-company__dt {
    width: 100%;
    text-align: center;
    color: var(--maincol);
    font-weight: 600;
  }
  .p-company__dd {
    width: 100%;
    text-align: center;
  }
  .p-company__link{
    justify-content: center;
  }
  .p-company__map {
    aspect-ratio: 1/1.5;
  }
}