@charset "utf-8";
/* common */
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=STIX+Two+Text:ital,wght@0,400..700;1,400..700&display=swap');

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

* {
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 62.5%;
}

body {
  color: var(--black);
  font-feature-settings: "palt";
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.64px;
  /* background-color: var(--base); */
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
}

.weight100   {
  font-weight:100
  }

.weight300   {
  font-weight:300
  }

.weight400   {
  font-weight:400
  }

.weight500   {
  font-weight:500
  }

.weight600   {
  font-weight:600
  }

.weight700   {
  font-weight:700
  }

.weight900   {
  font-weight:900
  }

.mb8 {
  margin-bottom: 8px;
}

.mb12 {
  margin-bottom: 12px;
}

.mb24 {
  margin-bottom: 24px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb80 {
  margin-bottom: 80px;
}

:root {
  --accent: rgba(246, 205, 77, 1);
  --black: #181D22;
  /* --black: rgba(24, 29, 34, 1); */
  --base: rgba(144, 150, 157, 0.1);
  --nav-font-weight: 500;
  --nav-font-size: 16px;
  --gray10: rgba(144, 150, 157, 0.1);
  --gray: rgba(144, 150, 157, 1);
  --white: rgba(255, 255, 255, 1);
}

.sp-only {
  display: none!important;
}

.scroll-prevent {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%; 
}
 
.font-en {
  font-family: "STIX Two Text", serif;
}

.font-jp-main {
  font-family: "Noto Sans JP", Helvetica;
}

.font-jp-sub {
  font-family: "Noto Sans JP", Helvetica;;
}

.font-serif {
  font-family: "Zen Old Mincho", serif;
}

.marker {
  background:linear-gradient(transparent 60%, var(--accent) 60%);
}

.marker-bold {
  font-weight: 700;
  background:linear-gradient(transparent 10%, var(--accent) 10%);
}

/* common */
h1 {
  font-family: "Noto Serif JP", serif;
  font-size: 3.6rem;
  line-height: 1.4;
  color: var(--brown05);
}

h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
  line-height: 1.6;
  color: var(--brown05);
}

h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  line-height: 1.6;
  color: var(--brown05);
}

h4 {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  line-height: 1.6;
  color: var(--brown05);
}

/* .f-serif {
  font-family: "Noto Serif JP", serif;
} */

.skewed-bg-container {
  position: relative;
  overflow: hidden; /* 斜めにした背景がはみ出さないように */
  background-color: var(--white);
  padding-top: 16vw;
}

.skewed-bg-container.top-grey {
  background-color: transparent;
}

.skewed-bg-container.bottom-grey {
  background-color: var(--white);
}

.skewed-bg-container::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--black); /* ★ここに好きな単色を指定★ */
  transform: skewY(-8deg); /* ★角度を調整してください（例: -3deg, 5degなど）★ */
  transform-origin: top left; /* 傾きの基準点（'bottom left'などでもOK） */
  z-index: 0; /* コンテンツの背後に配置 */
}

.skewed-bg-container.top-grey::before {
  background-color: var(--white);
}

.skewed-bg-container.bottom-grey::before {
  background-color: var(--base);
}

/* .skewed-bg-container .content {
  position: relative; 
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #333;
} */

/* アニメーション */
.fade-in-el {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-el.visible {
  opacity: 1;
  transform: translateY(0);
}

/* layout */
main {
  /* padding-top: 84px; */
}

.l-flex {
  display: flex;
}

.l-flex1 {
  flex: 1;
}

.l-normal__frame {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.service,
.company,
.work,
.privacypolicy,
.contact {
  overflow: hidden;
}

.align-right {
  text-align: right;
}

@media (max-width: 1180px) {
  .l-normal__frame {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .l-flex {
    flex-direction: column;
  }

  .l-normal__frame {
    width: 100%;
    padding: 0 20px;
  }
}
/* .top .div {
  display: flex;
  flex-direction: column;
  width: 1440px;
  align-items: center;
  position: relative;
  background-color: var(--white);
  overflow: hidden;
} */

.l-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--black);
}

.l-header__inner{
  display: flex;
  width: 100%;
  max-width: 1180px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0px;
  position: relative;
  flex: 0 0 auto;
  z-index: 20;
}

.l-header .img-logo {
  width: 280px;
}

.l-header__logo {
  z-index: 1001;
}

.l-header__nav {
  justify-content: flex-end;
  align-items: center;
  column-gap: 48px;
}

.l-header__nav .l-nav__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 48px;
}

.l-header__nav .l-nav__list li.works {
  position: relative;
}

.l-header__nav .l-nav__list li.works ul {
  position: absolute;
  top: 100%;
  left: 10px;
  visibility: hidden;
  opacity: 0;
  transition: .4s;
}

