@charset "UTF-8";
/*--変数設定--*/
/*色指定*/
:root {
  --main-color1:#ffffff;
  --main-color2:#212121;
  --main-color3:#049963;
  --main-color4:#05589F;
  --main-color5:#d5ebe3;
  --main-color6:#d4e1ec;
  --main-color7:#03c27c;
  --main-accent:#0871c7;
  --main-color8:#f1f5f2;
  --main-gray1:#dfdfdf;
  --main-gray2:#c2c2c2;
  --footer-color1:#f2f7fb;
}

/*横幅*/
/*ブレイクポイント設定*/
/*角丸*/
/*--mixin設定--*/
/*レスポンシブル*/
/*フォントサイズを調整*/
/*Elementor又はAstaraの影響でsp表示でflexが崩れるのを防ぐ*/
@media (max-width: 767px) {
  .e-con.e-flex {
    flex-wrap: nowrap;
  }
}
/*影*/
/*ヘッターを固定*/
div, p, li, a, h1, h2, h3, h4, h5 {
  font-family: "Noto Sans JP", sans-serif;
}

.list-1 {
  list-style-type: disc;
}
.list-1 li::marker {
  color: var(--main-color3);
  font-size: 1.1em;
}

.sticky-container .main-header {
  position: sticky;
  align-self: flex-start;
  top: 7%;
}
@media screen and (max-width: 820px) {
  .sticky-container .main-header {
    top: 70px;
  }
}
@media screen and (max-width: 540px) {
  .sticky-container .main-header {
    position: static;
  }
}
.sticky-container .main-content {
  padding-left: 5%;
}
@media screen and (max-width: 820px) {
  .sticky-container .main-content {
    padding-left: 0;
  }
}

a.webbtn2 {
  display: inline-block;
  text-align: center;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: var(--main-color1);
  padding: 0.8em 2em;
  min-width: 200px;
  transition: 0.2s all;
  border: 1px solid var(--main-color4);
  background-color: var(--main-color4);
  border-radius: 10px;
  text-decoration: none !important;
}
a.webbtn2:hover {
  background-color: var(--main-color1);
  color: var(--main-color4);
}

/*--カスタム：テキストブロック--*/
/*表デザインnormal*/
table.table_normal {
  border-collapse: collapse;
  width: 100%;
}
table.table_normal th, table.table_normal td {
  border-top: 1px solid var(--main-gray2);
  border-bottom: 1px solid var(--main-gray2);
  padding: 0.5em 0.5em 0.5em 1em;
  min-width: 5.5em;
}
@media screen and (max-width: 820px) {
  table.table_normal th, table.table_normal td {
    display: block;
    padding: 0.4em 0.4em;
    font-size: 0.9em;
  }
}
table.table_normal th {
  color: var(--main-color2);
  text-align: left;
  min-width: 25%;
  background-color: var(--main-gray1);
}
@media screen and (max-width: 820px) {
  table.table_normal th {
    border-bottom: none;
    width: 100%;
  }
}
table.table_normal td {
  background-color: var(--main-color1);
}
@media screen and (max-width: 820px) {
  table.table_normal td {
    border-top: none;
    border-bottom: 1px solid var(--main-gray1);
  }
}

