/**
* @file
* このテーマのメインのcssファイル
*/
* {
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
body {
  font-weight: 500;
  font-style: normal;
  font-family: YakuHanJP, tbudmincho-std, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: var(--size-15);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--white);
  color: var(--black);
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
ul, ol {
  margin:0;
  padding:0;
}
li {
  list-style-type: none;
}
p {
  margin:0;
  padding:0;
  line-height: 1.7;
}
a {
  text-decoration: none;
  color: var(--black);
}
a, a:hover, button, button:hover, img, article, input, textarea {
  text-decoration:none;
  -webkit-transition: 0.3s cubic-bezier(0.25,1,0.5,1);
  -moz-transition: 0.3s cubic-bezier(0.25,1,0.5,1);
  -o-transition: 0.3s cubic-bezier(0.25,1,0.5,1);
  -ms-transition: 0.3s cubic-bezier(0.25,1,0.5,1);
	transition: 0.3s cubic-bezier(0.25,1,0.5,1);
}
h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  font-weight: normal;
  margin:0;
  padding:0;
	line-height: 1.5;
}
dl, dt, dd {
  margin:0;
  padding:0;
}
input:focus, textarea:focus {
  outline:none;
}
input, textarea, button {
  border: none;
  background: none;
}
button {
  cursor: pointer;
  display: block;
  width: 100%;
}
figure,figcaption {
  margin: 0;
  padding: 0;
}
.simpleParallax {
  border-radius: var(--size-8);
}

/*        ---hover---        */
@media (hover: hover) {
  .l-header__logo-link:hover {
    opacity: .64;
  }
  .l-header__nav-link:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
  .l-footer__logo-link:hover {
    opacity: .64;
  }
  .l-footer__nav-menu-link:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
  .l-footer__foot-list-item-link:hover {
    opacity: .64;
  }
  .p-contact-fixed:hover .p-contact-fixed__btn-icon {
    transform: translateX(4px);
  }
  .p-contact-fixed:hover .p-contact-fixed__book {
    transform: translateX(-50%) translateY(-8px);
  }
  .p-creative__btn:hover .p-creative__btn-text::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
  .p-contact__btn:hover {
    background-color: var(--purple1);
  }
  .p-contact__btn:hover .p-contact__btn-icon {
    background-color: var(--purple2);
  }
  .p-contact__btn:hover .p-contact__btn-text {
    color: var(--white);
  }
  .p-contact__btn:hover .p-contact__btn-icon-img {
    display: none;
  }
  .p-contact__btn:hover .p-contact__btn-icon-img-purple {
    display: block;
  }
  .p-contact-btn__privacy:hover {
    text-decoration: inherit;
  }
  .p-contact__btn-prev:hover {
    text-decoration: none;
  }
  .p-contact__form-submit input:hover {
    opacity: .64;
  }
  .p-contact-lower__des-link:hover {
    text-decoration: none;
  }
}

/*        ---animation---        */
.js-img-slideup {
  position: relative;
	opacity: 0;
  overflow: hidden;
}
.js-img-slideup.is-active {
	opacity: 1;
}
.js-img-slideup.is-active::before {
	content: '';
	position: absolute;
  z-index: 1;
  animation: img-wrap2 1.2s cubic-bezier(.28, 1.06, .73, .95) forwards;
  background: #fff;
  filter: blur(6px);
  inset: 0;
  pointer-events: none;
}
@keyframes img-wrap2 {
  100% {
    transform: translateY(-100%);
  }
}

.js-img-slide {
  position: relative;
	opacity: 0;
  overflow: hidden;
}
.js-img-slide.is-active {
	opacity: 1;
}
.js-img-slide.is-active::before {
	content: '';
	position: absolute;
  z-index: 2;
  animation: img-wrap 1.6s cubic-bezier(0.25,1,0.5,1) forwards;
  background: var(--white);
  inset: 0;
  pointer-events: none;
}
@keyframes img-wrap {
  100% {
    transform: translateX(100%);
  }
}
.js-slide-up {
  opacity: 0;
  transform: translateY(30%);
  transition: opacity 1.8s cubic-bezier(0.14,1,0.34,1), transform 1.8s cubic-bezier(0.14,1,0.34,1);
}
.js-slide-up-opacity {
  opacity: 0;
  transition: opacity 1.6s;
}
.js-slide-up.is-active {
  opacity: 1;
  transform: translateY(0);
}
.js-slide-up-opacity.is-active {
  opacity: 1;
}
.js-text-animate .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(80%);
  animation: slideUpChar 1.6s cubic-bezier(0.14,1,0.34,1) forwards;
}
@keyframes slideUpChar {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-delay1 {
  transition-delay: 0.8s;
}
.js-delay2 {
	transition-delay: 1.6s;
}
.js-delay3 {
  transition-delay: 1.8s;
}

.js-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.25,1,0.5,1), opacity 0.3s cubic-bezier(0.25,1,0.5,1);
  opacity: 0;
}
.js-faq-item.is-open .js-faq-answer {
  max-height: 640px; /* 十分大きめに設定（必要に応じて調整） */
  opacity: 1;
}
/* アイコンのベース */
.js-faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-color: var(--purple1);
  border-radius: 50%;
  transition: background-color 0.3s cubic-bezier(0.25,1,0.5,1);
  outline: solid var(--size-8) var(--purple2);
}
.js-faq-icon::before,
.js-faq-icon::after {
  content: "";
  position: absolute;
  background-color: var(--white);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
/* 横線 */
.js-faq-icon::before {
  width: 8px;
  height: 1px;
}
/* 縦線（+のとき） */
.js-faq-icon::after {
  width: 1px;
  height: 8px;
}
/* 開いたら−になる（縦線を消す） */
.js-faq-item.is-open .js-faq-icon::after {
  height: 0;
}

/*        ---component---        */
.c-width-1152 {
  /* max-width: calc(1152px + 192px); */
	padding: 0 var(--size-144);
	margin: 0 auto;
}
.c-line {
  position: fixed;
  top: 0;
  width: 1px;
  height: 100vh;
  background-color: #f2f2f2;
  z-index: -9; /* 必要に応じて調整 */
  pointer-events: none; /* 背後のクリック操作をブロックしない */
}
.c-line25 {
  left: 25vw;
}
.c-line50 {
  left: 50vw;
}
.c-line75 {
  left: 75vw;
}
.c-btn01 {
  position: relative;
  width: calc(100% - 32px);
  height: var(--size-80);
  background-color: var(--gray1);
  border-radius: var(--size-8);
}
.c-btn01-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  font-size: var(--size-13);
}
.c-title-en {
  font-size: var(--size-240);
  font-size: clamp(8rem, 5.535rem + 10.52vw, 15rem);
  color: var(--gray3);
  z-index: -2;
  line-height: 1.0;
  white-space: nowrap;
}
.c-title-ja {
  width: min-content;
}
/* .c-title-ja__text {
  position: relative;
  font-size: var(--size-56);
  font-size: clamp(2rem, 1.472rem + 2.25vw, 3.5rem);
  color: var(--white);
  display: inline-block;
  background-size: cover;
  line-height: 1.0;
  white-space: nowrap;
  letter-spacing: -0.03em;
} */
.c-title-ja__text {
  position: relative;
  font-size: clamp(2rem, 1.472rem + 2.25vw, 3.5rem);
  color: #fff;
  display: inline-block;
  z-index: 1;
  background: linear-gradient(25deg, rgba(108, 197, 215, 1) 0%, rgba(155, 94, 162, 1) 100%);
  line-height: 1.0;
  white-space: nowrap;
  letter-spacing: -0.03em;
}
.video-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: opacity(0.8) brightness(130%);
}