.l-header__nav .l-nav__list li.works:hover ul {
  visibility: visible;
  opacity: 1;
}

.l-header__nav .l-nav__list li.works:hover ul li {
  margin-bottom: 5px;
}

.l-header__nav .l-nav__list li {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
}

.l-header__nav .l-nav__list li a {
  position: relative;
  color: var(--white);
  font-weight: 500;
  font-size: 1.6rem;
  cursor: pointer;
}

.l-header__nav .l-nav__list li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: var(--white);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: all 0.3s ease;
}

.l-header__nav .l-nav__list li.works .nav-text__secondary a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: var(--white);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: all 0.3s ease;
  }

.l-header__nav .l-nav__list li.works .nav-text__secondary a::before {
  top: 13px;
}


.l-header__nav .l-nav__list li a.current::after {
  transform: scale(1,1);
}

.l-header__nav .l-nav__list li a.current::after {
  transform: scale(1,1);
}

.l-header__nav .l-nav__list li.works:hover a.current::after {
  background: var(--black);
}

@media (min-width: 1080px) {
  .l-header__nav .l-nav__list li a:hover::after,
  .l-header__nav .l-nav__list li.works .nav-text__secondary a:hover::after {
    transform: scale(1,1);
  }

  .l-header__nav .l-nav__list li.works a:hover::after {
    transform: scale(0,1);
  }
}

@media (max-width: 1200px) {
  .l-header__inner {
    width: 94%;
  }

  .l-header .img-logo {
    width: 183px;
  } 
  

}

@media (max-width: 900px) {
  .l-header__nav {
    column-gap: 20px;
  }
  
  .l-header__nav .l-nav__list {
    column-gap: 20px;
  }
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block!important;
  }

  .l-header__inner {
    width: 100%;
    padding: 25px 20px 13px;
  }
}

.l-btn__contact {
  display: flex;
  height: 38px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* padding: 4px 24px; */
  position: relative;
  flex: 0 0 auto;
  background-color: var(--accent);
  border: 2px solid var(--accent);
  transition: .4s;
}

.l-btn__contact a {
  display: flex;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-weight: 500;
  justify-content: center;
  align-items: center;
}

.l-btn__contact span {
  position: relative;
  width: fit-content;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  padding-top: 3px;
}

.l-btn__contact__header a {
  padding: 4px 24px;
}

.l-btn__contact__main a {
  height: 44px;
  padding: 0 96px;
}

.l-btn__contact__footer {
  position: fixed;
  bottom: -80px;
  left: 0;
  width: 100vw;
  height: 67px;
  z-index: 1000;
}

.l-btn__contact__footer.show {
  bottom: 0;
}

.l-btn__contact__footer a {
  font-size: 1.8rem;
}

.l-btn__contact.totop {
  width: 200px;
}

.l-btn__contact.totop span {
  padding-top: 0;
}

.l-header__hamburgerBtn {
  width: 44px;
  height: 44px;
}


.l-openbtn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 13px;
  cursor: pointer;
  z-index: 1001;
}

.l-openbtn span {
  display: block;
  height: 1px;
  width: 100%;
  background-color: var(--white);
  transition: all 0.3s ease;
  z-index: 1001;
}

.l-openbtn.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.l-openbtn.active span:nth-child(2) {
  opacity: 0;
}

.l-openbtn.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);

}

@media (min-width: 1080px) {
  .l-btn__contact:hover {
    background: #000;
    color: var(--accent);
  }

}

@media (max-width: 767px) {
  .l-header__hamburgerBtn.sp-only {
    display: flex!important;
    align-items: center;
    justify-content: flex-end;
  }


}

/* ナビゲーションメニューのスタイル */
.nav-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100vw;
  height: 100vh;
  background-color: var(--black);
  z-index: 1000;
  transition: right 0.3s ease;
  /* padding: 70px 40px 40px; */
  overflow-y: scroll;
  overflow-x: hidden;
}

.nav-menu.active {
  right: 0; /* アクティブ時に画面内に表示 */
}

.hamburger-nav {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 48px;
  /* padding: 40px 0; */
  padding: 110px 20px 40px;
  z-index: 1;
}

.hamburger-nav:nth-child(1) {
  border-bottom: 1px solid var(--brown02);
}

.hamburger-nav:nth-child(1) {
  border-bottom: 1px solid var(--brown02);
}

.hamburger-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.5;
  color: var(--white);
  font-size: 1.8rem;
}

.hamburger-nav a .small-title {
  font-size: 1.2rem;
}

.hamburger-nav__second {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  margin-top: 12px;
}

.hamburger-nav__second a {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.7;
  padding-left: 16px;
}

.hamburger-nav__second a::before {
  content: '';
  display: block;
  width: 12px;
  height: 1px;
  background-color: var(--white);
  position: absolute;
  left: 0;
  top: 13px;
}

