@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #333;
  --white-color: #fff;
  --gray-color: #eeeeee;
  --gray-color02: #b5b6b8;
  --text-color: #33362f;
  --text-color02: #5d5d5d;
  --text-color03: rgba(206, 205, 204, 0.5);
  --base-color: #fbfbfb;
  --accent-color: #c99c26;
  --shadow-color: rgba(238, 238, 238, 1);
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 500px;
  --content-width: 660px;
  --content-width-lg: 1000px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
  --z-index-highest: 9999;
}

/* ---------- base ---------- */
html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px;
}

body {
  color: var(--text-color);
  background-color: var(--base-color);
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

a {
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 4px;
}

ul,
li {
  list-style: none;
}

@media screen and (min-width: 768px) {
  .u_br_lg {
    display: none;
  }
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* ---------- layout ---------- */
.l_container-sm,
.l_container-lg,
.l_container {
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

/* padding-top / bottom（上下の余白） */
.l_contents_sm {
  padding: 80px 0;
}
@media screen and (min-width: 1080px) {
  .l_contents_sm {
  padding: 120px 0;
}
}

/* ---------- header ---------- */
.l_header {
  width: 100%;
  height: 60px;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-header);
  box-sizing: border-box;
}
@media screen and (min-width: 1080px) {
.l_header {
  height: 65px;
}
}

.l_header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: .3s;
  z-index: -1;
}

.l_header.is-scrolled::before {
  opacity: 1;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);; /*自分の背景をぼかす。filterは自身をぼかす*/
  -webkit-backdrop-filter: blur(4px);; /*8pxはぼかしの強さ*/
}

.l_logo {
  font-family: "Kaisei Opti", serif;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: bold;
}

.l_header_logo {
  font-family: "Kaisei Opti", serif;
  font-size: 24px;
  font-weight: bold;
}

.l_header_nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--gray-color);
  z-index: var(--z-index-header);
}
@media screen and (min-width: 1080px) {
  .l_header_nav {
    position: static;
    display: flex;
    margin-left: auto;
    background: transparent;
  }
}

