@charset "utf-8";

/* FV */

.orca-fv {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 20px 70px;
  display: flex;
  gap: 4rem;
}

.orca-fv::after {
  content: "";
  position: absolute;
  right: -20%;
  top: 0;
  width: 100%;
  height: 150%;
  background: url("https://josho-group.com/system_panel/uploads/images/20260513234204514507.png") center / cover no-repeat;
  z-index: -1;
  background-size: cover;
}

.orca-fv-label {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
}

.orca-logo {
  width: 280px;
  margin: 0 auto 28px;
}

.orca-fv-title {
  margin: 0 0 28px;
  font-size: 34px;
  line-height: 1.7;
  font-weight: 500;
}

.orca-fv-text {
  margin: 0 auto 40px;
  font-size: 14px;
  line-height: 2.1;
  font-weight: 500;
}

/* =========================
   PC
========================= */

.orca-pc {
  position: relative;
  width: 430px;
  margin: 0 auto;
}

.orca-pc-img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================
   PC画面内
========================= */

.orca-pc-screen {
  position: absolute;

  /* PC画面位置を調整 */
  top: 15%;
  left: 15%;

  width: 68%;
  height: 50%;

  overflow: hidden;

  border-radius: 4px;
}

/* =========================
   スライダー
========================= */

.orca-service-track {
  display: flex;
  width: max-content;
  height: 100%;

  animation: pcSlider 36s linear infinite;
}

.orca-service-track img {
  width: 100%;
  height: 100%;
  flex-shrink: 0;

  object-fit: cover;
}

/* =========================
   animation
========================= */

@keyframes pcSlider {

  0% {
    transform: translateX(0);
  }

  33.333% {
    transform: translateX(0);
  }

  36% {
    transform: translateX(-100%);
  }

  66.333% {
    transform: translateX(-100%);
  }

  69% {
    transform: translateX(-200%);
  }

  100% {
    transform: translateX(-200%);
  }

}

/* =========================
   responsive
========================= */

@media screen and (max-width: 768px) {
  	.orca-fv {
      flex-direction: column; 
      gap: 2rem;
      align-items: center;
    }
    .orca-fv::after {
      content: "";
      position: absolute;
      right: 0;
      top: 0;
      width: 100%;
      height: 120%;
    }
  .orca-pc {
    width: 100%;
    max-width: 360px;
  }

}

/* スライダー帯 */

.orca-service-slider,
.orca-logo-slider {
  overflow: hidden;
  width: 100%;
}

.orca-service-track,
.orca-logo-track {
  display: flex;
  width: max-content;
  animation: loopSlider 36s linear infinite;
}

.orca-service-track img,
.orca-logo-track img {
  width: 100vw;
  max-width: none;
}

.orca-logo-slider {
  padding: 24px 0;
}

@keyframes loopSlider {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

/* =========================
   悩み
========================= */

.orca-worry {
  position: relative;
  margin: 0 calc(50% - 50vw);
}

/* =========================
   黒背景
========================= */

.orca-worry-black {
  position: relative;
  padding: 3rem 20px;
  background: #000;
  overflow: hidden;
}

.orca-worry-black::after {
  content: "";
  position: absolute;
  right: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("https://josho-group.com/system_panel/uploads/images/20260514011416535486.png") center / cover no-repeat;
  z-index: 0;
}

.orca-worry-black h2 {
  position: relative;
  z-index: 2;

  margin: 0 auto 3rem;

  color: #fff;
  width: fit-content;
  text-align: center;
  font-size: 30px;
}

.orca-worry-black h2::after {
  content: "";
  position: absolute;
  top: -2rem;
  right: -5rem;
  width: 48px;
  height: 53px;
  background: url("https://josho-group.com/system_panel/uploads/images/20260514011643987652.png") center / cover no-repeat;
  z-index: 0;
}

.orca-worry-top-list {
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;

  max-width: 900px;
  margin: 0 auto;
}

.orca-worry-top-item {
  width: 260px;
  padding: 24px 18px;

  border: 1px solid #FFF;

  color: #fff;

  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 14px;
  line-height: 2;
}

.orca-worry-top-item:nth-child(1) {
  animation-delay: 0s;
}
.orca-worry-top-item:nth-child(2) {
  animation-delay: 0.3s;
}
.orca-worry-top-item:nth-child(3) {
  animation-delay: 0.6s;
}
.orca-worry-top-item:nth-child(4) {
  animation-delay: 0.9s;
}
.orca-worry-top-item:nth-child(5) {
  animation-delay: 1.2s;
}


.orca-worry-content {
  position: relative;
  z-index: 5;
  max-width: 1100px;

  margin: 3rem auto 0;
  padding: 0 20px 3rem;
}

/* =========================
   ラベル
========================= */

.orca-worry-label {
  position: relative;

  width: fit-content;

  margin: 0 auto 30px;
  padding: 0 24px;

  background: #fff;
}

.orca-worry-label span {
  position: relative;

  display: block;

  font-family: serif;
  font-size: 26px;
}

.orca-worry-label::before {
  right: 100%;
}

.orca-worry-label::after {
  left: 100%;
}

.orca-worry-label span::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: -18px;

  width: 20px;
  height: 20px;

  border-right: 1px solid #888;
  border-bottom: 1px solid #888;

  background: #fff;

  transform: translateX(-50%) rotate(45deg);
}