.symbol-nav {
  width: 380px;
  height: auto;
  position: absolute;
  bottom: 0;
  right: -50px;
  z-index: 0;
}

/* オーバーレイ背景 */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.5); */
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.home-mv {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 108px 0px 0px 0;
  /* position: relative; */
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--black);
  overflow: hidden;
}

.top .home-mv {
  padding: 64px 0px 0px 0;
}

.symbol {
  position: absolute;
  width: 528px;
  height: 497px;
  top: -136px;
  right: 70px;
  z-index: 10;
}

.symbol-company {
  /* width: 68.888%; */
  height: 835px;
  width: 992px;
  top: -215px;
  right: 40px;
}

.top .symbol {
  position: absolute;
  width: 769px;
  height: 699px;
  top: -86px;
  right: 0;
}

.l-home__mv__wrap {
  position: relative;
}

.home-mv__inner {
  position: relative;
  align-self: stretch;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.top .home-mv__inner {
  height: 549px;
}

.home-mv__img {
  display: block;
  width: 486px;
  height: 319px;
  margin-bottom: 64px;
}

.home-mv__text {
  font-weight: 700;
  color: var(--white);
  font-size: 32px;
  letter-spacing: 0.96px;
  line-height: 1.7;
  white-space: nowrap;
  padding-left: 37px;
}

.home-mv__text br {
  display: none;
}

.top .rectangle {
  position: relative;
  /* width: 1440px; */
  height: 226px;
}

.c-scrolldown__wrap {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  transform: rotate(90deg);
  position: absolute;
  top: calc(50% + 317px);
  left: 0;
  right: 0;
}

@media (max-width: 1440px) {
  .c-scrolldown__wrap {
    /* bottom: 25%; */
  }
}

@media (max-width: 1200px) {
  .lower-page .home-mv__inner {
    width: 94%;
  }
}

@media (max-width: 1180px) {
  .home-mv__text br {
    display: block;
  }
}

@media (max-width: 767px) {
  .lower-page .home-mv__inner {
    width: 100%;
    padding: 0 20px;
  }

  .home-mv {
    padding: 80px 0 0 0;
  }

  .symbol {
    width: 82%;
    top: -110px;
    right: -9%;
  }
  
  .symbol-company {
    width: 117%;
    height: auto;
    top: 0;
    right: inherit;
    left: -19%;
  }

  .top .home-mv {
    padding: 100px 0 0 0;
  }

  .top .home-mv__inner {
    height: auto;
  }

  .top .symbol {
    width: 90%;
    height: auto;
    /* top: -75px; */
    right: -6%;
  }

  .home-mv__img {
    width: 68%;
    height: auto;
    margin-left: 10px;
    margin-bottom: 48px;
  }

  .home-mv__text {
    font-size: 1.8rem;
    padding-left: 30px;
    line-height: 1.7;
    margin-bottom: 60px;
  }

  .c-scrolldown__wrap {
    bottom: inherit;
    top: calc(100% - 106px);
    left: inherit;
    right: -74px;
  }
}

@media (max-width: 440px) {
  .c-scrolldown__wrap {
    top: calc(100% - 66px);
  }
}

@media (max-width: 375px) {
  .c-scrolldown__wrap {
    top: calc(100% - 55px);
  }
}

.top .text-wrapper-4 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "STIX Two Text-Regular", Helvetica;
  font-weight: 400;
  color: var(--white);
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 14.4px;
  white-space: nowrap;
}

.top .frame-8 {
  display: inline-flex;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}

.top .rectangle-2 {
  position: relative;
  width: 30px;
  height: 1px;
  background-color: var(--black);
}

.top .rectangle-3 {
  position: relative;
  width: 61px;
  height: 1px;
  background-color: var(--black);
}

@media (max-width: 767px) {
  .top {
    overflow-x: hidden;
  }
}

.l-proposition__wrap {
  width: 100%;
}

.l-proposition__frame {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border: 2px solid var(--accent);
  padding: 64px 84px;
}

.proposition-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 244px;
  row-gap: 24px;
}

.proposition-item .oval-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--accent);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.proposition-item .description {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}

.l-proposition__catch {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 24px;
}

.proposition-point {
  width: 100%;
  margin-top: 35px;
}

.proposition-point .l-content__item .card {
  padding: 40px;
}

.proposition-point .work-list .l-flex {
  column-gap: 24px;
}

.proposition-point .note {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: fit-content;
  margin-left: auto;
  font-size: 1.4rem;
}

.proposition-point .note a {
  text-decoration: underline;
  transition: .3s;
  margin-right: auto;
}

.l-sec__service__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  padding: 32px 0px 64px;
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
}

@media (min-width: 1080px) {
  .proposition-point .note a:hover {
    opacity: .6;
  }
}