.l_header-nav_list {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media screen and (min-width: 1080px) {
  .l_header-nav_list {
    display: flex;
    align-items: center;
    gap: clamp(24px, 2vw, 40px);
    flex-direction: row;
    padding: 0;
  }
}

.l_nav_link {
  transition: transform 0.2s;
  position: relative;
}

.l_nav_link::after {
  background-color: var(--accent-color); /* 下線の色 */
  bottom: -4px; /* 要素の下端からの距離 */
  content: ""; /* 要素に内容を追加 */
  height: 1px; /* 下線の高さ */
  left: 0; /* 要素の左端からの距離 */
  position: absolute; /* 絶対位置指定 */
  transform: scale(0, 1); /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: center top; /* 変形の原点を中央上に指定 */
  transition: transform 0.3s; /* 変形をアニメーション化 */
  width: 100%; /* 要素の幅 */
}
/* リンクにホバーした際の下線の表示 */
.l_nav_link:hover::after {
  transform: scale(1, 1); /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}

.top_contact_btn {
  width: 160px;
  height: 50px;
  background-color: var(--text-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.top_contact_btn:hover {
  background: var(--accent-color);
  color: var(--base-color);
  transition-duration: .5s;
}

.m_hamburger {
  width: 30px;
  height: 25px;
  position: relative;
  background-color: transparent;
  z-index: var(--z-index-menu);
}
@media screen and (min-width: 1080px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger-bar {
  width: 100%;
  height: 1px;
  position: absolute;
  transition: ease 0.4s;
  background-color: var(--text-color);
  display: block;
  border-color: transparent;
}

.m_hamburger-bar:nth-child(1) {
  top: 0;
}
.m_hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.m_hamburger-bar:nth-child(3) {
  bottom: 0;
}

/* opening */
.l_opening {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  background: linear-gradient(to bottom, #f8f8f8, #f3f3f3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: var(--z-index-highest);
}

.l_opening_logo {
  opacity: 0;
}

/* 最初はKV隠す */
.top {
  opacity: 0;
}

/* ---------- kv ---------- */
.top_kv {
  background:
    linear-gradient(
      to bottom,
      rgba(225, 225, 225, 0) 0%,
      rgba(225, 225, 225, 0.3) 40%,
      rgba(225, 225, 225, 0.6) 60%,
      rgba(225, 225, 225, 0.8) 80%,
      rgba(251, 251, 251, 0.8) 100%
    ),
    url(../img/top_sp.webp) no-repeat bottom / cover;
  height: 100svh;
  width: 100%;
  position: relative;

  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(120px, 22svh, 180px);
}
@media screen and (min-width: 768px) {
  .top_kv {
    background:
      linear-gradient(rgba(225, 225, 225, 0.1), rgba(225, 225, 225, 0.4)),
      url(../img/top_pc.webp) no-repeat center/cover;
    height: 700px;
  }
}

.top_kv .l_container-lg {
  width: 100%;
}

.top_kv_container {
  position: static;
  bottom: auto;
}

.u_visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.top_kv_ttl {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: bold;
  color: var(--text-color);
}

.top_kv_sub {
  font-family: "Whisper", cursive;
  font-size: clamp(20px, 4vw, 30px);
}

.m_btn_wrap {
  display: flex;
  justify-content: flex-end;
}

.m_btn {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  padding-right: 16px;
  margin-top: 64px;
}

.m_btn_en {
  font-family: "Whisper", cursive;
  font-size: 30px;
  line-height: 0.8;
  position: relative;
  padding-right: 24px;
}

.m_btn_en::after {
  position: absolute;
  content: "→";
  font-size: 14px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.4s ease; 
}

.m_btn:hover .m_btn_en::after {
  transform: translateY(-50%) translateX(4px);
}

.m_btn_jp {
  position: relative;
  font-size: 10px;
  color: var(--text-color02);
  line-height: 1.2;
}

.m_btn_jp::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.m_btn:hover .m_btn_jp::after {
  transform: scaleX(1);
}

.btn_cta {
  color: var(--base-color);
}

.m_contact__btn {
  width: 240px;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 16px 0 24px;
  position: relative;
  margin: 0 auto;
}

.m_contact__btn::after {
  position: absolute;
  content: "→";
  right: 16px;
}

/* ---------- sectionアニメーション ---------- */
.fade-section {
  opacity: 0;
  transform: translateY(10px); /* 下からふわっとさせたい場合 */
  transition: none; /* GSAPのアニメーションを適用するため */
}

/* ---------- stance ---------- */
.top_stance {
  background: linear-gradient(
    to bottom,
    rgba(238, 238, 238, 0.8) 0%,
    rgba(251, 251, 251, 0.8) 20%,
    rgba(251, 251, 251, 1) 80%,
    rgba(251, 251, 251, 1) 100%
  );
  width: 100%;
  z-index: var(--z-index-back);
}

.m_section_ttl {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-size: 8px;
  line-height: 1;
  margin-bottom: 64px;
}

.m_section_ttl::before {
  font-family: "Whisper", cursive;
  font-size: 40px;
  color: var(--accent-color);
  line-height: 0.6;
}

.m_section_ttl__stance::before {
  content: "Stance";
}
.m_section_ttl__service::before {
  content: "Service";
}
.m_section_ttl__works::before {
  content: "Works";
}
.m_section_ttl__thanks::before {
  content: "Thank you";
}

.m_section_copy {
  font-weight: bold;
  font-size: clamp(20px, 4vw, 30px);
  margin-bottom: 40px;
}

.m_section_desc {
  width: 100%;
}
@media screen and (min-width: 1080px) {
.m_section_desc {
  font-size: 16px;
}
}

/* ---------- service ---------- */
.top_service {
  background: linear-gradient(
    to bottom,
    rgba(251, 251, 251, 1) 0%,
    rgba(238, 238, 238, 0.8) 8%,
    rgba(238, 238, 238, 1) 50%,
    rgba(238, 238, 238, 1) 100%
  );
}

/* SP初期値 */
.top_service_pc {
  display: block;
}

.m_btn_pc {
  display: none;
}

.m_btn_sp {
  display: flex;
}

/* PC */
@media screen and (min-width: 768px) {
  .top_service_pc {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .m_btn_pc {
    display: flex;
    margin-top: 24px;
  }

  .m_btn_sp {
    display: none;
  }
}

.l_contents_wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .l_contents_wrap {
    gap: 80px;
  }
  .l_service_wrap {
    display: grid; /* グリッドレイアウトの適用 */
    grid-template-columns: repeat(2, 1fr); /* 横に2列（同じ幅） */
    gap: clamp(40px, 5vw, 80px);
  }
}
@media screen and (min-width: 1080px) {
  .l_contents_wrap {
    gap: 80px 100px;
  }
}

.l_content {
  width: 100%;
}

.p_service_img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  opacity: 0.9;
}
@media screen and (min-width: 1080px) {
  .p_service_img {
    height: 250px;
  }
}

.p_service_desc__wrap {
  width: 100%;
  height: 200px;
  padding: 24px 0 0 24px;
  background-color: var(--base-color);
}

.m_content_ttl,
.service_menu_ttl {
  font-weight: bold;
  font-size: 18px;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .m_content_ttl,
  .service_menu_ttl {
    font-size: 20px;
  }
}

.m_content_ttl::before {
  display: block;
  font-family: "Whisper", cursive;
  font-weight: normal;
}

.m_content_ttl__new::before {
  content: "New";
}
.m_content_ttl__renewal::before {
  content: "Renewal";
}
.m_content_ttl__connect::before {
  content: "Connect";
}
.m_content_ttl__parts::before {
  content: "Parts order";
}
.m_content_ttl__neko::before {
  content: "Cat";
}
.m_content_ttl__travel::before {
  content: "Travel";
}
.m_content_ttl__food::before {
  content: "Food";
}
.m_content_ttl__entertainment::before {
  content: "Entertainment";
}

.m_content_desc {
  margin-top: 24px;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .m_content_desc {
    font-size: 16px;
  }
}

.m_content_desc::after {
  position: absolute;
  font-family: "Whisper", cursive;
  font-weight: normal;
  font-size: 70px;
  line-height: 0.8;
  color: var(--text-color03);
  right: 0;
  top: 0;
  margin-right: 24px;
}
@media screen and (min-width: 1080px) {
  .m_content_desc.m_content_desc::after {
    font-size: 80px;
  }
}

.m_content_desc__01::after {
  content: "01";
}
.m_content_desc__02::after {
  content: "02";
}
.m_content_desc__03::after {
  content: "03";
}
.m_content_desc__04::after {
  content: "04";
}

/* ---------- cta ---------- */
.l_cta {
  background:
    linear-gradient(
      to bottom,
      rgba(51, 54, 47, 0.4) 0%,
      rgba(51, 54, 47, 0.6) 50%,
      rgba(51, 54, 47, 0.4) 100%
    ),
    url(../img/cta.webp) no-repeat center / cover;
  height: 500px;
  width: 100%;
  color: var(--white-color);
  padding-top: 140px;
}
@media screen and (min-width: 768px) {
  .l_cta {
    height: 450px;
    padding-top: 160px;
  }
}

.l_cta_txt {
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (min-width: 1080px) {
  .l_cta_txt {
    text-align: left;
    font-size: 16px;
  }
}

.l_cta_txt_lg {
  text-align: center;
  font-size: 16px;
}
@media screen and (min-width: 1080px) {
  .l_cta_txt_lg {
  text-align: left;
  font-size: 18px;
}
}

/* ---------- works ---------- */
@media screen and (min-width: 768px) {
  .l_works_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(40px, 5vw, 80px)
  }
}
@media screen and (min-width: 1080px) {
  .l_works_wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(40px, 5vw, 64px);
  }
}

.m_works_link {
  position: relative;
  display: grid;
  margin-bottom: 16px;
}

.m_works_img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  box-shadow: 0px 4px 4px 0 var(--shadow-color);
  transition: filter 0.3s ease;
}
@media screen and (min-width: 1080px) {
.m_works_img {
  height: auto;
}
}

.m_works_link:hover .m_works_img {
  filter: brightness(0.35);
}

.m_works_link:hover .m_overlay {
  opacity: 1;
}

.m_overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  font-family: "Whisper", cursive;
}

.m_img_arrow {
  font-size: 14px;
  margin-left: 8px;
}

.m_works_ttl__wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.m_works_ttl {
  font-weight: bold;
}
@media screen and (min-width: 1080px) {
  .m_works_ttl {
    font-size: 18px;
  }
}

.m_works_ttl__en {
  font-family: "Kaisei Opti", serif;
}

.m_works_border {
  width: 1px;
  height: 16px;
  background-color: var(--text-color);
}
@media screen and (min-width: 1080px) {
  .m_works_border {
    height: 18px;
  }
}

.m_works_desc {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span2;
}

.u_br {
  display: none;
}
@media screen and (min-width: 768px) {
  .u_br {
    display: block;
  }
}

/* ---------- footer ---------- */
.l_footer {
  width: 100%;
  height: 360px;
  background: var(--text-color);
  color: var(--base-color);
  display: flex;
  flex-direction: column;
  padding-top: 80px;
}

.l_footer_container {
  display: flex;
  flex-direction: column;
  margin: 0 40px;
  align-items: flex-start;
}
@media screen and (min-width: 768px) {
  .l_footer_container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin: 0 120px;
  }
}