/* =========================
   ロゴ
========================= */

.orca-worry-logo {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: center;
  text-align: center;
  margin: 0 0 60px;
}

.orca-worry-logo img:nth-child(1) {
  width: 320px;
  max-width: 90%;
}

.orca-worry-logo img:nth-child(2) {
  max-width: 500px;
}

/* =========================
   カード
========================= */

.orca-worry-solve {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  row-gap: 5rem;
}

/* =========================
   orca worry card
========================= */

.orca-worry-card {
  width: 320px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.orca-worry-card-top {
  position: relative;
  margin: 0 0 34px;
  padding: 16px 18px;
  background: #f5f5f5;
  text-align: center;
  font-size: 13px;
  line-height: 1.8;
  width: 100%;
}

.orca-worry-card-top::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 18px solid #d9d9d9;
}

.orca-worry-card-body {
  position: relative;
  min-height: 250px;
  padding: 8px 20px 32px;
  background-color: #fff;
  border: 1px solid #111;
  text-align: center;
}

/* オレンジ背景 */
.orca-worry-card-body::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 40%;
  height: 50%;
  background: url("https://josho-group.com/system_panel/uploads/images/20260514012648355772.png") center / cover no-repeat;
  pointer-events: none;
  z-index: -1;
}

/* 中身を前面へ */
.orca-worry-card-body > * {
  position: relative;
  z-index: 2;
}

.orca-worry-card-p {
  margin: 0 0 8px;
  color: #5F5F5F;
  font-size: 18px;
  line-height: 1.4;
}

.orca-worry-card-body h3 {
  position: relative;
  top: -1.5rem;
  display: inline-block;
  margin: 0;
  padding: 0 18px;
  background: #fff;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
  z-index: 2;
}

.orca-worry-card-body img {
  display: block;
  width: auto;
  height: 64px;
  margin: 0 auto 24px;
}

.orca-worry-card-body > p:last-child {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 500;
  color: #5F5F5F;
}

/* 414px */
@media screen and (max-width: 414px) {
  .orca-worry-card {
    width: 100%;
  }

  .orca-worry-card-body {
    padding: 24px 20px 30px;
  }

  .orca-worry-card-body h4 {
    font-size: 20px;
  }
}

/* =========================
   SP
========================= */

@media screen and (max-width: 768px) {

  .orca-worry-black {
    padding: 70px 20px;
  }

  .orca-worry-label::before,
  .orca-worry-label::after {
    width: 80px;
  }

}

@media screen and (max-width: 414px) {

  .orca-worry-black h2 {
    font-size: 24px;
  }

  .orca-worry-top-item {
    width: 100%;
  }

  .orca-worry-card {
    width: 100%;
  }

  .orca-worry-label span {
    font-size: 20px;
  }

}
/* =========================
   merit stack
========================= */

.orca-merit {
  max-width: 1024px;
  margin: 0 auto;
  padding: 3rem 20px 5rem;
}