@media (max-width: 767px) {
  .l-proposition__catch p {
    line-height: 1.35;
  }
}

/* common */
.l-h1title__wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
  color: var(--white);
}

.l-h1title__wrap .c-title__jp {
  position: relative;
  width: fit-content;
  font-weight: 500;
  font-size: 2.4rem;
  letter-spacing: 0.8px;
  line-height: 150%;
  white-space: nowrap;
}

.l-h1title__wrap .c-title__en {
  font-weight: 500;
  font-style: italic;
  font-size: 6.4rem;
  letter-spacing: 0px;
  line-height: 1.35;
  position: relative;
  width: fit-content;
  white-space: nowrap;
}

.l-h1title__wrap.child .upper {
  display: flex;
  align-items: baseline;
  column-gap: 8px;
}

.l-h1title__wrap.child .c-subtitle__jp {
  font-size: 1.6rem;
  
}

.l-h1title__wrap.child .c-title__en {
  font-size: 2.4rem;
}

.l-h1title__wrap.child .c-title__jp {
  font-size: 4.8rem;
}

.l-h2-title__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
}

.l-h2-title__wrap .c-title__jp {
  position: relative;
  width: fit-content;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 150%;
  white-space: nowrap;
}

.service .l-h2-title__wrap .c-title__jp {
  margin-top: -75px;
}

.l-h2-title__wrap .c-title__en {
  font-weight: 500;
  font-style: italic;
  font-size: 11rem;
  line-height: 1.35;
  color: #90969D;
  opacity: 0.1;
  position: relative;
  width: fit-content;
  white-space: nowrap;
  margin-right: auto;
}

.l-h2-top-title__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
}

.l-h2-top-title__wrap .c-title__jp {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.8px;
  line-height: 150%;
  white-space: nowrap;
}

.l-h2-top-title__wrap .c-title__en {
  font-weight: 600;
  font-style: italic;
  font-size: 4.8rem;
  letter-spacing: 0px;
  line-height: 1.35;
  position: relative;
  width: fit-content;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .l-h1title__wrap .c-title__jp {
    font-size: 1.8rem;
  }

  .l-h1title__wrap .c-title__en {
    font-size: 4.8rem;
  }

  .l-h1title__wrap.child .c-title__jp {
    font-size: 3.2rem;;
  }

  .l-h2-top-title__wrap.service {
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 24px;
  }
  
  .l-h2-top-title__wrap.value-provided {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .l-h2-top-title__wrap .c-title__en {
    font-size: 3.6rem;
  }
  
  .l-h2-top-title__wrap.value-provided .c-title__en {
    font-size: 4.8rem;
  }
  
  .l-h2-title__wrap {
    align-items: flex-start;
  }

  .l-h2-title__wrap .c-title__en {
    font-size: 6.4rem;
    transform: translateX(-18px);
  }

  .l-h2-title__wrap .c-title__jp {
    font-size: 3.2rem;
  }

  .work .l-h2-title__wrap .c-title__jp {
    font-size: 2.4rem;
  }
  
  .service .l-h2-title__wrap .c-title__jp {
    margin-top: -50px;
  }

  .l-proposition__frame {
    flex-direction: column;
    align-items: center;
    row-gap: 48px;
  }

  .proposition-point .l-content__item .card {
    padding: 40px 20px;
  }

  .proposition-point .work-list .l-flex {
    flex-direction: row;
  }

  .proposition-point .work-list .l-flex > p {
    width: 43px;
  }

  .proposition-point .work-list .l-flex > div {
    flex: 1;
  }
  
  .proposition-point .work-list .l-flex .description {
    margin-left: -65px;
  }

  .proposition-point .note {
    text-align: left;
    margin-top: 24px;
  }

}

.l-service__wrap {
  display: flex;
  gap: 24px;
  align-self: stretch;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
}

.l-service__progress {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
}

.c-progress-wrap {
  position: relative;
  width: 40px;
  height: 4px;
  background-color: var(--gray);
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: background-color;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.c-progress-wrap.active {
  background-color: var(--accent);
}

.l-service__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
}

.c-service__img {
  position: relative;
  width: 360px;
  height: 360px;
  object-fit: cover;
}

.c-service__content {
  flex: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  position: relative;
}

.l-service__item .number {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  /* font-family: "STIX Two Text-BoldItalic", Helvetica; */
  font-weight: 700;
  font-style: italic;
  font-size: 24px;
  letter-spacing: 0.96px;
  line-height: 36px;
}

.l-service__item .title {
  position: relative;
  align-self: stretch;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 1.28;
  line-height: 1.5;
}

.l-service__item .text_wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
}

.l-service__item .text1 {
  position: relative;
  align-self: stretch;
  font-weight: 700;
  line-height: 1.5;
}

.l-more__wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  gap: 10px;
  padding: 32px 0px 0px;
  position: relative;
  flex: 0 0 auto;
}



