@charset "UTF-8";
body {
  background-color: #fdfcf8;
  background-image: url("../images/bg_base.png");
  background-repeat: repeat;
  color: #333333;
  font-family:
    Noto Sans JP,
    Arial,
    Helvetica,
    sans-serif;
}

.inner_content {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .inner_content {
    max-width: 1100px;
  }
}

.btn_wrapper {
  text-align: center;
  margin: 80px 0 30px;
}

/* 全共通css */
.section_title_en {
  font-weight: bold;
  font-size: clamp(28px, 7vw, 48px);
  font-family: Helvetica, sans-serif;
  white-space: nowrap;
}
.section_title_en .accent {
  font-size: clamp(42px, 7vw, 72px);
}

.section_title {
  color: #ff8824;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.section_title::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #ff8824;
  align-self: center;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 3s ease;
}
@media (min-width: 768px) {
  .section_title::after {
    margin-bottom: -2em;
  }
}
@media (max-width: 767px) {
  .section_title::after {
    margin-right: -20px;
    margin-bottom: -1.3em;
  }
}
.section_title.is-animated::after {
  transform: scaleX(1);
}

.section_title_ja {
  font-size: 16px;
  display: inline-block;
  margin-right: 10px;
  white-space: nowrap;
}

/* fvセクションはfv_boxで独自管理のためinnerを使用しない */
.l_inner {
  padding-inline: clamp(20px, 5vw, 50px);
  overflow: hidden;
}

.privacy {
  padding-top: clamp(17px, 7vw, 134px);
  padding-bottom: clamp(140px, 35vw, 260px);
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 82%,
      rgb(255, 248, 222) 109%
    ),
    url(../images/base_background.png) repeat,
    #fdfcf8;
}
@media (min-width: 768px) {
  .privacy {
    padding-top: clamp(28px, 16vw, 150px);
  }
}

.privacy_content {
  padding-top: 42px;
}
.privacy_content_p {
  padding-bottom: 26px;
  line-height: 1.5;
}

.privacy_heading {
  font-size: clamp(20px, 4vw, 24px);
  margin: 40px 0 16px;
}

.privacy_list {
  line-height: 2.5;
  margin-top: 16px;
}

.privacy_text {
  line-height: 1.5;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bg {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes textShow {
  to {
    opacity: 1;
  }
}
@keyframes diamondIn {
  from {
    opacity: 0;
    transform: rotate(-20deg) scale(0.5); /* 回転しながら小さい状態 */
  }
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1); /* 通常の状態 */
  }
}
@keyframes LineIn {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scale(1);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.home .header {
  opacity: 0;
  animation: fadeIn 1.2s ease 0.3s forwards;
}

.fv_bg {
  opacity: 0;
  animation: fadeIn 0.8s ease 0.1s forwards;
}

.fv_logo {
  opacity: 0;
  animation: fadeIn 0.8s ease 0.8s forwards;
}

.fv_text_line {
  position: relative;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
}
.fv_text_line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 169, 95, 0.6);
  transform: scaleX(0);
  transform-origin: left center; /* ★ここに書く */
  z-index: -1;
}
.fv_text_line:nth-child(1) {
  animation: textShow 0s ease 2s forwards; /* ★追加 */
}
.fv_text_line:nth-child(1)::before {
  animation: bg 1s ease 2s forwards;
}
.fv_text_line:nth-child(2) {
  animation: textShow 0s ease 3s forwards; /* ★追加 */
}
.fv_text_line:nth-child(2)::before {
  animation: bg 1s ease 3s forwards;
}
.fv_text_line:nth-child(3) {
  animation: textShow 0s ease 4s forwards;
}
.fv_text_line:nth-child(3)::before {
  animation: bg 1s ease 4s forwards;
}

.deco_shape_right {
  opacity: 0;
  animation: diamondIn 0.3s cubic-bezier(0, 0, 0.5, 1) 1.1s forwards;
}

.works_item {
  opacity: 0;
}
.works_item.is-animated {
  animation: fadeUp 0.7s ease forwards;
}
.works_item:nth-child(n + 4):nth-child(-n + 6) {
  animation-delay: 0.3s;
}

