@charset "UTF-8";
/*------------------
color設定
-------------------*/
:root {
  --main: #3f6cab;
  --sub: #55afcb;
  --light_blue_main: #e3ecf8;
  --black: #222;
  --gray: #dedede;
  --base-deep-dark: #2f2719;
  --white: #fff;
  --base-right: #f4f4f4;
  --base-gray: #aaaaa6;
  --corp-orange: #f59126;
  --corp-main: #11b1c7;
  --corp-sub: #59cfd4;
  --corp-light: #e8f7fa;
  --corp-yellow: #f9d73d;
  --accent-orange: #e67b3c;
}

/*------------------
googleフォント指定
-------------------*/
/*------------------
break point
-------------------*/
/*------------------
スマホ倍率
-------------------*/
/*------------------
header固定時の高さ指定　PC SP ※header fix時に使用
-------------------*/
html {
  scroll-padding-top: 108px;
}
@media screen and (max-width: 1025px) {
  html {
    scroll-padding-top: 60px;
  }
}

/*------------------
よく使う横幅
-------------------*/
/*------------------
coming soon時　※jsの変更も必要
-------------------*/
/* ===========================================
* 追記
* ======================================== */
a {
  display: block;
  color: #111;
  text-decoration: none;
}

@media screen and (min-width: 960px) {
  a {
    transition: 0.2s;
  }
  a:hover {
    opacity: 0.5;
  }
}
.a-text-underline {
  position: relative;
  text-decoration: none;
  transition: 0.3s;
}

.a-text-underline::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: #000;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

.a-text-underline:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.a-text-underline__right {
  position: relative;
  text-decoration: none;
  transition: 0.3s;
}

.a-text-underline__right::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: #000;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

.a-text-underline__right:hover::before {
  transform-origin: right top;
  transform: scale(1, 1);
}

.a-text-underline__center {
  position: relative;
  text-decoration: none;
  transition: 0.3s;
}

.a-text-underline__center::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: #000;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}

.a-text-underline__center:hover::before {
  transform-origin: center top;
  transform: scale(1, 1);
}

.a-text-marker {
  position: relative;
  z-index: 1;
  padding: 0;
  text-decoration: none;
}

.a-text-marker::before {
  background: #000;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
  z-index: -1;
}

.a-text-marker:hover {
  color: #fff;
}

.a-text-marker:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.a-text-move__right {
  display: inline-block;
  text-decoration: none;
}

.a-text-move__right:hover {
  transform: translateX(5px);
}

.a-text-move__top {
  display: inline-block;
  text-decoration: none;
}

.a-text-move__top:hover {
  transform: translateY(-5px);
}

.a-text-gradient {
  display: inline-block;
  color: #000;
  text-decoration: none;
  color: transparent;
  background: linear-gradient(to right, #000 50%, #000 50%) 100%;
  background-clip: text;
  background-size: 200% 100%;
  transition: background-position 0.4s;
}

.a-text-gradient:hover {
  background-position: 0 100%;
}

/*--------------------
menu
--------------------*/
.a-menubtn {
  position: relative;
  background: #f00;
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 40px;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 1025px) {
  .a-menubtn {
    margin: 0;
    width: 30px;
    height: 30px;
  }
}
.a-menubtn span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  position: absolute;
  left: 10px;
  width: 20px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
}
@media screen and (max-width: 1025px) {
  .a-menubtn span {
    left: 7px;
    width: 16px;
  }
}
.a-menubtn span:nth-of-type(1) {
  top: 14px;
}
@media screen and (max-width: 1025px) {
  .a-menubtn span:nth-of-type(1) {
    top: 9px;
  }
}
.a-menubtn span:nth-of-type(2) {
  top: 19px;
}
@media screen and (max-width: 1025px) {
  .a-menubtn span:nth-of-type(2) {
    top: 14px;
  }
}
.a-menubtn span:nth-of-type(3) {
  top: 24px;
}
@media screen and (max-width: 1025px) {
  .a-menubtn span:nth-of-type(3) {
    top: 19px;
  }
}

.a-menubtn.active span:nth-of-type(1) {
  transform: translateY(5px) rotate(-45deg);
}
.a-menubtn.active span:nth-of-type(2) {
  opacity: 0;
}
.a-menubtn.active span:nth-of-type(3) {
  transform: translateY(-5px) rotate(45deg);
}

/*--------------------
faq
--------------------*/
.a-plus {
  cursor: pointer;
  position: relative;
}

.a-plus::before,
.a-plus::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 3px;
  background-color: #f00;
  position: absolute;
  right: 20px;
  top: 55%;
  transform: translateY(-50%);
  transition: opacity 0.5s;
}

.a-plus::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.5s;
}

.a-plus.show::before {
  opacity: 0;
}

.a-plus.show::after {
  transform: translateY(-50%) rotate(180deg);
}

.a-faq__q {
  cursor: pointer;
}

.a-faq__a {
  display: none;
}