.l-more__content {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0px 16px;
  position: relative;
  flex: 0 0 auto;
  border-bottom: 1px solid var(--black);
  transition: .3s;
}

@media (min-width: 1080px) {
  .l-more__content:hover {
    opacity: .8;
  }
}

@media (max-width: 767px) {
  .l-service__item {
    flex-direction: column;
    gap: 16px;
  }

  .l-sec__service__inner {
    gap: 48px;
    padding: 32px 20px 48px;
  }

  .c-service__content {
    gap: 12px;
  }

  .l-service__item .title {
    font-size: 2rem;
  }

  .l-more__wrap {
    padding: 0;
  }

  .c-service__img {
    height: auto;
  }
}

.c-more__text {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.l-section.sec-grey {
  position: relative;
  width: 100%;
  background-color: var(--base);
}

.l-sec__works__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 72px;
  position: relative;
  flex: 0 0 auto;
  padding: 32px 0 64px 0;
}


.c-works__list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 44px;
  position: relative;
  width: 100%;
  flex: 0 0 auto;
}

/* .c-works__item {
  display: flex;
  flex-direction: column;
  height: 695px;
  align-items: center;
  justify-content: center;
  gap: 64px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  } */
  
.c-works__item {
  align-self: stretch;
  width: calc((100% - 64px)/3);
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  position: relative;
}

/* .top .frame-24 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}
 */

.c-works__item .title {
  position: relative;
  width: fit-content;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.96px;
  line-height: 36px;
}

.category {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
}

.category-title {
  font-weight: 700;
}

.category-line {
  position: relative;
  width: 180px;
  height: 3px;
  margin-top: 30px;
  margin-bottom: 3px;
  background-color: var(--accent);
  transform: rotate(-10deg);
  transform-origin: left bottom;
}

@media (maxpwidth: 1180px) {
  .c-works__item {
    width: calc((90% - 64px)/3);
  }
}

@media (max-width: 767px) {

  .c-works__list {
    flex-direction: column;
    row-gap: 90px;
  }

  .c-works__item {
    width: 100%;
  }

  .l-sec__works__inner {
    padding: 48px 20px 64px;
    gap: 48px;
  }
}

.top .text-wrapper-15 {
}


.l-sec__company__inner {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 32px 0 64px 0;
}

.l-contactBtn__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.c-company__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  flex: 0 0 auto;
}

.c-company__copy .text {
  position: relative;
  width: fit-content;
  /* font-family: "Noto Sans JP-Bold", Helvetica; */
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  letter-spacing: 0;
  line-height: 43.2px;
  white-space: nowrap;
}

.l-company__content {
  display: flex;
  align-items: flex-start;
  gap: 64px;
  position: relative;
  width: 100%;
}

.l-company__content .img-president {
  position: relative;
  width: 33.63%;
}

.c-company__text__wrap {
  display: flex;
  flex-direction: column;
  width: 54.54%;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 50px;
  position: relative;
}

.c-company__text__wrap .c-title__wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.c-company__text__wrap .c-title__wrap .title-en {
  font-weight: 500;
  font-style: italic;
  font-size: 2rem;
  letter-spacing: 0.80px;
  line-height: 30px;
}

.c-company__text__wrap .c-title__wrap .title-jp {
  font-weight: bold;
}


@media (max-width: 767px) {
  .l-sec__company__inner {
    padding: 48px 20px 64px;
    gap: 48px;
  }

  .c-company__copy .text {
    font-size: 2.4rem;
  }

  .l-company__content {
    flex-direction: column;
  }

  .l-company__content .img-president {
    width: 100vw;
    max-width: 100vw;
    transform: translateX(-20px);
  }

  .c-company__text__wrap {
    width: 100%;
    gap: 32px;
  }
}

.top .frame-35 {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 24px;
  position: relative;
  flex: 0 0 auto;
}

.top .symbol-3 {
  position: absolute;
  width: 667px;
  height: 784px;
  top: -382px;
  left: 603px;
}

.l-contactBtn__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 72px 0px;
  position: relative;
  flex: 0 0 auto;
}

/* .top .frame-38 {
  position: absolute;
  width: 210px;
  height: 27px;
  top: 0;
  left: 1282px;
  transform: rotate(90deg);
} */

.pagetop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: fixed;
  bottom: 160px;
  right: -70px;
  transform: rotate(90deg);
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
}

.pagetop.show {
  opacity: 1;
  visibility: visible;
}


.pagetop-line {
  position: relative;
  width: 81px;
  height: 1px;
  background-color: var(--black);
}

.pagetop-text {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "STIX Two Text-Regular", Helvetica;
  font-weight: 400;
  color: var(--black);
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 27.2px;
  white-space: nowrap;
}

.l-contactBtn__text {
  text-align: center;
}