.page_works_detail .works_detail_title,
.page_works_detail .works_detail_img {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.works_detail_title {
  animation-delay: 0.2s;
}

.works_detail_img {
  animation-delay: 0.4s;
}

.works_detail_info {
  animation-delay: 0.6s;
}

.works_detail_desc {
  animation-delay: 0.8s;
}

.works_detail_image {
  animation-delay: 1s;
}

body.page_top .cta_btn {
  opacity: 0;
}
body.page_top .cta_btn.is-animated {
  animation: fadeUp 1s ease forwards;
}

.service_item {
  opacity: 0;
}
.service_item.is-animated {
  animation: fadeUp 0.7s ease forwards;
}
.service_item:nth-child(2) {
  animation-delay: 0.3s;
}
.service_item:nth-child(3) {
  animation-delay: 0.6s;
}

.flow_item {
  opacity: 0;
}
.flow_item.is-animated {
  animation: fadeUp 0.7s ease forwards;
}
.flow_item:nth-child(2) {
  animation-delay: 0.3s;
}
.flow_item:nth-child(3) {
  animation-delay: 0.6s;
}
.flow_item:nth-child(4) {
  animation-delay: 0.9s;
}
.flow_item:nth-child(5) {
  animation-delay: 1.2s;
}
.flow_item:nth-child(6) {
  animation-delay: 1.5s;
}

.about_item {
  opacity: 0;
}
.about_item.is-animated {
  animation: fadeUp 0.7s ease forwards;
}

.footer_inner {
  opacity: 0;
}
.footer_inner.is-animated {
  animation: fadeUp 0.7s ease forwards;
}

/* ヘッダー */
.header {
  position: relative;
  z-index: 99999;
}
.header_inner {
  display: flex;
  padding: 30px clamp(20px, 3vw, 55px);
  justify-content: space-between;
  align-items: center;
  font-family: Helvetica, sans-serif;
  font-weight: bold;
}
.header_logo {
  font-size: clamp(16px, 2.7vw, 33px);
}
.header_list {
  display: flex;
  font-size: 17px;
  align-items: center;
  gap: clamp(16px, 3vw, 45px);
}
.header_contact {
  background-color: #ff8824;
  padding: 11px 52px;
  border-radius: 25px;
  color: #ffffff;
  font-weight: bold;
}
.header_contact:hover {
  background-color: rgba(255, 136, 36, 0.8);
}
@media (min-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
}
@media (max-width: 767px) {
  .header_nav {
    display: none;
  }
  .header_inner {
    padding: 20px;
  }
  .header_logo {
    font-size: 20px;
  }
}

.hamburger {
  display: none;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #333333;
}
@media (max-width: 767px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
  }
}

.sp_menu_close {
  position: absolute;
  top: 27px;
  right: 36px;
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}
.sp_menu_close span {
  display: block;
  width: 16px;
  height: 2px;
  background-color: #333333;
  position: absolute;
  top: 50%;
  left: 0;
}
.sp_menu_close span:nth-child(1) {
  transform: rotate(45deg);
}
.sp_menu_close span:nth-child(2) {
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .sp_menu_close {
    display: block;
  }
}
.sp_menu_list {
  display: none;
}
@media (max-width: 767px) {
  .sp_menu_list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    font-size: 18px;
    font-weight: bold;
  }
}
.sp_menu_contact a {
  background-color: #ff8824;
  padding: 14px 60px;
  border-radius: 25px;
  color: #ffffff;
  font-weight: bold;
  display: inline-block;
}
@media (max-width: 767px) {
  .sp_menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fffef8;
    z-index: 99999;
    padding-top: 140px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .sp_menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.sns_icon {
  display: none;
}
@media (max-width: 767px) {
  .sns_icon {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 48px;
  }
  .sns_icon img {
    width: 20px;
    height: 20px;
  }
}

.footer {
  background-color: #fff8de;
}
.footer_inner {
  text-align: center;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
}
@media (max-width: 767px) {
  .footer_inner {
    background-image: url("../images/footer_sp.png");
  }
}
@media (min-width: 768px) {
  .footer_inner {
    background-image: url("../images/footer_pc.png");
  }
}
.footer_title {
  font-size: clamp(42px, 10vw, 100px);
  color: #ffffff;
  font-weight: bold;
  padding-top: clamp(53px, 4vw, 129px);
}
.footer_text {
  font-size: clamp(14px, 3vw, 20px);
  line-height: 1.5;
  color: #ffffff;
  margin: clamp(29px, 5vw, 46px) 0;
}
.footer_cta_btn {
  background-color: #ff8824;
  border-radius: 70px;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  font-size: clamp(18px, 3vw, 24px);
  gap: 12px;
  margin-bottom: clamp(66px, 8vw, 92px);
  letter-spacing: 0.1em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  padding: clamp(16px, 4vw, 45px) clamp(28px, 5vw, 165px);
}
.footer_cta_btn:hover {
  background-color: rgba(255, 136, 36, 0.8);
}
.footer_cta_btn:hover .arrow_btn_pc,
.footer_cta_btn:hover .arrow_btn_sp {
  transform: translateX(5px); /* ★hover時に右に動く */
}
.footer_archive {
  background: linear-gradient(
    to bottom,
    rgba(255, 248, 222, 0.8) 70%,
    rgb(255, 248, 222) 100%
  );
  padding-top: clamp(78px, 14vw, 120px);
}
.footer_name {
  padding-bottom: 14px;
}
.footer_top_btn {
  position: absolute;
  bottom: clamp(62px, 39vw, 111px);
  display: block;
  width: clamp(60px, 10vw, 109px);
  transition:
    transform 0.3s ease,
    opacity 0.3s;
  right: clamp(20px, 10vw, 116px);
}
.footer_top_btn img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 767px) {
  .footer_top_btn {
    bottom: clamp(13px, 2vw, 30px);
  }
}
.footer .arrow_btn_pc,
.footer .arrow_btn_sp {
  width: clamp(12px, 3vw, 22px);
  transition: transform 0.3s ease;
  position: static;
}
@media (max-width: 767px) {
  .footer .arrow_btn_pc {
    display: none;
  }
}
@media (min-width: 768px) {
  .footer .arrow_btn_sp {
    display: none;
  }
}