table.table_normal.white th, table.table_normal.white td {
  background-color: var(--main-color1);
}
@media screen and (max-width: 820px) {
  table.table_normal.white th {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 820px) {
  table.table_normal.white td {
    padding-top: 0.25em;
  }
}

/*表デザイン01*/
table.table_design01 {
  border-collapse: collapse;
  width: 100%;
}
table.table_design01 th, table.table_design01 td {
  border: 2px solid var(--main-gray1);
  background-color: var(--main-color1);
  padding: 0.7em 1em;
}
@media screen and (max-width: 820px) {
  table.table_design01 th, table.table_design01 td {
    display: block;
    padding: 0.4em 0.4em;
    border: none;
    font-size: 0.9em;
  }
}
table.table_design01 th {
  background-color: var(--main-color3);
  color: var(--main-color1);
  font-weight: 500;
  text-align: center;
  width: 20%;
  font-weight: 500;
}
@media screen and (max-width: 820px) {
  table.table_design01 th {
    text-align: left;
    width: 100%;
  }
}
@media screen and (max-width: 820px) {
  table.table_design01 td {
    border-bottom: 2px solid var(--main-gray1);
  }
}

.parallax__bg {
  position: absolute;
  inset: 0;
  background-image: url();
  background-size: cover;
  background-position: center;
}

header.site-header {
  position: fixed;
  width: 100vw;
}

/*mv*/
#mv {
  padding-top: 80px;
}
#mv .wrap {
  display: grid;
  grid-template-columns: 1fr 0.46fr;
  gap: 10px;
  width: 100%;
  padding: 0 2%;
  height: calc(100vh - 100px);
}
@media screen and (max-width: 1025px) {
  #mv .wrap {
    height: auto;
    grid-template-columns: 1fr;
    padding: 0 0;
  }
}
#mv .wrap .video-area .box {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 1025px) {
  #mv .wrap .video-area .box {
    aspect-ratio: 4/3;
  }
}
@media screen and (max-width: 540px) {
  #mv .wrap .video-area .box {
    aspect-ratio: 1/1.1;
  }
}
#mv .wrap .video-area .box video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#mv .wrap .video-area .box .color-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: inherit;
  background-image: linear-gradient(0deg, #000000, transparent);
  background-position: center;
  opacity: 0.5;
}
#mv .wrap .video-area .box .copy-box {
  position: absolute;
  bottom: 2.2em;
  left: 2.5em;
}
#mv .wrap .video-area .box .copy-box .main {
  font-size: 2.8em;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: var(--main-color1);
  margin-bottom: 30px;
}
#mv .wrap .video-area .box .copy-box .sub {
  font-size: 1.2em;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: var(--main-color1);
}
#mv .wrap .img-area {
  display: grid;
  row-gap: 10px;
  grid-template-rows: calc(mv-height-pc / 2) calc(mv-height-pc / 2);
}
@media screen and (max-width: 1025px) {
  #mv .wrap .img-area {
    -moz-column-gap: 10px;
         column-gap: 10px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
}
#mv .wrap .img-area a.box {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease-out;
  padding: 1em;
}
@media screen and (max-width: 1025px) {
  #mv .wrap .img-area a.box {
    aspect-ratio: 1/1;
  }
}
#mv .wrap .img-area a.box p {
  color: var(--main-color1);
  margin-bottom: 0.3em;
  transition: all 0.3s ease-out;
}
#mv .wrap .img-area a.box p.bold {
  font-size: 1.35em;
  font-weight: 600;
}
#mv .wrap .img-area a.box .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: inherit;
  background-size: cover;
  transition: all 0.3s ease-out;
  z-index: -1;
}
#mv .wrap .img-area a.box .color-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: inherit;
  background-image: linear-gradient(0deg, #000000, transparent);
  background-position: center;
  opacity: 0.5;
  z-index: -1;
}
#mv .wrap .img-area a.box:hover {
  box-shadow: inset 0 0 0 4px var(--main-accent);
}
#mv .wrap .img-area a.box:hover p {
  color: var(--main-color7);
}
#mv .wrap .img-area a.box:hover .bg {
  transform: scale(1.1);
}

/*テキストのアニメーション*/
.text-anime-area {
  overflow-x: hidden;
  overflow-x: clip;
}
.text-anime-area .box {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 1px;
}
.text-anime-area .box .item {
  font-size: 9.5em;
  font-weight: 400;
  line-height: 1;
  color: #e4e4e4;
  opacity: 0.3;
  width: -moz-max-content;
  width: max-content;
  pointer-events: none;
  white-space: nowrap;
  padding: 0 1em;
  mix-blend-mode: multiply;
  font-family: "Inter", sans-serif;
  z-index: 1;
  animation: textAnime 35s linear 0s infinite normal none;
}
.text-anime-area .box .item span {
  color: transparent;
  -webkit-text-stroke: 2px #c5c5c5;
}