.l_footer-nav {
  display: none;
}
@media screen and (min-width: 1080px) {
  .l_footer-nav {
    display: flex;
    margin-top: 16px;
  }
  .l_footer-nav_list {
    display: flex;
    gap: 24px;
    align-items: start;
  }
}

.l_footer_txt__wrap {
  text-align: left;
  margin-top: 64px;
  margin-bottom: 32px;
}
@media screen and (min-width: 1080px) {
  .l_footer_txt__wrap {
    margin-bottom: 0;
    margin-top: 80px;
  }
}

.l_footer_folio__link {
  display: block;
  font-size: 12px;
}

.l_footer_folio__link span {
  color: var(--accent-color);
}

.privacypolicy {
  display: block;
  font-size: 10px;
  text-decoration: underline;
}

@media screen and (min-width: 1080px) {
  .l_footer_lg__wrap {
    display: flex;
    gap: 24px;
    align-items: flex-end;
  }
}

.l_sns_container {
  display: flex;
  gap: 16px;
  align-items: center;
}

.m_icon_link {
  color: #fff;
  transition: color 0.3s ease;
}

.m_icon_link:hover {
  color: var(--accent-color);
}

.m_icon_img {
  display: block;
  width: 25px;
  height: 25px;
}

.l_footer_copyright {
  height: 40px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1080px) {
  .l_footer_copyright {
    align-items: flex-end;
  }
}