/* .c-title-ja__text-inner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(135deg, #93aab7, #909eb1, #9191a6, #938398, #937786);
  -webkit-filter: saturate(150%) brightness(0.8);
  filter: saturate(150%) brightness(0.8);
} */
.c-translate96 {
  transform: translateY(96px);
}
.c-translate48 {
  transform: translateY(48px);
}
.c-only-pc {
  display: block;
}
.c-only-sp {
  display: none;
}
.c-br-sp {
	display: none;
}
.c-br-pc {
	display: block;
}
.c-text-slider {
  white-space: nowrap;
  width: 100%;
}
.c-text-slider-track {
  display: inline-flex;
  align-items: center;
  animation: text-loop 96s infinite linear 0.5s both;
}
.c-text-slider-text {
  height: 1cap;
  display: inline-block;
  margin-left: var(--size-48);
  line-height: 0.8;
  font-size: var(--size-160);
  font-size: clamp(5rem, 3.239rem + 7.51vw, 10rem);
}
.c-text-slider-img {
  width: var(--size-202);
  width: clamp(8rem, 6.371rem + 6.95vw, 12.625rem);
  height: clamp(4.563rem, 3.418rem + 4.88vw, 7.813rem);
  object-fit: cover;
  object-position: center;
  margin-left: var(--size-48);
  border-radius: 200px;
}
@keyframes text-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media screen and (max-width:960px) {
  .c-width-1152 {
    padding: 0 var(--size-48);
    margin: 0 auto;
  }
}
@media screen and (max-width:768px){
  .c-btn01 {
    width: calc(100% - 16px);
    height: var(--size-64);
    background-color: var(--gray1);
    border-radius: var(--size-8);
  }
  .c-btn01-text {
    font-size: var(--size-11);
  }
  .c-title-ja__text-sp {
    position: relative;
    font-size: clamp(2rem, 1.472rem + 2.25vw, 3.5rem);
    color: #fff;
    display: inline-block;
    z-index: 1;
    background: linear-gradient(25deg, rgba(108, 197, 215, 1) 0%, rgba(155, 94, 162, 1) 100%);
    line-height: 1.0;
    white-space: nowrap;
    letter-spacing: -0.03em;
  }
  .c-translate96 {
    transform: translateY(0px);
  }
  .c-translate48 {
    transform: translateY(0px);
  }
  .c-only-pc {
    display: none;
  }
  .c-only-sp {
		display: block;
	}
	.c-br-sp {
		display: block;
	}
  .c-br-pc {
    display: none;
  }
  .c-width-1152 {
    padding: 0 var(--size-24);
    margin: 0 auto;
  }
  .c-text-slider-text {
    margin-left: var(--size-24);
  }
  .c-text-slider-img {
    margin-left: var(--size-24);
  }
}

/* ヘッダー */
.l-header {
  position: fixed;
  top: var(--size-32);
  z-index: 999;
  width: 100%;
  padding: 0 var(--size-32);
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.6s cubic-bezier(0.25,1,0.5,1);
}
.l-header__inner.is-active {
  background-color: var(--white);
  border-radius: var(--size-8);
  padding: var(--size-22) var(--size-32);
  box-shadow: 0px 0px 24px 2px var(--gray3);
}
.l-header__logo-img {
  width: var(--size-128);
}
.l-header__nav-sp {
  display: none;
}
.l-header__nav-bg {
  display: none;
}
.l-header__hamburger {
  display: none;
}
.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: var(--size-24);
}
.l-header__nav-link {
  position: relative;
  font-size: var(--size-14);
  transition: .3s;
}
.l-header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: var(--black);
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
}
@media screen and (max-width:768px){
  .l-header {
    top: var(--size-8);
    padding: 0 var(--size-8);
  }
  .l-header__inner.is-active {
    background-color: var(--white);
    border-radius: var(--size-4);
    padding: var(--size-10) var(--size-24);
  }
  .l-header__logo-img {
    width: var(--size-96);
  }
  .l-header__hamburger {
    display: block;
    width: var(--size-24);
    height: var(--size-24);
  }
  .l-header__hamburger-inner {
    position: relative;
    width: 100%;
    height: 100%;
		margin: auto;
  }
  .l-header__hamburger-line {
    position: absolute;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 1px;
    background: var(--black);
    transition: 0.8s cubic-bezier(0.16,1,0.3,1);
  }
  .l-header__hamburger.is-open .l-header__hamburger-line {
    background: var(--black);
  }
  .l-header__hamburger-line:nth-child(1) {
    top: calc(50% - var(--size-4));
  }
  .l-header__hamburger-line:nth-child(2) {
    top: 50%;
  }
  .l-header__hamburger-line:nth-child(3) {
    top: calc(50% + var(--size-4));
  }
  .is-open .l-header__hamburger-line:nth-child(1) {
    top: 50%;
    transform: rotate(45deg);
  }
  .is-open .l-header__hamburger-line:nth-child(2) {
    transform: rotate(90deg);
    opacity: 0;
  }
  .is-open .l-header__hamburger-line:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg);
  }
  .l-header__nav {
    display: none;
  }
  .l-header__nav-sp {
    position: fixed;
    top: 0;
    right: -100vw;
    z-index: -9;
    display: flex;
		flex-direction: column;
		justify-content: center;
		padding: var(--size-128) var(--size-40) var(--size-40);
    width: 84%;
    height: 100%;
    background: var(--gray2);
    border-left: solid var(--size-1) var(--border-gray);
    opacity: 0;
    visibility: hidden;
    transition: 0.8s cubic-bezier(0.16,1,0.3,1);
  }
  .l-header__nav-sp.is-open {
    opacity: 1;
    visibility: visible;
    right: 0;
  }
  .l-header__nav-bg {
    position: fixed;
		top: 0;
		left: 0;
		z-index: -999;
		width: 100vw;
		height: 100vh;
		/* background-color: rgba(0, 0, 0, .32); */
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    opacity: 0;
    transform: translateX(-100%);
    will-change: opacity, backdrop-filter;
		transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1);
    display: block;
  }
	.l-header__nav-bg.is-open {
		opacity: 1;
    transform: translateX(0%);
	}
	.l-header__nav-sp-item {
		padding-bottom: var(--size-32);
	}
	.l-header__nav-sp-link {
		font-size: var(--size-15);
	}
}

