/*
  Foundation
---------------------------------------------------*/
/**
 * Foudation / Reset
 */
*,
*:before,
*:after {
  -webkit-appearance: unset;
  -moz-appearance: unset;
       appearance: unset;
  border: none;
  border-spacing: 0;
  box-sizing: border-box;
  font-family: unset;
  font-size: unset;
  font-weight: unset;
  line-height: 1.3;
  list-style-type: none;
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  outline: none;
  padding: 0;
  text-align: unset;
  text-decoration: none;
}

/**
 * Foudation / Font
 */
/**
 * Size
 */
/**
 * Weight
 */
/**
 * Family
 */
/**
 * Foudation / Color
 */
:root {
  --color-accent: #e2c48f;
  --color-white: #fff;
  --color-base: #f7f7f7;
  --color-gray-50: #eaecef;
  --color-gray-100: #dee3e6;
  --color-gray-200: #c6d0da;
  --color-gray-300: #adbcc9;
  --color-gray-400: #95a9bd;
  --color-gray-500: #7b94ad;
  --color-gray-600: #62809e;
  --color-gray-700: #496c8f;
  --color-gray-800: #315981;
  --color-gray-900: #174572;
  --color-black: #003264;
}

/**
 * Foudation / Variable
 */
/**
 * Import Modules
 */
/**
 * Image File Path
 */
/**
 * Header Height
 */
/**
 * Z-index
 */
/**
 * Transition
 */
/**
 * Keyframes
 */
@keyframes scroll_text {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.3333333333%);
  }
}
@keyframes underline {
  0% {
    transform: scaleX(1);
    transform-origin: right;
  }
  49.9% {
    transform: scaleX(0);
    transform-origin: right;
  }
  50% {
    transform: scaleX(0);
    transform-origin: left;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left;
  }
}
/**
 * Foudation / Mixin
 */
/**
 * Break Points
 */
/**
 * Content Width
 */
/**
 * Disable :hover on touch devices
 */
/**
 * Foudation / Base
 */
*::-moz-selection {
  background: rgba(0, 0, 0, 0.075);
}
*::selection {
  background: rgba(0, 0, 0, 0.075);
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "shippori-mincho-b1", serif;
  font-style: normal;
  font-weight: 500;
  background: var(--color-base);
  color: var(--color-black);
  font-size: 14px;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.025em;
  overscroll-behavior-y: none;
}

h1,
h2,
h3,
h4,
h5 {
  word-break: break-all;
}

picture {
  display: block;
}