.copylight {
  font-size: 8px;
  font-family: "Kaisei Opti", serif;
  letter-spacing: 0.08em;
}

/* --------- sub service---------- */
.l_fv {
  background:
    linear-gradient(
      to bottom,
      rgba(225, 225, 225, 0) 0%,
      rgba(225, 225, 225, 0.3) 60%,
      rgba(251, 251, 251, 0.7) 80%,
      rgba(251, 251, 251, 0.9) 90%
    ),
    url(../img/subpage_fv_sp.webp) no-repeat bottom / cover;
  height: 380px;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l_fv {
    height: 440px;
    background:
    linear-gradient(
      to bottom,
      rgba(225, 225, 225, 0) 0%,
      rgba(225, 225, 225, 0.3) 60%,
      rgba(251, 251, 251, 0.7) 80%,
      rgba(251, 251, 251, 0.9) 90%
    ),
    url(../img/subpage_fv_pc.webp) no-repeat center / cover;
  }
}

.l_fv_container {
  position: absolute;
  bottom: 32px;
}
@media screen and (min-width: 1080px) {
.l_fv_container {
  bottom: 80px;
}
}

.m_sp_ttl {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(8px, 4vw, 12px);
  line-height: 1;
  margin-bottom: 64px;
  color: var(--accent-color);
}

