@charset "UTF-8";
/* arguments inittial */
/* font style */
/* site style */
/* [ opacity ]
-------------------------------------------------*/
/* [ display style ]
-------------------------------------------------*/
/* [ background-image ]
-------------------------------------------------*/
/* [ writing-mode ]
-------------------------------------------------*/
/* [ illustrator & photoshop letter spacing ]
-------------------------------------------------*/
/* [ easy breakpoint ]
-------------------------------------------------*/
/* [ easy transform ]
-------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@400;700&display=swap");
:root {
  --text-underline-color: #333333;
  --text-base-color: #4b5057;
  --text-base-hover-color: #f0544d;
  --contents-max-width: 1200px;
  --contents-inner-width: 1000px;
  --navy: #4b5057;
  --slide-height: 60vh;
  --container-height: 80vh;
  --vertical-offset: calc(var(--container-height) / 2 - var(--slide-height) / 2);
}

.ib {
  display: inline-block;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  counter-reset: number 0;
  letter-spacing: 0.2px;
  font-feature-settings: "palt";
  /* フォントレンダリング設定: 1x解像度ではsubpixel、2x以上の解像度ではgrayscale */
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
  color: var(--text-base-color);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body .hoge {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

a {
  color: var(--text-base-color);
}

html,
body,
div,
p,
a,
picture,
header,
footer,
ul {
  box-sizing: border-box;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: top;
}

section {
  position: relative;
  z-index: 1;
  margin-bottom: -100px;
  padding-bottom: 100px;
}
@media (min-width: 768px) {
  section {
    margin-bottom: -100px;
    padding-bottom: 100px;
  }
}
section.radius {
  border-top-left-radius: 40px;
  overflow: hidden;
}
@media (min-width: 768px) {
  section.radius {
    border-top-left-radius: 100px;
  }
}

.bg-gray {
  background: #f8f8f8;
}

.grd-lightgray {
  background: linear-gradient(to bottom, rgba(190, 196, 223, 0.2) 0%, rgba(92, 96, 120, 0.2) 60%);
}

.grd-gray {
  background: linear-gradient(to bottom, #fff 0%, #ededed 60%);
}

.grd-darkgray {
  background: linear-gradient(to bottom, #bec4cb 0%, #5c6064 60%);
}

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

.sp {
  display: block !important;
}
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

.sp_flex {
  display: flex !important;
}
@media (min-width: 768px) {
  .sp_flex {
    display: none !important;
  }
}

.pc {
  display: none !important;
}
@media (min-width: 768px) {
  .pc {
    display: block !important;
  }
}

.pc_flex {
  display: none !important;
}
@media (min-width: 768px) {
  .pc_flex {
    display: flex !important;
  }
}

.brconcept {
  display: none;
}

.justify-content-center {
  justify-content: center;
}

.wrap {
  max-width: var(--contents-inner-width);
  margin: 0 auto;
}

.btn {
  line-height: 16px;
  box-sizing: border-box;
  padding: 8px;
}
@media screen and (min-width: 1080px) {
  .btn {
    padding: 10px;
  }
}
.btn:hover {
  opacity: 0.6;
}

.btn:link,
.btn:visited {
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
  transition: all 0.5s;
  text-align: center;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.text-white {
  color: #fff;
}
.text-black {
  color: #000;
}
.text-bold {
  font-weight: bold;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-small {
  font-size: 0.8em;
}

.float-left {
  float: left;
}
.float-right {
  float: right;
}

.fade-left {
  transition: 0.4s all cubic-bezier(0.01, 0.16, 0.25, 1.01);
  transform: translateX(-30px);
  opacity: 0;
}
.fade-right {
  transition: 0.4s all cubic-bezier(0.01, 0.16, 0.25, 1.01);
  transform: translateX(30px);
  opacity: 0;
}
.fade-center {
  transition: 0.4s all cubic-bezier(0.01, 0.16, 0.25, 1.01);
  transform: translateY(30px);
  opacity: 0;
}
.fade-history {
  transition: 0.4s all cubic-bezier(0.01, 0.16, 0.25, 1.01);
  transform: translateY(30px);
  opacity: 0;
}
.fade-comp {
  transform: translate(0, 0);
  opacity: 1;
}

.pagetop {
  display: flex;
  position: fixed;
  bottom: 65px;
  right: 10px;
  z-index: 95;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.5s;
  opacity: 0;
}
@media (min-width: 768px) {
  .pagetop {
    width: 60px;
    height: 60px;
    right: 20px;
    bottom: 88px;
  }
  .pagetop:hover {
    opacity: 0.5;
  }
}
@media print {
  .pagetop {
    display: none;
  }
}

.marker {
  display: inline;
  position: relative;
  background-repeat: no-repeat;
  background-size: 0 30%;
  background-position: left 0 bottom 0;
  transition: all 0.5s ease-in-out;
  z-index: -1;
}
.marker.inview {
  background-size: 100% 30%;
}

.acordion {
  display: none;
}

.anchor {
  margin-top: -60px;
  padding-top: 60px;
}
@media (min-width: 768px) {
  .anchor {
    margin-top: -80px;
    padding-top: 80px;
  }
}

.blank {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 3px;
}
.blank:after {
  content: "";
  width: 15px;
  height: 15px;
  position: relative;
  display: inline-block;
  background-image: url("../img/common/icon-blank.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}

.btn-rounded {
  border-radius: 8px;
  padding: 10px;
  line-height: 1;
}
@media (min-width: 768px) {
  .btn-rounded {
    padding: 15px;
  }
}
.btn-rounded.arrow {
  padding: 10px;
  color: #fff;
  position: relative;
  padding-right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-rounded.arrow:after {
  content: "";
  position: absolute;
  padding: 5px;
  width: 20px;
  height: 20px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../img/common/arrow-w.svg");
  background-color: #a3afbd;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 55% 55%;
  border-radius: 50em;
}
.btn-rounded.arrow:hover:after {
  transition: all 0.6s ease;
  transform: translateY(-50%) rotate(360deg);
}
.btn-capsul {
  border-radius: 50em;
  padding: 10px;
  line-height: 1;
}
@media (min-width: 768px) {
  .btn-capsul {
    padding: 15px;
  }
}
.btn-capsul.arrow {
  padding: 10px;
  color: #000;
  position: relative;
  padding-right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid #e5e9ed;
}
.btn-capsul.arrow:after {
  content: "";
  position: absolute;
  padding: 5px;
  width: 20px;
  height: 20px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../img/common/arrow-w.svg");
  background-color: #a3afbd;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 55% 55%;
  border-radius: 50em;
}
.btn-capsul.arrow:hover:after {
  transition: all 0.6s ease;
  transform: translateY(-50%) rotate(360deg);
}

.arrow-right {
  padding: 10px;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.arrow-right:after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../img/common/arrow-w.svg");
  background-color: #a3afbd;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 55% 55%;
  border-radius: 50em;
  margin-left: 3px;
  transform: rotate(0deg);
}
.arrow-right:hover:after {
  transition: all 0.6s ease;
  transform: rotate(360deg);
}

.arrow-bottom {
  padding: 10px;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
}
.arrow-bottom:after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../img/common/arrow-w.svg");
  background-color: #a3afbd;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 55% 55%;
  border-radius: 50em;
  margin-left: 3px;
  transform: rotate(90deg);
}
.arrow-bottom:hover:after {
  transition: all 0.6s ease;
  transform: rotate(450deg);
}

.zen {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-light {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.zen-bold {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.inter {
  font-family: "Inter", sans-serif;
}

.inter-light {
  font-family: "Inter", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.slide-logo-contents {
  padding: 15px 0;
  background: #fff;
}
@keyframes slide-right-to-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--marquee-width));
  }
}
.slide-logo .slider-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.slide-logo .slider-container .slide-track {
  display: flex;
  animation: slide-right-to-left var(--slide-duration, 10s) linear infinite;
  animation-play-state: running;
}
.slide-logo .slider-container .slide-track img {
  padding: 5px;
  width: 200px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
}

.service-contents {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .service-contents {
    padding: 50px 15px;
  }
}
.service-contents-title {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--contents-max-width);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .service-contents-title {
    flex-direction: row;
  }
}
.service-contents-title .ja {
  font-size: 20px;
}
@media (min-width: 768px) {
  .service-contents-title .ja {
    font-size: 40px;
  }
}
.service-contents-title .en {
  font-size: 60px;
  color: #e5e9ed;
}
@media (min-width: 768px) {
  .service-contents-title .en {
    font-size: 180px;
  }
}
.service-contents-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px 15px;
}
@media (min-width: 768px) {
  .service-contents-list {
    gap: 15px;
  }
}
.service-contents-list .col {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
@media (min-width: 768px) {
  .service-contents-list .col {
    width: calc((100% - 45px) / 4);
  }
}
.service-contents-list .col .img {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .service-contents-list .col .img {
    height: 100px;
  }
}
.service-contents-list .col .title {
  font-weight: bold;
  font-family: "Inter", sans-serif;
  font-size: 16px;
}
@media (min-width: 768px) {
  .service-contents-list .col .title {
    font-size: 20px;
  }
}
.service-contents-list .col .text {
  font-size: 12px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .service-contents-list .col .text {
    font-size: 14px;
    flex-grow: 1;
  }
}

.case,
.column {
  z-index: 5;
}
.case .swiper-slide,
.column .swiper-slide {
  height: auto;
}
.case-contents,
.column-contents {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .case-contents,
  .column-contents {
    padding: 50px 0;
  }
}
.case-contents-title,
.column-contents-title {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--contents-max-width);
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .case-contents-title,
  .column-contents-title {
    flex-direction: row;
  }
}
.case-contents-title .ja,
.column-contents-title .ja {
  font-size: 20px;
}
@media (min-width: 768px) {
  .case-contents-title .ja,
  .column-contents-title .ja {
    font-size: 40px;
  }
}
.case-contents-title .en,
.column-contents-title .en {
  font-size: 60px;
  color: #e5e9ed;
}
@media (min-width: 768px) {
  .case-contents-title .en,
  .column-contents-title .en {
    font-size: 180px;
  }
}
.case-contents-list,
.column-contents-list {
  padding: 0 15px;
  overflow: hidden;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .case-contents-list,
  .column-contents-list {
    margin-top: 50px;
    padding: 0;
    padding-left: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .case-contents-list,
  .column-contents-list {
    padding-left: calc((100% - var(--contents-max-width)) / 2);
  }
}
.case-viewall,
.column-viewall {
  font-weight: bold;
  font-size: 14px;
  padding: 15px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  width: 100%;
  max-width: var(--contents-max-width);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .case-viewall,
  .column-viewall {
    padding: 30px 15px;
    font-size: 18px;
  }
}
.case-slider,
.column-slider {
  width: 100%;
}
.case-flex,
.column-flex {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 15px;
  background: #fff;
  overflow: hidden;
  height: 100%;
}
.case-flex .img img,
.column-flex .img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.case-flex .title,
.column-flex .title {
  font-weight: bold;
  font-size: 14px;
  padding: 10px 15px;
}
@media (min-width: 768px) {
  .case-flex .title,
  .column-flex .title {
    font-size: 18px;
  }
}
.case-flex .text,
.column-flex .text {
  font-size: 12px;
  padding: 0 15px 15px;
}
@media (min-width: 768px) {
  .case-flex .text,
  .column-flex .text {
    font-size: 14px;
  }
}
.case .cta,
.column .cta {
  padding: 15px;
  border-radius: 15px;
  width: 100%;
  max-width: var(--contents-max-width);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: #ccc;
  margin-bottom: 30px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .case .cta,
  .column .cta {
    margin-bottom: 70px;
    padding: 70px 50px;
  }
}
.case .cta-bg,
.column .cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: url("../img/common/bg-noise.png");
  opacity: 0.75;
}
.case .cta-contents,
.column .cta-contents {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .case .cta-contents,
  .column .cta-contents {
    gap: 40px;
  }
}
.case .cta-contents-title,
.column .cta-contents-title {
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: #333;
}
@media (min-width: 768px) {
  .case .cta-contents-title,
  .column .cta-contents-title {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }
}
.case .cta-contents-title .title,
.column .cta-contents-title .title {
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 768px) {
  .case .cta-contents-title .title,
  .column .cta-contents-title .title {
    text-align: left;
    font-size: 24px;
  }
}
.case .cta-contents-title .tel,
.column .cta-contents-title .tel {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (min-width: 768px) {
  .case .cta-contents-title .tel,
  .column .cta-contents-title .tel {
    gap: 5px;
    line-height: 24px;
  }
}
.case .cta-contents-btn,
.column .cta-contents-btn {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .case .cta-contents-btn,
  .column .cta-contents-btn {
    flex-direction: row;
  }
}
.case .cta-contents-btn .btn-rounded,
.column .cta-contents-btn .btn-rounded {
  background: #fff;
  color: var(--text-base-color);
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 15px;
  filter: drop-shadow(0px 1px 4px rgba(0, 0, 0, 0.4));
}
@media (min-width: 768px) {
  .case .cta-contents-btn .btn-rounded,
  .column .cta-contents-btn .btn-rounded {
    width: calc((100% - 15px) / 2);
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .case .cta-contents-btn .btn-rounded,
  .column .cta-contents-btn .btn-rounded {
    padding: 30px;
  }
}
@media (min-width: 768px) {
  .case .cta-contents-btn .btn-rounded:after,
  .column .cta-contents-btn .btn-rounded:after {
    width: 30px;
    height: 30px;
  }
}
.case .cta-contents-btn .btn-rounded .en,
.column .cta-contents-btn .btn-rounded .en {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: bold;
}
@media (min-width: 768px) {
  .case .cta-contents-btn .btn-rounded .en,
  .column .cta-contents-btn .btn-rounded .en {
    font-size: 32px;
  }
}
.case .cta-contents-btn .btn-rounded .ja,
.column .cta-contents-btn .btn-rounded .ja {
  font-size: 14px;
}
@media (min-width: 768px) {
  .case .cta-contents-btn .btn-rounded .ja,
  .column .cta-contents-btn .btn-rounded .ja {
    font-size: 14px;
  }
}

.provided {
  background: #fff;
}
.provided-contents {
  width: 100%;
  max-width: var(--contents-max-width);
  margin: 0 auto;
  padding: 50px 15px;
}
@media (min-width: 768px) {
  .provided-contents {
    padding: 70px 50px;
  }
}
.provided-contents-slider {
  border-radius: 25px;
  overflow: hidden;
  height: 60vh;
  width: 100%;
  margin: 0 auto;
  /* アクティブスライドの拡大 */
}
@media (min-width: 768px) {
  .provided-contents-slider {
    height: 80vh;
    padding: 0 50px;
  }
}
.provided-contents-slider .slider-wrapper {
  --scroll-speed: 20s;
  animation: scroll-up var(--scroll-speed) linear infinite;
  animation-play-state: paused;
  height: calc(var(--total-height) * 2);
}
@media (min-width: 768px) {
  .provided-contents-slider .slider-wrapper {
    --scroll-speed: 10s;
  }
}
@keyframes scroll-up {
  0% {
    /* 開始: 2セット目の一番上から */
    transform: translateY(-50%);
  }
  100% {
    /* 終了: 1セット目の一番上まで移動 */
    transform: translateY(0);
  }
}
.provided-contents-slider .slide {
  transition: all 0.5s ease;
  transform: scale(0.7);
}
.provided-contents-slider .slide.active {
  transform: scale(1);
}
.provided-contents-slider .slide .flex {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: hidden;
  border-radius: 15px;
  padding: 15px;
  position: relative;
  background: #000;
  align-items: center;
  width: 80%;
  margin: 30px auto;
}
.provided-contents-slider .slide .flex-bg {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  background: url("../img/common/bg-noise.png");
}
@media (min-width: 768px) {
  .provided-contents-slider .slide .flex {
    padding: 30px;
    border-radius: 30px;
    flex-direction: row;
  }
}
.provided-contents-slider .slide .flex .text {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 15px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .provided-contents-slider .slide .flex .text {
    gap: 30px;
    width: 55%;
  }
}
.provided-contents-slider .slide .flex .text .title {
  font-size: 20px;
}
@media (min-width: 768px) {
  .provided-contents-slider .slide .flex .text .title {
    font-size: 32px;
  }
}
.provided-contents-slider .slide .flex .text .innertext {
  font-size: 10px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .provided-contents-slider .slide .flex .text .innertext {
    font-size: 14px;
    line-height: 1.8;
  }
}
.provided-contents-slider .slide .flex .img {
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .provided-contents-slider .slide .flex .img {
    width: calc(45% - 30px);
  }
}
.provided-contents-slider .scene-slide.scene-slide-active {
  height: 350px; /* 拡大後の高さ */
  transform: scale(1); /* 拡大 */
}

.introduction-contents {
  padding: 50px 0;
  background: url("../img/business/introduction-bg.png") no-repeat center bottom/cover;
  width: 100%;
  max-width: var(--contents-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .introduction-contents {
    flex-direction: row;
    padding: 70px 0;
    align-items: center;
  }
}
.introduction-contents-title {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding: 17vw 15px;
  min-height: 350px;
  justify-content: center;
  margin-top: 100px;
}
@media (min-width: 768px) {
  .introduction-contents-title {
    padding-top: min(150px,15vw);
    padding-bottom: min(150px,15vw);
    width: 45%;
    min-width: 45%;
    margin-top: 150px;
  }
}
.introduction-contents-title .title {
  position: relative;
  z-index: 3;
  color: var(--navy);
  font-size: 24px;
  padding-left: 10px;
  border-left: 2px solid var(--navy);
}
@media (min-width: 768px) {
  .introduction-contents-title .title {
    font-size: 38px;
  }
}
.introduction-contents-title .text {
  position: relative;
  z-index: 3;
  font-size: 22px;
}
@media (min-width: 768px) {
  .introduction-contents-title .text {
    font-size: 35px;
  }
}
.introduction-contents-title:after {
  content: "";
  position: absolute;
  width: min(350px,100%);
  aspect-ratio: 1/1;
  border-radius: 50em;
  top: 50%;
  left: 0;
  transform: translate(-10%, -50%);
  background: radial-gradient(rgba(255, 255, 255, 0.2) 0%, rgba(238, 238, 238, 0.2) 26%, rgba(163, 163, 163, 0.2) 58%);
  mix-blend-mode: multiply;
  backdrop-filter: blur(5px);
}
@media (min-width: 768px) {
  .introduction-contents-title:after {
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: 130%;
  }
}
.introduction-contents-text {
  position: relative;
  z-index: 5;
  padding: 15px;
}
@media (min-width: 768px) {
  .introduction-contents-text {
    padding-left: calc(5% + 30px);
  }
}
.introduction-contents-text .subtitle {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  color: #e5e9ed;
  font-weight: 200;
}
@media (min-width: 768px) {
  .introduction-contents-text .subtitle {
    font-size: 120px;
  }
}
.introduction-contents-text .text {
  font-size: 14px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .introduction-contents-text .text {
    font-size: 16px;
  }
}

.reason-contents {
  padding: 50px 15px;
  width: 100%;
  max-width: var(--contents-max-width);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .reason-contents {
    padding: 70px 15px;
  }
}
.reason-contents-title {
  font-size: 18px;
}
@media (min-width: 768px) {
  .reason-contents-title {
    font-size: 40px;
  }
}
.reason-contents-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .reason-contents-list {
    margin-top: 50px;
    flex-direction: row;
  }
}
.reason-contents-item {
  padding: 30px;
  border-radius: 30px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  filter: drop-shadow(0px 1px 5px rgba(0, 0, 0, 0.25));
}
@media (min-width: 768px) {
  .reason-contents-item {
    width: calc((100% - 30px) / 3);
  }
}
.reason-contents-item .title {
  font-size: 12px;
  line-height: 12px;
}
@media (min-width: 768px) {
  .reason-contents-item .title {
    font-size: 14px;
  }
}
.reason-contents-item .title:before {
  content: "●";
  color: #f6933e;
  font-size: 10px;
  line-height: 12px;
}
@media (min-width: 768px) {
  .reason-contents-item .title:before {
    line-height: 14px;
  }
}
.reason-contents-item .subtitle {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.reason-contents-item .subtitle-text {
  font-size: 18px;
}
@media (min-width: 768px) {
  .reason-contents-item .subtitle-text {
    font-size: min(22px,1.8vw);
  }
}
.reason-contents-item .text {
  font-size: 14px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .reason-contents-item .text {
    font-size: 16px;
  }
}/*# sourceMappingURL=common.css.map */