@media (max-width: 767px) {
  .l-contactBtn__text {
    letter-spacing: 0;
  }
  
  .l-contactBtn__inner {
    gap: 24px;
  }

  .l-contactBtn__inner {
    padding: 48px 0;
  }

  .pagetop {
    right: -90px;
  }

}

/* footer */
footer {
  padding: 72px 0 48px;

}

.footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 64px;
  padding: 72px 0px 110px;
  position: relative;
  flex: 0 0 auto;
  background: linear-gradient(
      0deg,
      rgba(24, 29, 34, 1) 0%,
      rgba(24, 29, 34, 1) 100%
    ),
    linear-gradient(
      0deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 100%
    );
  background-color: var(--black);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  gap: 64px;
}

.footer-logo__wrap {
  width: 117px;
}

.footer-nav__wrap {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-company__wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-company__wrap .campany-name {
  font-weight: bold;
  color: var(--white);
  white-space: nowrap;
  margin-bottom: 10px;
}

.footer-company__wrap .company-text {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.52px;
  line-height: 1.7;
}

.footer-nav__list {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  position: relative;
  flex: 0 0 auto;
}

.footer-nav__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-nav__item .nav-text__primary.inactive{
  pointer-events: none;
}

.footer-nav__item .nav-text__primary .text-en {
  position: relative;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.64px;
  line-height: 24px;
  white-space: nowrap;
}

.footer-nav__item .nav-text__primary .text-en::after {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: var(--white);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: all 0.3s ease;
}

.footer-nav__item .nav-text__primary .text-jp {
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.48px;
  line-height: 1.5;
  white-space: nowrap;
}

.footer-nav__list__secondary {

}

@media (max-width: 1180px) {
  .footer-nav__wrap.l-flex {
    row-gap: 48px;
    align-items: center;
    flex-direction: column;
  }

  .footer-company__wrap {
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .footer-inner {
    max-width: 500px;
    padding: 0 20px;
  }

  .footer-nav__list {
    flex-direction: column;
    gap: 24px;
  }

  .footer-nav__item > a {
    display: flex;
    align-items: center;
    gap: 8px;
  }
}

.top .rectangle-10 {
  position: relative;
  width: 12px;
  height: 1px;
  background-color: var(--white);
}

.nav-text__secondary a {
  position: relative;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.56px;
  line-height: 1.7;
  white-space: nowrap;
  padding-left: 16px;
}

.nav-text__secondary a::before {
  content: '';
  display: block;
  width: 12px;
  height: 1px;
  background-color: var(--white);
  position: absolute;
  left: 0;
  top: 10px;
}

.nav-text__secondary a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: var(--white);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: all 0.3s ease;
}

.copyright {
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.48px;
  line-height: 1.5px;
}

@media (min-width: 1080px) {
  .footer-nav__item .nav-text__primary:hover .text-en::after {
    transform: scale(1, 1);
  }

  .footer-nav__item .nav-text__primary.works:hover .text-en::after {
    transform: scale(0, 1);
  }

  .nav-text__secondary a:hover::after {
    transform: scale(1, 1);
  }
  
}

/* slide */
.js-area {
  overflow: hidden; /* はみ出し防止 */
  position: relative; /* 位置の基準点を明確に */
}

.js-wrap {
  display: flex;
  flex-wrap: nowrap;
}

/* 下層ページ */
.l-sec__inner {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 120px 0px 64px;
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
}

.c-h2__description {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
}

h3.l-content__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2rem;
  font-weight: 600;
}

.title-line {
  position: relative;
  width: 240px;
  height: 3px;
  margin: 35px 0 24px;
  background-color: var(--accent);
  transform: rotate(-10deg);
  transform-origin: left bottom;
}

.l-content__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px 48px;
}

.l-content__list li {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.l-content__list.content2 li {
  width: calc((100% -  48px)/2);
}

.l-content__list .list.circle li {
  position: relative;
  padding-left: 12px;
}

.l-content__list .list.circle li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--black);
  position: absolute;
  left: 0;
  top: 12px;
}

.l-content__list.content3 {
  gap: 24px;
}

.l-content__list.content3 .l-content__item {
  width: calc((100% -  48px)/3);
}

.l-content__item .title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 12px;
}

.l-content__item .card {
  padding: 32px 32px 32px 24px;
  flex-grow: 1;
}

.l-content__item .card.grey {
  background: rgba(144, 150, 157, 0.1);
}

.l-content__item .card.yellow {
  background: rgba(246, 205, 77, 0.2);
}

.c-arrow-polygon {
  width: 90px;
  margin: 48px auto 0;
}

.l-content__item .list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.l-more__wrap.jisseki {
  padding: 0;
  margin-bottom: -32px;
  z-index: 2;
}