.m_sp_ttl::before {
  font-family: "Whisper", cursive;
  font-size: clamp(40px, 4vw, 48px);
  color: var(--text-color);
  line-height: 0.6;
}

.m_sp_ttl__service::before {
  content: "Service";
}

.m_sp_ttl__profile::before {
  content: "Profile";
}
.m_sp_ttl__contact::before {
  content: "Contact";
}
.m_sp_ttl__works::before {
  content: "Works";
}

@media screen and (min-width: 1080px) {
  .m_sp_desc {
    font-size: 18px;
  }
}

.service_menu_ttl::after {
  position: absolute;
  font-family: "Whisper", cursive;
  font-weight: normal;
  font-size: 60px;
  line-height: 0.8;
  color: var(--text-color03);
  right: 0;
  bottom: 0;
  margin-right: 16px;
}
@media screen and (min-width: 1080px) {
  .service_menu_ttl.service_menu_ttl::after {
    font-size: 80px;
  }
}

.service_menu_ttl__01::after {
  content: "01";
}
.service_menu_ttl__02::after {
  content: "02";
}
.service_menu_ttl__03::after {
  content: "03";
}
.service_menu_ttl__04::after {
  content: "04";
}

.service_img,
.profile_img {
  height: 250px;
}
@media screen and (min-width: 1080px) {
  .service_img,
  .profile_img {
    height: 300px;
    width: 350px;
    flex-shrink: 0;
  }
}

.service_desc_wrap {
  height: 230px;
}
@media screen and (min-width: 1080px) {
  .service_desc_wrap {
    padding: 0;
  }
}

.m_sp_section__ttl {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 64px;
}
@media screen and (min-width: 1080px) {
  .m_sp_section__ttl {
    font-size: 20px;
  }
}

.m_sp_section__ttl::before {
  display: block;
  font-family: "Whisper", cursive;
  font-weight: normal;
  line-height: 0.6;
  font-size: 20px;
  color: var(--accent-color);
}

.m_sp_section__ttl__value::before {
  content: "My value";
}
.m_sp_section__ttl__order::before {
  content: "How to order";
}
.m_sp_section__ttl__price::before {
  content: "Price";
}
.m_sp_section__ttl__like::before {
  content: "What I like";
}

.service_order, .profile_me {
  background: linear-gradient(
    to bottom,
    rgba(251, 251, 251, 1) 0%,
    rgba(238, 238, 238, 0.8) 10%,
    rgba(238, 238, 238, 1) 50%,
    rgba(238, 238, 238, 0.8) 90%,
    rgba(251, 251, 251, 1) 100%
  );
}

@media screen and (min-width: 768px) {
  .service_content_wrap {
    display: flex;
    align-items: center;
    gap: 40px
  }
  .service_content_wrap:nth-child(even) {
    flex-direction: row-reverse;
  }
  .service_container {
    max-width: var(--content-width);
    margin: 0 auto;
  }
}

@media screen and (min-width: 1080px) {
  .service_content_wrap {
    gap: 120px
  }
}

.service_order_content {
  height: 150px;
  padding-left: 8px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
@media screen and (min-width: 1080px) {
  .service_order_content {
    padding: 0;
    height: 190px;
    gap: 48px;
  }
}

.circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--gray-color02);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 1080px) {
  .circle {
    width: 90px;
    height: 90px;
  }
}
.service_order_content:not(:last-child) .circle::after {
  content: "";
  width: 1px;
  height: 100px;
  background-color: var(--gray-color02);
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}

.order_img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
@media screen and (min-width: 1080px) {
  .order_img {
    width: 40px;
    height: 40px;
  }
}

.service_order_ttl {
  font-weight: bold;
}
@media screen and (min-width: 1080px) {
  .service_order_ttl {
    font-size: 16px;
  }
}