.orca-merit-title {
  margin: 0 0 56px;
  text-align: center;
  font-family: serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.orca-merit-title span {
  font-size: 52px;
  line-height: 1;
}

.orca-merit-stack {
  position: relative;
  padding-bottom: 5rem;
}

.orca-merit-card {
  min-height: auto;
  margin-bottom: 70px;
  position: relative;
  min-height: 360px;
  margin-bottom: 5rem;
  padding: 48px 56px 38px;
  background: #F4F4F4;
  border: 1px solid #eee;
  box-shadow: 14px 14px 0 rgba(254, 68, 1, 0.85);
  overflow: hidden;
}

.orca-merit-card:nth-child(1) {
  z-index: 1;
}

.orca-merit-card:nth-child(2) {
  z-index: 2;
}

.orca-merit-card:nth-child(3) {
  z-index: 3;
}

.orca-merit-card:nth-child(4) {
  z-index: 4;
}

.orca-merit-num-img {
  position: absolute;
  left: 0;
  top: 24px;
  width: 190px;
  height: auto;
  opacity: 0.8;
  z-index: 1;
}

.orca-merit-card-head,
.orca-merit-card-text,
.orca-merit-card-visual {
  position: relative;
  z-index: 2;
}

.orca-merit-card-head {
  width: 32%;
  float: left;
  padding-right: 32px;
}

.orca-merit-card-head h3 {
  margin: 0 0 12px;
  font-family: serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}

.orca-merit-card-head p {
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
}

.orca-merit-card-text {
  margin-left: 36%;
  padding-bottom: 28px;
}

.orca-merit-card-text p {
  margin: 0;
  font-size: 12px;
  line-height: 2;
  font-weight: 500;
}

.orca-merit-card-visual-wrap {
  border-top: 1px solid #707070;
  padding-top: 1rem;
}

.orca-merit-card-visual {
  clear: both;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: end;
  margin-top: 28px;
  padding: 2rem;
  background: #FFF;
}

.orca-merit-card-visual img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.orca-merit-card-visual img:last-child {
  object-fit: cover;
}

/* =========================
   1024px
========================= */

@media screen and (max-width: 1024px) {
  .orca-merit {
    max-width: 860px;
  }

  .orca-merit-card {
    padding: 42px 42px 34px;
  }

  .orca-merit-card-head {
    width: 34%;
  }

  .orca-merit-card-text {
    margin-left: 38%;
  }
}

/* =========================
   768px
========================= */

@media screen and (max-width: 768px) {
  .orca-merit {
    padding: 70px 20px 110px;
  }

  .orca-merit-card {
    min-height: auto;
    margin-bottom: 70px;
    padding: 36px 30px 32px;
    position: relative;
    top: auto;
  }

  .orca-merit-num-img {
    width: 150px;
  }

  .orca-merit-card-head {
    float: none;
    width: 100%;
    padding-right: 0;
    margin-bottom: 24px;
  }

  .orca-merit-card-text {
    margin-left: 0;
  }

  .orca-merit-card-visual {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .orca-merit-card-visual img {
    height: auto;
    max-height: 220px;
  }
}

/* =========================
   414px
========================= */

@media screen and (max-width: 414px) {
  .orca-merit {
    padding: 60px 16px 90px;
  }

  .orca-merit-title {
    margin-bottom: 40px;
    font-size: 20px;
  }

  .orca-merit-title span {
    font-size: 42px;
  }

  .orca-merit-card {
    margin-bottom: 54px;
    padding: 2rem .5rem 1.5rem;
    box-shadow: 8px 8px 0 rgba(254, 68, 1, 0.85);
  }

  .orca-merit-num-img {
    width: 120px;
    left: -10px;
    top: 20px;
  }

  .orca-merit-card-head h3 {
    font-size: 16px;
  }

  .orca-merit-card-text p {
    font-size: 11px;
    line-height: 1.9;
  }
}

/* =========================
   FAQ
========================= */

.orca-faq {
  position: relative;
  margin: 0 calc(50% - 50vw);
  padding: 90px 20px 110px;
  background: #fff6ef;
  overflow: hidden;
}

.orca-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    url("https://josho-group.com/system_panel/uploads/images/faq-back01.png"),
    url("https://josho-group.com/system_panel/uploads/images/faq-back02.png");
  background-repeat: no-repeat, no-repeat;
  background-position: left top, right bottom;
  background-size: 320px auto, 320px auto;
  pointer-events: none;
  z-index: 0;
}

.orca-faq::before {
  left: 0;
  top: 0;
}

.orca-faq::after {
  right: 0;
  bottom: 0;
}

.orca-faq-wrap {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 90px;
  background: #fff;
}

.orca-faq-wrap > h2 {
  position: relative;
  margin: 0 0 56px;
  text-align: center;
  font-family: serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.orca-faq-wrap > h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin: 16px auto 0;
  background: #7f2200;
}

.orca-faq-cont {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 34px;
  align-items: start;
}

.orca-faq-cont + .orca-faq-cont {
  margin-top: 70px;
}

.orca-faq-cont > h3 {
  position: relative;
  margin: 0;
  padding-left: 20px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.orca-faq-cont > h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #000;
}

.orca-faq-item {
  display: grid;
  gap: 38px;
}

.orca-faq-cont,
.orca-faq-item,
.orca-faq-list-q,
.orca-faq-list {
  min-width: 0;
}
.orca-faq-list {
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
  max-width: 90%;
}

.orca-faq-list-q {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.orca-faq-list-q p:first-child {
  flex: 0 0 auto;
  margin: 0;
  padding: 5px 16px;
  background: #b40000;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.orca-faq-cont:nth-of-type(even) .orca-faq-list-q p:first-child {
  background: #fe4401;
}

.orca-faq-list-q p:last-child {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}

.orca-faq-list > p {
  margin: 0;
  font-size: 13px;
  line-height: 2;
  font-weight: 500;
}

/* =========================
   768px
========================= */

@media screen and (max-width: 768px) {
  .orca-faq {
    padding: 70px 20px 90px;
  }

  .orca-faq-wrap {
    padding: 56px 40px;
  }

  .orca-faq-cont {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .orca-faq-cont + .orca-faq-cont {
    margin-top: 56px;
  }
}

/* =========================
   414px
========================= */

@media screen and (max-width: 414px) {
  .orca-faq {
    padding: 56px 8px 70px;
  }

  .orca-faq::before,
  .orca-faq::after {
    width: 220px;
    height: 220px;
  }

  .orca-faq-wrap {
    padding: 42px 20px;
  }

  .orca-faq-wrap > h2 {
    margin-bottom: 40px;
    font-size: 24px;
  }

  .orca-faq-list {
    max-width: 100%;
  }
  .orca-faq-list-q {
    align-items: flex-start;
    gap: 10px;
  }

  .orca-faq-list-q p:first-child {
    padding: 5px 12px;
    font-size: 12px;
  }

  .orca-faq-list-q p:last-child {
    font-size: 14px;
  }

  .orca-faq-list > p {
    font-size: 12px;
    line-height: 1.9;
  }

  .orca-faq-list > p br {
    display: none;
  }
}

/* 1024px */

@media screen and (max-width: 1024px) {
  .orca-black-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .orca-problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 768px */

@media screen and (max-width: 768px) {
  .orca-fv {
    padding-top: 60px;
  }

  .orca-fv-title {
    font-size: 28px;
  }

  .orca-black-list,
  .orca-problem-grid {
    grid-template-columns: 1fr;
  }

  .orca-merit-card {
    grid-template-columns: 1fr;
    top: 90px;
    padding: 34px;
  }
}

/* 414px */

@media screen and (max-width: 414px) {
  .orca-fv-title {
    font-size: 23px;
  }

  .orca-fv-text {
    font-size: 12px;
  }

  .orca-fv-text br {
    display: none;
  }

  .orca-logo {
    width: 180px;
  }

  .orca-black {
    padding: 60px 20px;
  }

  .orca-problem,
  .orca-merit {
    padding-left: 16px;
    padding-right: 16px;
  }

  .orca-merit-card {
    min-height: auto;
    margin-bottom: 80px;
    padding: 26px 20px;
  }

  .orca-merit-card h3 {
    font-size: 22px;
  }

  .orca-merit-card img {
    height: 180px;
  }
}