@charset "UTF-8";
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 100%;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3445378151vw;
  }
}
@media (min-width: 1190px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "Shippori Mincho", serif;
  color: #333;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
.l-inner {
  width: 100%;
  padding-right: 1.25rem;
  padding-left: 1.25rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1190px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

.c-section-title__en {
  color: #D9D9D9;
  font-weight: normal;
  font-size: 2.25rem;
  line-height: 1.1111111111;
  font-family: "Cormorant", serif;
}
@media screen and (min-width: 768px) {
  .c-section-title__en {
    font-size: 4rem;
    line-height: 0.625;
  }
}

@media screen and (min-width: 768px) {
  .c-section-title__heading {
    margin-top: 1.5rem;
  }
}
.c-section-title__heading h2 {
  font-size: 0.75rem;
  line-height: 3.3333333333;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .c-section-title__heading h2 {
    font-size: 1.25rem;
    line-height: 2;
  }
}

.mask-img-animation img {
  display: block;
  mask-image: linear-gradient(135deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, .4) 45%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(135deg, rgb(0, 0, 0) 30%, rgba(0, 0, 0, .4) 45%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
  mask-size: 250% 250%;
  -webkit-mask-size: 250% 250%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: 130% 130%;
  -webkit-mask-position: 130% 130%;
}

/* 要素が画面に入ったときに付与するクラス */
.mask-img-animation img.is-visible {
  -webkit-animation: mask-animation 1s linear forwards;
          animation: mask-animation 1s linear forwards;
}

@-webkit-keyframes mask-animation {
  0% {
    mask-position: 100% 100%;
    -webkit-mask-position: 100% 100%;
  }
  100% {
    mask-position: 0 0;
    -webkit-mask-position: 0 0;
  }
}

@keyframes mask-animation {
  0% {
    mask-position: 100% 100%;
    -webkit-mask-position: 100% 100%;
  }
  100% {
    mask-position: 0 0;
    -webkit-mask-position: 0 0;
  }
}
.mask-text-animation {
  mask-image: -webkit-gradient(linear, left top, right top, color-stop(30%, rgb(0, 0, 0)), color-stop(45%, rgba(0, 0, 0, .4)), color-stop(55%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
  mask-image: linear-gradient(to right, rgb(0, 0, 0) 30%, rgba(0, 0, 0, .4) 45%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, color-stop(30%, rgb(0, 0, 0)), color-stop(45%, rgba(0, 0, 0, .4)), color-stop(55%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
  -webkit-mask-image: linear-gradient(to right, rgb(0, 0, 0) 30%, rgba(0, 0, 0, .4) 45%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
  mask-size: 250% 100%;
  -webkit-mask-size: 250% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: 130% 0;
  -webkit-mask-position: 130% 0;
}

.mask-text-animation.is-visible {
  -webkit-animation: mask-text-animation 1s linear forwards;
          animation: mask-text-animation 1s linear forwards;
}

@-webkit-keyframes mask-text-animation {
  0% {
    mask-position: 100% 0;
    -webkit-mask-position: 100% 0;
  }
  100% {
    mask-position: 0 0;
    -webkit-mask-position: 0 0;
  }
}

@keyframes mask-text-animation {
  0% {
    mask-position: 100% 0;
    -webkit-mask-position: 100% 0;
  }
  100% {
    mask-position: 0 0;
    -webkit-mask-position: 0 0;
  }
}
.p-cta {
  width: 100%;
  height: 100%;
  background-image: url(../images/cta-back.jpg);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 3.125rem;
  padding-bottom: 16.75rem;
}
@media screen and (min-width: 768px) {
  .p-cta {
    padding-top: 5.625rem;
    padding-bottom: 16.1875rem;
    background-image: url(../images/cta-back-pc.jpg);
  }
}
.p-cta .c-section-title .c-section-title__en {
  color: #FFF;
}
.p-cta .c-section-title .c-section-title__heading h2 {
  color: #FFF;
}
.p-cta .p-cta__text {
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-cta .p-cta__text {
    margin-top: 4.375rem;
  }
}
.p-cta .p-cta__text p {
  font-size: 0.9375rem;
  color: #FFF;
  line-height: 2.6666666667;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-cta .p-cta__text p {
    font-size: 1.125rem;
    line-height: 2.2222222222;
    font-weight: normal;
  }
}
.p-cta .p-cta__btns {
  margin-top: 6.875rem;
  max-width: 23.4375rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-cta .p-cta__btns {
    max-width: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10.25rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 9.5rem;
  }
}
.p-cta .p-cta__btn {
  background: rgba(255, 255, 255, .8);
  padding: 0.6875rem 1.0625rem 0.875rem 5.75rem;
  font-size: 0.9375rem;
  line-height: 2.6666666667;
  letter-spacing: 0.05em;
  border-radius: 2.34375rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-cta .p-cta__btn {
    width: 40%;
    max-width: 30.5rem;
    text-align: center;
    padding: 1.3125rem 1.0625rem 1.3125rem 4.5rem;
    font-size: 1.25rem;
    line-height: 1.6;
  }
}
.p-cta .p-cta__btn .p-cta__btnMailImg {
  position: absolute;
  left: 2.6875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-cta .p-cta__btn .p-cta__btnMailImg {
    left: 3.5625rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}
.p-cta .p-cta__btn .p-cta__btnMailImg img {
  width: 100%;
}
.p-cta .p-cta__btnA {
  display: inline-block;
  width: 100%;
  margin-top: 2.5rem;
  text-align: center;
  padding: 0.6875rem 4.125rem 0.875rem 4.375rem;
}
@media screen and (min-width: 768px) {
  .p-cta .p-cta__btnA {
    width: 40%;
    margin-top: 0;
    max-width: 30.5rem;
    text-align: center;
    padding: 1.3125rem 4.125rem 1.3125rem 4.375rem;
    font-size: 1.25rem;
    line-height: 1.6;
  }
}
.p-cta .p-cta__btnA .p-cta__btnMigiImg {
  position: absolute;
  right: 1.75rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2.375rem;
  height: 2.375rem;
}
@media screen and (min-width: 768px) {
  .p-cta .p-cta__btnA .p-cta__btnMigiImg {
    right: 3.9375rem;
    width: 3.1875rem;
    height: 3.1875rem;
  }
}
.p-cta .p-cta__btnA .p-cta__btnMigiImg img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-cta .p-cta__btnA .p-cta__btnLinePcImg {
    left: 5.875rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media screen and (max-width: 365px) {
  .p-cta .p-cta__btn {
    font-size: 0.75rem;
  }
}

.p-tfv {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
.p-tfv__swiper {
  height: 100%;
}
.p-tfv .swiper-slide {
  height: 100%;
}
.p-tfv__slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.p-tfv__img {
  display: block;
  width: 120%;
  max-width: none;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.p-tfv__img.is-panning {
  -webkit-animation: tfv-pan-left 7s linear forwards;
          animation: tfv-pan-left 7s linear forwards;
}
.p-tfv__img--pc {
  display: none;
}
.p-tfv__content {
  position: absolute;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  pointer-events: none;
  bottom: 5.3125rem;
  left: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-tfv__content {
    left: 10.4166666667%;
  }
}
.p-tfv__text {
  color: #fff;
  font-family: "Shippori Mincho", serif;
}
.p-tfv__scroll {
  position: absolute;
  z-index: 2;
  right: 1.25rem;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5625rem;
  pointer-events: none;
}
.p-tfv__scroll-text {
  color: #fff;
  font-family: "Cormorant", serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.p-tfv__scroll-line {
  display: block;
  width: 1px;
  height: 3.75rem;
  background: #fff;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-animation: tfv-scroll-line 2s ease-in-out infinite;
          animation: tfv-scroll-line 2s ease-in-out infinite;
}
@media screen and (min-width: 768px) {
  .p-tfv__img--sp {
    display: none;
  }
  .p-tfv__img--pc {
    display: block;
  }
}

@-webkit-keyframes tfv-pan-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
}

@keyframes tfv-pan-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
}
@-webkit-keyframes tfv-scroll-line {
  0%, 100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes tfv-scroll-line {
  0%, 100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  50% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
.p-tfv__text {
  font-size: 1.5rem;
  line-height: 2.0833333333;
  font-weight: normal;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-tfv__text {
    font-size: 2rem;
    line-height: 2.25;
  }
}
@media screen and (min-width: 768px) {
  .p-tfv__text br {
    display: none;
  }
}

.p-tfv__subtext {
  font-size: 10px;
  color: #FFF;
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .p-tfv__subtext {
    font-size: 12px;
    margin-top: 1.25rem;
  }
}

body.is-menu-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

.p-header__menu-btn {
  position: fixed;
  z-index: 101;
  top: 2.125rem;
  right: 2.1875rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}
@media screen and (min-width: 768px) {
  .p-header__menu-btn {
    top: 3.75rem;
    right: 9.375rem;
  }
}
.p-header__menu-icon {
  display: block;
}
.p-header__menu-icon img {
  display: block;
  width: 2.125rem;
  height: auto;
  -webkit-transition: -webkit-filter 0.4s ease;
  transition: -webkit-filter 0.4s ease;
  transition: filter 0.4s ease;
  transition: filter 0.4s ease, -webkit-filter 0.4s ease;
}
@media screen and (min-width: 768px) {
  .p-header__menu-icon img {
    width: 2.5625rem;
  }
}
.p-header__menu-close {
  display: none;
  position: relative;
  width: 2.125rem;
  height: 2.125rem;
}
.p-header__menu-close::before, .p-header__menu-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5rem;
  height: 1px;
  background: #333;
}
.p-header__menu-close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.p-header__menu-close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.p-header.is-scrolled .p-header__menu-icon img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1" /><feFuncG type="linear" slope="1" /><feFuncB type="linear" slope="1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.p-header.is-menu-open .p-header__menu-icon {
  display: none;
}
.p-header.is-menu-open .p-header__menu-close {
  display: block;
}

.p-drawer {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.p-drawer.is-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.p-drawer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}
.p-drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
}
.p-drawer__link {
  color: #333;
  font-family: "Cormorant", serif;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1;
  text-decoration: none;
}

.p-tabout {
  padding-top: 5.8125rem;
  max-width: 23.4375rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-tabout {
    max-width: unset;
    margin-right: unset;
    margin-left: unset;
  }
}

@media screen and (min-width: 768px) {
  .p-tabout__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.625rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-tabout__leftItems {
    width: 51.7%;
  }
  .p-tabout__rightItems {
    width: 44.56%;
  }
}
.p-tabout__img1SpOnly {
  margin-top: 3.5rem;
  margin-left: auto;
  overflow: hidden;
  aspect-ratio: 232/348;
  max-width: 14.5rem;
  width: 67.2%;
}
.p-tabout__img1SpOnly img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-tabout__img1SpOnly {
    display: none;
  }
}

.p-tabout__heading {
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-tabout__heading {
    margin-top: 9.8125rem;
  }
}
.p-tabout__heading h3 {
  font-size: 1.25rem;
  line-height: 2;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .p-tabout__heading h3 {
    font-size: 2.25rem;
    line-height: 1.9444444444;
  }
}

.p-tabout__tex {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-tabout__tex {
    margin-top: 9.125rem;
  }
}
.p-tabout__tex p {
  font-size: 0.9375rem;
  font-weight: normal;
  line-height: 2.6666666667;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-tabout__tex p {
    font-size: 1.125rem;
    line-height: 2.2222222222;
  }
  .p-tabout__tex p .br-pcnone {
    display: none;
  }
}

.p-tabout__moreBtn {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-tabout__moreBtn {
    margin-top: 7.3125rem;
  }
}
.p-tabout__moreBtn a {
  display: inline-block;
}
.p-tabout__moreBtn a img {
  max-width: 11.1875rem;
}
@media screen and (min-width: 768px) {
  .p-tabout__moreBtn a img {
    max-width: 13.3125rem;
  }
}

.p-tabout__img1PcOnly {
  display: none;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-tabout__img1PcOnly {
    display: block;
    margin-right: auto;
    overflow: hidden;
    aspect-ratio: 304/456;
    max-width: 19rem;
    width: 67.2%;
  }
  .p-tabout__img1PcOnly img {
    display: block;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-tabout__img2 {
  margin-top: 6.875rem;
  overflow: hidden;
  aspect-ratio: 254/254;
  max-width: 15.875rem;
  width: 73.6%;
}
@media screen and (min-width: 768px) {
  .p-tabout__img2 {
    max-width: 17.9375rem;
    margin-left: auto;
  }
}
.p-tabout__img2 img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-tabout__img3 {
  margin-top: 6.125rem;
  margin-left: auto;
  overflow: hidden;
  aspect-ratio: 303/202;
  max-width: 18.9375rem;
  width: 87.8%;
}
@media screen and (min-width: 768px) {
  .p-tabout__img3 {
    max-width: 27.0625rem;
    margin-left: unset;
    margin-right: auto;
  }
}
.p-tabout__img3 img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-tservice {
  padding-top: 6.8125rem;
  max-width: 23.4375rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-tservice {
    max-width: unset;
    margin-right: unset;
    margin-left: unset;
    padding-top: 11.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-tservice__top1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.5rem;
  }
  .p-tservice__title {
    margin-top: 2.5rem;
    width: 48%;
  }
}
.p-tservice__top1RightImg1 {
  margin-top: 3.5rem;
  margin-left: auto;
  overflow: hidden;
  aspect-ratio: 232/348;
  max-width: 14.5rem;
  width: 67.2%;
}
@media screen and (min-width: 768px) {
  .p-tservice__top1RightImg1 {
    margin-top: 0;
    max-width: 16.9375rem;
    margin-left: unset;
    margin-right: auto;
    width: 42%;
  }
}
.p-tservice__top1RightImg1 img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-tservice__top2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.5rem;
  }
}
.p-tservice__heading {
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-tservice__heading {
    margin-top: 0;
    width: 48%;
  }
}
.p-tservice__heading h3 {
  font-size: 1.25rem;
  line-height: 2;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .p-tservice__heading h3 {
    font-size: 2.25rem;
    line-height: 1.9444444444;
  }
}

.p-tservice__top2__RightImg1 {
  margin-top: 3.5rem;
  overflow: hidden;
  aspect-ratio: 280/187;
  max-width: 17.5rem;
  width: 81.1%;
}
@media screen and (min-width: 768px) {
  .p-tservice__top2__RightImg1 {
    max-width: 21.25rem;
    margin-left: auto;
    margin-top: 4.8125rem;
  }
}
.p-tservice__top2__RightImg1 img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-tservice__items {
  margin-top: 6.3125rem;
}

@media screen and (min-width: 768px) {
  .p-tservice__item {
    display: grid;
    grid-template-columns: 33.4375rem 1fr;
    -webkit-column-gap: 3rem;
       -moz-column-gap: 3rem;
            column-gap: 3rem;
    grid-template-rows: auto auto;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .p-tservice__item {
    -webkit-column-gap: 3.4375rem;
       -moz-column-gap: 3.4375rem;
            column-gap: 3.4375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-tservice__item--reverse {
    grid-template-columns: 1fr 33.4375rem;
  }
  .p-tservice__item--reverse .p-tservice__itemImg {
    grid-column: 2;
  }
  .p-tservice__item--reverse .p-tservice__itemTitles,
  .p-tservice__item--reverse .p-tservice__texts {
    grid-column: 1;
  }
}

.p-tservice__itemNum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 2.8571428571;
}
@media screen and (min-width: 768px) {
  .p-tservice__itemNum {
    font-size: 1rem;
    line-height: 2.5;
  }
}
.p-tservice__itemNum::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 1.5625rem;
  height: 1px;
  background-color: #D9D9D9;
}
@media screen and (min-width: 768px) {
  .p-tservice__itemNum::after {
    margin-left: 2.3125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-tservice__itemTitles {
    grid-column: 2;
    grid-row: 1;
  }
}

.p-tservice__itemHeading {
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-tservice__itemHeading {
    margin-top: 2.125rem;
  }
}
.p-tservice__itemHeading h3 {
  font-size: 1.25rem;
  line-height: 2;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .p-tservice__itemHeading h3 {
    font-size: 1.5rem;
    line-height: 1.6666666667;
  }
}

.p-tservice__itemImg {
  margin-top: 1.75rem;
  width: 100%;
}
.p-tservice__itemImg img {
  display: block;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-tservice__itemImg {
    grid-column: 1;
    grid-row: 1/-1;
    margin-top: 0;
    -ms-flex-item-align: start;
        align-self: start;
  }
}

.p-tservice__texts {
  margin-top: 2.375rem;
}
@media screen and (min-width: 768px) {
  .p-tservice__texts {
    grid-column: 2;
    grid-row: 2;
    margin-top: 1.6875rem;
  }
}

.p-tservice__textTit {
  font-size: 1.125rem;
  line-height: 2.2222222222;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-tservice__textTit {
    font-size: 1.25rem;
    line-height: 2;
  }
}

.p-tservice__textText {
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-tservice__textText {
    margin-top: 1.6875rem;
  }
}
.p-tservice__textText p {
  font-size: 0.9375rem;
  line-height: 2.6666666667;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-tservice__textText p {
    font-size: 1.125rem;
    line-height: 2.2222222222;
  }
}

.p-tservice__item:nth-child(n+2) {
  margin-top: 4.5625rem;
}
@media screen and (min-width: 768px) {
  .p-tservice__item:nth-child(n+2) {
    margin-top: 14rem;
  }
}

@media screen and (min-width: 768px) {
  .p-tservice__moreBtn {
    margin-top: 5.875rem;
  }
  .p-tservice__moreBtn img {
    max-width: 11.0625rem;
  }
}

.p-top-imgswave {
  margin-top: 5.3125rem;
  margin-bottom: 7.0625rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-top-imgswave {
    margin-top: 13.4375rem;
    margin-bottom: 11.4375rem;
  }
}
.p-top-imgswave__inner {
  overflow: hidden;
}
.p-top-imgswave__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: p-top-imgswave-scroll 30s linear infinite;
          animation: p-top-imgswave-scroll 30s linear infinite;
}
@media screen and (min-width: 768px) {
  .p-top-imgswave__track {
    gap: 4.125rem;
    -webkit-animation-duration: 40s;
            animation-duration: 40s;
  }
}
.p-top-imgswave .p-top-imgwave__itemImg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
}
.p-top-imgswave .p-top-imgwave__itemImg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-imgswave .p-top-imgwave__itemImg.wave1, .p-top-imgswave .p-top-imgwave__itemImg.wave3 {
  width: 30.6666666667vw;
  aspect-ratio: 115/172;
}
.p-top-imgswave .p-top-imgwave__itemImg.wave2, .p-top-imgswave .p-top-imgwave__itemImg.wave4 {
  width: 45.3333333333vw;
  aspect-ratio: 170/114;
}

@-webkit-keyframes p-top-imgswave-scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes p-top-imgswave-scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}
/*# sourceMappingURL=styles.css.map */