.service_order_ttl::before {
  display: block;
}

.service_order_ttl__01::before {
  content: "01";
}
.service_order_ttl__02::before {
  content: "02";
}
.service_order_ttl__03::before {
  content: "03";
}
.service_order_ttl__04::before {
  content: "04";
}

.service_order_desc {
  margin-top: 8px;
}
@media screen and (min-width: 1080px) {
  .service_order_desc, .service_price_desc {
    font-size: 16px;
}
}

/* --------- sub Profile---------- */
.profile_section_copy {
  margin-bottom: 64px;
}

.profile_desc + .profile_desc {
  margin-top: 40px;
}

@media screen and (min-width: 1080px) {
  .profile_desc, .profile_like_desc {
    font-size: 16px;
  }
  .profile_content_wrap {
    flex-direction: row;
    align-items: center;
  }
}

.profile_irodori_logo {
  display: none;
}
@media screen and (min-width: 1080px) {
  .profile_irodori_logo {
    max-width: 300px;
    aspect-ratio: 6 / 5;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--gray-color);
  }
}

.profile_me {
  background-color: var(--gray-color);
}

@media screen and (min-width: 768px) {
  .profile_me_wrap {
    max-width: 350px;
    margin: 0 auto;
}
}

.profile_name_wrap {
  margin: 40px 0 80px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
@media screen and (min-width: 1080px) {
  .profile_name_wrap {
  margin: 40px 0;
}
}

.profile_name_container {
  display: flex;
  gap: 24px;
  align-items: center;
}

.profile_name {
  font-size: 20px;
}

.profile_name_en {
  font-family: "Whisper", cursive;
}

.profile_place,
.profile_name_desc {
  letter-spacing: 0;
}

.profile_like_desc {
  margin-bottom: 40px;
}

@media screen and (min-width: 1080px) {
  .l_like_wrap {
    display: grid; /* グリッドレイアウトの適用 */
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 100px;
  }
}

.profile_like_ttl {
  line-height: 1;
}

.profile_like_bg {
  position: relative;
}

.profile_like_bg::after {
  width: 130px;
  height: 120px;
  content: "";
  position: absolute;
  opacity: 0.1;
  right: 0;
  bottom: 50%;
  transform: translateY(40%);
}
@media screen and (min-width: 1080px) {
  .profile_like_bg::after {
    width: 150px;
    height: 150px;
    transform: translateY(50%);
  }
}

.bg_cat::after {
  background: url(../img/like1.webp) center / cover;
}
.bg_travel::after {
  background: url(../img/like2.webp) center / cover;
}
.bg_food::after {
  background: url(../img/like3.webp) center / cover;
}
.bg_entertainment::after {
  background: url(../img/like4.webp) center / cover;
}

.profile_slide {
  overflow: hidden;
}

.slide_track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: slideLoop 100s linear infinite;
  align-items: flex-end;
}

.slide {
  flex-shrink: 0;
}

.slide_img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  display: block;
}

.slide:nth-child(odd) .slide_img {
  height: 150px;
}

@keyframes slideLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* --------- sub contact---------- */
.contact_fv_wrap {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}
@media screen and (min-width: 1080px) {
  .contact_fv_wrap {
    gap: 80px;
  }
}

.contact_line_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 10px;
}

.line_icon_img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
@media screen and (min-width: 1080px) {
  .line_icon_img {
    width: 60px;
    height: 60px;
  }
}

.form_body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form_unit_head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-weight: normal;
}

.form_ex {
  color: var(--text-color02);
  font-size: 12px;
}

.form_input,
.form_select,
.form_textarea {
  width: 100%;
  border: 1px solid var(--text-color02);
}

.form_input,
.form_select {
  height: 50px;
}

.form_select {
  padding-left: 16px;
}

.privacy-policy_wrap {
  display: flex;
  align-items: center;
  margin: 0 auto;
  gap: 16px;
}

.privacy_checkbox {
  width: 15px;
  height: 15px;
}

.privacy-policy {
  text-decoration: underline;
}