@keyframes textAnime {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translate(-100%);
  }
}
@keyframes textAnime-sp {
  0% {
    left: 100%;
  }
  100% {
    left: -350%;
  }
}
/*トップページの見出し*/
h2.toppage {
  font-size: 2.3em !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  line-height: 1.5 !important;
}
@media screen and (max-width: 820px) {
  h2.toppage {
    font-size: 1.75em !important;
  }
}

h3.toppage {
  font-size: 1.5em !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  line-height: 1.3 !important;
}

.h-eng {
  font-family: "Inter", sans-serif;
  font-size: 1.2em !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  line-height: 1.3 !important;
  margin-bottom: 0.5em !important;
  color: var(--main-color3);
}

/*目立つテキスト*/
.text-message p {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.9;
  margin-bottom: 1em;
}

/*事業案内*/
.business {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: var(--main-color2);
  color: var(--main-color1);
  padding: 100px 0;
  border-radius: 10px;
}
@media screen and (max-width: 820px) {
  .business {
    background-color: var(--main-color1);
    color: var(--main-color2);
  }
}
.business__head {
  position: relative;
  z-index: 2;
  padding: 64px 40px 32px;
}
@media screen and (max-width: 820px) {
  .business__head {
    padding: 32px 20px 16px;
  }
}
.business__head-en {
  font-size: 14px;
  letter-spacing: 0.15em;
  opacity: 0.7;
  margin: 0 0 8px;
}
.business__head-ja {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}
@media screen and (max-width: 820px) {
  .business__head-ja {
    font-size: 22px;
  }
}
.business__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
@media screen and (max-width: 820px) {
  .business__bg {
    display: none;
  }
}
.business__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.business__bg-image.is-active {
  opacity: 1;
  transform: scale(1);
}
.business__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.65);
}
@media screen and (max-width: 820px) {
  .business__overlay {
    display: none;
  }
}
.business__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  padding: 0 2%;
  margin: 0 auto;
}
.business__list {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 820px) {
  .business__list {
    border-top-color: rgba(33, 33, 33, 0.15);
  }
}
.business__item {
  position: relative;
  display: flex;
  display: grid;
  text-decoration: none !important;
  grid-template-columns: 1fr 1.5fr 0.5fr;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 36px 40px 70px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 820px) {
  .business__item {
    grid-template-columns: 0.5fr 1.75fr 0.75fr;
    border-bottom-color: rgba(33, 33, 33, 0.15);
    padding: 16px 20px;
    gap: 10px;
  }
}
@media screen and (min-width: 541px) {
  .business__item:hover {
    color: var(--main-color7);
    padding: 36px 20px 70px 60px;
  }
  .business__item:hover .business__arrow {
    background-color: var(--main-accent);
    border-color: var(--main-accent);
    color: var(--main-color1);
  }
}
.business__left {
  width: 300px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex: 1 1 auto;
  min-width: 0;
}
@media screen and (max-width: 820px) {
  .business__left {
    width: auto;
    align-items: center;
    gap: 12px;
  }
}
.business__number {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 400;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  color: var(--main-color7);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 820px) {
  .business__number {
    padding-top: 0;
    text-decoration: none;
  }
}
.business__note {
  margin: 0;
  max-width: 320px;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 820px) {
  .business__note {
    display: none;
    text-decoration: none;
  }
}
.business__title {
  flex: 1 1 auto;
  margin: 0;
  padding: 0 40px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: inherit;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 820px) {
  .business__title {
    padding: 0;
    font-size: 16px;
    text-decoration: none;
  }
}
.business__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid currentColor;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.business__arrow svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
@media screen and (max-width: 820px) {
  .business__arrow {
    display: none;
  }
}
.business__thumb {
  display: none;
}
@media screen and (max-width: 820px) {
  .business__thumb {
    display: block;
    flex-shrink: 0;
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 4px;
  }
  .business__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/*会社案内、採用情報、事務所一覧へのリンク*/
.top-link-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1.2/1;
  border-radius: 10px;
  overflow: hidden;
}
.top-link-item a .img-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-image: url("");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-out;
}
.top-link-item a .color-front {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(33, 33, 33, 0.25), rgb(33, 33, 33));
  opacity: 0.65;
  transition: all 0.3s ease-out;
  border-radius: 10px;
}
.top-link-item a .text {
  position: absolute;
  width: 100%;
  bottom: 0.6em;
  left: 0.65em;
  color: #fafafa;
  font-family: "Noto Sans JP", sans-serif;
  transition: all 0.3s ease-out;
  font-size: 1.4em;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.top-link-item a:hover .img-bg {
  transform: translate(-50%, -50%) scale(1.2);
}
.top-link-item a:hover .color-front {
  filter: contrast(180%);
}
.top-link-item a:hover .text {
  color: var(--main-color7);
}

/*スライダー*/
.slider {
  width: 100%;
  overflow: hidden;
}
.slider .slider-track {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
}
.slider .slider-track img {
  display: block;
  border-radius: 10px;
  margin-right: 40px;
}
@media screen and (max-width: 820px) {
  .slider .slider-track img {
    margin-right: 20px;
  }
}
@media screen and (max-width: 540px) {
  .slider .slider-track img {
    margin-right: 10px;
  }
}
.slider .slider-track img.yoko1 {
  width: 40vw;
}
.slider .slider-track img.yoko2 {
  width: 40vw;
  margin-top: 80px;
}
.slider .slider-track img.yoko3 {
  width: 40vw;
}
.slider .slider-track img.tate1 {
  width: 17vw;
}
.slider .slider-track img.tate2 {
  width: 17vw;
  margin-top: 240px;
}
.slider .slider-track img.tate3 {
  width: 17vw;
  margin-top: 50px;
}

/*お問い合わせ+フッター*/
.contact-area {
  background-color: var(--main-color3);
  padding: 80px 3% 60px 3%;
}
.contact-area .wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 50px;
}
.contact-area .wrap .catch-copy {
  color: var(--main-color1);
  font-size: 1.8em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.contact-area .wrap .box {
  display: flex;
  flex-direction: column;
  width: 50%;
  max-width: 550px;
  min-width: 450px;
  padding-top: 50px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 820px) {
  .contact-area .wrap .box {
    display: block;
    width: 100%;
    max-width: none;
    min-width: none;
  }
}
.contact-area .wrap .box .title .h-eng {
  color: var(--main-color4);
  font-size: 1.1em !important;
}
.contact-area .wrap .box .title h2 {
  color: var(--main-color1);
  font-size: 1.5em !important;
}
.contact-area .wrap .box .item-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 2%;
       column-gap: 2%;
  align-items: end;
}
@media screen and (max-width: 820px) {
  .contact-area .wrap .box .item-box {
    display: block;
  }
}
@media screen and (max-width: 820px) {
  .contact-area .wrap .box .item-box .item {
    margin-bottom: 10px;
  }
}
.contact-area .wrap .box .item-box .item p {
  color: var(--main-color1);
  font-weight: 500;
  margin-bottom: 0.85em;
}
.contact-area .wrap2 {
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--main-color1);
  padding-top: 50px;
}
.contact-area .wrap2 ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-area .wrap2 ul li {
  padding-right: 1.25em;
  margin-bottom: 0.2em;
}
.contact-area .wrap2 ul li a {
  color: var(--main-color1);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-area .wrap2 ul li a:hover {
  color: var(--main-accent);
}

/*◇子ページ*/
/*サービス*/
.parent-business {
  position: relative;
  background-color: var(--main-color3);
}
.parent-business .item-business {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 25vh 5% 15vh 5%;
  display: flex;
  background-color: var(--main-color3);
  color: var(--main-color1);
}
.parent-business .item-business + .item-business {
  margin-top: 30rem;
}
.parent-business .item-business a.item-inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  text-decoration: none;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
.parent-business .item-business a.item-inner .img-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  width: 40%;
  aspect-ratio: 4/3;
}
.parent-business .item-business a.item-inner .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.parent-business .item-business a.item-inner .text-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