.l-more__wrap.jisseki .l-more__content {
  padding: 0 0 10px;
}

.l-content__list .in-card__list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.l-content__list .in-card__list:not(:last-child) {
  border-bottom: 1px solid var(--accent);
  padding-bottom: 24px;
}

.l-content__list .in-card__list li {
  display: inline-block;
  position: relative;
  padding-left: 24px;
}

.l-content__list .in-card__list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url(/assets/img/ico_check.svg) no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 3px;
}

@media (max-width: 1180px) {
  .l-content__list {
    gap: 24px;
  }
  
  .l-content__list.content2 li {
    width: calc((100% -  24px)/2);
  }
}

@media (max-width: 767px) {
  .l-content__list.content2 li {
    width: 100%;
  }

  .l-content__list.content3 .l-content__item {
    width: 100%;
  }

  .l-normal__frame.l-sec__inner {
    padding: 20px;
  }

  .c-h2__description {
    text-align: left;
    font-size: 1.8rem;
  }

  .l-content__item .card {
    padding: 20px;
  }

  .c-arrow-polygon {
    width: 60px;
    margin: 36px auto 24px;
  }

  .l-more__wrap.jisseki {
    margin-bottom: 0;
  }

  .l-content__item .title {
    margin-bottom: 4px;
  }
}

/* company */
.c-mv__copy {
  font-size: 6.4rem;
  line-height: 1.7;
  color: var(--white);
  margin-top: 20px;
}

.company_notes {
  display: flex;
  flex-wrap: wrap;
  max-width: 846px;
  margin: 0 auto;
  column-gap: 10px;
}

.company_notes dt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 72px;
  border-bottom: 2px solid var(--accent);
  font-weight: 500;
}

.company_notes dd {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: calc(100% - 150px);
  height: 72px;
  border-bottom: 1px solid rgba(144, 150, 157, 0.1);
}

.company_notes dd.address {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.company_notes dd.address a {
  transition: .3s;
}

.meaning_content {
  align-items: flex-end;
}

.meaning_logo {
  display: flex;
  width: 40%;
  justify-content: center;
  align-items: center;
  position: relative;
  background: var(--white);
  padding: 60px 80px;
}

.meaning_text {
  width: 60%;
  position: relative;
  font-size: 1.8rem;
  color: var(--white);
  padding: 50px 70px;
  background: var(--black);
  transform: translate(-40px,44px);
  z-index: -1;
}

.sec-message {
  background: right -165px top 20px / 833px no-repeat
    url("/assets/img/symbol_grey.svg");
  /* background: url(/assets/img/symbol_grey.svg) right top no-repeat 833px; */
}

.message_content {
  column-gap: 6.545%;
  margin-bottom: 140px;
}

.daihyo_img {
  width: 34.545%;
}

.daihyo_text {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  flex: 1;
}

.daihyo_text p {
  
}

.profile_content {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 50px;
  max-width: 846px;
  margin: 0 auto;
}
.profile_content dt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  font-style: italic;
  border-right: 2px solid var(--accent);
}

.profile_content dd {
  width: calc(100% - 190px);
}

.profile_content dd a {
  text-decoration: underline;
  transition: .3s;
}

.profile_content .pd {
  padding: 16px 0;
}

@media (min-width: 1080px) {
  .company_notes dd.address a:hover {
    opacity: .6;
  }

  .profile_content dd a:hover {
    opacity: .6;
  }
  
}

@media (max-width: 767px) {
  .c-mv__copy {
    font-size: 3.6rem;
    line-height: 1.4;
    margin-top: 38px;
  }

  .company .l-normal__frame.l-sec__inner {
    padding: 32px 20px 64px;
  }

  .mission_content {
    margin-bottom: 80px;
  }

  .mission_content img {
    width: 100%;
  }

  .company_notes dt {
    width: 100%;
    height: 52px;
  }

  .company_notes dd {
    width: 100%;
    height: auto;
    padding: 12px 0;
    align-items: center;
    text-align: center;
    margin-bottom: 24px;
  }

  .company_notes dd.address {
    flex-direction: column;
  }

  .meaning_content {
    row-gap: 24px;
  }

  .meaning_logo {
    width: 100%;
  }

  .meaning_text {
    width: 100%;
    transform: none;
    padding: 48px 20px;
  }

  .daihyo_img {
    width: 100vw;
    transform: translateX(-20px);
    margin-bottom: 64px;
  }

  .sec-message {
    background: right -38.4vw bottom 50% / 119% no-repeat
    url("/assets/img/symbol_grey.svg");
  }

  .message_content {
    margin-bottom: 0;
    margin-top: -24px;
  }

  .profile_content dt {
    width: 60px;
    justify-content: flex-start;
    align-items: flex-start;
  }
  
  .profile_content {
    gap: 36px 16px;
  }

  .profile_content dd {
    width: calc(100% - 76px);
  }

  .profile_content .pd {
    padding: 0 0 10px;
  }
}