.about {
  background: linear-gradient(
    to bottom,
    rgba(255, 248, 222, 0.8) 100%,
    rgb(255, 248, 222) 100%
  );
  padding-top: clamp(68px, 15vw, 140px);
}
.about_wrapper {
  margin-top: 45px;
  padding-bottom: clamp(78px, 20vw, 240px);
}
.about_item {
  display: flex;
  background-image: url("../images/service_background.jpg");
  border-radius: 23px;
  border: 1px solid #ffa95f;
}
@media (min-width: 768px) {
  .about_item {
    padding: 52px 74px;
    justify-content: center;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
  }
}
@media (max-width: 1180px) {
  .about_item {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .about_item {
    padding: 0 23px;
  }
}
.about_name {
  display: block;
  font-size: clamp(20px, 5vw, 24px);
  font-weight: bold;
  margin-bottom: 22px;
  margin: 23px 0;
}
.about_title {
  margin-bottom: 22px;
  display: block;
}
@media (max-width: 767px) {
  .about_title span {
    display: block;
  }
}
.about_text {
  margin-bottom: 25px;
  line-height: 1.5;
}
.about_text > span {
  display: block;
}
.about_text:nth-child(1) {
  margin: 0;
}
@media (min-width: 768px) {
  .about_text {
    text-align: left;
  }
}
@media (max-width: 1180px) {
  .about_text {
    text-align: center;
  }
}
.about_left img {
  width: 100%;
  display: block;
}
@media (min-width: 768px) {
  .about_left {
    max-width: 250px;
    width: clamp(180px, 24vw, 250px);
    flex-shrink: 0;
  }
}
@media (max-width: 767px) {
  .about_left {
    max-width: 200px;
    margin: 0 auto;
    margin-top: 35px;
    width: 47.4626865672%;
  }
}

.icon_box {
  display: flex;
  gap: 14px;
  margin-bottom: 35px;
}
@media (max-width: 1180px) {
  .icon_box {
    margin: 0 auto;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .icon_box {
    margin-bottom: 16px;
  }
}

.icon {
  width: 30px;
  height: 30px;
}

.contact {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 248, 222, 0.8) 100%
  );
  padding-top: clamp(68px, 15vw, 150px);
  /* SP */
}
@media (max-width: 767px) {
  .contact {
    padding-top: 20px;
  }
}
.contact_form {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.contact .form_item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: clamp(24px, 4vw, 30px);
}
.contact .form_item label {
  font-size: 16px;
  font-weight: bold;
}
.contact .required {
  background: #ffa95f;
  color: #ffffff;
  font-size: clamp(12px, 2vw, 14px);
  padding: 0px 8px;
  border-radius: 28px;
  margin-left: 10px;
  font-weight: normal;
}
.contact input:not([type="checkbox"]):not([type="submit"]),
.contact textarea {
  padding: 12px 14px;
  border: 1px solid rgba(255, 136, 36, 0.5);
  background-color: #ffffff;
  border-radius: 8px;
  margin-top: 16px;
}
.contact textarea {
  padding: 40px 14px;
}
.contact_form textarea {
  min-height: 160px;
  resize: vertical;
}
.contact_text {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.5;
  padding: clamp(26px, 4vw, 50px) 0;
}