/* フッター  */
.l-footer {
  position: relative;
  background-color: var(--gray3);
  overflow: hidden;
}
.l-footer__inner {
  padding: var(--size-128) var(--size-48) 0;
}
.l-footer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--size-48);
}
.l-footer__logo-img {
  width: var(--size-128);
}
.l-footer__nav-menu {
  display: flex;
  align-items: center;
  gap: var(--size-24);
}
.l-footer__nav-menu-link {
  position: relative;
  font-size: var(--size-14);
  transition: .3s;
}
.l-footer__nav-menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: var(--black);
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
}
.l-footer__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--size-64);
}
.l-footer__foot-list {
  display: flex;
  align-items: center;
  gap: var(--size-32);
}
.l-footer__foot-list-item-link {
  position: relative;
  font-size: var(--size-13);
}
.l-footer__foot-list-item-link::after {
  position: absolute;
  top: 0;
  right: -12px;
  content: "";
  background: url(img/icon/link.svg) no-repeat;
  width: 8.5px;
  height: 7.8179px;
}
.l-footer__copyrights {
  font-size: var(--size-10);
}
@media screen and (max-width:768px){
  .l-footer__inner {
    padding: var(--size-64) var(--size-24) 0;
  }
  .l-footer__head {
    display: block;
  }
  .l-footer__logo-img {
    width: var(--size-96);
  }
  .l-footer__nav-menu {
    margin-top: var(--size-32);
    display: block;
  }
  .l-footer__nav-menu-item {
    padding-bottom: var(--size-16);
  }
  .l-footer__nav-menu-item:last-child {
    padding-bottom: 0;
  }
  .l-footer__nav-menu-link {
    font-size: var(--size-12);
    display: block;
  }
  .l-footer__foot {
    display: block;
    margin-top: var(--size-48);
  }
  .l-footer__foot-list {
    gap: var(--size-24);
  }
  .l-footer__foot-list-item-link {
    font-size: var(--size-11);
  }
  .l-footer__foot-list-item-link::after {
    right: -10px;
  }
  .l-footer__copyrights {
    font-size: var(--size-10);
    margin-top: var(--size-16);
  }
}

/* layout */
.l-main {
  overflow: hidden;
}
.l-mv {
  position: relative;
  width: 100%;
  height: 100svh;
}
.l-reasons {
  position: relative;
  padding-top: var(--size-192);
}
.l-reasons::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 32%;
  background: #FFFFFF;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}
.l-issues {
  position: relative;
  padding-top: var(--size-192);
}
.l-issues::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 56%;
  background: #FFFFFF;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}
.l-creative {
  position: relative;
  padding-top: var(--size-192);
}
.l-creative::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 56%;
  background: #FFFFFF;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}
.l-contact {
  position: relative;
  padding-top: var(--size-152);
  padding-bottom: var(--size-160);
}
.l-contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 40%;
  background: #FFFFFF;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 1) 100%);
}
.l-contact::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 60%;
  background: #FFFFFF;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.l-content__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5.7194%;
  /* max-width: 936px; */
  width: 65vw;
  padding: var(--size-48);
  border-radius: var(--size-24) var(--size-24) 0 0;
  border: solid var(--size-1) var(--border-gray);
  background-color: var(--gray2);
  margin-bottom: var(--size-32);
}
.l-content__item:last-child {
  margin-bottom: 0;
}
.l-content__item-img {
  width: 22.8521%;
  border-radius: 200px;
}
.l-content__item-text {
  width: 71.4285%;
}
.l-content__item-text-en {
  font-size: var(--size-13);
}
.l-content__item-text-title {
  font-size: var(--size-24);
  margin-top: var(--size-16);
}
.l-content__item-text-des {
  margin-top: var(--size-16);
}

.l-content02__list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 2.0834%;
  row-gap: var(--size-24);
  flex-wrap: wrap;
}
.l-content02__item {
  width: 31.9444%;
  background-color: var(--gray2);
  border: solid var(--size-1) var(--border-gray);
  border-radius: var(--size-24) var(--size-24) 0 0;
  padding: var(--size-48);
}
.l-content02__item-head {
  display: flex;
  align-items: center;
  gap: var(--size-16);
}
.l-content02__item-head-num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: var(--size-13);
  color: var(--white);
  background: url(img/icon/bg_circle.png) no-repeat;
  width: var(--size-32);
  height: var(--size-32);
  background-size: var(--size-32) var(--size-32);
}
.l-content02__item-head-text {
  line-height: 1.3;
}
.l-content02__item-title {
  font-size: var(--size-21);
  margin-top: var(--size-24);
}
.l-content02__item-des {
  margin-top: var(--size-16);
}