/* service page */
#part1 {
  position: relative;
  /* z-index: 100; */
}

/* work page */
.work-list .card.center {
  text-align: center;
}

.work-list .l-flex {
  column-gap: 60px;
}

.card-inner__list li {
  position: relative;
  list-style-type: disc;
  padding-left: 12px;
}

.card-inner__list li::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  display: block;
  background: var(--black);
  position: absolute;
  top: 13px;
  left: 0;
}

.voice {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

/* contact */
#contact {
  scroll-behavior: unset;
}

.form-container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group.mb80 {
  margin-bottom: 80px;
}

.form-label-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.form-label {
  font-weight: bold;
}

.form-input-container {
  width: 100%;
}

.form-input-container input[type="text"],
.form-input-container input[type="email"],
.form-input-container input[type="tel"],
.form-input-container select,
.form-input-container textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(144, 150, 157, 0.1);
  border-radius: 4px;
  box-sizing: border-box;
}

.form-input-container textarea {
  height: 216px;
  resize: vertical;
}

.form-pp-check {
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}

.form-pp-check label {
  position: relative;
  cursor: pointer;
}

.form-pp-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  width: 21px;
  height: 22px;
  top: 0;
  left: 0;
}

.form-pp-check a {
  font-weight: 700;
  text-decoration: underline;
}

.form-pp-check .checkmark {
  display: inline-block;
  width: 21px;
  height: 21px;
  border-radius: 4px;
  border: 2px solid var(--gray);
  margin-right: 11px;
  vertical-align: text-bottom;
  position: relative;
  transition: all 0.3s ease;
  background-color: transparent;
}

.form-pp-check input:checked ~ .checkmark {
  background-color: var(--black);
  border-color: var(--black);
}

.form-pp-check .checkmark::after {
  content: '';
  position: absolute;
  display: none;
  left: 5px;
  top: 1px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-pp-check input:checked ~ .checkmark::after {
  display: block;
}

/* .radio-group {
  display: flex;
  gap: 15px;
} */

.checkbox-group {
  display: flex;
  gap: 15px;
}

.required {
  color: var(--white);
  background: #ff0000;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0 4px;
}

.error_msg {
  color: #ff0000;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 4px 0 8px 0;
  padding: 0;
}

.form-buttons {
  text-align: center;
  margin-top: 36px;
}

.form-buttons input {
  padding: 10px 20px;
  border: 1px solid var(--gray10);
  border-radius: 4px;
  cursor: pointer;
}

.form-buttons input[type="submit"] {
  width: 343px;
  height: 56px;
  border-radius: 0;
  background: var(--black);
  border: 2px solid var(--black);
  color: var(--white);
  font-weight: 700;
  transition: .3s;
}

.l-normal__frame .thanks-wrap {
  width: 100%;
  text-align: center;
  padding: 120px 0;
}

.l-normal__frame .thanks-wrap .l-btn__contact {
  margin: 0 auto;
}

#thanks .l-sec__inner {
  padding: 120px 0;
}

@media (min-width: 1080px) {
  .form-buttons input[type="submit"]:hover {
    background: var(--white);
    color: var(--black);
  }

}

@media (max-width: 767px) {
  .form-buttons input[type="submit"] {
    width: 335px;
  }

  .form-buttons {
    margin-bottom: 52px;
  }

  .l-normal__frame .thanks-wrap {
    text-align: left;
  }
}

.form-input-container input::placeholder,
.form-input-container textarea::placeholder {
  color: #999;
}

.form-group:last-of-type .form-input-container {
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-group:last-of-type .form-input-container a {
  color: #007bff;
  text-decoration: underline;
}

.form-group:last-of-type .form-input-container a:hover {
  text-decoration: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .form-input-container input[type="text"],
  .form-input-container input[type="email"],
  .form-input-container input[type="tel"],
  .form-input-container textarea {
      max-width: 100%;
  }
}

/* privacy policy */
.privacypolicy .l-h1title__wrap .c-title__en {
  line-height: 1.1;
}

.policy-description {
  font-weight: bold;
  margin-bottom: 48px;
}

.policy-content {
  display: flex;
  flex-direction: column;
  row-gap: 48px;
}

.policy-item {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.policy-content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.privacypolicy .l-normal__frame {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.6rem;
}

.policy-item ol {
  padding-left: 10px;
}

.policy-item ol .text,
.policy-item ol ul {
  padding-left: 10px;
}

@media (max-width: 767px) {
  .privacypolicy .l-normal__frame {
    width: 100%;
  }

  .privacypolicy .l-sec__inner {
    gap: 0;
  }

  .privacypolicy .l-normal__frame.l-sec__inner {
    padding: 72px 20px;
  }
}