.form_privacy {
  font-size: clamp(12px, 2vw, 14px);
  display: flex;
}
.form_privacy a {
  border-bottom: 1px solid #333333;
}
@media (min-width: 768px) {
  .form_privacy {
    margin-top: 10px;
  }
}

.form_submit {
  text-align: center;
  margin-top: clamp(54px, 2vw, 167px);
}
.form_submit p {
  margin: 0;
  display: inline-block;
}
.form_submit .wpcf7-spinner {
  display: none;
}

.checkbox span {
  gap: clamp(12px, 3vw, 17px);
}

.footer_contact_inner {
  height: 50px;
  background-image: url(../images/footer_contact_background.png);
}

.footer_contact_name {
  font-size: 12px;
  text-align: center;
  padding-top: 18px;
}

.wpcf7-submit {
  background-color: #ff8824;
  border-radius: 70px;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-size: 16px;
  padding: clamp(16px, 4vw, 26px) clamp(48px, 16.3vw, 84px);
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  min-width: 200px;
  text-align: center;
  position: relative;
  margin-bottom: clamp(66px, 8vw, 92px);
}
.wpcf7-submit:hover {
  background-color: rgba(255, 136, 36, 0.8);
}

.wpcf7-not-valid-tip {
  color: #dc3232 !important;
  font-size: 14px !important;
  font-weight: normal;
  display: block;
  opacity: 0.7;
  margin-top: 6px;
}

.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-email,
.wpcf7-form-control.wpcf7-textarea {
  padding: 12px 14px;
  border: 1px solid rgba(255, 136, 36, 0.5) !important;
  background-color: #ffffff !important;
  border-radius: 8px;
  width: 100%;
}