@media screen and (max-width:768px) {
  .l-reasons {
    padding-top: var(--size-128);
  }
  .l-issues {
    padding-top: var(--size-128);
  }
  .l-creative {
    padding-top: var(--size-128);
  }
  .l-contact {
    padding-top: var(--size-88);
    padding-bottom: var(--size-96);
  }
  .l-content__item {
    display: block;
    /* max-width: 936px; */
    width: 100%;
    padding: var(--size-24);
    border-radius: var(--size-16) var(--size-16) 0 0;
    margin-bottom: var(--size-24);
  }
  .l-content__item-img {
    width: 100%;
    border-radius: 200px;
  }
  .l-content__item-text {
    margin-top: var(--size-24);
    width: 100%;
  }
  .l-content__item-text-en {
    font-size: var(--size-11);
  }
  .l-content__item-text-title {
    font-size: var(--size-19);
    margin-top: var(--size-8);
  }
  .l-content__item-text-des {
    margin-top: var(--size-8);
    font-size: var(--size-13);
  }
  .l-content02__list {
    display: block;
  }
  .l-content02__item {
    width: 100%;
    border-radius: var(--size-16) var(--size-16) 0 0;
    padding: var(--size-34);
    margin-bottom: var(--size-16);
  }
  .l-content02__item:last-child {
    margin-bottom: 0;
  }
  .l-content02__item-head {
    gap: var(--size-8);
  }
  .l-content02__item-head-num {
    font-size: var(--size-11);
    width: var(--size-24);
    height: var(--size-24);
    background-size: var(--size-24) var(--size-24);
  }
  .l-content02__item-head-text {
    font-size: var(--size-13);
  }
  .l-content02__item-title {
    font-size: var(--size-17);
    margin-top: var(--size-16);
  }
  .l-content02__item-des {
    font-size: var(--size-13);
    margin-top: var(--size-8);
  }
}

/*         ---project---          */
/* mv */
.p-mv__text-slider {
  position: absolute;
  z-index: 99;
  top: 45%;
  transform: translateY(-50%);
  /* mix-blend-mode: difference; */
}
.p-mv__text-slider .c-text-slider-text {
  background: linear-gradient(90deg, #1d1d1d, #545454, #323232);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  height: inherit;
  opacity: 0.88;
}
.p-mv__title {
  position: absolute;
  top: 58%;
  left: 144px;
  z-index: 99;
  font-size: var(--size-24);
  line-height: 1.5;
}
.p-mv__bg-img-wrapper {
  position: absolute;
  top: var(--size-24);
  left: 50%;
  z-index: 98;
  transform: translateX(-50%);
  width: var(--size-480);
  height: calc(100% - 48px);
  border-radius: var(--size-24);
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  padding: 0 var(--size-24);
}
.p-mv__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--size-24);
}
.p-mv__bg-grad {
  position: absolute;
  bottom: 0;
  z-index: 97;
}
.p-mv__bg-grad-gray01 {
  position: absolute;
  top: var(--size-48);
  width: 100%;
  height: calc(50% - 48px);
  background: #EFEFEF;
  background: linear-gradient(0deg, rgba(239, 239, 239, 1) 0%, rgba(239, 239, 239, 0) 100%);
  opacity: .64;
}
.p-mv__bg-grad-gray02 {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  background-color: var(--gray3);
  opacity: .64;
}
.p-mv__scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  width: calc(100% - var(--size-96));
  background-color: var(--white);
  border-radius: var(--size-24) var(--size-24) 0 0;
}
.p-mv__scroll-corner-left {
  position: absolute;
  bottom: 0;
  left: -24px;
  width: var(--size-24);
}
.p-mv__scroll-corner-right {
  position: absolute;
  bottom: 0;
  right: -24px;
  width: var(--size-24);
  transform: rotate(90deg);
}
.p-mv__scroll-text {
  margin: var(--size-16) var(--size-16) 0;
}

/* contact-fixed */
.p-contact-fixed {
  position: fixed;
  z-index: 9999;
  right: var(--size-48);
  bottom: var(--size-48);
  background: linear-gradient(25deg, rgba(108, 197, 215, 1) 0%, rgba(155, 94, 162, 1) 100%);
  padding: var(--size-32) var(--size-24) var(--size-24);
  border-radius: 200px;
}
.p-contact-fixed .video-bg video {
border-radius: 200px;
}
.p-contact-fixed__book {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: var(--size-128);
  transition: 1.0s cubic-bezier(0.14,1,0.34,1);
}
.p-contact-fixed__main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-8);
}
.p-contact-fixed__btn-text {
  font-size: var(--size-17);
  color: var(--white);
}
.p-contact-fixed__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size-16);
  height: var(--size-16);
  border-radius: 50%;
  background-color: var(--white);
  transition: 1.0s cubic-bezier(0.14,1,0.34,1);
}
.p-contact-fixed__btn-icon-img {
  width: var(--size-3);
}
.p-contact-fixed__sub {
  display: block;
  color: var(--white);
  font-size: var(--size-13);
  text-align: center;
}

/* reasons */
.p-reasons {
  position: relative;
  padding-bottom: var(--size-160);
}
.p-reasons__head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--size-48);
}
.p-reasons__head-title01 {
	/* background: url(img/icon/text_bg_reasons01.png) no-repeat; */
  margin-bottom: var(--size-24);
}
.p-reasons__head-title02 {
	/* background: url(img/icon/text_bg_reasons02.png) no-repeat; */
}
.p-reasons__head-des {
  width: calc(50vw - var(--size-158));
}
.p-reasons__content-en {
  position: absolute;
  right: 0;
  bottom: -128px;
}
.p-reasons__content-item01 {
  margin-left: calc(25vw - var(--size-144));
  margin-bottom: var(--size-32);
}
.p-reasons__content-item02 {
  margin: 0 auto var(--size-32);
}
.p-reasons__content-item03 {
  margin-left: calc(75vw - var(--size-144) - 65vw);
  margin-bottom: var(--size-32);
}
.p-reasons__bg-gray {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

/* issues */
.p-reasons {
  position: relative;
  padding-bottom: var(--size-160);
}
.p-issues__head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--size-48);
}
.p-issues__head-des {
  width: calc(50vw - var(--size-144));
}
.p-issues__head-title01 {
	/* background: url(img/icon/text_bg_issues01.png) no-repeat; */
  margin-bottom: var(--size-24);
}
.p-issues__head-title02 {
	/* background: url(img/icon/text_bg_issues02.png) no-repeat; */
}
.p-issues__content {
  position: relative;
}
.p-issues__content-en {
  position: absolute;
  right: -13.5%;
  top: 40%;
  transform: rotate(90deg);
}
.p-issues__content-item {
  width: calc(100vw - 25vw - var(--size-144));
  margin-bottom: var(--size-64);
}
.p-issues__content-item:last-child {
  margin-bottom: 0;
}
.p-issues__content-item-en {
  font-size: var(--size-13);
  display: flex;
  align-items: center;
}
.p-issues__content-item-en::after {
  content: "";
  flex-grow: 1;
  height: var(--size-1);
  background-color: var(--border-gray);
  margin-left: var(--size-24);
}
.p-issues__content-item-text {
  margin-top: var(--size-64);
}
.p-issues__content-item-text-title {
  font-size: var(--size-28);
}
.p-issues__content-item-text-des {
  margin-top: var(--size-24);
}