/**
 *
 * service.scss
 *
 */
/* ------------------------------------------------------------
 p-service
------------------------------------------------------------ */
.home-service {
  position: relative;
  z-index: 10;
  background-color: var(--main-color1);
}

.p-service {
  background-color: var(--main-color2);
}

@media screen and (min-width: 1024px) {
  .p-service {
    padding: 16rem 0;
  }
}
@media screen and (max-width: 1023px) {
  .p-service {
    padding: 12rem 0;
  }
}
@media screen and (max-width: 1023px) {
  .p-service .p-header {
    margin-bottom: 4rem;
  }
}
.p-service__section {
  background-color: var(--main-color2);
  color: var(--main-color1);
}

@media screen and (min-width: 1024px) {
  .p-service__section {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 20.6rem 0 11.6rem;
    display: flex;
  }
}
@media screen and (min-width: 1024px) and (max-height: 768px) {
  .p-service__section {
    padding: 26.82292vh 0 15.10417vh;
  }
}
@media screen and (min-width: 1024px) {
  .p-service__section + .p-service__section {
    margin-top: 30rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-service__section + .p-service__section {
    margin-top: 8rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-service__section__inner {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1023px) {
  .p-service__section__inner {
    display: block;
  }
}
/* ----------------------------------------
 p-service__figure
---------------------------------------- */
.p-service__figure {
  position: relative;
}

@media screen and (min-width: 1024px) {
  .p-service__figure {
    width: var(--grid6);
  }
}
@media screen and (max-width: 1023px) {
  .p-service__figure {
    max-height: 46rem;
  }
  .p-service__figure::after {
    content: "";
    display: block;
    padding-top: 65.71429%;
  }
}
/* ----------------------------------------
 p-service__contents
---------------------------------------- */
.p-service__contents {
  position: relative;
}

@media screen and (min-width: 1024px) {
  .p-service__contents {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: var(--grid5);
  }
}
@media screen and (max-width: 1023px) {
  .p-service__contents {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-service__contents .p-button2 {
    margin-top: 8rem;
  }
}
@media screen and (min-width: 1024px) and (max-height: 768px) {
  .p-service__contents .p-button2 {
    margin-top: 10.41667vh;
  }
}
@media screen and (max-width: 1023px) {
  .p-service__contents .p-button2 {
    margin-top: 4rem;
  }
}
.p-service__num {
  --width: 5rem ;
  --height: 4.3rem ;
  min-width: var(--width);
  width: var(--width);
  min-height: var(--height);
  height: var(--height);
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../img/common/icon/title_symbol.svg");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  font-family: var(--font-sans-serif);
  font-size: var(--font-size16);
  padding-top: 0.5rem;
}

@media screen and (min-width: 1024px) and (max-height: 768px) {
  .p-service__num {
    --width: 6.51042vh;
    --height: 5.59896vh;
    font-size: 2.08333vh;
    padding-top: 0.65104vh;
  }
}
.p-service__title {
  font-weight: 400;
  letter-spacing: var(--letter-spacing-_rg);
  line-height: var(--line-height-noraml);
}

@media screen and (min-width: 1024px) {
  .p-service__title {
    font-size: 2.77778vw;
    margin-top: 4rem;
  }
}
@media screen and (min-width: 1024px) and (max-height: 768px) {
  .p-service__title {
    font-size: max(4.16667vh, 30px, 3rem);
    margin-top: 5.20833vh;
  }
}
@media screen and (min-width: 1441px) {
  .p-service__title {
    font-size: var(--font-size48);
  }
}
@media screen and (max-width: 1023px) {
  .p-service__title {
    font-size: var(--font-size30);
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-service__txt {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1024px) and (max-height: 768px) {
  .p-service__txt {
    margin-top: 2.60417vh;
  }
}
@media screen and (max-width: 1023px) {
  .p-service__txt {
    margin-top: 1.5rem;
  }
}/*# sourceMappingURL=moriokadenko.css.map */