.flow {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 248, 222, 0.8) 100%
  );
  padding-top: clamp(68px, 15vw, 150px);
}
.flow_circle {
  font-family: Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.flow_circle .step {
  font-size: clamp(14px, 5vw, 15px);
}
.flow_circle .num {
  font-size: clamp(27px, 5vw, 42px);
  line-height: 1;
}
.flow_inner {
  max-width: 1100px;
  margin: 0 auto;
}
.flow_wrapper {
  margin-top: clamp(25px, 8vw, 46px);
  display: flex;
  flex-direction: column;
  align-items: center; /* 中央に配置 */
  gap: clamp(35px, 6vw, 52px);
  padding-bottom: 40px;
}
.flow_item {
  display: flex;
  gap: clamp(21px, 8vw, 77px);
  max-width: 800px;
  width: 100%;
  /* 6番目の .flow_item の線を消す */
}
.flow_item:nth-child(6) .flow_left::after {
  display: none;
}
.flow_right h3 {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: bold;
}
.flow_right p {
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.4;
  margin-top: clamp(10px, 2vw, 20px);
}
.flow_left {
  width: clamp(60px, 12vw, 95px);
  height: clamp(60px, 12vw, 95px);
  background-image: linear-gradient(#ffc49e, #ffb98c);
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  flex-direction: column; /* 縦に並べる */
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0; /* 円が縮まないように */
}
.flow_left::after {
  content: "";
  position: absolute;
  top: 100%; /* 円の下から */
  left: 50%; /* 円の中央 */
  transform: translateX(-50%); /* 中央揃え */
  width: 1.5px; /* 線の太さ */
  height: 130px; /* 線の長さ（丸と丸の間隔） */
  background-color: #ffbe94; /* 線の色 */
  z-index: 0; /* 円より後ろ */
}
@media (max-width: 767px) {
  .flow_wrapper {
    max-width: 500px;
    margin: 0 auto;
    margin-top: clamp(25px, 8vw, 46px);
  }
}

.fv {
  position: relative;
}
.fv_orange {
  background-color: #ffd4a3;
  border-radius: 20px;
  z-index: 1;
}
.fv_orange::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/texture.png");
  opacity: 0.3;
  border-radius: 20px;
}
.fv_orange::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/rectangle.png");
  opacity: 0.2;
  border-radius: 20px;
}
.fv_image {
  background-image: url(../images/fv_image.png);
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  z-index: 2;
  background-color: #ffffff;
}
.fv_image::before {
  content: "";
  position: absolute;
  background-color: #fde892;
  width: clamp(70px, 12vw, 96px);
  height: clamp(70px, 12vw, 96px);
  border-radius: 16%;
  z-index: 2;
  left: -71%;
  top: 64%;
  opacity: 0.6;
}
.fv_logo {
  color: #ffffff;
  font-weight: bold;
  position: absolute;
  font-family: Helvetica, sans-serif;
  z-index: 3;
  font-size: clamp(48px, 8vw, 84px);
}
.fv_box {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.fv_box::before {
  content: "";
  position: absolute;
  width: clamp(88px, 14vw, 140px);
  height: clamp(88px, 14vw, 140px);
  background-image: url(../images/rhombus.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 10%;
  left: 10%;
  z-index: 1;
  opacity: 0;
  animation: diamondIn 0.3s cubic-bezier(0, 0, 0.5, 1) 0.1s forwards;
}
@media (min-width: 768px) {
  .fv_box::before {
    top: 17%;
    left: -3%;
  }
}
.fv_box::after {
  content: "";
  position: absolute;
  border-radius: 16%;
  background-color: #ffc982;
  right: 0%;
  top: 84%;
  z-index: 2;
  width: clamp(70px, 14vw, 106px);
  height: clamp(70px, 14vw, 106px);
  opacity: 0;
  animation: diamondIn 0.3s cubic-bezier(0, 0, 0.5, 1) 1.1s forwards;
}
@media (min-width: 768px) {
  .fv {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 138px;
  }
  .fv .fv_box {
    max-width: 1140px;
    aspect-ratio: 1020/780;
    max-height: 640px;
  }
  .fv .fv_orange {
    position: absolute;
    left: 3%;
    top: 49%;
    transform: translateY(-50%);
    width: 94%;
    height: 80%;
  }
  .fv .fv_image {
    position: absolute;
    right: 3%;
    top: 49%;
    transform: translateY(-50%);
    width: 50%;
    height: 89%;
  }
  .fv .fv_logo {
    text-align: center;
    top: 29%;
    left: 26%;
    line-height: 1;
  }
  .fv .fv_text_sp {
    display: none;
  }
  .fv .fv_text_pc {
    display: inline-block;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    font-weight: bold;
    white-space: nowrap;
  }
  .fv .fv_text_line {
    color: #ffffff;
    font-size: clamp(14px, 2vw, 18px);
    padding: 7px 16px;
    margin: 12px 0;
    border-radius: 4px;
    font-weight: bold;
  }
}
@media (max-width: 767px) {
  .fv {
    overflow: hidden;
    position: relative;
    padding-top: 16px;
  }
  .fv .fv_box {
    position: relative;
    width: 100%;
    aspect-ratio: 375/520;
    margin: 0 auto;
    max-width: 450px;
  }
  .fv .fv_box::after {
    display: none;
  }
  .fv .fv_orange {
    position: absolute;
    width: 83%;
    height: 91%;
    top: 0;
    left: -31px;
  }
  .fv .fv_image {
    position: absolute;
    width: 82%;
    height: 89%;
    bottom: 0;
    right: -11px;
    margin: 0;
    top: -3%;
  }
  .fv .fv_image::before {
    display: none;
  }
  .fv .fv_logo {
    white-space: nowrap;
    top: 40%;
    left: 5%;
    line-height: 0.9;
  }
  .fv .fv_text_pc {
    display: none;
  }
  .fv .fv_text_sp {
    display: inline-block;
    color: #ffffff;
    font-size: clamp(12px, 3.6vw, 14px);
    font-weight: bold;
    position: absolute;
    z-index: 3;
    top: 59%;
    width: 94%;
  }
  .fv .fv_text_line {
    padding: 12px 21px;
    margin: 6px 0;
    border-radius: 4px;
    display: inline-block;
  }
  .fv .fv_text_line:nth-child(2) {
    line-height: 1.5;
  }
}

/* サービス部分 */
.service {
  padding-top: clamp(68px, 15vw, 150px);
}
.service_item {
  display: flex;
  background-image: url("../images/service_background.jpg");
  border-radius: 23px;
  border: 1px solid #ffa95f;
  padding: 20px 10px;
  align-items: center; /* 縦中央揃え */
  margin-bottom: clamp(35px, 4vw, 65px);
}
.service_wrapper {
  margin-top: clamp(25px, 8vw, 46px);
}
.service_wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.service_title {
  font-weight: bold;
  font-size: clamp(20px, 5vw, 24px);
  margin-bottom: 12px;
}
.service_text1 {
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.4;
}
.service_text2 {
  padding-top: 10px;
  line-height: 1.6;
}
.service_block2 {
  font-size: clamp(14px, 3vw, 16px);
}
.service_list {
  list-style: none;
}
@media (max-width: 767px) {
  .service_item {
    flex-direction: column;
    gap: 1rem;
  }
  .service_wrap {
    width: 78%;
    aspect-ratio: 240/160;
    overflow: hidden;
    margin: 0 auto;
    max-width: 280px;
  }
  .service_block {
    text-align: center;
  }
  .service_text1 {
    margin-bottom: 26px;
    max-width: 511px;
  }
  .service_item:nth-child(2) {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (min-width: 768px) {
  .service_item {
    padding: 46px 32px;
    align-items: center;
    gap: 64px;
    min-height: 320px;
    justify-content: center;
  }
  .service_item:nth-child(2) {
    flex-direction: row-reverse;
    justify-content: center;
  }
  .service_wrap {
    width: clamp(240px, 30vw, 350px); /* 画面幅に合わせて縮む */
    flex-shrink: 0;
    aspect-ratio: 350/240;
    overflow: hidden;
  }
  .service_subtitle {
    margin-top: 42px;
  }
  .service_block {
    max-width: 520px;
  }
}

.rhombus {
  color: #ffa95f;
  margin-right: 8px;
}

.works {
  padding-top: clamp(68px, 15vw, 150px);
}
@media (max-width: 767px) {
  .works {
    padding-top: 20px;
  }
}
.works_img {
  overflow: hidden;
  border-radius: 8px;
}
.works_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.works_item {
  cursor: pointer;
}
.works_item:hover .works_img img {
  transform: scale(1.05);
}
.works_list {
  display: grid;
  list-style: none;
}
.works_box {
  margin-top: 14px;
  text-align: center;
}
.works_text {
  color: #ffa95f;
  margin-top: 10px;
}
.works_title {
  font-size: clamp(20px, 5vw, 32px);
}
.works_category {
  display: flex;
  font-size: 16px;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.works_category .jp {
  position: relative;
  padding-right: 16px;
}
.works_category .jp::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1em;
  background: #333333;
}
.works_category_list {
  display: flex;
  justify-content: left;
  gap: 16px;
  margin-top: clamp(24px, 6vw, 65px);
  margin-bottom: clamp(24px, 6vw, 65px);
  font-weight: bold;
}
.works_category_list li {
  width: 140px;
  text-align: center;
  padding: 10px 0;
  border-radius: 999px;
  border: 1px solid #ffa95f;
  color: #ffa95f;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}
.works_category_list li:hover {
  background-color: rgba(255, 136, 36, 0.1);
}
.works_category_list li.is-active {
  background-color: #ffa95f;
  color: #ffffff;
  border: 1px solid #ffa95f;
}
@media (max-width: 767px) {
  .works_category_list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.works_archive {
  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 82%,
      rgb(255, 248, 222) 109%
    ),
    url("../images/base_background.png") repeat #fdfcf8;
  background-repeat: repeat;
}
.works_detail {
  padding-top: clamp(27px, 4vw, 152px);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 248, 222, 0.8) 100%
  );
}
.works_detail_info {
  font-size: clamp(14px, 2vw, 16px);
  background-color: #fffef8;
  padding: 28px 15px;
  border-radius: 10px;
  margin-bottom: 44px;
  opacity: 0.76;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: clamp(10px, 3vw, 26px);
  column-gap: clamp(10px, 3vw, 26px);
  row-gap: 17px;
}
.works_detail_info_first {
  width: 100%;
}
.works_detail_title {
  display: flex;
  gap: clamp(10px, 2vw, 24px);
  justify-content: center;
  padding: 112px 0 clamp(21px, 4vw, 81px);
}
.works_detail_category {
  font-size: clamp(14px, 3vw, 16px);
  background-color: #ffa95f;
  padding: 2px 18px;
  color: #ffffff;
  border-radius: 240px;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.works_detail_img {
  aspect-ratio: 894/567;
  max-width: 894px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: clamp(30px, 5vw, 70px);
}
.works_detail_img img {
  width: 100%;
  height: auto;
}
.works_detail_info_item {
  display: flex;
  white-space: nowrap;
  flex-shrink: 0;
  gap: clamp(10px, 2vw, 20px);
}
.works_detail_info_label {
  width: 80px;
}
.works_detail_box {
  display: flex;
  gap: clamp(10px, 3vw, 26px);
  margin-top: 17px;
}
.works_detail_url {
  color: #ff8824;
  margin-left: -38px;
}
.works_detail_desc_label {
  color: #ffa95f;
  min-width: 162px;
  white-space: nowrap;
  flex-shrink: 0;
}
.works_detail_desc_item {
  gap: 100px;
  display: flex;
  position: relative;
  margin-top: 62px;
}
.works_detail_desc_item:nth-child(3) .works_detail_desc_text,
.works_detail_desc_item:nth-child(4) .works_detail_desc_text {
  line-height: 1.7;
}
.works_detail_desc_item .works_detail_desc_label::before {
  content: "■";
  color: #ffa95f;
  margin-right: 6px;
  font-size: 12px;
}
.works_detail_image {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 4vw, 80px);
  max-width: 894px;
  margin: clamp(60px, 4vw, 170px) auto clamp(52px, 4vw, 167px);
}
@media (max-width: 840px) {
  .works_detail_box {
    flex-direction: column;
    gap: 17px;
  }
  .works_detail_info_item {
    gap: 20px;
  }
  .works_detail_url {
    margin-left: 0;
  }
  .works_detail_desc_item {
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    font-size: clamp(14px, 2vw, 16px);
  }
}
@media (max-width: 768px) {
  .works_detail_title {
    padding-top: 0;
  }
  .works_detail_img {
    aspect-ratio: 323/231;
    max-width: 100%;
    width: 96%;
  }
}
@media (min-width: 768px) {
  .works_wrapper {
    margin-top: 45px;
    padding-bottom: 60px;
  }
  .works_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
  }
  .works_img {
    aspect-ratio: 320/230;
  }
}
@media (max-width: 1180px) {
  .works_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
  }
}
@media (max-width: 767px) {
  .works {
    height: auto;
  }
  .works_item {
    max-width: 460px;
    margin: 0 auto;
  }
  .works_wrapper {
    margin-top: clamp(25px, 8vw, 46px);
    padding-inline: 26px;
    padding-bottom: 50px;
  }
  .works_text {
    margin-top: 6px;
  }
  .works_list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .works_img {
    aspect-ratio: 284/204;
    width: 100%;
  }
}

.cta_btn {
  background-color: #ffa95f;
  border-radius: 45px;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  font-size: clamp(18px, 2vw, 20px);
  gap: 12px;
  padding: clamp(16px, 4vw, 45px) clamp(28px, 5vw, 165px);
  margin-bottom: clamp(66px, 8vw, 92px);
  letter-spacing: 0.1em;
}
.cta_btn::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12%;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 1.5px solid #ffffff;
  border-right: 1.5px solid #ffffff;
  transform: rotate(45deg);
  transition: right 0.3s ease;
}
.cta_btn:hover {
  background-color: #f9bc03;
}
.cta_btn:hover::after {
  right: 10%;
}
@media (min-width: 768px) {
  .cta_btn {
    padding: clamp(9px, 3vw, 18px) 68px;
  }
}
@media (max-width: 767px) {
  .cta_btn {
    padding: clamp(16px, 1.1vw, 83px) 52px;
  }
}

/* =============================
ページネーション
============================= */
/* =============================
ページネーション
============================= */
.pagination {
  padding-bottom: 48px;
  background: linear-gradient(
    to bottom,
    rgba(255, 248, 222, 0.8) 70%,
    rgb(255, 248, 222) 100%
  );
}

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

.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

/* ホバーしたとき */
.pagination .page-numbers:hover {
  background-color: #ffa95f;
  color: #ffffff;
}

/* 現在ページ */
.pagination .page-numbers.current {
  background-color: #ffa95f;
  color: #ffffff;
  pointer-events: none;
}

.pagination .next.page-numbers:empty,
.pagination .prev.page-numbers:empty {
  display: none;
}

.is-hidden {
  display: none !important;
} /*# sourceMappingURL=style.css.map */