/* solutions */
.p-solutions__head-title01 {
	/* background: url(img/icon/text_bg_solutions01.png) no-repeat; */
  margin-bottom: var(--size-24);
}
.p-solutions__head-title02 {
	/* background: url(img/icon/text_bg_solutions02.png) no-repeat; */
}
.p-solutions__head-des {
  margin-top: var(--size-64);
  margin-left: calc(50vw - var(--size-144));
}
.p-solutions__content {
  position: relative;
  margin-top: var(--size-64);
}
.p-solutions__content-en {
  position: absolute;
  left: 0;
  top: -16%;
}
.p-solutions__content-item01 {
  margin-left: calc(25vw - var(--size-144) - 15vw);
  margin-bottom: var(--size-32);
}
.p-solutions__content-item02 {
  margin: 0 auto var(--size-32);
}
.p-solutions__content-item03 {
  margin-left: calc(25vw - var(--size-144));
}

/* team */
.p-team__head {
  position: relative;
}
.p-team__title {
  margin: 0 0 0 auto;
}
.p-team__head-des {
  width: calc(50vw - var(--size-144));
  margin-top: var(--size-64);
}
.p-team__head-title01 {
	/* background: url(img/icon/text_bg_team01.png) no-repeat; */
  margin-bottom: var(--size-24);
}
.p-team__head-title02 {
	/* background: url(img/icon/text_bg_team02.png) no-repeat; */
}
.p-team__content-en {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* workflow */
.p-workflow__head {
  position: relative;
}
.p-workflow__head-title01 {
	/* background: url(img/icon/text_bg_workflow01.png) no-repeat; */
  margin-bottom: var(--size-24);
}
.p-workflow__head-title02 {
	/* background: url(img/icon/text_bg_workflow02.png) no-repeat; */
}
.p-workflow__head-des {
  margin-top: var(--size-64);
  margin-left: calc(50vw - var(--size-144));
}
.p-workflow__content-en {
  position: absolute;
  top: 128%;
  right: -30%;
  transform: rotate(90deg);
}
.p-workflow__content-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--size-48);
}
.p-workflow__content-item:last-child {
  margin-bottom: 0;
}
.p-workflow__content-item-num {
  position: absolute;
  left: 0;
  top: 0;
  font-size: var(--size-112);
  font-size: clamp(3rem, 1.592rem + 6.01vw, 7rem);
  line-height: 1.0;
}
.p-workflow__content-item-container {
  width:  50vw;
  margin-left: calc(25vw - var(--size-144));
  background-color: var(--gray2);
  border: solid var(--size-1) var(--border-gray);
  border-radius: var(--size-24) var(--size-24) 0 0;
  padding: var(--size-48);
}
.p-workflow__content-item-container-en {
  font-size: var(--size-13);
}
.p-workflow__content-item-container-title {
  font-size: var(--size-24);
  margin-top: var(--size-8);
}
.p-workflow__content-item-container-des {
  margin-top: var(--size-16);
}
.p-workflow__content-item-container-list {
  display: flex;
  align-items: center;
  gap: var(--size-24);
  flex-wrap: wrap;
  margin-top: var(--size-24);
}
.p-workflow__content-item-container-item {
  position: relative;
  padding-left: var(--size-24);
  font-size: var(--size-17);
}
.p-workflow__content-item-container-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url(img/icon/bg_circle.png) no-repeat;
  width: var(--size-16);
  height: var(--size-16);
  background-size: var(--size-16) var(--size-16);
}

/* faq */
.p-faq {
  padding-bottom: var(--size-128);
  border-bottom: solid var(--size-1) var(--border-gray);
}
.p-faq__title {
  text-align: center;
  font-size: var(--size-56);
  font-size: clamp(2rem, 1.472rem + 2.25vw, 3.5rem);
}
.p-faq__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8.3333%;
}
.p-faq__content-list {
  width: 45.83335%;
}
.p-faq__content-item {
  padding: var(--size-32) 0;
  border-top: solid var(--size-1) var(--border-gray);
}
.p-faq__content-item-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--size-24);
  cursor: pointer;
}
.p-faq__content-item-q-text {
  display: flex;
  align-items: center;
  gap: var(--size-16);
}
.p-faq__content-item-q-en {
  font-size: var(--size-32);
}
.p-faq__content-item-q-title {
  font-size: var(--size-18);
}
.p-faq__content-item-a {
  transition: 0.3s cubic-bezier(0.25,1,0.5,1);
}
.p-faq__content-item.is-open .p-faq__content-item-a {
  padding-top: var(--size-32);
}

/* creative */
.p-creative {
  position: relative;
  padding-bottom: var(--size-192);
}
.p-creative__title {
  font-size: var(--size-40);
  font-size: clamp(1.5rem, 1.148rem + 1.5vw, 2.5rem);
  text-align: center;
}
.p-creative__des {
  margin-top: var(--size-48);
  text-align: center;
}
.p-creative__list {
  margin-top: var(--size-48);
}
.p-creative__bg-gray {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.p-creative__btn-wrapper {
  padding-top: var(--size-48);
  background-color: var(--white);
}
.p-creative__btn {
  display: block;
  margin: 0 auto;
}
.p-creative__btn-text {
  position: relative;
  transition: .3s;
}
.p-creative__btn-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: var(--black);
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
}

/* contact */
.p-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--size-48);
}
.p-contact__head-title01 {
	/* background: url(img/icon/text_bg_contact01.png) no-repeat; */
  margin-bottom: var(--size-24);
}
.p-contact__head-title02 {
	/* background: url(img/icon/text_bg_contact02.png) no-repeat; */
}
.p-contact__des {
  max-width: 576px;
  margin-top: var(--size-48);
}
.p-contact__btn {
  flex-shrink: 0;
  width: var(--size-240);
  width: clamp(8rem, 5.535rem + 10.52vw, 15rem);
  height: var(--size-240);
  height: clamp(8rem, 5.535rem + 10.52vw, 15rem);
  border-radius: 50%;
  background-color: var(--purple2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 1.0s cubic-bezier(0.14,1,0.34,1);
}
.p-contact__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--size-16);
  height: var(--size-16);
  border-radius: 50%;
  background-color: var(--purple1);
  margin-right: var(--size-8);
  transition: 1.0s cubic-bezier(0.14,1,0.34,1);
}
.p-contact__btn-icon-img {
  width: var(--size-3);
}
.p-contact__btn-icon-img-purple {
  display: none;
  width: var(--size-3);
}
.p-contact__btn-text {
  font-size: var(--size-18);
  transition: 1.0s cubic-bezier(0.14,1,0.34,1);
}