img {
  display: flex;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

iframe {
  display: flex;
  height: 100%;
  width: 100%;
}

svg {
  display: block;
  height: auto;
  width: 100%;
}

p {
  line-height: 2;
  text-align: justify;
}

a {
  color: inherit;
}

a:not([class]) {
  transition: opacity cubic-bezier(0.4, 0.15, 0, 1);
  text-decoration: underline;
}

@media (hover: hover) and (pointer: fine) {
  a:not([class]):hover {
    opacity: 0.5;
  }
}
strong {
  color: var(--color-accent);
  font-weight: 500;
}

button {
  background: none;
  color: inherit;
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

th {
  text-align: left;
}

td {
  text-align: justify;
}

textarea,
input,
select {
  font-family: "shippori-mincho-b1", serif;
  font-style: normal;
  font-weight: 500;
  background: var(--color-base);
  border-radius: 0;
  color: var(--color-black);
  font-size: 14px;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.05em;
  overscroll-behavior-y: none;
}
textarea::-moz-placeholder, input::-moz-placeholder, select::-moz-placeholder {
  color: var(--color-gray-200);
}
textarea::placeholder,
input::placeholder,
select::placeholder {
  color: var(--color-gray-200);
}

select {
  background: none;
  color: inherit;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=time]::-webkit-calendar-picker-indicator {
  display: none;
}

_::-webkit-full-page-media,
_:future,
:root body {
  height: -webkit-fill-available;
}

a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

summary::-webkit-details-marker {
  display: none;
}

/*
  Layout
---------------------------------------------------*/
/**
 * Layout / Header
 */
.l-header {
  align-items: center;
  background: var(--color-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  position: fixed;
  top: 0;
  left: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0.15, 0, 1), translate 0.3s cubic-bezier(0.4, 0.15, 0, 1);
  height: 80px;
  width: 100vw;
  z-index: 97;
}
.l-header__logo svg {
  width: 200px;
}
.l-header__cta {
  align-items: center;
  display: flex;
  gap: 20px;
}
.l-header__tel {
  pointer-events: none;
  align-items: center;
  display: grid;
  font-size: 26px;
  gap: 0 7px;
  grid-template-columns: auto;
  justify-content: center;
  position: relative;
  line-height: 0.9;
}
.l-header__tel span {
  grid-column: 2/3;
  font-size: 16px;
  letter-spacing: 0;
}
.l-header__tel::before {
  background: url("../images/icon_header_cta_tel.png") no-repeat center center/contain;
  content: "";
  width: 23px;
  height: 31px;
  grid-row: 1/3;
}
.l-header__mail {
  align-items: center;
  background: #ffeb04;
  border-radius: 5px;
  box-shadow: 0 5px 0 #d1c100;
  display: grid;
  font-size: 16px;
  gap: 7px;
  grid-template-columns: 16px auto;
  justify-content: center;
  position: relative;
  top: -2px;
  transition: box-shadow 0.3s cubic-bezier(0.4, 0.15, 0, 1), translate 0.3s cubic-bezier(0.4, 0.15, 0, 1);
  height: 46px;
  width: 148px;
}
.l-header__mail::before {
  background: url("../images/icon_header_cta_mail.svg") no-repeat center center/contain;
  content: "";
  height: 16px;
  width: 16px;
}
@media (hover: hover) and (pointer: fine) {
  .l-header__mail:hover {
    translate: 0 5px;
    box-shadow: 0 0px 0 #d1c100;
  }
}

@media (max-width: 767px) {
  .l-header {
    height: 60px;
    justify-content: center;
  }
  .l-header__logo svg {
    height: 40px;
    width: auto;
  }
  .l-header__cta {
    display: none;
  }
}
/**
 * Layout / Contents
 */
.l-contents {
  padding-top: 80px;
  min-height: 100vh;
}

@media (max-width: 767px) {
  .l-contents {
    padding-top: 60px;
  }
}
/**
 * Layout / Footer
 */
.l-footer {
  background: var(--color-black);
}
.l-footer__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
}
@media (min-width: 1081px) {
  .l-footer__inner {
    margin-right: auto;
    margin-left: auto;
    padding-right: 10vw;
    padding-left: 10vw;
    max-width: calc(1366px + 10vw + 10vw);
  }
}
@media (max-width: 1080px) {
  .l-footer__inner {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
@media (max-width: 767px) {
  .l-footer__inner {
    padding-right: 3vw;
    padding-left: 3vw;
  }
}
.l-footer__copyright {
  color: var(--color-white);
  font-size: 12px;
}
.l-footer__link {
  align-items: center;
  color: var(--color-white);
  display: grid;
  gap: 5px;
  grid-template-columns: 1fr 12px;
  padding-bottom: 7px;
  position: relative;
}
.l-footer__link::before {
  background: var(--color-white);
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
}
.l-footer__link::after {
  content: "";
  background: url("../images/icon_footer_link_open_in_new.svg") no-repeat center center/contain;
  height: 12px;
  width: 12px;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__link:hover::before {
    animation: underline 0.5s cubic-bezier(0.4, 0.15, 0, 1) both;
  }
}

@media (max-width: 767px) {
  .l-footer__inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .l-footer__link {
    font-size: 12px;
    padding-bottom: 5px;
  }
  .l-footer__link::after {
    height: 10px;
    width: 10px;
  }
}
/*
  Object
---------------------------------------------------*/
/*------------------- Component -------------------*/
/**
 * Actions
 */
/**
 * Object / Component / Actions / Button
 */
/**
 * Import Modules
 */
/**
 * Styles
 */
/*-------------------- Project --------------------*/
.p-kv__main img {
  aspect-ratio: 1366/688;
}
.p-kv__lead {
  background: var(--color-gray-50);
  display: block;
  font-size: 16px;
  line-height: 1.5;
  padding: 20px 0;
  text-align: center;
}
@media (min-width: 1081px) {
  .p-kv__ad {
    margin-right: auto;
    margin-left: auto;
    padding-right: 10vw;
    padding-left: 10vw;
    max-width: calc(1366px + 10vw + 10vw);
  }
}
@media (max-width: 1080px) {
  .p-kv__ad {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
@media (max-width: 767px) {
  .p-kv__ad {
    padding-right: 3vw;
    padding-left: 3vw;
  }
}
.p-kv__ad p {
  margin: 20px auto;
  padding: 0 15vw;
}

@media (max-width: 767px) {
  .p-kv__main img {
    aspect-ratio: 375/496;
  }
  .p-kv__lead {
    font-size: 14px;
    padding: 15px 0;
  }
  .p-kv__ad p {
    padding: 0;
  }
}
.p-center {
  background: url("../../dist/images/webp/bg_center.webp") no-repeat center center/cover;
  padding-top: 60px;
  padding-bottom: 80px;
  /**
   * Marquee
   */
}
@media (min-width: 1081px) {
  .p-center__inner {
    margin-right: auto;
    margin-left: auto;
    padding-right: 10vw;
    padding-left: 10vw;
    max-width: calc(1366px + 10vw + 10vw);
  }
}
@media (max-width: 1080px) {
  .p-center__inner {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
@media (max-width: 767px) {
  .p-center__inner {
    padding-right: 3vw;
    padding-left: 3vw;
  }
}
.p-center__top {
  align-items: center;
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
}
.p-center__heading img {
  -o-object-fit: contain;
     object-fit: contain;
}
.p-center__description {
  color: var(--color-white);
  font-size: 16px;
  padding-top: 35px;
}
.p-center__bottom {
  align-items: center;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 60px;
  position: relative;
  z-index: 1;
}
.p-center__item {
  background: var(--color-white);
  border-radius: 15px;
  box-shadow: 20px 20px 50px rgba(35, 53, 65, 0.2);
  position: relative;
}
.p-center__item-image {
  padding: 10px 10px 0;
}
.p-center__item-image img {
  aspect-ratio: 1.618/1;
  border-radius: 10px;
}
.p-center__item-contents {
  padding: 20px;
}
.p-center__item-heading {
  font-size: 21px;
  text-align: center;
}
.p-center__item-description {
  padding-top: 12px;
  padding-bottom: 15px;
}
.p-center__item-more {
  background: var(--color-black);
  border-radius: 5px;
  box-shadow: 10px 10px 20px rgba(40, 68, 113, 0.3);
  color: var(--color-base);
  display: block;
  padding: 16px 0;
  text-align: center;
  transition: box-shadow 0.3s cubic-bezier(0.4, 0.15, 0, 1), filter 0.3s cubic-bezier(0.4, 0.15, 0, 1);
}
@media (hover: hover) and (pointer: fine) {
  .p-center__item-more:hover {
    box-shadow: 0 0 0 rgba(40, 68, 113, 0);
    filter: brightness(1.5);
  }
}
.p-center__marquee {
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
  position: absolute;
  left: 0;
  width: 100vw;
  z-index: -1;
}
.p-center__marquee-wrap {
  animation: scroll_text 80s linear infinite;
  display: flex;
  gap: 30px;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  perspective: 1000;
}
.p-center__marquee-text {
  align-items: center;
  color: rgba(255, 255, 255, 0.05);
  display: flex;
  font-size: 180px;
  gap: 30px;
  line-height: 1;
  text-transform: uppercase;
  white-space: pre;
}

@media (max-width: 767px) {
  .p-center {
    padding-bottom: 40px;
  }
  .p-center__top {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .p-center__description {
    font-size: 14px;
    padding-top: 18px;
  }
  .p-center__bottom {
    gap: 20px;
    grid-template-columns: 1fr;
    padding-top: 30px;
  }
  .p-center__marquee {
    display: none;
  }
}
.p-trouble {
  background: url("../../dist/images/webp/bg_trouble.webp") no-repeat right top/cover;
  -webkit-clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
          clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
  position: relative;
  padding-top: 100px;
  padding-bottom: 150px;
}
@media (min-width: 1081px) {
  .p-trouble__inner {
    margin-right: auto;
    margin-left: auto;
    padding-right: 10vw;
    padding-left: 10vw;
    max-width: calc(1366px + 10vw + 10vw);
  }
}
@media (max-width: 1080px) {
  .p-trouble__inner {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
@media (max-width: 767px) {
  .p-trouble__inner {
    padding-right: 3vw;
    padding-left: 3vw;
  }
}
.p-trouble__heading-en {
  color: var(--color-white);
  font-size: 180px;
  line-height: 0.6;
  opacity: 0.1;
  position: absolute;
  top: 40px;
  left: 0;
}
.p-trouble__heading {
  color: var(--color-white);
  font-size: 42px;
  line-height: 1.5;
}
.p-trouble__main {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 30px;
  width: 50%;
}
.p-trouble__item {
  background: var(--color-white);
  border-radius: 5px;
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.1);
  color: #777;
  display: grid;
  font-size: 21px;
  place-items: center;
  height: 68px;
}

@media (max-width: 767px) {
  .p-trouble {
    background-position: 70% top;
    padding-top: 50px;
    padding-bottom: 100px;
  }
  .p-trouble__heading-en {
    font-size: 80px;
    text-align: center;
    top: 20px;
    right: 0;
  }
  .p-trouble__heading {
    font-size: 24px;
    text-align: center;
  }
  .p-trouble__main {
    gap: 10px;
    padding-top: 20px;
    width: 100%;
  }
  .p-trouble__item {
    font-size: 16px;
    height: 56px;
  }
}
.p-solution {
  background: url("../../dist/images/webp/bg_solution.webp") no-repeat center top/cover, #f4eee6;
  margin-top: -100px;
  padding-top: 160px;
  padding-bottom: 80px;
  position: relative;
  z-index: -1;
}
@media (min-width: 1081px) {
  .p-solution__inner {
    margin-right: auto;
    margin-left: auto;
    padding-right: 10vw;
    padding-left: 10vw;
    max-width: calc(1366px + 10vw + 10vw);
  }
}
@media (max-width: 1080px) {
  .p-solution__inner {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
@media (max-width: 767px) {
  .p-solution__inner {
    padding-right: 3vw;
    padding-left: 3vw;
  }
}
.p-solution__heading svg {
  height: 125px;
}
.p-solution__main {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 60px;
}
.p-solution__item {
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 15px 15px 30px #ebe0cc;
  padding: 40px 30px 35px;
  position: relative;
}
.p-solution__item-label {
  position: absolute;
  top: -20px;
  left: -15px;
  height: 64px;
  width: 64px;
}
.p-solution__item-heading {
  border-bottom: 1px solid #e0d5c3;
  color: #9a7639;
  font-size: 21px;
  margin: 0 auto;
  padding-bottom: 5px;
  width: -moz-max-content;
  width: max-content;
}
.p-solution__item-description {
  color: #9a7639;
  font-size: 16px;
  padding-top: 15px;
  text-align: center;
}

@media (max-width: 767px) {
  .p-solution {
    background-size: auto 40%;
    margin-top: -60px;
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .p-solution__heading svg {
    height: 180px;
  }
  .p-solution__main {
    gap: 15px;
    grid-template-columns: 1fr;
    padding-top: 20px;
  }
  .p-solution__item {
    padding: 30px;
  }
  .p-solution__item-label {
    top: -10px;
    left: -5px;
    height: 56px;
    width: 56px;
  }
}
.p-voices {
  background: var(--color-gray-50);
  padding-top: 145px;
  padding-bottom: 100px;
  position: relative;
}
@media (min-width: 1081px) {
  .p-voices__inner {
    margin-right: auto;
    margin-left: auto;
    padding-right: 10vw;
    padding-left: 10vw;
    max-width: calc(1366px + 10vw + 10vw);
  }
}
@media (max-width: 1080px) {
  .p-voices__inner {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
@media (max-width: 767px) {
  .p-voices__inner {
    padding-right: 3vw;
    padding-left: 3vw;
  }
}
.p-voices__heading-en {
  color: var(--color-base);
  display: block;
  font-size: 180px;
  line-height: 0.6;
  margin: 0 auto;
  position: absolute;
  top: 40px;
  right: 0;
  left: 0;
  width: -moz-max-content;
  width: max-content;
}
.p-voices__heading {
  font-size: 42px;
  line-height: 1.5;
  position: relative;
  text-align: center;
  z-index: 1;
}
.p-voices__main {
  display: grid;
  gap: 60px;
  padding-top: 30px;
}
.p-voices__item {
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 20px 20px 50px #dbe0e5;
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
  padding: 60px;
}
.p-voices__item-head {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: auto 1fr;
}
.p-voices__item-avator {
  aspect-ratio: 1/1;
  border-radius: 100%;
  width: 86px;
}
.p-voices__item-name {
  display: block;
  font-size: 21px;
}
.p-voices__item-age {
  color: var(--color-gray-500);
  display: block;
  font-size: 16px;
  padding-top: 8px;
}
.p-voices__item-heading {
  font-size: 24px;
  line-height: 1.7;
  padding-top: 35px;
}
.p-voices__item-description {
  padding-top: 20px;
}
.p-voices__item-description-line + .p-voices__item-description-line {
  padding-top: 12px;
}
.p-voices__item-image {
  background: var(--color-base);
  border-radius: 10px;
  display: grid;
  padding: 0 60px;
  place-items: center;
}
.p-voices__item-image img {
  box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .p-voices {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .p-voices__heading-en {
    font-size: 80px;
    top: 20px;
  }
  .p-voices__heading {
    font-size: 28px;
  }
  .p-voices__main {
    gap: 20px;
    padding-top: 15px;
  }
  .p-voices__item {
    border-radius: 15px;
    gap: 20px;
    grid-template-columns: 1fr;
    padding: 30px 15px 15px;
  }
  .p-voices__item-head {
    margin: 0 auto;
    width: -moz-max-content;
    width: max-content;
  }
  .p-voices__item-avator {
    width: 68px;
  }
  .p-voices__item-name {
    font-size: 18px;
  }
  .p-voices__item-age {
    font-size: 14px;
    padding-top: 3px;
  }
  .p-voices__item-heading {
    font-size: 21px;
    padding-top: 15px;
    text-align: center;
  }
  .p-voices__item-description {
    padding-top: 15px;
  }
  .p-voices__item-description-line + .p-voices__item-description-line {
    padding-top: 10px;
  }
  .p-voices__item-image {
    border-radius: 8px;
    padding: 30px;
  }
}
.p-features {
  overflow-x: hidden;
  padding-top: 60px;
  padding-bottom: 100px;
}
.p-features__heading svg {
  height: 120px;
}
.p-features__main {
  padding-top: 80px;
}
.p-features__item {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.p-features__item + .p-features__item {
  padding-top: 80px;
}
.p-features__item:nth-child(even) .p-features__item-image {
  order: 1;
}
.p-features__item:nth-child(odd) .p-features__item-image img {
  border-radius: 0 20px 20px 0;
}
.p-features__item:nth-child(even) .p-features__item-image img {
  border-radius: 20px 0 0 20px;
}
.p-features__item-image img {
  aspect-ratio: 1/0.75;
}
.p-features__item-contents {
  padding-right: 150px;
  padding-left: 80px;
  position: relative;
}
.p-features__item-label {
  color: var(--color-gray-50);
  font-size: 100px;
  line-height: 0.6;
  position: absolute;
  bottom: 50%;
  rotate: 90deg;
  transform-origin: center top;
  height: 75px;
  width: -moz-max-content;
  width: max-content;
}
.p-features__item:nth-child(odd) .p-features__item-label {
  right: 0;
  translate: 50% 100%;
}
.p-features__item:nth-child(even) .p-features__item-label {
  left: 0;
  translate: calc(-50% + 0.73em) 100%;
}
.p-features__item-heading-line {
  border-bottom: 2px solid var(--color-gray-200);
  display: block;
  font-size: 28px;
  padding-bottom: 5px;
  width: -moz-max-content;
  width: max-content;
}
.p-features__item-heading-line + .p-features__item-heading-line {
  padding-top: 12px;
}
.p-features__item-description {
  padding-top: 35px;
}
.p-features__item-description-line {
  color: var(--color-gray-800);
  font-size: 16px;
}
.p-features__item-description-line + .p-features__item-description-line {
  padding-top: 15px;
}

@media (max-width: 767px) {
  .p-features {
    padding-top: 30px;
    padding-bottom: 0;
  }
  .p-features__heading svg {
    height: 80px;
  }
  .p-features__main {
    padding-top: 30px;
  }
  .p-features__item {
    display: block;
  }
  .p-features__item + .p-features__item {
    padding-top: 0;
  }
  .p-features__item:nth-child(even) .p-features__item-image {
    order: unset;
  }
  .p-features__item:nth-child(odd) .p-features__item-image img, .p-features__item:nth-child(even) .p-features__item-image img {
    border-radius: 0;
  }
  .p-features__item-contents {
    padding: 25px 20px 35px 55px;
  }
  .p-features__item-label {
    font-size: 48px;
    top: 150px;
    bottom: unset;
    height: 36px;
  }
  .p-features__item:nth-child(odd) .p-features__item-label, .p-features__item:nth-child(even) .p-features__item-label {
    left: 0;
    translate: calc(-50% + 0.73em) 0;
  }
  .p-features__item-heading-line {
    font-size: 21px;
  }
  .p-features__item-heading-line + .p-features__item-heading-line {
    padding-top: 10px;
  }
  .p-features__item-description {
    padding-top: 18px;
  }
}
.p-doctors {
  background: var(--color-gray-50);
  padding-top: 145px;
  padding-bottom: 120px;
  position: relative;
}
@media (min-width: 1081px) {
  .p-doctors__inner {
    margin-right: auto;
    margin-left: auto;
    padding-right: 10vw;
    padding-left: 10vw;
    max-width: calc(1366px + 10vw + 10vw);
  }
}
@media (max-width: 1080px) {
  .p-doctors__inner {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
@media (max-width: 767px) {
  .p-doctors__inner {
    padding-right: 3vw;
    padding-left: 3vw;
  }
}
.p-doctors__main {
  padding-top: 60px;
}
.p-doctors__heading-en {
  color: var(--color-base);
  display: block;
  font-size: 180px;
  line-height: 0.6;
  margin: 0 auto;
  position: absolute;
  top: 40px;
  right: 0;
  left: 0;
  width: -moz-max-content;
  width: max-content;
}
.p-doctors__heading {
  font-size: 42px;
  line-height: 1.5;
  position: relative;
  text-align: center;
  z-index: 1;
}
.p-doctors__item {
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
}
.p-doctors__item + .p-doctors__item {
  padding-top: 80px;
}
.p-doctors__item-left {
  position: sticky;
  top: 10vw;
  height: -moz-max-content;
  height: max-content;
}
.p-doctors__item-image img {
  aspect-ratio: 1/0.75;
  border-radius: 15px;
}
.p-doctors__item-overview {
  padding-top: 20px;
}
.p-doctors__item-label {
  background: var(--color-gray-800);
  border-radius: 100px;
  color: var(--color-white);
  display: block;
  margin: 0 auto 12px;
  padding: 6px 12px;
  width: -moz-max-content;
  width: max-content;
}
.p-doctors__item-title {
  color: var(--color-gray-800);
  display: block;
  font-size: 21px;
  text-align: center;
}
.p-doctors__item-name {
  font-size: 32px;
  padding-top: 3px;
  text-align: center;
}
.p-doctors__message-heading {
  font-size: 28px;
}
.p-doctors__message-body {
  padding-top: 30px;
}
.p-doctors__message-body-line + .p-doctors__message-body-line {
  padding-top: 12px;
}
.p-doctors__details {
  padding-top: 35px;
}
.p-doctors__detail-block + .p-doctors__detail-block {
  padding-top: 35px;
}
.p-doctors__detail-block-heading {
  border-top: 1px solid var(--color-gray-200);
  border-bottom: 1px solid var(--color-gray-200);
  font-size: 16px;
  padding: 12px 0;
  text-align: center;
}
.p-doctors__detail-list {
  display: grid;
  gap: 10px 15px;
  padding-top: 15px;
}
.p-doctors__detail-list.-col2 {
  grid-template-columns: repeat(2, 1fr);
}
.p-doctors__detail-list.-col3 {
  grid-template-columns: repeat(3, 1fr);
}
.p-doctors__detail-item {
  align-items: baseline;
  display: grid;
  gap: 10px;
  grid-template-columns: 6px 1fr;
  line-height: 1.7;
}
.p-doctors__detail-item::before {
  background: var(--color-black);
  border-radius: 100%;
  content: "";
  position: relative;
  top: -0.15em;
  height: 6px;
  width: 6px;
}

@media (max-width: 767px) {
  .p-doctors {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .p-doctors__heading-en {
    font-size: 80px;
    top: 20px;
  }
  .p-doctors__heading {
    font-size: 28px;
  }
  .p-doctors__main {
    padding-top: 20px;
  }
  .p-doctors__item {
    gap: 20px;
    grid-template-columns: 1fr;
  }
  .p-doctors__item + .p-doctors__item {
    padding-top: 30px;
  }
  .p-doctors__item-left {
    position: static;
  }
  .p-doctors__item-image {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
  .p-doctors__item-image img {
    border-radius: 0;
  }
  .p-doctors__item-label {
    font-size: 12px;
  }
  .p-doctors__item-title {
    font-size: 16px;
  }
  .p-doctors__item-name {
    font-size: 24px;
  }
  .p-doctors__message-heading {
    font-size: 21px;
    text-align: center;
  }
  .p-doctors__message-body {
    padding-top: 20px;
  }
  .p-doctors__message-body-line + .p-doctors__message-body-line {
    padding-top: 10px;
  }
  .p-doctors__details {
    padding-top: 15px;
  }
  .p-doctors__detail-block + .p-doctors__detail-block {
    padding-top: 15px;
  }
  .p-doctors__detail-list {
    gap: 10px;
  }
  .p-doctors__detail-list.-col3, .p-doctors__detail-list.-col2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-safety {
  padding-top: 20px;
  padding-bottom: 100px;
  position: relative;
}
@media (min-width: 1081px) {
  .p-safety {
    margin-right: auto;
    margin-left: auto;
    padding-right: 10vw;
    padding-left: 10vw;
    max-width: calc(1366px + 10vw + 10vw);
  }
}
@media (max-width: 1080px) {
  .p-safety {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
@media (max-width: 767px) {
  .p-safety {
    padding-right: 3vw;
    padding-left: 3vw;
  }
}
.p-safety::before {
  aspect-ratio: 1366/60;
  content: "";
  background: url("../images/img_safety_divider_pc.svg") no-repeat center center/contain;
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
}
.p-safety__heading-small {
  display: block;
  font-size: 28px;
  line-height: 1.5;
  text-align: center;
}
.p-safety__heading-large {
  font-size: 56px;
  line-height: 1.5;
  margin: 0 auto;
  padding-top: 15px;
  position: relative;
  width: -moz-max-content;
  width: max-content;
}
.p-safety__heading-large::after {
  background: var(--color-accent);
  content: "";
  position: absolute;
  bottom: 0.1em;
  left: 0;
  height: 15px;
  width: 100%;
  z-index: -1;
}
.p-safety__main {
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
  padding-top: 60px;
}
.p-safety__caption {
  font-size: 16px;
  padding-bottom: 20px;
}
.p-safety__list {
  border-top: 2px solid var(--color-gray-100);
  padding-top: 20px;
}
.p-safety__item {
  align-items: baseline;
  display: grid;
  gap: 10px;
  grid-template-columns: 6px 1fr;
  line-height: 1.7;
}
.p-safety__item::before {
  background: var(--color-black);
  border-radius: 100%;
  content: "";
  position: relative;
  top: -0.15em;
  height: 6px;
  width: 6px;
}
.p-safety__item + .p-safety__item {
  padding-top: 10px;
}
.p-safety__image {
  background: var(--color-gray-50);
  border-radius: 15px;
  display: grid;
  padding: 40px 140px;
  place-items: center;
}
.p-safety__image img {
  box-shadow: 15px 15px 30px #dbe0e5;
}

@media (max-width: 767px) {
  .p-safety {
    padding-bottom: 40px;
  }
  .p-safety::before {
    aspect-ratio: 375/26;
    background-image: url("../images/img_safety_divider_sp.svg");
  }
  .p-safety__heading-small {
    font-size: 21px;
  }
  .p-safety__heading-large {
    font-size: 32px;
    padding-top: 5px;
    text-align: center;
  }
  .p-safety__heading-large::after {
    display: none;
  }
  .p-safety__main {
    gap: 15px;
    grid-template-columns: 1fr;
    padding-top: 20px;
  }
  .p-safety__contents {
    order: 2;
  }
  .p-safety__caption {
    font-size: 14px;
  }
  .p-safety__image {
    padding: 40px;
  }
}
/**
 * Import Modules
 */
/**
  * Styles
  */
.p-flow {
  padding-top: 145px;
  padding-bottom: 100px;
  position: relative;
  /**
   * Marquee
   */
}
@media (min-width: 1081px) {
  .p-flow__inner {
    margin-right: auto;
    margin-left: auto;
    padding-right: 10vw;
    padding-left: 10vw;
    max-width: calc(1366px + 10vw + 10vw);
  }
}
@media (max-width: 1080px) {
  .p-flow__inner {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
@media (max-width: 767px) {
  .p-flow__inner {
    padding-right: 3vw;
    padding-left: 3vw;
  }
}
.p-flow__heading-en {
  color: var(--color-gray-50);
  display: block;
  font-size: 180px;
  line-height: 0.6;
  margin: 0 auto;
  position: absolute;
  top: 40px;
  right: 0;
  left: 0;
  width: -moz-max-content;
  width: max-content;
}
.p-flow__heading {
  font-size: 42px;
  line-height: 1.5;
  position: relative;
  text-align: center;
  z-index: 1;
}
.p-flow__main {
  display: grid;
  gap: 60px 40px;
  grid-template-columns: repeat(3, 1fr);
  padding-top: 40px;
}
.p-flow__item {
  background: var(--color-white);
  border-radius: 15px;
  box-shadow: 20px 20px 50px #dbe0e5;
  position: relative;
}
.p-flow__item:not(:last-child)::after {
  background: url("../images/icon_flow_item_arrow.svg") no-repeat center center/contain;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(100% + 20px - 15px);
  height: 30px;
  width: 30px;
}
.p-flow__item-label {
  position: absolute;
  top: -15px;
  left: -15px;
  height: 64px;
  width: 64px;
}
.p-flow__item-image {
  padding: 10px 10px 0;
}
.p-flow__item-image img {
  aspect-ratio: 1.618/1;
  border-radius: 10px;
}
.p-flow__item-contents {
  padding: 20px 20px 25px;
}
.p-flow__item-heading {
  font-size: 21px;
  text-align: center;
}
.p-flow__item-description {
  padding-top: 18px;
}
.p-flow__marquee {
  overflow: hidden;
  position: absolute;
  bottom: -0.85em;
  left: 0;
  width: 100vw;
  z-index: -1;
}
.p-flow__marquee-wrap {
  animation: scroll_text 20s linear infinite;
  display: flex;
  gap: 30px;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  perspective: 1000;
}
.p-flow__marquee-text {
  align-items: center;
  color: var(--color-gray-50);
  display: flex;
  font-size: 180px;
  gap: 30px;
  line-height: 1;
  white-space: pre;
}

@media (max-width: 767px) {
  .p-flow {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .p-flow__heading-en {
    font-size: 80px;
    top: 20px;
  }
  .p-flow__heading {
    font-size: 28px;
  }
  .p-flow__main {
    gap: 40px;
    grid-template-columns: 1fr;
    padding-top: 20px;
  }
  .p-flow__item:not(:last-child)::after {
    margin: 0 auto;
    top: calc(100% + 20px - 12px);
    right: 0;
    bottom: unset;
    left: 0;
    rotate: 90deg;
    height: 24px;
    width: 24px;
  }
  .p-flow__item-label {
    top: -10px;
    left: -5px;
    height: 56px;
    width: 56px;
  }
  .p-flow__marquee-text {
    font-size: 100px;
  }
}
.p-price {
  background: var(--color-gray-50);
  padding-top: 80px;
  padding-bottom: 100px;
}
@media (min-width: 1081px) {
  .p-price__inner {
    margin-right: auto;
    margin-left: auto;
    padding-right: 10vw;
    padding-left: 10vw;
    max-width: calc(1366px + 10vw + 10vw);
  }
}
@media (max-width: 1080px) {
  .p-price__inner {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
@media (max-width: 767px) {
  .p-price__inner {
    padding-right: 3vw;
    padding-left: 3vw;
  }
}
.p-price__main {
  display: grid;
  gap: 20px;
  margin: 0 auto;
  padding-top: 40px;
  width: 80%;
}
.p-price__info {
  background: var(--color-white);
  border-radius: 15px;
  box-shadow: 15px 15px 30px #dbe0e5;
  transition: box-shadow 0.3s cubic-bezier(0.4, 0.15, 0, 1);
}
.p-price__info-row {
  align-items: center;
  display: grid;
  font-size: 21px;
  gap: 15px;
  grid-template-columns: 300px 1fr;
  line-height: 1.5;
  padding: 40px;
}
.p-price__info-head {
  font-size: 24px;
}
.p-price__info-data {
  font-size: 36px;
  line-height: 0.5;
  justify-self: end;
}
.p-price__info-data--unit {
  font-size: 21px;
}
.p-price__info-data span {
  font-size: 16px;
}

@media (max-width: 767px) {
  .p-price {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .p-price__heading {
    font-size: 24px;
    padding-bottom: 5px;
  }
  .p-price__main {
    gap: 15px;
    grid-template-columns: 100%;
    padding-top: 30px;
    width: 100%;
  }
  .p-price__info-row {
    grid-template-columns: 100%;
    padding: 20px;
  }
  .p-price__info-head {
    text-align: center;
    font-size: 21px;
  }
  .p-price__info-data {
    justify-self: center;
    font-size: 31px;
  }
  .p-price__info-data--unit {
    font-size: 18px;
  }
  .p-price__info-data span {
    font-size: 14px;
  }
}
.p-faq {
  background: var(--color-gray-50);
  padding-top: 80px;
  padding-bottom: 100px;
}
@media (min-width: 1081px) {
  .p-faq__inner {
    margin-right: auto;
    margin-left: auto;
    padding-right: 10vw;
    padding-left: 10vw;
    max-width: calc(1366px + 10vw + 10vw);
  }
}
@media (max-width: 1080px) {
  .p-faq__inner {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
@media (max-width: 767px) {
  .p-faq__inner {
    padding-right: 3vw;
    padding-left: 3vw;
  }
}
.p-faq__main {
  display: grid;
  gap: 20px;
  margin: 0 auto;
  padding-top: 40px;
  width: 80%;
}
.p-faq__heading {
  border-bottom: 2px solid var(--color-black);
  font-size: 32px;
  margin: 0 auto;
  padding-bottom: 7px;
  width: -moz-max-content;
  width: max-content;
}
.p-faq__item {
  background: var(--color-white);
  border-radius: 15px;
  box-shadow: 15px 15px 30px #dbe0e5;
  transition: box-shadow 0.3s cubic-bezier(0.4, 0.15, 0, 1);
}
@media (hover: hover) and (pointer: fine) {
  .p-faq__item:not([open]):hover {
    box-shadow: 3px 3px 5px #dbe0e5;
  }
}
.p-faq__question {
  align-items: center;
  cursor: pointer;
  display: grid;
  font-size: 21px;
  gap: 15px;
  grid-template-columns: 56px 1fr 24px;
  line-height: 1.5;
  padding: 30px;
}
.p-faq__question::before {
  background: url("../images/img_faq_question.svg") no-repeat center center/contain;
  content: "";
  height: 56px;
  width: 56px;
}
.p-faq__question::after {
  background: url("../images/icon_faq_question_arrow.svg") no-repeat center center/contain;
  content: "";
  transition: rotate 0.3s cubic-bezier(0.4, 0.15, 0, 1);
  height: 24px;
  width: 24px;
}
[open] .p-faq__question::after {
  rotate: 90deg;
}
.p-faq__answer {
  align-items: center;
  border-top: 3px solid var(--color-gray-50);
  display: grid;
  gap: 15px;
  grid-template-columns: 56px 1fr;
  padding: 30px;
}
.p-faq__answer::before {
  background: url("../images/img_faq_answer.svg") no-repeat center center/contain;
  content: "";
  height: 56px;
  width: 56px;
}

@media (max-width: 767px) {
  .p-faq {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .p-faq__heading {
    font-size: 24px;
    padding-bottom: 5px;
  }
  .p-faq__main {
    gap: 15px;
    padding-top: 30px;
    width: 100%;
  }
  .p-faq__item {
    border-radius: 10px;
  }
  .p-faq__question {
    font-size: 18px;
    gap: 10px;
    grid-template-columns: 40px 1fr 20px;
    padding: 15px;
  }
  .p-faq__question::before {
    height: 40px;
    width: 40px;
  }
  .p-faq__question::after {
    height: 20px;
    width: 20px;
  }
  .p-faq__answer {
    align-items: flex-start;
    gap: 10px;
    grid-template-columns: 40px 1fr;
    padding: 15px;
  }
  .p-faq__answer::before {
    height: 40px;
    width: 40px;
  }
}
.p-clinic {
  background: var(--color-gray-50);
  padding-top: 145px;
  padding-bottom: 100px;
  position: relative;
}
@media (min-width: 1081px) {
  .p-clinic__inner {
    margin-right: auto;
    margin-left: auto;
    padding-right: 10vw;
    padding-left: 10vw;
    max-width: calc(1366px + 10vw + 10vw);
  }
}
@media (max-width: 1080px) {
  .p-clinic__inner {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
@media (max-width: 767px) {
  .p-clinic__inner {
    padding-right: 3vw;
    padding-left: 3vw;
  }
}
.p-clinic__heading-en {
  color: var(--color-base);
  display: block;
  font-size: 180px;
  line-height: 0.6;
  margin: 0 auto;
  position: absolute;
  top: 40px;
  right: 0;
  left: 0;
  width: -moz-max-content;
  width: max-content;
}
.p-clinic__heading {
  font-size: 42px;
  line-height: 1.5;
  position: relative;
  text-align: center;
  z-index: 1;
}
.p-clinic__main {
  display: grid;
  gap: 60px;
  grid-template-columns: 1fr 1fr;
  padding-top: 40px;
}
.p-clinic__info-row {
  align-items: center;
  border-top: 1px solid var(--color-gray-200);
  display: grid;
  gap: 20px;
  grid-template-columns: 20% 1fr;
  padding: 30px 0;
}
.p-clinic__info-row:last-child {
  border-bottom: 1px solid var(--color-gray-200);
}
.p-clinic__info-head {
  color: var(--color-gray-800);
  font-size: 16px;
  line-height: 1.7;
}
.p-clinic__info-data {
  font-size: 16px;
  line-height: 1.7;
}
.p-clinic__map iframe {
  border-radius: 15px;
}

@media (max-width: 767px) {
  .p-clinic {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .p-clinic__heading-en {
    font-size: 80px;
    top: 20px;
  }
  .p-clinic__heading {
    font-size: 28px;
  }
  .p-clinic__main {
    gap: 20px;
    grid-template-columns: 1fr;
    padding-top: 20px;
  }
  .p-clinic__info {
    order: 2;
  }
  .p-clinic__info-row {
    padding: 18px 0;
  }
  .p-clinic__info-head, .p-clinic__info-data {
    font-size: 14px;
  }
  .p-clinic__map {
    margin: 0 -3vw;
    width: 100vw;
  }
  .p-clinic__map iframe {
    aspect-ratio: 1/0.75;
    border-radius: 0;
  }
}
.p-cv {
  background: url("../../dist/images/webp/bg_cv.webp") no-repeat center center/cover;
  padding: 60px 0 80px;
}
@media (min-width: 1081px) {
  .p-cv__inner {
    margin-right: auto;
    margin-left: auto;
    padding-right: 10vw;
    padding-left: 10vw;
    max-width: calc(1366px + 10vw + 10vw);
  }
}
@media (max-width: 1080px) {
  .p-cv__inner {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}
@media (max-width: 767px) {
  .p-cv__inner {
    padding-right: 3vw;
    padding-left: 3vw;
  }
}
.p-cv__head-label svg {
  height: 54px;
}
.p-cv__heading {
  border-bottom: 1px solid var(--color-white);
  color: var(--color-white);
  font-size: 36px;
  margin: 0 auto;
  padding-top: 15px;
  padding-bottom: 5px;
  text-align: center;
  width: -moz-max-content;
  width: max-content;
}
.p-cv__main {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  padding-top: 40px;
  width: 60%;
}
.p-cv__cta {
  filter: drop-shadow(0 7px 0 #d1c100);
  transition: filter 0.3s cubic-bezier(0.4, 0.15, 0, 1), translate 0.3s cubic-bezier(0.4, 0.15, 0, 1);
  pointer-events: none;
  align-items: center;
  background: #ffeb04;
  border-radius: 5px;
  display: grid;
  font-size: 2vw;
  gap: 0 7px;
  grid-template-columns: auto;
  justify-content: left;
  position: relative;
  height: auto;
  width: auto;
  padding: 20px 0 20px 23px;
}
.p-cv__cta.-tel::before {
  background: url("../images/icon_cta_tel.png?23") no-repeat center center/contain;
  content: "";
  height: 30px;
  width: 30px;
  grid-row: 1/3;
}
.p-cv__cta.-tel span {
  grid-column: 2/3;
  font-size: 1vw;
}
.p-cv__cta.-mail {
  pointer-events: unset;
}
.p-cv__cta.-mail::before {
  background: url("../images/icon_cta_mail.png?23") no-repeat center center/contain;
  content: "";
  height: 30px;
  width: 30px;
  grid-row: 1/3;
}
.p-cv__cta.-mail span {
  grid-column: 2/3;
  font-size: 1vw;
}
@media (hover: hover) and (pointer: fine) {
  .p-cv__cta:hover {
    filter: drop-shadow(0 0 0 #d1c100);
    translate: 0 7px;
  }
}

@media (max-width: 767px) {
  .p-cv {
    padding: 40px 0;
  }
  .p-cv__head-label svg {
    height: 48px;
  }
  .p-cv__heading {
    border-bottom: none;
    font-size: 32px;
    padding-bottom: 0;
  }
  .p-cv__main {
    grid-template-columns: 1fr;
    padding-top: 20px;
    width: 100%;
  }
  .p-cv__cta.-tel {
    pointer-events: unset;
    font-size: 32px;
  }
  .p-cv__cta.-tel span {
    font-size: 18px;
  }
  .p-cv__cta.-mail {
    pointer-events: unset;
    font-size: 32px;
  }
  .p-cv__cta.-mail span {
    font-size: 18px;
  }
  .p-cv__cta svg {
    height: 90px;
  }
}
.p-fixed-cta {
  display: none;
}

@media (max-width: 767px) {
  .p-fixed-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    bottom: 0;
    left: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0.15, 0, 1), translate 0.3s cubic-bezier(0.4, 0.15, 0, 1);
    width: 100vw;
    z-index: 98;
  }
  .p-fixed-cta.-hidden {
    opacity: 0;
    translate: 0 10px;
  }
  .p-fixed-cta__button {
    align-items: center;
    display: grid;
    gap: 5px;
    grid-template-columns: 18px auto;
    justify-content: center;
    padding: 20px 0;
  }
  .p-fixed-cta__button.-tel {
    background: #fff041;
    border-right: 1px solid #d9ce47;
  }
  .p-fixed-cta__button.-mail {
    background: #ffeb04;
  }
  .p-fixed-cta__button::before {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    content: "";
    height: 18px;
    width: 18px;
  }
  .p-fixed-cta__button.-tel::before {
    background-image: url("../images/icon_fixed_cta_tel.svg");
  }
  .p-fixed-cta__button.-mail::before {
    background-image: url("../images/icon_fixed_cta_mail.svg");
  }
}
/*-------------------- Utility --------------------*/
/**
 * Object / Utility / Tools
 */
/**
 * Margin
 */
.u-mb-8 {
  margin-bottom: 8px !important;
}

.u-mb-16 {
  margin-bottom: 16px !important;
}

.u-mb-24 {
  margin-bottom: 24px !important;
}

.u-mb-32 {
  margin-bottom: 32px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

/**
 * Padding
 */
.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-8 {
  padding-top: 8px !important;
}

.u-pt-16 {
  padding-top: 16px !important;
}

.u-pt-24 {
  padding-top: 24px !important;
}

.u-pt-32 {
  padding-top: 32px !important;
}

.u-pt-40 {
  padding-top: 40px !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

/**
 * Text Align
 */
.u-ta-c {
  text-align: center !important;
}

.u-ta-r {
  text-align: right !important;
}

.u-ta-l {
  text-align: left !important;
}

/**
 * Media Queries
 */
@media (min-width: 1081px) {
  .u-dn-pc {
    display: none !important;
  }
}

@media (max-width: 1080px) and (min-width: 768px) {
  .u-dn-tab {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .u-dn-sp {
    display: none !important;
  }
}/*# sourceMappingURL=style.css.map */