.l-header {
  width: 100%;
  max-width: 500px;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 50%;
  translate: -50% 0;
  pointer-events: none;
}
@media screen and (min-width: 1025px) {
  .l-header {
    display: none;
  }
}
.l-header__inner {
  height: clamp(3.75rem, 2.4204545455rem + 5.4545454545vw, 4.125rem);
  padding: clamp(0.625rem, 0.4034090909rem + 0.9090909091vw, 0.6875rem) clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 100;
  pointer-events: all;
}
.l-header__logo {
  width: clamp(8.375rem, 5.4056818182rem + 12.1818181818vw, 9.2125rem);
}
.l-header__box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.l-header__btn {
  width: clamp(6.75rem, 4.3568181818rem + 9.8181818182vw, 7.425rem);
  height: clamp(1.75rem, 1.1295454545rem + 2.5454545455vw, 1.925rem);
}
.l-header__btn__link {
  width: 100%;
  height: 100%;
  border-radius: 1000px;
  background: var(--base-deep-dark);
  color: var(--white);
  font-size: clamp(0.75rem, 0.4840909091rem + 1.0909090909vw, 0.825rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-header__hamb {
  width: clamp(2.25rem, 1.4522727273rem + 3.2727272727vw, 2.475rem);
  cursor: pointer;
}
.l-header__hamb.js-active .l-header__hamb__top {
  animation: active-hamb-top 0.75s forwards;
}
.l-header__hamb.js-active .l-header__hamb__bottom {
  animation: active-hamb-bottom 0.75s forwards;
}
.l-header__hamb__box {
  width: 100%;
  height: clamp(0.8125rem, 0.6387032086rem + 0.7130124777vw, 1.3125rem);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.l-header__hamb__top, .l-header__hamb__bottom {
  width: 100%;
  height: 1.5px;
  background-color: #11b1c6;
  position: absolute;
}
.l-header__hamb__top {
  animation: hamb-top 0.75s forwards;
}
.l-header__hamb__bottom {
  animation: hamb-bottom 0.75s forwards;
}
@keyframes hamb-top {
  0% {
    transform: translateY(0) rotate(15deg);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(3px) rotate(0);
  }
}
@keyframes hamb-bottom {
  0% {
    transform: translateY(0) rotate(-15deg);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(-3px) rotate(0);
  }
}
@keyframes active-hamb-top {
  0% {
    transform: translateY(3px) rotate(0);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(15deg);
  }
}
@keyframes active-hamb-bottom {
  0% {
    transform: translateY(-3px) rotate(0);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(-15deg);
  }
}
.l-header__hamb__text {
  color: #11b1c6;
  font-family: "Roboto", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(0.75rem, 0.4840909091rem + 1.0909090909vw, 0.825rem);
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
.l-header__floating {
  width: 100%;
  padding: 0.625rem clamp(0.625rem, 0.4034090909rem + 0.9090909091vw, 0.6875rem);
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: all;
}
@media screen and (min-width: 1025px) {
  .l-header__floating {
    display: none;
  }
}
.l-header__floating__item-s {
  width: clamp(4.375rem, 2.8238636364rem + 6.3636363636vw, 4.8125rem);
  height: clamp(4.375rem, 2.8238636364rem + 6.3636363636vw, 4.8125rem);
  padding: 0 1rem;
  border-radius: 50%;
  background: var(--corp-main);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-header__floating__item-m {
  height: clamp(4.375rem, 2.8238636364rem + 6.3636363636vw, 4.8125rem);
  padding: 0 1rem;
  border-radius: 100px;
  background: #06c755;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.l-nav {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  padding: clamp(6.25rem, 4.0340909091rem + 9.0909090909vw, 6.875rem) clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem) clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
  background-color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transition: 0.3s;
  pointer-events: all;
}
.l-nav::-webkit-scrollbar {
  display: none;
}
.l-nav.js-active {
  opacity: 1;
  visibility: visible;
}
.l-nav__gnav {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
}
.l-nav__gnav__item {
  padding: 0.9375rem 0;
  border-bottom: 1px solid var(--gray);
}
.l-nav__gnav__link {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  padding-right: 2.125rem;
  color: var(--black);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.72px;
  position: relative;
}
.l-nav__gnav__link::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: url(/wp-content/themes/moving-asn/assets/img/common/ic_arrow-white.svg) center/10px no-repeat;
  background-color: var(--corp-orange);
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
}
.l-nav__gnav__link.c-accordion__btn {
  cursor: pointer;
}
.l-nav__gnav__link.c-accordion__btn::after {
  width: 1rem;
  height: 0.09375rem;
  margin-right: 0.25rem;
  border-radius: 1000px;
  background: var(--corp-orange);
}
.l-nav__gnav__link.c-accordion__btn span {
  width: 1rem;
  height: 0.09375rem;
  margin-right: 0.25rem;
  border-radius: 1000px;
  background: var(--corp-orange);
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  rotate: 90deg;
  transform: 0.3s;
}
.l-nav__gnav__link.c-accordion__btn.js-active span {
  rotate: 0deg;
}
.l-nav__gnav__slist {
  margin-left: 1.25rem;
}
.l-nav__gnav__sitem {
  margin-top: 0.625rem;
}
.l-nav__gnav__slink {
  padding-top: 0.4375rem;
  padding-bottom: 0.4375rem;
  padding-right: 2.125rem;
  position: relative;
}
.l-nav__gnav__slink::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: url(/wp-content/themes/moving-asn/assets/img/common/ic_arrow-white.svg) center/10px no-repeat;
  background-color: var(--corp-orange);
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
}
.l-nav__btnarea {
  margin-bottom: 2.5rem;
}
.l-nav__btnarea > *:last-child {
  margin-bottom: 0;
}
.l-nav__btnarea__btn {
  margin-bottom: 0.625rem;
}
.l-nav__bnrarea {
  margin-bottom: 1.875rem;
}
.l-nav__linkarea {
  padding: 0 5%;
  margin-bottom: 1.875rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
}
.l-nav__linkarea:has(.u-bold) {
  margin-bottom: 0.9375rem;
}
.l-nav__linkarea__ttl {
  margin-bottom: clamp(0.9375rem, 0.6051136364rem + 1.3636363636vw, 1.03125rem);
  color: #006db1;
  font-size: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.2px;
  text-align: center;
}
.l-nav__linkarea__link {
  font-size: 0.8125rem;
  line-height: 1.25;
  letter-spacing: 0.52px;
}
@media screen and (min-width: 1025px) {
  .l-nav__linkarea__link:hover {
    opacity: 0.5;
  }
}
.l-nav__linkarea__link[target=_blank]::after {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  margin-left: 4px;
  background: url(/wp-content/themes/moving-asn/assets/img/common/ic_blank-blue.svg) center/contain no-repeat;
}
.l-nav__linkarea__link.u-bold {
  font-weight: 500;
}
.l-nav__linkarea__link.u-bold[target=_blank]::after {
  display: none;
}
.l-nav__snsarea {
  margin-bottom: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
}
.l-nav__snsarea__item {
  width: 2.375rem;
  height: 2.375rem;
  transition: 0.3s;
}
.l-nav__snsarea__link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .l-nav__snsarea__link:hover {
    opacity: 0.5;
  }
}
.l-nav__copy {
  text-align: center;
}
.l-nav__copy small {
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.4px;
}

.l-footer {
  padding: 0 0 12.5rem;
}
.l-footer__head {
  position: relative;
  z-index: 1;
}
.l-footer__head__text {
  width: clamp(22.0625rem, 14.2403409091rem + 32.0909090909vw, 24.26875rem);
  margin: 0 auto 0.5rem;
}
.l-footer__head__img {
  width: 100%;
  aspect-ratio: 2/1;
}
.l-footer__btnarea {
  padding: 3.75rem 1.25rem;
  margin-top: -2.5rem;
  background: var(--corp-main);
  border-radius: 48px;
}
.l-footer__btnarea > *:last-child {
  margin-bottom: 0;
}
.l-footer__btnarea__btn {
  margin-bottom: 0.625rem;
}
.l-footer__body {
  padding: 3.75rem 1.25rem 0;
}
.l-footer__logo {
  width: clamp(17.3125rem, 11.1744318182rem + 25.1818181818vw, 19.04375rem);
  margin: 0 auto 1.875rem;
}
.l-footer__nav {
  padding: 0 11%;
  margin-bottom: 1.875rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
}
.l-footer__nav__link {
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.64px;
}
.l-footer__bnrarea {
  margin-bottom: 1.875rem;
}
.l-footer__linkarea {
  padding: 0 5%;
  margin-bottom: 1.875rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
}
.l-footer__linkarea:has(.u-bold) {
  margin-bottom: 0.9375rem;
}
.l-footer__linkarea__ttl {
  margin-bottom: clamp(0.9375rem, 0.6051136364rem + 1.3636363636vw, 1.03125rem);
  color: #006db1;
  font-size: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.2px;
  text-align: center;
}
.l-footer__linkarea__link {
  font-size: 0.8125rem;
  line-height: 1.25;
  letter-spacing: 0.52px;
}
@media screen and (min-width: 1025px) {
  .l-footer__linkarea__link:hover {
    opacity: 0.5;
  }
}
.l-footer__linkarea__link[target=_blank]::after {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  margin-left: 4px;
  background: url(/wp-content/themes/moving-asn/assets/img/common/ic_blank-blue.svg) center/contain no-repeat;
}
.l-footer__linkarea__link.u-bold {
  font-weight: 500;
}
.l-footer__linkarea__link.u-bold[target=_blank]::after {
  display: none;
}
.l-footer__snsarea {
  margin-bottom: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.875rem;
}
.l-footer__snsarea__item {
  width: 2.375rem;
  height: 2.375rem;
  transition: 0.3s;
}
.l-footer__snsarea__link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .l-footer__snsarea__link:hover {
    opacity: 0.5;
  }
}
.l-footer__copy {
  text-align: center;
}
.l-footer__copy small {
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.4px;
}

@media screen and (min-width: 1025px) {
  .l-pc__left {
    width: calc((100% - 31.25rem) / 2);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
  }
  .l-pc__left__logo {
    width: min(21.5608465608vw, 20.375rem);
    margin: 3.125rem auto 0;
  }
  .l-pc__left__logo img {
    width: 100%;
    object-fit: cover;
  }
  .l-pc__left__wrap {
    width: min(21.5608465608vw, 20.375rem);
    position: absolute;
    left: 50%;
    bottom: 3.125rem;
    translate: -50% 0;
  }
  .l-pc__left__bnr {
    margin-bottom: 3.125rem;
  }
  .l-pc__left__tel {
    margin-bottom: 3.125rem;
  }
  .l-pc__left__link:first-of-type {
    margin-bottom: 0.625rem;
    border: 1px solid var(--white);
    background: var(--corp-orange);
    color: var(--white);
  }
  .l-pc__left__link:first-of-type::after {
    background-image: url(/wp-content/themes/moving-asn/assets/img/common/ic_arrow-orange.svg);
    background-color: var(--white);
  }
  .l-pc__right {
    width: calc((100% - 31.25rem) / 2);
    height: 100vh;
    padding: min(3.125rem, 3.3068783069vw);
    display: grid;
    grid-template-rows: 1fr auto;
    row-gap: min(3.125rem, 3.3068783069vw);
    position: fixed;
    top: 0;
    right: 0;
  }
  .l-pc__right__wrap {
    width: min(25.375rem, 100%);
    padding: min(2.5rem, 2.6455026455vw);
    margin: 0 auto;
    border-radius: 12px;
    background: var(--white);
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .l-pc__right__wrap::-webkit-scrollbar {
    display: none;
  }
  .l-pc__right__btn {
    width: 100%;
    height: 3.125rem;
    margin-bottom: 2.5rem;
    border-radius: 1000px;
    background: var(--base-deep-dark);
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.64px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .l-pc__right__bottom {
    width: min(25.375rem, 100%);
    padding-left: min(2.5rem, 2.6455026455vw);
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .l-pc__right__ttl {
    margin-bottom: 1rem;
    color: #006db1;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.2px;
  }
  .l-pc__right__linkarea {
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
  }
  .l-pc__right__linkarea__link {
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.6px;
  }
  .l-pc__right__slinkarea {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .l-pc__right__slinkarea__link {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.56px;
  }
}

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

body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: var(--black);
  font-style: normal;
  font-feature-settings: "palt";
}

li {
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* contact */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

@media screen and (min-width: 1025px) {
  .only_sp {
    display: none !important;
  }
}

.only_pc {
  display: none !important;
}
@media screen and (min-width: 1025px) {
  .only_pc {
    display: block !important;
  }
}

/* ===========================================
* component
* ======================================== */
body {
  background-color: var(--base-right);
}

.container {
  max-width: 500px;
  margin: 0 auto;
  background-color: var(--white);
  overflow: hidden;
}

.l-main {
  padding-top: clamp(3.75rem, 2.4204545455rem + 5.4545454545vw, 4.125rem);
}
@media screen and (min-width: 1025px) {
  .l-main {
    padding-top: 0;
  }
}

.c-news {
  padding: clamp(0.625rem, 0.4034090909rem + 0.9090909091vw, 0.6875rem) clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  background: var(--corp-light);
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
.c-news__category {
  color: var(--corp-main);
  font-size: clamp(0.75rem, 0.4840909091rem + 1.0909090909vw, 0.825rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.48px;
}
.c-news__date {
  color: var(--base-gray);
  font-family: "Roboto", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(0.75rem, 0.4840909091rem + 1.0909090909vw, 0.825rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.48px;
}
.c-news__ttl {
  font-size: clamp(0.75rem, 0.4840909091rem + 1.0909090909vw, 0.825rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.48px;
  flex: 1;
}

.c-bread {
  width: 100%;
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
}
.c-bread__list {
  width: fit-content;
  padding: 0.625rem 1.25rem;
  border-radius: 0 0 12px 0;
  background: var(--base-right);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.c-bread__item {
  color: var(--base-deep-dark);
  font-size: clamp(0.625rem, 0.4034090909rem + 0.9090909091vw, 0.6875rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.6px;
  text-align: justify;
}
.c-bread__link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.c-bread__link::after {
  content: "";
  display: block;
  width: 0.53125rem;
  height: 0.0625rem;
  background-color: var(--base-deep-dark);
  transform: rotate(-45deg);
}

.c-btn {
  padding: clamp(0.9375rem, 0.6051136364rem + 1.3636363636vw, 1.03125rem) clamp(1.875rem, 1.2102272727rem + 2.7272727273vw, 2.0625rem);
  border-radius: 100px;
  border: 1px solid var(--gray);
  background: var(--white);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06);
  color: var(--black);
  font-feature-settings: "palt" on;
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.64px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.c-btn::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: url(/wp-content/themes/moving-asn/assets/img/common/ic_arrow-white.svg) center/0.625rem no-repeat;
  background-color: var(--corp-orange);
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  margin-right: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.c-btn-main {
  border-color: var(--corp-orange);
  background: var(--corp-orange);
  color: var(--white);
  font-size: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.c-btn-main::after {
  background-image: url(/wp-content/themes/moving-asn/assets/img/common/ic_arrow-orange.svg);
  background-color: var(--white);
}
.c-btn-high {
  width: 100%;
  padding-top: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  padding-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.c-btn-high img {
  height: clamp(2.3125rem, 1.4926136364rem + 3.3636363636vw, 2.54375rem);
  margin: 0 auto;
  object-fit: contain;
}

.c-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  color: var(--corp-main);
  font-size: clamp(1.75rem, 1.1295454545rem + 2.5454545455vw, 1.925rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 3.36px;
  text-align: center;
}
.c-ttl-en {
  font-family: "Roboto", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(0.875rem, 0.5647727273rem + 1.2727272727vw, 0.9625rem);
  letter-spacing: 1.12px;
  text-transform: uppercase;
}

.c-ttl__line {
  padding-top: clamp(0.625rem, 0.4034090909rem + 0.9090909091vw, 0.6875rem);
  padding-bottom: clamp(0.625rem, 0.4034090909rem + 0.9090909091vw, 0.6875rem);
  border-top: 2px solid var(--corp-orange, #f59126);
  border-bottom: 2px solid var(--corp-orange, #f59126);
  background: var(--white);
  color: var(--corp-main);
  text-align: center;
  font-size: clamp(1.375rem, 0.8875rem + 2vw, 1.5125rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 1.76px;
  position: relative;
}
.c-ttl__line::before, .c-ttl__line::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--white);
  position: absolute;
  left: 0;
}
.c-ttl__line::before {
  top: -3px;
}
.c-ttl__line::after {
  bottom: -3px;
}

.c-tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.c-tag {
  padding: 0.5rem 0.625rem;
  border-radius: 100px;
  border: 1px solid var(--gray);
  background: var(--white);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.56px;
}
.c-tag.is-active {
  border: 1px solid var(--white);
  background: var(--corp-orange);
  color: var(--white);
}

.c-icon {
  display: flex;
  align-items: center;
  position: relative;
}
.c-icon__dot {
  align-items: flex-start;
}
.c-icon__dot::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: clamp(0.5rem, 0.3227272727rem + 0.7272727273vw, 0.55rem);
  margin-right: 0.3125rem;
  background-color: var(--corp-yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

.c-arrowbox {
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* 矢印コンテナにFlexboxを適用 */
.c-arrowbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  pointer-events: none;
  /* ドット */
  /* アクティブなドット */
  /* 矢印 */
}
.c-arrowbox .slick-dots {
  width: 94px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  order: 2;
}
.c-arrowbox .slick-dots li {
  position: relative;
  width: 6px;
  height: 6px;
  cursor: pointer;
}
.c-arrowbox .slick-dots button {
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 1;
}
.c-arrowbox .slick-dots li.slick-active button {
  background: var(--white);
}
.c-arrowbox .slide-arrow {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  pointer-events: all;
  cursor: pointer;
}
.c-arrowbox .slide-arrow::after {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.c-arrowbox .prev-arrow {
  order: 1;
}
.c-arrowbox .prev-arrow::after {
  background: url(/wp-content/themes/moving-asn/assets/img/common/ic_arrow-blue.svg) center/contain no-repeat;
  rotate: 180deg;
}
.c-arrowbox .next-arrow {
  order: 3;
}
.c-arrowbox .next-arrow::after {
  background: url(/wp-content/themes/moving-asn/assets/img/common/ic_arrow-blue.svg) center/contain no-repeat;
}

.c-accordion__btn {
  width: 100%;
  position: relative;
}
.c-accordion__btn.js-active .c-accordion__icon::after {
  rotate: 0deg;
}
.c-accordion__icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--corp-main);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
}
.c-accordion__icon::before, .c-accordion__icon::after {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.09375rem;
  background-color: var(--white);
  border-radius: 1000px;
  position: absolute;
  transition: 0.3s;
}
.c-accordion__icon::after {
  rotate: 90deg;
}

.c-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.c-grid__item img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: clamp(0.375rem, 0.2420454545rem + 0.5454545455vw, 0.4125rem);
  margin-bottom: 0.625rem;
}
.c-grid__text {
  color: var(--white);
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.64px;
  text-align: center;
}

.c-card {
  width: 100%;
  padding: clamp(1.875rem, 1.2102272727rem + 2.7272727273vw, 2.0625rem) clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  border-radius: 6px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.c-card__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
}
.c-card__top__accent {
  display: inline-block;
  padding: 0.3125rem 0.625rem;
  border-radius: 100px;
  background: var(--corp-orange);
  color: var(--white);
  font-family: "Roboto", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(0.9375rem, 0.6051136364rem + 1.3636363636vw, 1.03125rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.6px;
}
.c-card__top__ttl {
  color: var(--corp-main);
  font-size: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 1.6px;
}
.c-card__img {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 6px;
  background-color: #eee;
  overflow: hidden;
}
.c-card__text {
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.96px;
  text-align: justify;
}

.c-modal {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.c-modal.is-active {
  opacity: 1;
  visibility: visible;
}
.c-modal__body {
  width: clamp(22.0625rem, 19.7379679144rem + 9.5365418895vw, 28.75rem);
  padding: 1.875rem;
  border-radius: 6px;
  border: 1px solid var(--gray);
  background: var(--white);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06);
  position: absolute;
  pointer-events: all;
}
.c-modal__close {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--corp-main);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  rotate: 45deg;
  cursor: pointer;
}
.c-modal__close::before, .c-modal__close::after {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.09375rem;
  background-color: var(--white);
  border-radius: 100px;
  position: absolute;
}
.c-modal__close::after {
  rotate: 90deg;
}
.c-modal__logo {
  width: 12.5rem;
  margin: 0 auto 1.25rem;
}
.c-modal__bnr {
  width: 17.375rem;
  margin: 0 auto 1.25rem;
}
.c-modal__btn {
  width: 100%;
  padding: 0.75rem 2rem;
  border-radius: 100px;
  background: var(--corp-main);
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.32px;
  text-align: center;
}

.c-undercolor {
  display: inline;
  background: rgba(249, 215, 61, 0.4);
  font-weight: 500;
}

.c-bold {
  font-weight: 500;
}

.c-circle {
  border-radius: 50%;
  overflow: hidden;
}

.p-home {
  background: var(--base-right);
}
.p-home-mv {
  /* --- アクティブなドット（内側を塗る） --- */
}
.p-home-mv__slide {
  width: 100%;
}
.p-home-mv__item {
  width: 100%;
  min-height: 490px;
  aspect-ratio: 4/5;
  background: center/cover no-repeat;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.p-home-mv__item.slick-center .p-home-mv__btn, .p-home-mv__item.slick-active .p-home-mv__btn {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}
.p-home-mv .slick-list {
  margin-bottom: 20px;
}
.p-home-mv .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.p-home-mv .slick-dots li {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}
.p-home-mv .slick-dots li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--white);
  position: absolute;
  z-index: 4;
}
.p-home-mv .slick-dots button {
  width: 6px;
  height: 6px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: var(--gray);
  color: transparent;
  position: absolute;
  z-index: 5;
}
.p-home-mv .slick-dots li.slick-active {
  background-color: var(--corp-main);
}
.p-home-mv .slick-dots li.slick-active .dot-left,
.p-home-mv .slick-dots li.slick-active .dot-right {
  width: 20px;
  height: 20px;
  background-color: var(--gray);
  position: absolute;
  top: 0;
}
.p-home-mv .slick-dots li.slick-active .dot-left {
  transform-origin: right 10px;
  left: -10px;
  animation: circleBefore 4s linear forwards;
  z-index: 2;
}
.p-home-mv .slick-dots li.slick-active .dot-right {
  transform-origin: left 10px;
  left: 10px;
  animation: circleAfter 4s linear forwards;
  z-index: 3;
}
@keyframes circleBefore {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
@keyframes circleAfter {
  0% {
    transform: rotate(0deg);
    background: var(--gray);
  }
  50% {
    transform: rotate(180deg);
    background: var(--gray);
  }
  50.01% {
    transform: rotate(360deg);
    background: var(--corp-main);
  }
  100% {
    transform: rotate(360deg);
    background: var(--corp-main);
  }
}
.p-home-mv .slick-dots li.slick-active button {
  background: var(--corp-main);
}
.p-home-intro {
  padding: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem) clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-home-intro__ttl {
  padding: clamp(0.625rem, 0.4034090909rem + 0.9090909091vw, 0.6875rem) 0;
  border-top: 1px solid var(--corp-main);
  border-bottom: 1px solid var(--corp-main);
  margin-bottom: clamp(1.875rem, 1.2102272727rem + 2.7272727273vw, 2.0625rem);
  color: var(--corp-main);
  text-align: center;
  font-size: clamp(1.75rem, 1.1295454545rem + 2.5454545455vw, 1.925rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 3.36px;
}
.p-home-intro__text {
  margin-bottom: clamp(1.875rem, 1.2102272727rem + 2.7272727273vw, 2.0625rem);
  font-size: clamp(1.125rem, 0.7261363636rem + 1.6363636364vw, 1.2375rem);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 1.08px;
  text-align: center;
}
.p-home-intro__text img {
  margin-top: 5px;
}
.p-home-service {
  padding: clamp(3.75rem, 2.4204545455rem + 5.4545454545vw, 4.125rem) clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem) clamp(6.75rem, 4.3568181818rem + 9.8181818182vw, 7.425rem);
  border-radius: clamp(3rem, 1.9363636364rem + 4.3636363636vw, 3.3rem) clamp(3rem, 1.9363636364rem + 4.3636363636vw, 3.3rem) 0 0;
  background: var(--corp-main);
  display: flex;
  flex-direction: column;
  row-gap: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
}
.p-home-service__ttl {
  color: var(--white);
}
.p-home-service__media {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.p-home-service__media__item {
  height: clamp(7rem, 4.5181818182rem + 10.1818181818vw, 7.7rem);
}
.p-home-service__media__link {
  width: 100%;
  height: 100%;
  border-radius: 0.375rem;
  border: 1px solid var(--gray);
  background: #fff;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06);
  display: flex;
  overflow: hidden;
}
.p-home-service__media__link::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: url(/wp-content/themes/moving-asn/assets/img/common/ic_arrow-white.svg) center/0.625rem no-repeat;
  background-color: var(--corp-orange);
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  right: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-home-service__media__link[target=_blank]::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: url(/wp-content/themes/moving-asn/assets/img/common/ic_blank-white.svg) center/0.625rem no-repeat;
  background-color: var(--corp-orange);
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  right: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-home-service__media__img {
  height: 100%;
  aspect-ratio: 1/1;
  background-color: #eee;
}
.p-home-service__media__ttl {
  width: 100%;
  padding-left: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  padding-right: clamp(4rem, 2.5818181818rem + 5.8181818182vw, 4.4rem);
  font-size: clamp(1.125rem, 0.7261363636rem + 1.6363636364vw, 1.2375rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1.08px;
  flex: 1;
}
.p-home-select__ttl {
  margin-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-home-select__tags {
  margin-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-home-select__tag {
  cursor: pointer;
}
.p-home-select__slide {
  width: 100vw;
  margin: 0 calc(50% - 50vw) clamp(2.5rem, 1.9786096257rem + 2.1390374332vw, 4rem);
  position: relative;
}
.p-home-select__slide .slick-list {
  margin-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-home-select__slide__item {
  width: clamp(18.3125rem, 11.8198863636rem + 26.6363636364vw, 20.14375rem);
  aspect-ratio: 3/4;
  margin: 0 10px;
  scale: 0.93;
  transition: 0.3s;
}
.p-home-select__slide__item.slick-center {
  scale: 1;
}
.p-home-option__ttl {
  margin-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-home-option__grid {
  margin-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-home-option__list {
  width: fit-content;
  margin: 0 auto clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.3125rem, 0.2017045455rem + 0.4545454545vw, 0.34375rem);
}
.p-home-option__item {
  color: var(--white);
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.64px;
}
.p-home-plan__ttl {
  margin-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-home-plan__bnr {
  width: 100%;
  aspect-ratio: 3/1;
  border-radius: 6px;
  background: #d9d9d9;
}
.p-home-reason {
  padding: clamp(3.75rem, 2.4204545455rem + 5.4545454545vw, 4.125rem) clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem) clamp(6.75rem, 4.3568181818rem + 9.8181818182vw, 7.425rem);
  margin-top: clamp(-3rem, -1.9363636364rem + -4.3636363636vw, -3.3rem);
  border-radius: clamp(3rem, 1.9363636364rem + 4.3636363636vw, 3.3rem) clamp(3rem, 1.9363636364rem + 4.3636363636vw, 3.3rem) 0 0;
  background: var(--corp-light);
}
.p-home-reason__ttl {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
}
.p-home-reason__cards {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-home-area {
  padding: clamp(3.75rem, 2.4204545455rem + 5.4545454545vw, 4.125rem) clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem) clamp(6.75rem, 4.3568181818rem + 9.8181818182vw, 7.425rem);
  margin-top: clamp(-3rem, -1.9363636364rem + -4.3636363636vw, -3.3rem);
  border-radius: clamp(3rem, 1.9363636364rem + 4.3636363636vw, 3.3rem) clamp(3rem, 1.9363636364rem + 4.3636363636vw, 3.3rem) 0 0;
  background: var(--white);
}
.p-home-area__ttl {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
}
.p-home-area__text {
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.96px;
  text-align: justify;
}
.p-home-area__pic {
  width: 100%;
  aspect-ratio: 353/345.32;
}
.p-home-voice {
  padding: clamp(3.75rem, 2.4204545455rem + 5.4545454545vw, 4.125rem) clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem) clamp(6.75rem, 4.3568181818rem + 9.8181818182vw, 7.425rem);
  margin-top: clamp(-3rem, -1.9363636364rem + -4.3636363636vw, -3.3rem);
  border-radius: clamp(3rem, 1.9363636364rem + 4.3636363636vw, 3.3rem) clamp(3rem, 1.9363636364rem + 4.3636363636vw, 3.3rem) 0 0;
  background: var(--corp-main);
}
.p-home-voice__ttl {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
  color: var(--white);
}
.p-home-voice__text {
  margin-bottom: clamp(0.625rem, 0.4034090909rem + 0.9090909091vw, 0.6875rem);
  color: var(--white);
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.96px;
  text-align: center;
}
.p-home-voice__list {
  width: fit-content;
  margin: 0 auto clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
}
.p-home-voice__item {
  color: var(--white);
  font-size: clamp(1.125rem, 0.7261363636rem + 1.6363636364vw, 1.2375rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.72px;
}
.p-home-voice__item.c-icon__dot::before {
  margin-top: clamp(0.625rem, 0.4034090909rem + 0.9090909091vw, 0.6875rem);
}
.p-home-voice__slide {
  width: 100vw;
  margin: 0 calc(50% - 50vw) clamp(2.5rem, 1.9786096257rem + 2.1390374332vw, 4rem);
  position: relative;
}
.p-home-voice__slide .slick-list {
  margin-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-home-voice__slide__item {
  width: clamp(17.0625rem, 11.0130681818rem + 24.8181818182vw, 18.76875rem);
  padding: clamp(1.875rem, 1.2102272727rem + 2.7272727273vw, 2.0625rem) clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  margin: 0 10px;
  border-radius: 12px;
  background-color: var(--white);
}
.p-home-voice__slide__top {
  margin-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-home-voice__slide__top > img {
  width: 4rem;
  height: 4rem;
  object-fit: cover;
}
.p-home-voice__slide__box {
  flex: 1;
}
.p-home-voice__slide__address {
  margin-bottom: clamp(0.625rem, 0.4034090909rem + 0.9090909091vw, 0.6875rem);
  font-size: clamp(0.9375rem, 0.6051136364rem + 1.3636363636vw, 1.03125rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.9px;
}
.p-home-voice__slide__date {
  color: var(--base-gray);
  font-family: "Roboto", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(0.8125rem, 0.5244318182rem + 1.1818181818vw, 0.89375rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.78px;
}
.p-home-voice__slide__btn {
  width: 1.5rem;
  height: 1.5rem;
}
.p-home-voice__slide__text {
  display: -webkit-box;
  margin-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  max-height: 5.625rem;
  font-size: clamp(0.9375rem, 0.6051136364rem + 1.3636363636vw, 1.03125rem);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.6px;
  text-align: justify;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.p-home-voice__slide__tags {
  justify-content: flex-start;
}
.p-home-voice__slide__tag {
  padding: 0.5rem;
  border: 1px solid var(--corp-orange);
  color: var(--corp-orange);
  font-size: 0.75rem;
  letter-spacing: 0.48px;
}
.p-home-voice__modal {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.3s;
  z-index: 10;
}
.p-home-voice__modal.is-active {
  opacity: 1;
  visibility: visible;
}
.p-home-voice__modal .p-home-voice__slide__item {
  width: clamp(22.0625rem, 19.7379679144rem + 9.5365418895vw, 28.75rem);
  height: 30rem;
  border-radius: 6px;
  border: 1px solid var(--gray);
  background: var(--white);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06);
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-home-voice__modal .p-home-voice__slide__item::-webkit-scrollbar {
  display: none;
}
.p-home-voice__modal .p-home-voice__slide__text {
  display: block;
  max-height: none;
  text-overflow: clip;
  -webkit-box-orient: horizontal;
  -webkit-line-clamp: none;
  overflow: visible;
}
.p-home-voice__modal .p-home-voice__slide__btn {
  rotate: 45deg;
}
.p-home-flow {
  padding: clamp(3.75rem, 2.4204545455rem + 5.4545454545vw, 4.125rem) clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem) clamp(6.75rem, 4.3568181818rem + 9.8181818182vw, 7.425rem);
  margin-top: clamp(-3rem, -1.9363636364rem + -4.3636363636vw, -3.3rem);
  border-radius: clamp(3rem, 1.9363636364rem + 4.3636363636vw, 3.3rem) clamp(3rem, 1.9363636364rem + 4.3636363636vw, 3.3rem) 0 0;
  background: var(--corp-sub);
}
.p-home-flow__btn {
  margin-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-home-flow__list {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.25rem;
}
.p-home-flow__item {
  height: clamp(3.5rem, 2.2590909091rem + 5.0909090909vw, 3.85rem);
  border-bottom: 1px solid var(--white);
}
.p-home-flow__link {
  width: 100%;
  height: 100%;
  padding-right: 2.125rem;
  color: var(--white);
  font-size: clamp(0.875rem, 0.5647727273rem + 1.2727272727vw, 0.9625rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.56px;
}
.p-home-flow__link::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: auto;
  background: url(/wp-content/themes/moving-asn/assets/img/common/ic_arrow-lightblue.svg) center/0.625rem no-repeat;
  background-color: var(--white);
  border-radius: 50%;
  position: absolute;
  right: 0;
}
.p-home-flow__slide {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.p-home-flow__slide .slick-slider {
  margin-bottom: clamp(1.8125rem, 1.1698863636rem + 2.6363636364vw, 1.99375rem);
}
.p-home-flow__slide__item {
  width: clamp(18.3125rem, 11.8198863636rem + 26.6363636364vw, 20.14375rem);
  height: clamp(9.125rem, 5.8897727273rem + 13.2727272727vw, 10.0375rem);
  margin: 0 clamp(0.3125rem, 0.2017045455rem + 0.4545454545vw, 0.34375rem);
}
.p-home-flow__slide__link {
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 6px;
  overflow: hidden;
}
.p-home-flow__slide__img {
  width: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.p-home-flow__slide__body {
  padding: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  background-color: var(--white);
  flex: 1;
}
.p-home-flow__slide__date {
  margin-bottom: clamp(0.5rem, 0.3227272727rem + 0.7272727273vw, 0.55rem);
  color: var(--base-gray);
  font-family: "Roboto", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(0.75rem, 0.4840909091rem + 1.0909090909vw, 0.825rem);
  font-weight: 500;
  line-height: 1;
  text-align: justify;
}
.p-home-flow__slide__text {
  font-size: clamp(0.8125rem, 0.5244318182rem + 1.1818181818vw, 0.89375rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.78px;
  text-align: justify;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.p-home-faq {
  padding: clamp(3.75rem, 2.4204545455rem + 5.4545454545vw, 4.125rem) clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem) clamp(6.75rem, 4.3568181818rem + 9.8181818182vw, 7.425rem);
  margin-top: clamp(-3rem, -1.9363636364rem + -4.3636363636vw, -3.3rem);
  border-radius: clamp(3rem, 1.9363636364rem + 4.3636363636vw, 3.3rem) clamp(3rem, 1.9363636364rem + 4.3636363636vw, 3.3rem) 0 0;
  background: var(--corp-light);
}
.p-home-faq__ttl {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
}
.p-home-faq__list {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
}
.p-home-faq__dttl {
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.96px;
}
.p-home-faq__sttl {
  margin-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  color: var(--corp-main);
  text-align: center;
  font-size: clamp(1.75rem, 1.1295454545rem + 2.5454545455vw, 1.925rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 2.24px;
}
.p-home-faq__item {
  padding: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem) 0;
  border-bottom: 1px solid var(--corp-main);
}
.p-home-faq__btn {
  padding-right: 2.75rem;
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.96px;
  display: flex;
  align-items: flex-start;
  gap: 0.3125rem;
}
.p-home-faq__btn::before {
  content: "Q.";
  display: block;
  color: var(--corp-main);
  font-family: "Roboto", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.64px;
  flex-shrink: 0;
}
.p-home-faq__desc {
  margin-top: clamp(0.625rem, 0.4034090909rem + 0.9090909091vw, 0.6875rem);
  display: flex;
  align-items: flex-start;
  gap: 0.3125rem;
}
.p-home-faq__desc::before {
  content: "A.";
  display: block;
  color: var(--accent-orange);
  font-family: "Roboto", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.64px;
  flex-shrink: 0;
}
.p-home-faq__body {
  color: var(--base-deep-dark);
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.96px;
  text-align: justify;
}
.p-home-company {
  padding: clamp(3.75rem, 2.4204545455rem + 5.4545454545vw, 4.125rem) clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  margin-top: clamp(-3rem, -1.9363636364rem + -4.3636363636vw, -3.3rem);
  border-radius: clamp(3rem, 1.9363636364rem + 4.3636363636vw, 3.3rem) clamp(3rem, 1.9363636364rem + 4.3636363636vw, 3.3rem) 0 0;
  background: var(--white);
}
.p-home-company__ttl {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
}
.p-home-company__lead {
  margin-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  font-size: clamp(1.375rem, 0.8875rem + 2vw, 1.5125rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 1.76px;
  text-align: center;
}
.p-home-company__text {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.96px;
  text-align: justify;
}
.p-home-company__img {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
}
.p-home-company__img figcaption {
  margin-top: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.96px;
  text-align: center;
}

.p-step__ttl {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
}
.p-step__list {
  padding: 0 clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: clamp(3.75rem, 2.4204545455rem + 5.4545454545vw, 4.125rem);
}
.p-step__item {
  padding: clamp(1.875rem, 1.2102272727rem + 2.7272727273vw, 2.0625rem) clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  border-radius: 12px;
  background: var(--corp-light);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}
.p-step__item::after {
  content: "";
  display: block;
  width: 3.75rem;
  height: 1.25rem;
  background: url(/wp-content/themes/moving-asn/assets/img/step/ic_arrow-down.svg) center/contain no-repeat;
  position: absolute;
  bottom: clamp(-2.5rem, -1.6136363636rem + -3.6363636364vw, -2.75rem);
  left: 50%;
  translate: -50% 0;
}
.p-step__item:last-of-type::after {
  display: none;
}
.p-step__sttl {
  font-size: clamp(1.375rem, 0.8875rem + 2vw, 1.5125rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 1.76px;
  color: var(--corp-main);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}
.p-step__sttl__num {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--corp-main);
  color: var(--white);
  font-family: "Roboto", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-step__text {
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.96px;
  text-align: justify;
}
.p-step__btn-m {
  height: clamp(4.375rem, 2.8238636364rem + 6.3636363636vw, 4.8125rem);
  padding: 0 1rem;
  margin-top: clamp(0.625rem, 0.4034090909rem + 0.9090909091vw, 0.6875rem);
  margin-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  border-radius: 100px;
  background: #06c755;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.p-step__small {
  font-size: clamp(0.875rem, 0.5647727273rem + 1.2727272727vw, 0.9625rem);
  letter-spacing: 0.84px;
}
.p-step__box {
  padding: 1.25rem;
  border-radius: 6px;
  background: var(--white);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem 1.25rem;
}
.p-step__sitem {
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.64px;
}

.p-service__ttl {
  margin-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-service__lead {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.96px;
  text-align: center;
}
.p-service__media {
  padding-right: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  padding-left: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.p-service__media__item {
  height: clamp(7rem, 4.5181818182rem + 10.1818181818vw, 7.7rem);
}
.p-service__media__link {
  width: 100%;
  height: 100%;
  border-radius: 0.375rem;
  border: 1px solid var(--gray);
  background: #fff;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06);
  display: flex;
  overflow: hidden;
}
.p-service__media__link::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: url(/wp-content/themes/moving-asn/assets/img/common/ic_arrow-white.svg) center/0.625rem no-repeat;
  background-color: var(--corp-orange);
  position: absolute;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  right: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-service__media__img {
  height: 100%;
  aspect-ratio: 1/1;
  background-color: #eee;
}
.p-service__media__ttl {
  width: 100%;
  padding-left: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  padding-right: clamp(4rem, 2.5818181818rem + 5.8181818182vw, 4.4rem);
  font-size: clamp(1.125rem, 0.7261363636rem + 1.6363636364vw, 1.2375rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1.08px;
  flex: 1;
}
.p-service__sttl {
  margin: 0 clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem) clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-service__bnr {
  width: calc(100% - clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem));
  margin: 0 clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem) clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  aspect-ratio: 3/1;
  border-radius: 6px;
  background: #d9d9d9;
}
.p-service__wrap {
  padding: clamp(3.75rem, 2.4204545455rem + 5.4545454545vw, 4.125rem) clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem) clamp(6.75rem, 4.3568181818rem + 9.8181818182vw, 7.425rem);
  margin-top: clamp(-3rem, -1.9363636364rem + -4.3636363636vw, -3.3rem);
  border-radius: clamp(3rem, 1.9363636364rem + 4.3636363636vw, 3.3rem) clamp(3rem, 1.9363636364rem + 4.3636363636vw, 3.3rem) 0 0;
  background: var(--corp-light);
}
.p-service__wrap:first-of-type {
  margin-top: 0;
}
.p-service__wrap:nth-of-type(2n) {
  background: var(--white);
}
.p-service__wrap:last-of-type {
  padding-bottom: clamp(3.75rem, 2.4204545455rem + 5.4545454545vw, 4.125rem);
}
.p-service__wrap__sttl {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
}
.p-service__dlist {
  border-top: 1px solid var(--corp-main);
}
.p-service__ditem {
  padding-top: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  padding-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  border-bottom: 1px solid var(--corp-main);
}
.p-service__btn {
  padding-top: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  padding-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  color: var(--corp-main);
  font-size: clamp(1.375rem, 0.8875rem + 2vw, 1.5125rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 1.76px;
  text-align: center;
}
.p-service__desc {
  display: none;
  padding-top: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  padding-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-service__grid {
  margin-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-service__card {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-service__card__item {
  padding: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  border-radius: 6px;
  background: var(--white);
}
.p-service__card__ttl {
  margin-bottom: clamp(0.625rem, 0.4034090909rem + 0.9090909091vw, 0.6875rem);
  color: var(--corp-main);
  font-size: clamp(1.125rem, 0.7261363636rem + 1.6363636364vw, 1.2375rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 1.08px;
}
.p-service__card__ttl:has(.p-service__card__subttl) {
  text-align: center;
}
.p-service__card__subttl {
  display: block;
  margin-bottom: 0.3125rem;
  font-size: clamp(0.875rem, 0.5647727273rem + 1.2727272727vw, 0.9625rem);
  letter-spacing: 0.56px;
}
.p-service__card__img {
  margin-bottom: 0.625rem;
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 6px;
}
.p-service__card__text {
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.64px;
  text-align: justify;
}
.p-service__card__small {
  display: block;
  margin-top: 0.3125rem;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.48px;
}
.p-service__card__slist {
  width: fit-content;
  margin: 0 auto clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-service__card__sitem {
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.64px;
}
.p-service__after__text {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.8px;
}
.p-service__after__list {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
}
.p-service__after__stext {
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.p-single__ttl {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
}
.p-single__fv {
  width: calc(100% - clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem));
  margin: 0 auto clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
  aspect-ratio: 3/2;
  border-radius: 6px;
  background-color: #eee;
}
.p-single__list {
  width: calc(100% - clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem));
  margin: 0 auto clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.625rem, 0.4034090909rem + 0.9090909091vw, 0.6875rem);
}
.p-single__item {
  width: calc(50% - clamp(0.3125rem, 0.2017045455rem + 0.4545454545vw, 0.34375rem));
}
.p-single__link {
  width: 100%;
  padding: clamp(0.625rem, 0.4034090909rem + 0.9090909091vw, 0.6875rem);
  border-radius: 100px;
  border: 1px solid var(--gray);
  background: var(--white);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06);
  font-size: clamp(0.875rem, 0.5647727273rem + 1.2727272727vw, 0.9625rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.56px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.p-single__link::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 100px;
  background: url(/wp-content/themes/moving-asn/assets/img/common/ic_arrow-white.svg) center/0.625rem no-repeat;
  background-color: var(--corp-orange);
  position: absolute;
  right: 0.625rem;
  top: 50%;
  translate: 0 -50%;
  rotate: 90deg;
}
.p-single__section {
  padding: clamp(3.75rem, 2.4204545455rem + 5.4545454545vw, 4.125rem) clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem) clamp(6.75rem, 4.3568181818rem + 9.8181818182vw, 7.425rem);
  margin-top: clamp(-3rem, -1.9363636364rem + -4.3636363636vw, -3.3rem);
  border-radius: clamp(3rem, 1.9363636364rem + 4.3636363636vw, 3.3rem) clamp(3rem, 1.9363636364rem + 4.3636363636vw, 3.3rem) 0 0;
}
.p-single__section:first-of-type {
  margin-top: 0;
}
.p-single__section.u-color__main {
  background-color: var(--corp-main);
}
.p-single__section.u-color__light {
  background-color: var(--corp-light);
}
.p-single__section.u-color__white {
  background-color: var(--white);
}
.p-single-reco {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
}
.p-single-reco__ttl {
  margin-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-single-reco__list {
  padding: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  border-radius: 6px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: clamp(0.3125rem, 0.2017045455rem + 0.4545454545vw, 0.34375rem);
}
.p-single-reco__item {
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.64px;
}
.p-single .p-home-select__slide {
  margin-bottom: 0;
}
.p-single-guide__ttl {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
}
.p-single-guide__text {
  margin-bottom: 40px;
  font-feature-settings: "palt";
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.96px;
}
.p-single-guide__grid {
  width: 100%;
  margin-bottom: clamp(0.625rem, 0.4034090909rem + 0.9090909091vw, 0.6875rem);
  border-radius: 0.375rem;
  background-color: var(--white);
  overflow: hidden;
}
.p-single-guide__grid__ttl {
  margin-bottom: clamp(0.625rem, 0.4034090909rem + 0.9090909091vw, 0.6875rem);
  color: var(--corp-main);
  text-align: center;
  font-feature-settings: "palt" on;
  font-size: clamp(1.375rem, 0.8875rem + 2vw, 1.5125rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 1.76px;
}
.p-single-guide__grid__header {
  height: clamp(5rem, 3.2272727273rem + 7.2727272727vw, 5.5rem);
  display: grid;
  grid-template-columns: 1fr clamp(6.25rem, 4.0340909091rem + 9.0909090909vw, 6.875rem) 1fr;
  background-color: var(--corp-main);
  color: white;
}
.p-single-guide__grid .room-pack {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr 1fr;
  border-right: 1px solid var(--white);
}
.p-single-guide__grid .header-item {
  width: 100%;
  height: 100%;
  font-size: clamp(0.875rem, 0.5647727273rem + 1.2727272727vw, 0.9625rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-single-guide__grid .item-truck {
  border-right: 1px solid var(--white);
}
.p-single-guide__grid .item-room {
  border-bottom: 1px dashed var(--white);
}
.p-single-guide__grid__row-group {
  height: clamp(5rem, 3.2272727273rem + 7.2727272727vw, 5.5rem);
  display: grid;
  grid-template-columns: 1fr clamp(6.25rem, 4.0340909091rem + 9.0909090909vw, 6.875rem) 1fr;
  border-bottom: 1px solid var(--gray);
}
.p-single-guide__grid__row-group:last-of-type {
  border-bottom: none;
}
.p-single-guide__grid__row-group:nth-of-type(2n) {
  background-color: var(--base-right);
}
.p-single-guide__grid .row-data {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-single-guide__grid .data-price {
  border-right: none;
  font-family: "Roboto", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.64px;
}
.p-single-guide__grid .data-room-pack {
  width: 100%;
  height: 100%;
  font-size: clamp(0.875rem, 0.5647727273rem + 1.2727272727vw, 0.9625rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.56px;
  display: grid;
  grid-template-rows: 1fr 1fr;
  border-right: 1px solid var(--gray);
  text-align: center;
}
.p-single-guide__grid .data-room,
.p-single-guide__grid .data-pack {
  width: 100%;
  height: 100%;
  text-align: center;
  align-content: center;
}
.p-single-guide__grid .data-room span,
.p-single-guide__grid .data-pack span {
  font-size: clamp(0.75rem, 0.4840909091rem + 1.0909090909vw, 0.825rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.48px;
}
.p-single-guide__grid .data-room {
  border-bottom: 1px dashed var(--gray);
}
.p-single-guide__grid .data-truck {
  border-right: 1px solid var(--gray);
  flex-direction: column;
}
.p-single-guide__grid .data-truck img {
  width: 2.5rem;
  margin-bottom: 0.3125rem;
}
.p-single-guide__grid .truck-text {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.48px;
}
.p-single-guide__grid-sub .p-single-guide__grid__header {
  grid-template-columns: 1fr clamp(7.90625rem, 5.103125rem + 11.5vw, 8.696875rem);
}
.p-single-guide__grid-sub .p-single-guide__grid__row-group {
  grid-template-columns: 1fr clamp(7.90625rem, 5.103125rem + 11.5vw, 8.696875rem);
  border-top: 1px solid var(--gray);
  border-bottom: 0;
}
.p-single-guide__grid-sub .p-single-guide__grid__row-group:first-of-type {
  border-top: 0;
}
.p-single-guide__grid-sub .p-single-guide__grid__row-group:last-of-type {
  border-bottom: 0;
}
.p-single-guide__grid-sub .p-single-guide__grid__row-group.is-odd {
  background-color: var(--white);
}
.p-single-guide__grid-sub .p-single-guide__grid__row-group.is-even {
  background-color: var(--base-right);
}
.p-single-guide__grid-sub .c-accordion__body {
  border-top: 1px solid var(--gray);
}
.p-single-guide__grid-sub__btn {
  display: block;
  width: clamp(10.71875rem, 6.9184659091rem + 15.5909090909vw, 11.790625rem);
  padding: clamp(0.625rem, 0.4034090909rem + 0.9090909091vw, 0.6875rem);
  margin: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem) auto clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
  border-radius: 100px;
  border: 1px solid var(--gray);
  background: #fff;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06);
  color: var(--black, #222);
  font-feature-settings: "palt" on;
  font-size: clamp(0.875rem, 0.5647727273rem + 1.2727272727vw, 0.9625rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.56px;
  text-align: center;
}
.p-single-guide__grid-sub__btn .c-accordion__icon {
  right: clamp(0.625rem, 0.4034090909rem + 0.9090909091vw, 0.6875rem);
}
.p-single-guide__caption {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.p-single-guide__caption__img {
  height: 1.875rem;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
}
.p-single-guide__caption__img img {
  width: clamp(1.875rem, 1.2102272727rem + 2.7272727273vw, 2.0625rem);
}
.p-single-guide__caption__img figcaption {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.56px;
}
.p-single-guide__wrap {
  padding-top: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
  padding-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
  border-top: 1px solid var(--corp-main);
  border-bottom: 1px solid var(--corp-main);
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
}
.p-single-guide__acco__btn {
  color: var(--corp-main);
  font-size: clamp(1.375rem, 0.8875rem + 2vw, 1.5125rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.88px;
  text-align: center;
}
.p-single-guide__acco__body {
  padding-top: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
}
.p-single-guide__card {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-single-guide__card__ttl {
  color: var(--black);
}
.p-single-guide__card__lead {
  margin-bottom: clamp(-0.625rem, -0.4034090909rem + -0.9090909091vw, -0.6875rem);
  font-feature-settings: "palt" on;
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 1.28px;
  text-align: center;
}
.p-single-guide__card__dlist {
  display: grid;
  grid-template-columns: clamp(5.75rem, 3.7113636364rem + 8.3636363636vw, 6.325rem) 1fr;
}
.p-single-guide__card__dttl {
  padding: 0.3125rem 0.625rem;
  border-bottom: 1px solid var(--white);
  background: var(--corp-main);
  color: var(--white);
  font-size: clamp(0.875rem, 0.5647727273rem + 1.2727272727vw, 0.9625rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.56px;
}
.p-single-guide__card__desc {
  padding: 0.3125rem 0.625rem;
  border-bottom: 1px solid var(--white);
  background: var(--corp-light);
  text-align: justify;
  font-size: clamp(0.875rem, 0.5647727273rem + 1.2727272727vw, 0.9625rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.56px;
}
.p-single-guide__card__img {
  width: 100%;
  height: clamp(10.3125rem, 6.65625rem + 15vw, 11.34375rem);
  margin-top: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
  position: relative;
}
.p-single-guide__card__img::before {
  content: "";
  display: block;
  width: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  height: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  margin: clamp(-2.5rem, -1.6136363636rem + -3.6363636364vw, -2.75rem) auto 0;
  background: url(/wp-content/themes/moving-asn/assets/img/single/ic_plus.svg) center/contain no-repeat;
}
.p-single-guide__card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.p-single-guide__card__num {
  color: var(--corp-orange);
  font-family: "Roboto", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(2rem, 1.2909090909rem + 2.9090909091vw, 2.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.28px;
  text-align: center;
}
.p-single-guide__card__unit {
  color: var(--black, #222);
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.64px;
}
.p-single-guide__card__small {
  color: var(--black, #222);
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(0.75rem, 0.4840909091rem + 1.0909090909vw, 0.825rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.48px;
}
.p-single-guide__card__text {
  font-size: clamp(0.75rem, 0.4840909091rem + 1.0909090909vw, 0.825rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.48px;
}
.p-single-guide__btn::after {
  rotate: 90deg;
}
.p-single-voice__ttl {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
  color: var(--white);
}
.p-single-option__sttl {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
}
.p-single-option .p-service__dlist {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
}
.p-single-option__img {
  width: 100%;
  aspect-ratio: 3/2;
  margin-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  border-radius: 6px;
  background: var(--gray);
}
.p-single-option__text {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
  text-align: center;
  font-size: clamp(1.125rem, 0.7261363636rem + 1.6363636364vw, 1.2375rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1.44px;
}
.p-single-option__btn {
  margin-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-single-option__btn:last-of-type {
  margin-bottom: 0;
}

.single-move .l-footer__head,
.family-move .l-footer__head,
.senior-move .l-footer__head {
  position: static;
  background: var(--corp-light);
}

.p-case__ttl {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
}
.p-case__list {
  padding-right: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  padding-left: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}
.p-case__item {
  padding: clamp(0.625rem, 0.4034090909rem + 0.9090909091vw, 0.6875rem);
  border-radius: 100px;
  border: 1px solid var(--gray, #dedede);
  background: #fff;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06);
}
.p-case__link {
  width: 100%;
  height: 100%;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.56px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.p-case__link::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url(/wp-content/themes/moving-asn/assets/img/common/ic_arrow-white.svg) center/0.625rem no-repeat;
  background-color: var(--corp-orange);
  border-radius: 50%;
  position: absolute;
  right: 0;
  rotate: 90deg;
}
.p-case__wrap {
  padding: clamp(3.75rem, 2.4204545455rem + 5.4545454545vw, 4.125rem) clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem) clamp(6.75rem, 4.3568181818rem + 9.8181818182vw, 7.425rem);
  margin-top: clamp(-3rem, -1.9363636364rem + -4.3636363636vw, -3.3rem);
  border-radius: clamp(3rem, 1.9363636364rem + 4.3636363636vw, 3.3rem) clamp(3rem, 1.9363636364rem + 4.3636363636vw, 3.3rem) 0 0;
  background: var(--corp-main);
}
.p-case__wrap:first-of-type {
  margin-top: 0;
}
.p-case__wrap:nth-of-type(2n) {
  background: var(--white);
}
.p-case__wrap:last-of-type {
  padding-bottom: clamp(3.75rem, 2.4204545455rem + 5.4545454545vw, 4.125rem);
}
.p-case__sec {
  margin-bottom: clamp(3.75rem, 2.4204545455rem + 5.4545454545vw, 4.125rem);
}
.p-case__sec:last-child {
  margin-bottom: 0;
}
.p-case__sec__ttl {
  margin-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-case__sec__tags {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
}
.p-case__slide {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  position: relative;
}
.p-case__slide .slick-list {
  margin-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-case__slide__item {
  width: clamp(17.0625rem, 11.0130681818rem + 24.8181818182vw, 18.76875rem);
  padding: clamp(1.875rem, 1.2102272727rem + 2.7272727273vw, 2.0625rem) clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  margin: 0 10px;
  border-radius: 12px;
  background-color: var(--white);
}
.p-case__slide__top {
  margin-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-case__slide__top > img {
  width: 4rem;
  height: 4rem;
}
.p-case__slide__box {
  flex: 1;
}
.p-case__slide__address {
  margin-bottom: clamp(0.625rem, 0.4034090909rem + 0.9090909091vw, 0.6875rem);
  font-size: clamp(0.9375rem, 0.6051136364rem + 1.3636363636vw, 1.03125rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.9px;
}
.p-case__slide__date {
  color: var(--base-gray);
  font-family: "Roboto", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(0.8125rem, 0.5244318182rem + 1.1818181818vw, 0.89375rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.78px;
}
.p-case__slide__btn {
  width: 1.5rem;
  height: 1.5rem;
}
.p-case__slide__text {
  display: -webkit-box;
  margin-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  max-height: 5.625rem;
  font-size: clamp(0.9375rem, 0.6051136364rem + 1.3636363636vw, 1.03125rem);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.6px;
  text-align: justify;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.p-case__slide__tags {
  justify-content: flex-start;
}
.p-case__slide__tag {
  padding: 0.5rem;
  border: 1px solid var(--corp-orange);
  color: var(--corp-orange);
  font-size: 0.75rem;
  letter-spacing: 0.48px;
}
.p-case__modal {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100vh;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  transition: 0.3s;
}
.p-case__modal.is-active {
  opacity: 1;
  visibility: visible;
}
.p-case__modal .p-case__slide__item {
  width: clamp(22.0625rem, 19.7379679144rem + 9.5365418895vw, 28.75rem);
  height: 30rem;
  border-radius: 6px;
  border: 1px solid var(--gray);
  background: var(--white);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06);
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-case__modal .p-case__slide__item::-webkit-scrollbar {
  display: none;
}
.p-case__modal .p-case__slide__text {
  display: block;
  max-height: none;
  text-overflow: clip;
  -webkit-box-orient: horizontal;
  -webkit-line-clamp: none;
  overflow: visible;
}
.p-case__modal .p-case__slide__btn {
  rotate: 45deg;
}
.p-case__sttl {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
}
.p-case__lead {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
  color: var(--corp-main);
  font-size: clamp(1.375rem, 0.8875rem + 2vw, 1.5125rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 1.76px;
  text-align: center;
}
.p-case__text {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.96px;
}
.p-case__unit {
  padding: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem) 0;
  border-bottom: 1px solid var(--corp-main);
}
.p-case__unit:first-of-type {
  border-top: 1px solid var(--corp-main);
}
.p-case__unit__ttlwrap {
  margin-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}
.p-case__unit__accent {
  display: inline-block;
  padding: 0.3125rem 0.625rem;
  border-radius: 100px;
  background: var(--corp-orange);
  color: var(--white);
  font-family: "Roboto", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(0.9375rem, 0.6051136364rem + 1.3636363636vw, 1.03125rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.6px;
}
.p-case__unit__ttl {
  font-size: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 1.6px;
  text-align: center;
}
.p-case__unit__list {
  margin-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  gap: 0.3125rem;
}
.p-case__unit__item {
  padding: 0.5rem;
  border: 1px solid var(--corp-orange);
  color: var(--corp-orange);
  font-size: 0.75rem;
}
.p-case__unit__wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.p-case__unit__wrap img {
  width: calc(50% - 0.625rem);
  aspect-ratio: 3/2;
  border-radius: 6px;
  background: #d9d9d9;
  object-fit: cover;
}
.p-case__unit__text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0.56px;
}
.p-case__accordion__btn {
  width: clamp(10.71875rem, 6.9184659091rem + 15.5909090909vw, 11.790625rem);
  padding: 0.625rem;
  margin: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem) auto 0;
  border-radius: 100px;
  border: 1px solid var(--gray);
  background: var(--white);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-case__accordion__btn span {
  right: 0.625rem;
}
.p-case__accordion {
  padding-top: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
}
.p-case__slide__s {
  /* アクティブなドット */
}
.p-case__slide__s .slick-list {
  margin-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-case__slide__s .slide-arrow {
  display: none !important;
}
.p-case__slide__s .slick-dots {
  width: 94px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  order: 2;
}
.p-case__slide__s .slick-dots li {
  position: relative;
  width: 6px;
  height: 6px;
  cursor: pointer;
}
.p-case__slide__s .slick-dots button {
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: #dedede;
  color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 1;
}
.p-case__slide__s .slick-dots li.slick-active button {
  background: var(--corp-main);
}
.p-case__slide__sitem {
  width: clamp(17.0625rem, 11.0130681818rem + 24.8181818182vw, 18.76875rem);
  margin: 0 0.625rem;
}
.p-case__slide__simg {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.p-case__slide__scaption {
  margin-top: 0.625rem;
  font-size: clamp(0.75rem, 0.4840909091rem + 1.0909090909vw, 0.825rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.48px;
}
.p-case__dlist {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
}
.p-case__ditem {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--gray);
}
.p-case__dttl {
  margin-bottom: clamp(0.625rem, 0.4034090909rem + 0.9090909091vw, 0.6875rem);
  color: var(--corp-main);
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.64px;
  text-align: justify;
}
.p-case__desc {
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.64px;
  text-align: justify;
}
.p-case__desc span {
  font-size: clamp(0.75rem, 0.4840909091rem + 1.0909090909vw, 0.825rem);
  letter-spacing: 0.48px;
}
.p-case__grid {
  display: grid;
  grid-template-columns: clamp(7.5rem, 4.8409090909rem + 10.9090909091vw, 8.25rem) 1fr;
}
.p-case__grid__ttl {
  padding: 0.3125rem 0.625rem;
  border-bottom: 1px solid var(--white);
  background: var(--corp-main);
  color: var(--white);
  font-size: clamp(0.875rem, 0.5647727273rem + 1.2727272727vw, 0.9625rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.56px;
}
.p-case__grid__desc {
  padding: 0.3125rem 0.625rem;
  border-bottom: 1px solid var(--white);
  background: var(--corp-light);
  font-size: clamp(0.875rem, 0.5647727273rem + 1.2727272727vw, 0.9625rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.56px;
  text-align: justify;
}
.p-case__post {
  padding: clamp(1.875rem, 1.2102272727rem + 2.7272727273vw, 2.0625rem) clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  border-radius: 12px;
  background: var(--corp-light);
}
.p-case__post__ttl {
  margin-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  color: var(--corp-main);
  font-size: clamp(1.125rem, 0.7261363636rem + 1.6363636364vw, 1.2375rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.72px;
  text-align: center;
}
.p-case__post__text {
  color: var(--base-deep-dark);
  font-size: clamp(0.9375rem, 0.6051136364rem + 1.3636363636vw, 1.03125rem);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.6px;
  text-align: justify;
}
.p-case__btnarea {
  margin-top: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}
.p-case__btn {
  padding: clamp(0.625rem, 0.4034090909rem + 0.9090909091vw, 0.6875rem);
  border-radius: 100px;
  border: 1px solid var(--gray, #dedede);
  background: #fff;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06);
  width: 100%;
  height: 100%;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.56px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.p-case__btn::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url(/wp-content/themes/moving-asn/assets/img/common/ic_arrow-white.svg) center/0.625rem no-repeat;
  background-color: var(--corp-orange);
  border-radius: 50%;
  position: absolute;
  right: 0.625rem;
}
.p-case__btn:nth-of-type(1), .p-case__btn:nth-of-type(4) {
  grid-column: 1/3;
}

.p-faq__ttl {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
}
.p-faq__list {
  padding: 0 clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
}
.p-faq__link {
  padding: 0.625rem 2.125rem;
  border-radius: 100px;
  border: 1px solid var(--gray);
  background: #fff;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06);
  font-size: clamp(0.875rem, 0.5647727273rem + 1.2727272727vw, 0.9625rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.56px;
  text-align: center;
  position: relative;
}
.p-faq__link::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url(/wp-content/themes/moving-asn/assets/img/common/ic_arrow-white.svg) center/0.625rem no-repeat;
  background-color: var(--corp-orange);
  border-radius: 50%;
  rotate: 90deg;
  position: absolute;
  top: 50%;
  right: 0.625rem;
  translate: 0 -50%;
}
.p-faq__wrap {
  padding: clamp(3.75rem, 2.4204545455rem + 5.4545454545vw, 4.125rem) clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem) clamp(6.75rem, 4.3568181818rem + 9.8181818182vw, 7.425rem);
  margin-top: clamp(-3rem, -1.9363636364rem + -4.3636363636vw, -3.3rem);
  border-radius: clamp(3rem, 1.9363636364rem + 4.3636363636vw, 3.3rem) clamp(3rem, 1.9363636364rem + 4.3636363636vw, 3.3rem) 0 0;
  background: var(--corp-light);
}
.p-faq__wrap:first-of-type {
  margin-top: 0;
}
.p-faq__wrap:nth-of-type(2n) {
  background: var(--white);
}
.p-faq__wrap:last-of-type {
  padding-bottom: clamp(3.75rem, 2.4204545455rem + 5.4545454545vw, 4.125rem);
  margin-bottom: clamp(3.75rem, 2.4204545455rem + 5.4545454545vw, 4.125rem);
}
.p-faq__sttl {
  margin-bottom: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  color: var(--corp-main);
  text-align: center;
  font-size: clamp(1.75rem, 1.1295454545rem + 2.5454545455vw, 1.925rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 2.24px;
}
.p-faq__ditem {
  padding: clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem) 0;
  border-bottom: 1px solid var(--corp-main);
}
.p-faq__btn {
  padding-right: 2.75rem;
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.96px;
  display: flex;
  align-items: flex-start;
  gap: 0.3125rem;
}
.p-faq__btn::before {
  content: "Q.";
  display: block;
  color: var(--corp-main);
  font-family: "Roboto", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.64px;
  flex-shrink: 0;
}
.p-faq__desc {
  margin-top: clamp(0.625rem, 0.4034090909rem + 0.9090909091vw, 0.6875rem);
  display: flex;
  align-items: flex-start;
  gap: 0.3125rem;
}
.p-faq__desc::before {
  content: "A.";
  display: block;
  color: var(--accent-orange);
  font-family: "Roboto", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.64px;
  flex-shrink: 0;
}
.p-faq__body {
  color: var(--base-deep-dark);
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.96px;
  text-align: justify;
}

.p-contact__ttl {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
}
.p-contact__list {
  margin: 0 clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem) clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, 0.4034090909rem + 0.9090909091vw, 0.6875rem);
}
.p-contact__link {
  text-align: center;
}
.p-contact__wrap {
  margin: 0 clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem) clamp(3.75rem, 2.4204545455rem + 5.4545454545vw, 4.125rem);
}
.p-contact__text {
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
  color: var(--black);
  font-feature-settings: "palt" on;
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.96px;
}
.p-contact__form__wrap {
  padding: clamp(3.75rem, 2.4204545455rem + 5.4545454545vw, 4.125rem) clamp(1.25rem, 0.8068181818rem + 1.8181818182vw, 1.375rem);
  border-radius: 48px 48px 0 0;
  background: var(--corp-light);
}
.p-contact__form .form-item {
  margin-bottom: clamp(1.875rem, 1.2102272727rem + 2.7272727273vw, 2.0625rem);
}
.p-contact__form .label {
  margin-bottom: 0.625rem;
  color: var(--main);
  font-feature-settings: "palt" on;
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.96px;
  text-align: justify;
  display: flex;
  align-items: center;
}
.p-contact__form .required {
  margin-left: 0.625rem;
  color: #f72020;
  font-feature-settings: "palt" on;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.72px;
  text-align: justify;
}
.p-contact__form .wpcf7-form-control {
  width: 100%;
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--gray);
  border-radius: 0.375rem;
  background-color: var(--white);
  color: var(--black);
  font-feature-settings: "palt" on;
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.96px;
  text-align: justify;
}
.p-contact__form .wpcf7-form-control.wpcf7-radio, .p-contact__form .wpcf7-form-control.wpcf7-checkbox {
  padding: 0;
  border: none;
  background-color: transparent;
  color: var(--black);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.64px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.p-contact__form textarea.wpcf7-form-control {
  height: 11.25rem;
}
.p-contact__form .wpcf7-list-item {
  margin: 0;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.p-contact__form .wpcf7-list-item input[type=radio],
.p-contact__form .wpcf7-list-item input[type=checkbox] {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.p-contact__form .wpcf7-list-item .wpcf7-list-item-label {
  padding-left: 1.75rem;
  line-height: 1;
  cursor: pointer;
}
.p-contact__form .wpcf7-list-item:has(input[type=radio]) ::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 100px;
  border: 1px solid var(--gray);
  background: var(--white);
  z-index: 1;
  box-sizing: border-box;
}
.p-contact__form .wpcf7-list-item:has(input[type=radio]):has(:checked)::after {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 100px;
  background-color: var(--main);
  position: absolute;
  left: 0.3125rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  pointer-events: none;
}
.p-contact__form .wpcf7-list-item:has(input[type=checkbox]) ::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid var(--gray);
  background: var(--white);
  z-index: 1;
  box-sizing: border-box;
}
.p-contact__form .wpcf7-list-item:has(input[type=checkbox]):has(:checked)::after {
  content: "";
  display: block;
  width: 0.375rem;
  height: 0.5625rem;
  border-right: 1.5px solid var(--corp-main);
  border-bottom: 1.5px solid var(--corp-main);
  position: absolute;
  left: 0.4375rem;
  top: 50%;
  translate: 0 -50%;
  rotate: 45deg;
  z-index: 3;
  pointer-events: none;
}
.p-contact__form .submit-container {
  width: 100%;
  height: clamp(3.375rem, 2.1784090909rem + 4.9090909091vw, 3.7125rem);
  margin-top: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
}
.p-contact__form .wpcf7-submit {
  width: 100%;
  height: 100%;
  padding: 0.9375rem 1.875rem;
  border-radius: 100px;
  border: 1px solid var(--white);
  background: #f59126;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06);
  color: var(--white);
  font-feature-settings: "palt" on;
  font-size: clamp(1rem, 0.6454545455rem + 1.4545454545vw, 1.1rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.64px;
  text-align: center;
}
.p-contact__form .wpcf7-not-valid-tip {
  margin-top: 0.625rem;
  color: #f72020;
  font-feature-settings: "palt" on;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.96px;
  text-align: justify;
}
.p-contact__form .wpcf7 form.invalid .wpcf7-response-output {
  padding: 0;
  border: none;
  margin: 0;
  margin-bottom: clamp(2.5rem, 1.6136363636rem + 3.6363636364vw, 2.75rem);
  color: #f73520;
  font-feature-settings: "palt" on;
  font-family: "Noto Sans JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.96px;
  text-align: center;
}

.contact .l-footer__head {
  position: static;
  background: var(--corp-light);
}/*# sourceMappingURL=style.css.map */