/* お問い合わせ フォーム */
.l-contact-lower {
  width: calc(50vw - 6px);
  margin: var(--size-264) auto;
}
.p-contact-lower__title {
  text-align: center;
  font-size: var(--size-56);
  font-size: clamp(2rem, 1.472rem + 2.25vw, 3.5rem);
}
.p-contact-lower__des {
  text-align: center;
  margin-top: var(--size-32);
}

.confirm_area,
.thanks_area,
.p-form__confirm {
  display: none;
}
.p-contact__form {
	margin-top: var(--size-128);
}
.p-contact__form dl {
	padding-top: var(--size-64);
}
.p-contact__form dl:nth-child(1) {
	padding-top: 0;
}
.p-contact__form dt p {
  display: flex;
  align-items: center;
  gap: var(--size-8);
	margin-bottom: var(--size-24);
	font-size: var(--size-18);
  line-height: 1.0;
}
.p-contact__form input[type=text] {
	padding: var(--size-24);
	background: var(--gray2);
	border-radius: var(--size-4);
  font-size: var(--size-18);
  border: solid var(--size-1) var(--border-gray);
}
.p-contact__form input[type=tel] {
	padding: var(--size-24);
	background: var(--gray2);
	border-radius: var(--size-4);
  font-size: var(--size-18);
  border: solid var(--size-1) var(--border-gray);
}
.p-contact__form input[type=email] {
	padding: var(--size-24);
	background: var(--gray2);
	border-radius: var(--size-4);
  font-size: var(--size-18);
  border: solid var(--size-1) var(--border-gray);
}
.p-contact__form select {
	padding: var(--size-24);
	background: var(--gray2);
	border-radius: var(--size-4);
	border: none;
	width: 100%;
	color: var(--black);
  font-size: var(--size-18);
  border: solid var(--size-1) var(--border-gray);
}
.p-contact__form-select-arrow {
	position: relative;
	display: inline-block;
}
.p-contact__form-select-arrow::after {
	content: "";
	background: url(img/icon/arrow_bottom_purple.svg) no-repeat;
	width: var(--size-16);
	height: var(--size-16);
	position: absolute;
	right: var(--size-16);
	top: 50%;
	transform: translateY(-50%);
}
select {
  -webkit-appearance: none;
  appearance: none; /* デフォルトの矢印を非表示 */
}
select::-ms-expand {
  display: none; /* デフォルトの矢印を非表示(IE用) */
}
.p-contact__form textarea {
	padding: var(--size-24);
	background: var(--gray2);
	border-radius: var(--size-4);
  border: solid var(--size-1) var(--border-gray);
  font-size: var(--size-18);
}

.p-contact__form-checkbox .wpcf7-checkbox {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--size-24);
}
/* .p-contact__form-checkbox {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--size-24);
} */

.p-contact__form-checkbox label span {
	position: relative;
	padding-left: var(--size-24);
  font-size: var(--size-18);
}
.p-contact__form-checkbox label span::before {
	content: "";
	display: block;
	width: var(--size-16);
	height: var(--size-16);
	border-radius: 50%;
	background: var(--gray2);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  border: solid var(--size-1) #ccc;
}
.p-contact__form-checkbox label span::after {
	content: "";
	display: block;
	width: var(--size-8);
	height: var(--size-8);
	border-radius: 50%;
	background-color: var(--black);
	position: absolute;
	top: 50%;
	left: 5px;
	transform: translateY(-50%);
	opacity: 0;
}
.p-contact__form input[type=radio], .p-contact__form input[type=checkbox] {
	display: none;
}
.wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.wpcf7-list-item input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.p-contact__form-btn {
  margin-top: var(--size-64);
  text-align: center;
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: var(--size-16);
  height: var(--size-16);
  border-radius: 50%;
  background-color: var(--gray2);
  border: solid 1px var(--border-gray);
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::after {
	content: "";
	display: block;
	width: var(--size-8);
	height: var(--size-8);
	background: var(--black);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: var(--size-5);
	transform: translateY(-50%);
	opacity: 0;
}
.p-contact__form-btn label {
  position: relative;
	padding-left: var(--size-24);
  font-size: var(--size-18);
}
/* .p-contact__form-btn label::before {
  content: "";
  display: block;
  width: var(--size-16);
  height: var(--size-16);
  border-radius: 50%;
  background-color: var(--gray2);
  border: solid 1px var(--border-gray);
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.p-contact__form-btn label::after {
	content: "";
	display: block;
	width: var(--size-8);
	height: var(--size-8);
	background: var(--black);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: var(--size-4);
	transform: translateY(-50%);
	opacity: 0;
} */
.p-contact-btn__privacy {
  display: inline;
  text-decoration: underline;
}
.p-contact__form .req {
	font-size: var(--size-13);
	padding: var(--size-4) var(--size-8);
	background: linear-gradient(25deg, rgba(108, 197, 215, 1) 0%, rgba(155, 94, 162, 1) 100%);
	color: var(--white);
}
.p-contact__btn-prev {
	display: block;
  margin: var(--size-64) auto 0;
	color: var(--black);
  text-decoration: underline;
}
.p-contact__form-submit {
  text-align: center;
}
.p-contact__form-submit input {
	margin-top: var(--size-64);
	border-radius: 200px;
	max-width: 400px;
  width: 100%;
	padding: var(--size-24);
	background-color: var(--black);
	color: var(--white);
	position: relative;
  font-size: var(--size-19);
}
.confirm_area .p-contact__form-submit input {
  margin-top: var(--size-24);
}
.wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #ff0000;
}
.wpcf7-list-item label {
  cursor: pointer;
}
.wpcf7-submit:disabled {
  opacity: .4;
}
.p-contact__form .wpcf7-list-item {
	margin: 0;
}
.p-contact-lower__des-link {
	text-decoration: underline;
	transition: .4s;
}
.p-contact__form-submit .wpcf7-spinner {
  display: block;
  margin: var(--size-8) auto 0;
}