.submit_btn {
  width: 260px;
  height: 60px;
  display: block;
  margin: 8px auto 0;
  background-color: var(--text-color);
}

.submit_txt {
  display: block;
  text-align: center;
  font-weight: bold;
  color: var(--white-color);
}

/* --------- sub works---------- */
.works_wrap_yet {
  width: 100%;
  height: 250px;
  background-color: var(--gray-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.works_coming_soon {
  font-family: "Whisper", cursive;
  font-size: 20px;
}

/* --------- sub works_123---------- */
.work_fv {
  position: relative;
  background:
    linear-gradient(
      to bottom,
      rgba(225, 225, 225, 0) 0%,
      rgba(225, 225, 225, 0.3) 50%,
      rgba(225, 225, 225, 0.8) 60%,
      rgba(225, 225, 225, 0.9) 80%,
      rgba(251, 251, 251, 0.9) 100%
    ),
    url(../img/work_fv_sp.webp) no-repeat center / cover;
}
@media screen and (min-width: 1080px) {
  .work_fv {
    background:
    linear-gradient(
      to bottom,
      rgba(225, 225, 225, 0) 0%,
      rgba(225, 225, 225, 0.3) 60%,
      rgba(225, 225, 225, 0.6) 70%,
      rgba(225, 225, 225, 0.7) 80%,
      rgba(251, 251, 251, 0.9) 100%
    ),
    url(../img/work_fv_pc.webp) no-repeat center / cover;
  }
}

.work_fv_container {
  bottom: 64px;
}
@media screen and (min-width: 1080px) {
  .work_fv_container {
    bottom: 80px;
  }
}

.work_ttl {
  font-size: clamp(22px, 4vw, 30px);
}

.works_border {
  height: clamp(22px, 4vw, 30px);
}

.work_ttl_desc {
  font-size: clamp(14px, 4vw, 20px);
}

@media screen and (min-width: 1080px) {
  .work_content_wrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
  }
}

.work_img {
  margin-bottom: 40px;
}
@media screen and (min-width: 1080px) {
  .work_img {
    max-width: 450px;
    width: 100%;
    height: 350px;
    object-fit: contain;
    margin-bottom: 0;
  }
  .work_wrap {
    font-size: 16px;
  }
  .work_contents_wrap {
    max-width: 490px;
    width: 100%;
  }
}

.work_desc__ttl {
  font-weight: bold;
  margin-bottom: 8px;
}

.border {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gray-color02);
  margin: 40px 0;
}

.work_link {
  text-decoration: underline;
}

/*thanks*/
.thanks_fv {
  background:
    linear-gradient(
      to bottom,
      #e1e1e100 0%,
      rgba(251, 251, 251, 0.8) 35%,
      rgba(251, 251, 251, 0.8) 60%,
      rgba(251, 251, 251, 0.8) 85%,
      rgba(225, 225, 225, 0) 100%
    ),
    url(../img/subpage_fv_sp.webp) no-repeat center / cover;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (min-width: 1080px) {
  .thanks_fv {
    background: url(../img/subpage_fv_pc.webp) no-repeat center / cover;
  }
}

.thanks_container {
  width: 100%;
  padding: 80px 16px 0;
}
@media screen and (min-width: 768px) {
  .thanks_container {
  max-width: var(--content-width);
}}
@media screen and (min-width: 1080px) {
.thanks_container {
  max-width: var(--content-width-lg);
}}

/*privacy policy*/
.privacy_policy {
  line-height: 2.0;
}

.privacy-policy_page__ttl {
  font-size: clamp(20px, 4vw, 28px);
  font-weight: bold;
  margin-bottom: 16px;
}

.privacy-policy_desc, .privacy-policy_list {
  font-size: 12px;
}

.privacy-policy_section__ttl {
  margin-top: 56px;
  font-weight: bold;
}

/* js */
.js_body.is-active {
  overflow: hidden;
}

.js_navigation {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}
@media screen and (min-width: 1080px) {
.js_navigation {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
}

.js_navigation.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar:last-child {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