@media screen and (max-width:960px) {
  .p-reasons__content-item01 {
    margin-left: calc(25vw - var(--size-48));
    margin-bottom: var(--size-32);
  }
  .p-reasons__content-item03 {
    margin-left: calc(25vw - var(--size-48) - 15vw);
    margin-bottom: var(--size-32);
  }
  .p-reasons__head-des {
    width: calc(50vw - var(--size-58));
  }
  .p-issues__content-item {
    width: calc(100vw - 25vw - var(--size-48));
  }
  .p-issues__head-des {
    width: calc(50vw - var(--size-48));
  }
  .p-solutions__content-item01 {
    margin-left: calc(25vw - var(--size-48) - 15vw);
    margin-bottom: var(--size-32);
  }
  .p-solutions__content-item03 {
    margin-left: calc(25vw - var(--size-48));
  }
  .p-solutions__head-des {
    margin-left: calc(50vw - var(--size-48));
  }
  .p-team__head-des {
    width: calc(50vw - var(--size-48));
  }
  .p-workflow__content-item-container {
    margin-left: calc(25vw - var(--size-48));
  }
  .p-workflow__head-des {
    margin-left: calc(50vw - var(--size-48));
  }
}

@media screen and (max-width:768px) {
	/* mv */
  .p-mv__text-slider {
    top: 45%;
  }
  .p-mv__title {
    top: 58%;
    left: 24px;
    font-size: var(--size-19);
    padding-right: var(--size-24);
  }
  .p-mv__bg-img-wrapper {
    top: var(--size-16);
    width: 64%;
    max-width: var(--size-480);
    height: calc(100% - 32px);
    border-radius: var(--size-16);
    padding: 0 var(--size-24);
  }
  .p-mv__bg-img {
    border-radius: var(--size-16);
  }
  .p-mv__bg-grad-gray01 {
    top: var(--size-24);
    height: calc(50% - 24px);
  }
  .p-mv__scroll {
    width: calc(100% - var(--size-16));
    border-radius: var(--size-16) var(--size-16) 0 0;
  }
  .p-mv__scroll-corner-left {
    left: -15px;
    width: var(--size-16);
  }
  .p-mv__scroll-corner-right {
    right: -15px;
    width: var(--size-16);
  }
  .p-mv__scroll-text {
    margin: var(--size-8) var(--size-8) 0;
  }

  /* contact-fixed */
  .p-contact-fixed {
    z-index: 9999;
    right: var(--size-16);
    bottom: var(--size-16);
    padding: var(--size-24) var(--size-16) var(--size-16);
  }
  .p-contact-fixed .video-bg video {
  border-radius: 200px;
  }
  .p-contact-fixed__book {
    top: -24px;
    width: var(--size-88);
  }
  .p-contact-fixed__main {
    gap: var(--size-4);
  }
  .p-contact-fixed__btn-text {
    font-size: var(--size-15);
  }
  .p-contact-fixed__sub {
    font-size: var(--size-11);
  }

  /* reasons */
  .p-reasons {
    position: relative;
    padding-bottom: var(--size-96);
  }
  .p-reasons__head {
    display: block;
  }
  .p-reasons__head-title01 {
    margin-bottom: var(--size-8);
  }
  .p-reasons__head-des {
    margin-top: var(--size-32);
    font-size: var(--size-13);
    width: 100%;
  }
  .p-reasons__content-en {
    position: absolute;
    right: inherit;
    left: -24px;
    bottom: -88px;
  }
  .p-reasons__content-item01 {
    margin: 0 auto var(--size-24);
  }
  .p-reasons__content-item02 {
    margin: 0 auto var(--size-24);
  }
  .p-reasons__content-item03 {
    margin: 0 auto;
  }

  /* issues */
  .p-reasons {
    padding-bottom: var(--size-96);
  }
  .p-issues__head {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    gap: var(--size-32);
  }
  .p-issues__head-des {
    font-size: var(--size-13);
    width: 100%;
  }
  .p-issues__head-title01 {
    margin-bottom: var(--size-8);
  }
  .p-issues__content-en {
    right: -39%;
    top: 10%;
  }
  .p-issues__content-item {
    width: calc(100vw - 25vw - var(--size-24));
    margin-bottom: var(--size-48);
  }
  .p-issues__content-item-en {
    font-size: var(--size-11);
  }
  .p-issues__content-item-en::after {
    margin-left: var(--size-16);
  }
  .p-issues__content-item-text {
    margin-top: var(--size-48);
  }
  .p-issues__content-item-text-title {
    font-size: var(--size-21);
  }
  .p-issues__content-item-text-des {
    margin-top: var(--size-16);
    font-size: var(--size-13);
  }

  /* solutions */
  .p-solutions__head-title01 {
    background: inherit;
    margin-bottom: var(--size-8);
    /* line-height: 1.7; */
  }
  .p-solutions__head-title01-1 {
    display: inline-block;
    margin-bottom: var(--size-14);
    /* background: url(img/icon/text_bg_issues01.png) no-repeat; */
  }
  .p-solutions__head-title01-2 {
    display: inline-block;
    /* background: url(img/icon/text_bg_issues01.png) no-repeat; */
  }
  .p-solutions__head-title02 {
    /* background: url(img/icon/text_bg_solutions02.png) no-repeat; */
  }
  .p-solutions__head-des {
    font-size: var(--size-13);
    margin: var(--size-48) 0 0 auto;
    width: 100%;
  }
  .p-solutions__content {
    margin-top: var(--size-48);
  }
  .p-solutions__content-en {
    left: 0;
    top: -8%;
  }
  .p-solutions__content-item01 {
    margin: 0 auto var(--size-24);
  }
  .p-solutions__content-item02 {
    margin: 0 auto var(--size-24);
  }
  .p-solutions__content-item03 {
    margin: 0 auto;
  }

  /* team */
  .p-team__title {
    margin: 0 auto 0 0;
  }
  .p-team__head-des {
    margin-top: var(--size-48);
    font-size: var(--size-13);
    width: 100%;
  }
  .p-team__head-title01 {
    background: inherit;
    margin-bottom: var(--size-8);
    /* line-height: 1.7; */
  }
  .p-team__head-title01-1 {
    display: inline-block;
    margin-bottom: var(--size-14);
    /* background: url(img/icon/text_bg_team02.png) no-repeat; */
  }
  .p-team__head-title01-2 {
    display: inline-block;
    /* background: url(img/icon/text_bg_team02.png) no-repeat; */
  }
  .p-team__head-title02 {
    /* background: url(img/icon/text_bg_team02.png) no-repeat; */
  }

  /* workflow */
  .p-workflow__head-title01 {
    background: inherit;
    margin-bottom: var(--size-8);
    /* line-height: 1.7; */
  }
  .p-workflow__head-title01-1 {
    display: inline-block;
    margin-bottom: var(--size-14);
    /* background: url(img/icon/text_bg_workflow02.png) no-repeat; */
  }
  .p-workflow__head-title01-2 {
    display: inline-block;
    /* background: url(img/icon/text_bg_workflow02.png) no-repeat; */
  }
  .p-workflow__head-title02 {
    /* background: url(img/icon/text_bg_workflow02.png) no-repeat; */
  }
  .p-workflow__head-des {
    font-size: var(--size-13);
    margin: var(--size-48) 0 0 auto;
    width: 100%;
  }
  .p-workflow__content-en {
    top: 72%;
    right: -64%;
  }
  .p-workflow__content-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--size-24);
  }
  .p-workflow__content-item-container {
    width: 78.5%;
    width: calc(75vw - var(--size-24));
    border-radius: var(--size-16) var(--size-16) 0 0;
    padding: var(--size-24);
    margin: 0 0 0 auto;
  }
  .p-workflow__content-item-container-en {
    font-size: var(--size-11);
  }
  .p-workflow__content-item-container-title {
    font-size: var(--size-19);
    margin-top: var(--size-4);
  }
  .p-workflow__content-item-container-des {
    margin-top: var(--size-8);
    font-size: var(--size-13);
  }
  .p-workflow__content-item-container-list {
    gap: var(--size-8);
    margin-top: var(--size-16);
  }
  .p-workflow__content-item-container-item {
    padding-left: var(--size-16);
    font-size: var(--size-15);
  }
  .p-workflow__content-item-container-item::before {
    width: var(--size-12);
    height: var(--size-12);
    background-size: var(--size-12) var(--size-12);
  }

  /* faq */
  .p-faq {
    padding-bottom: var(--size-80);
  }
  .p-faq__content {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .p-faq__content-list {
    width: 100%;
  }
  .p-faq__content-item {
    padding: var(--size-24) 0;
  }
  .p-faq__content-item-q {
    gap: var(--size-16);
  }
  .p-faq__content-item-q-text {
    gap: var(--size-8);
  }
  .p-faq__content-item-q-en {
    font-size: var(--size-24);
  }
  .p-faq__content-item-q-title {
    font-size: var(--size-15);
  }
  .p-faq__content-item-a {
    transition: 0.3s cubic-bezier(0.25,1,0.5,1);
    font-size: var(--size-13);
  }
  .p-faq__content-item.is-open .p-faq__content-item-a {
    padding-top: var(--size-24);
  }

  /* creative */
  .p-creative {
    padding-bottom: var(--size-128);
  }
  .p-creative__des {
    font-size: var(--size-13);
    margin-top: var(--size-32);
  }
  .p-creative__list {
    margin-top: var(--size-32);
  }
  .p-creative__bg-gray {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .p-creative__btn-wrapper {
    padding-top: var(--size-32);
  }

  /* contact */
  .p-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: var(--size-48);
  }
  .p-contact__head-title01 {
    /* background: url(img/icon/text_bg_contact01.png) no-repeat; */
    margin-bottom: var(--size-8);
  }
  .p-contact__head-title02 {
    background: inherit;
    /* line-height: 1.7; */
  }
  .p-contact__head-title02-1 {
    display: inline-block;
    margin-bottom: var(--size-14);
    /* background: url(img/icon/text_bg_contact01.png) no-repeat; */
  }
  .p-contact__head-title02-2 {
    display: inline-block;
    /* background: url(img/icon/text_bg_contact01.png) no-repeat; */
  }
  .p-contact__des {
    font-size: var(--size-13);
    margin-top: var(--size-24);
  }
  .p-contact__btn {
    width: 100%;
    height: var(--size-64);
    border-radius: var(--size-8);
  }
  .p-contact__btn-icon {
    width: var(--size-16);
    height: var(--size-16);
    margin-right: var(--size-4);
  }
  .p-contact__btn-text {
    font-size: var(--size-15);
  }

  /* お問い合わせ フォーム */
  .l-contact-lower {
    width: 100%;
    margin: var(--size-192) auto;
    padding: 0 var(--size-24);
  }
  .p-contact-lower__des {
    font-size: var(--size-13);
    margin-top: var(--size-24);
  }
  .p-contact__form {
    margin-top: var(--size-96);
  }
  .p-contact__form dl {
    padding-top: var(--size-48);
  }
  .p-contact__form dt p {
    gap: var(--size-4);
    margin-bottom: var(--size-16);
    font-size: var(--size-16);
  }
  .p-contact__form input[type=text] {
    padding: var(--size-16);
    font-size: var(--size-16);
  }
  .p-contact__form input[type=tel] {
    padding: var(--size-16);
    font-size: var(--size-16);
  }
  .p-contact__form input[type=email] {
    padding: var(--size-16);
    font-size: var(--size-16);
  }
  .p-contact__form select {
    padding: var(--size-16);
    font-size: var(--size-16);
  }
  .p-contact__form textarea {
    padding: var(--size-16);
    font-size: var(--size-16);
  }
  .p-contact__form-checkbox .wpcf7-checkbox {
    display: block;
  }
  .p-contact__form-checkbox .wpcf7-checkbox .wpcf7-list-item {
    display: block;
  }
  /* .p-contact__form-checkbox {
    display: block;
  } */
  .p-contact__form-checkbox label {
		display: block;
		margin-bottom: var(--size-8);
	}
  .p-contact__form-checkbox label span {
    padding-left: var(--size-16);
    font-size: var(--size-16);
  }
  .p-contact__form-checkbox label span::before {
    width: var(--size-8);
    height: var(--size-8);
  }
  .p-contact__form-checkbox label span::after {
    width: var(--size-4);
    height: var(--size-4);
    left: 3px;
  }
  .p-contact__form-btn {
    margin-top: var(--size-24);
  }
  .p-contact__form-btn label {
    padding-left: var(--size-16);
    font-size: var(--size-16);
  }
  .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::before {
    width: var(--size-8);
    height: var(--size-8);
  }
  .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label::after {
    width: var(--size-4);
    height: var(--size-4);
    left: var(--size-3);
  }
  /* .p-contact__form-btn label::before {
    width: var(--size-8);
    height: var(--size-8);
  }
  .p-contact__form-btn label::after {
    width: var(--size-4);
    height: var(--size-4);
    left: var(--size-2);
  } */
  .p-contact__form .req {
    font-size: var(--size-11);
    padding: var(--size-2) var(--size-4);
  }
  .p-contact__btn-prev {
    margin: var(--size-48) auto 0;
  }
  .p-contact__form-submit input {
    margin-top: var(--size-48);
    padding: var(--size-16);
    font-size: var(--size-17);
  }
  .confirm_area .p-contact__form-submit input {
    margin-top: var(--size-16);
  }
}