@charset "UTF-8";
/*! --------------------------------------------------------------
　　このCSSファイルは .scssファイルからコンパイルされたものです。
　　直接編集しないように注意してください。
--------------------------------------------------------------- */
/* 基本設定
============================================================================ */
/* base > color
============================================================================================================ */
/* 基本色一覧*/
/*白*/
/*黒*/
/*灰色*/
/*黄*/
/*赤*/
/*青*/
/*緑*/
:root {
  --color-primary: #122C51;
  --color-yellow: #fdd000;
  --gradient-gold-01: linear-gradient(135deg, rgba(217, 151, 48, 1) 0%, rgba(255, 216, 75, 1) 30%, rgba(255, 250, 180, 1) 50%, rgba(255, 216, 75, 1) 70%, rgba(217, 151, 48, 1) 100%);
  --gradient-gold-02: linear-gradient(270deg, rgba(255, 204, 0, 1) 0%, rgba(171, 122, 30, 1) 100%);
  --gradient-gold-03: linear-gradient(180deg, rgba(243, 243, 243, 0) 0%, rgba(239, 189, 5, 1) calc(100% - 60px));
  --gradient-gold-04: linear-gradient(180deg, rgba(255, 204, 0, 1) 0%, rgba(171, 122, 30, 1) 100%);
  --gradient-primary-01: linear-gradient(180deg, rgba(18, 44, 81, 1) 0%, rgba(243, 243, 243, 1) 100%);
  --gradient-primary-02: linear-gradient(225deg, rgba(18, 44, 81, 1) 0%, rgba(16, 65, 135, 1) 100%);
  --fontFamily-en: "Oswald",
  sans-serif;
  --height-header: 74;
  --height-header-sp: 65;
  --line-clamp: 2;
  --width-inner-lg: 1420;
  --width-inner: 1000;
  --width-inner-sm: 770;
  --zIndex-header: 40;
  --zIndex-spmenu: 41;
  --zIndex-toggle: 42;
  --zIndex-splash: 50;
  --leading-trim: calc((1em - 1lh) / 2);
  --gutter: 20px;
  --gutter-inner: 20px;
  --ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --ease-in-out-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-out-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-in-out-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-out-expo: cubic-bezier(1, 0, 0, 1);
  --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-in-out-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --ease-in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-in-out-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* mixin
============================================================================ */
/* フォントサイズをremに変換するmixin ($base-font-sizeはbase/_base.scssに)*/
/* フレックスボックス */
/* SCSS メディアクエリ */
/*最後の要素の余白リセット*/
/*
 * Mixin for placeholder
 * @include placeholderColor(#00ff00);
 */
/*-------------------------------------------------------------
display指定class

【only】
.pc-only / .tab-only / .pad-only / .sp-only /.se-only 
.pctab-only / .tabsp-only / .sp-none

-------------------------------------------------------------*/
.pc-only {
  display: block !important;
}
@media (max-width: 1024px) {
  .pc-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pc-only {
    display: none !important;
  }
}
.pc-only--flex {
  display: flex !important;
}
@media (max-width: 1024px) {
  .pc-only--flex {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .pc-only--flex {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc-only--flex {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pc-only--flex {
    display: none !important;
  }
}

.tab-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .tab-only {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .tab-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .tab-only {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .tab-only {
    display: none !important;
  }
}
.tab-only--flex {
  display: none !important;
}
@media (max-width: 1024px) {
  .tab-only--flex {
    display: flex !important;
  }
}
@media (max-width: 768px) {
  .tab-only--flex {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .tab-only--flex {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .tab-only--flex {
    display: none !important;
  }
}

.pad-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .pad-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .pad-only {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .pad-only {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pad-only {
    display: none !important;
  }
}
.pad-only--flex {
  display: none !important;
}
@media (max-width: 1024px) {
  .pad-only--flex {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .pad-only--flex {
    display: flex !important;
  }
}
@media (max-width: 767px) {
  .pad-only--flex {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pad-only--flex {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .sp-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .sp-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .sp-only {
    display: block !important;
  }
}
@media (max-width: 320px) {
  .sp-only {
    display: block !important;
  }
}
.sp-only--flex {
  display: none !important;
}
@media (max-width: 1024px) {
  .sp-only--flex {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .sp-only--flex {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .sp-only--flex {
    display: flex !important;
  }
}
@media (max-width: 320px) {
  .sp-only--flex {
    display: flex !important;
  }
}

.se-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .se-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .se-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .se-only {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .se-only {
    display: block !important;
  }
}
.se-only--flex {
  display: none !important;
}
@media (max-width: 1024px) {
  .se-only--flex {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .se-only--flex {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .se-only--flex {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .se-only--flex {
    display: flex !important;
  }
}

.pctab-only {
  display: block !important;
}
@media (max-width: 1024px) {
  .pctab-only {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .pctab-only {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .pctab-only {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pctab-only {
    display: none !important;
  }
}
.pctab-only--flex {
  display: flex !important;
}
@media (max-width: 1024px) {
  .pctab-only--flex {
    display: flex !important;
  }
}
@media (max-width: 768px) {
  .pctab-only--flex {
    display: flex !important;
  }
}
@media (max-width: 767px) {
  .pctab-only--flex {
    display: none !important;
  }
}
@media (max-width: 320px) {
  .pctab-only--flex {
    display: none !important;
  }
}

.tabsp-only {
  display: none !important;
}
@media (max-width: 1024px) {
  .tabsp-only {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .tabsp-only {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .tabsp-only {
    display: block !important;
  }
}
@media (max-width: 320px) {
  .tabsp-only {
    display: block !important;
  }
}
.tabsp-only--flex {
  display: flex !important;
}
@media (max-width: 1024px) {
  .tabsp-only--flex {
    display: flex !important;
  }
}
@media (max-width: 768px) {
  .tabsp-only--flex {
    display: flex !important;
  }
}
@media (max-width: 767px) {
  .tabsp-only--flex {
    display: flex !important;
  }
}
@media (max-width: 320px) {
  .tabsp-only--flex {
    display: flex !important;
  }
}

@media (max-width: 767px) {
  .sp-none {
    display: none;
  }
}
@media (max-width: 320px) {
  .sp-none {
    display: none;
  }
}

figure {
  display: block;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

img {
  vertical-align: bottom;
  line-height: 0;
  font-size: 0;
  backface-visibility: hidden;
}

/* 共通部分
============================================================================ */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

li {
  list-style: none;
}

ul,
ol,
dl,
p {
  padding: 0;
  margin: 0;
}

a {
  -moz-transition: all 0.15s ease 0s;
  -o-transition: all 0.15s ease 0s;
  -webkit-transition: all 0.15s ease;
  -webkit-transition-delay: 0s;
  transition: all 0.15s ease 0s;
}
a:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  /* ress.cssだとunderlineがつくのを阻止 */
  text-decoration: none;
}

select {
  color: #333;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 1 !important;
  position: relative;
}

table {
  table-layout: fixed;
  /* ress.css用 */
  border-collapse: collapse;
  border-spacing: 0;
}

td input {
  max-width: 100%;
}

i,
em {
  font-style: normal;
}

* {
  box-sizing: border-box;
}

small {
  font-size: 100%;
}
html,
body {
  line-height: 2.0625;
  color: #333;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  letter-spacing: 0em;
  font-size: 16px;
  font-weight: 300;
  position: relative;
  -webkit-print-color-adjust: exact;
  overflow-x: clip;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}

iframe {
  max-width: 100%;
}

button {
  cursor: pointer;
}

/* body.Android{
  font-family: $android-font-family;
} */
/* _:-ms-lang(x)::-ms-backdrop, body {
  font-family: $android-font-family;
} */
/* _:-ms-lang(x)::backdrop, body {
  font-family: $android-font-family;
} */
a {
  -moz-transition: all 0.15s ease 0s;
  -o-transition: all 0.15s ease 0s;
  -webkit-transition: all 0.15s ease;
  -webkit-transition-delay: 0s;
  transition: all 0.15s ease 0s;
}
a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.l__wrapper {
  display: flex;
  flex-direction: column;
  background: #F3F3F3;
  min-height: 100vh;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .l__wrapper {
    border: none;
  }
}
.l__footer {
  margin-top: auto;
  height: 100%;
}

/* base > heading
============================================================================================================ */
/* 基本設定 */
h1 {
  font-size: 34px;
  font-size: 2.125rem;
}
@media (max-width: 767px) {
  h1 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

h2 {
  font-size: 30px;
  font-size: 1.875rem;
}
@media (max-width: 767px) {
  h2 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

h3 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
}

h4 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
}

h5 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}

h6 {
  font-size: 18px;
  font-size: 1.125rem;
}

/* base > paragraph
============================================================================================================ */
/* layout
============================================================================ */
/* layout > common
============================================================================================================ */
.common-main {
  width: 100%;
}
/* layout > header
============================================================================== */
.common-header {
  height: calc(var(--height-header) * 1px);
  display: flex;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
  background-color: white;
}
@media (max-width: 767px) {
  .common-header {
    height: calc(var(--height-header-sp) * 1px);
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
}

/*  layout > footer
============================================================================================================ */
.common-footer {
  height: 77px;
  background-color: var(--color-primary);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .common-footer {
    height: 66px;
  }
}

.common-footer__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  place-items: center;
  height: 100%;
}

.common-footer__copyright {
  color: white;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-family: var(--fontFamily-en);
}
@media (max-width: 767px) {
  .common-footer__copyright {
    font-size: 12px;
  }
}

/*  layout > page-top
============================================================================================================ */
.common__page_top {
  display: inline-block;
  cursor: pointer;
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 10;
}
@media (max-width: 767px) {
  .common__page_top {
    bottom: 10.6666666667vw;
    right: auto;
    left: 20px;
  }
}
.common__page_top--wrap {
  position: relative;
  width: 74px;
  height: 70px;
}
@media (max-width: 767px) {
  .common__page_top--wrap {
    width: 12.6666666667vw;
    height: 12.1333333333vw;
  }
}

.fixed__btn {
  transform: translateX(180%);
  transition: 1s;
}
.fixed__btn.view {
  transform: translateX(0);
  transition: 1s;
}
@media (max-width: 767px) {
  .fixed__btn {
    transform: translateX(-180%);
  }
}

/*  layout > container
============================================================================================================ */
.l-container--1000 {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .l-container--1000 {
    max-width: 95%;
  }
}
@media (max-width: 767px) {
  .l-container--1000 {
    max-width: 92vw;
  }
}

/* module
============================================================================ */
/* module > btn & cta
============================================================================ */
.mod-btnCta {
  width: min(100%, 412px);
  background-color: #FF8104;
  padding-top: 15px;
  padding-bottom: 15px;
  display: block;
  border-radius: 40px;
  text-align: center;
  filter: drop-shadow(0 3px 2px color-mix(in srgb, black 30%, transparent));
}
@media (max-width: 767px) {
  .mod-btnCta {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.mod-btnCta:hover {
  background-color: #FFB973;
  opacity: 1;
  filter: none;
}

.mod-btnCta__txt {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
  color: white;
}
@media (max-width: 767px) {
  .mod-btnCta__txt {
    font-size: 18px;
  }
}

.mod-btnArrow {
  width: min(100%, 322px);
  border: 3px solid var(--color-yellow);
  background-color: white;
  padding-top: 5px;
  padding-bottom: 5px;
  display: block;
  border-radius: 40px;
  color: var(--color-primary);
  text-align: center;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}
.mod-btnArrow:hover {
  opacity: 1;
  color: white;
  background-color: var(--color-yellow);
}

.mod-btnArrow__txt {
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  font-weight: 700;
}

.mod-btnArrow__arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  translate: 0 -50%;
  transition: 0.3s;
}

input[type=text], input[type=email], select, textarea {
  width: 100%;
  border: 0;
  padding: 5px 10px;
  background-color: white;
  border: solid 1px #ccc;
  border-radius: 3px;
  box-shadow: inner 0 0 4px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  -webkit-appearance: none; /* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none; /* ベンダープレフィックス(Firefox用) */
}
input[type=text]:-moz-placeholder, input[type=email]:-moz-placeholder, select:-moz-placeholder, textarea:-moz-placeholder {
  color: #aaa;
}
input[type=text]:placeholder-shown, input[type=email]:placeholder-shown, select:placeholder-shown, textarea:placeholder-shown {
  color: #aaa;
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #aaa;
}
input[type=text]:-moz-placeholder, input[type=email]:-moz-placeholder, select:-moz-placeholder, textarea:-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #aaa;
  opacity: 1;
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #aaa;
}

select {
  height: 39px;
  -webkit-appearance: none; /* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none; /* ベンダープレフィックス(Firefox用) */
  appearance: none; /* 標準のスタイルを無効にする */
  position: relative;
  background-image: url("img/common/arw_select.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center right 10px;
  box-sizing: border-box;
}

::-ms-expand { /* select要素のデザインを無効にする（IE用） */
  display: none;
}

input[type=radio] {
  vertical-align: 0.15em;
  margin-right: 5px;
}

[data-scroll] {
  transition: 1s;
}

[data-scroll=in] {
  opacity: 1;
}

.common-cta {
  position: relative;
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 1024px) {
  .common-cta {
    padding-top: 20px;
    padding-bottom: 25px;
  }
}

.common-cta__inner {
  max-width: calc(var(--width-inner) * 1px + 50px);
  margin-left: auto;
  margin-right: auto;
}

.common-cta__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.common-cta__bgImg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

.common-cta__contents {
  position: relative;
  z-index: 2;
}

.common-cta__layout {
  display: grid;
  grid-template-columns: 2.4fr 3fr;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media (max-width: 1024px) {
  .common-cta__layout {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
  .common-cta__layout > *:nth-child(1) {
    order: 2;
  }
}

.common-cta__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 30px;
  height: 100%;
  justify-content: center;
  padding-left: 4%;
}
@media (max-width: 1024px) {
  .common-cta__head {
    padding-left: unset;
  }
}

.common-cta__btn {
  display: grid;
  place-items: center;
  align-self: stretch;
}
@media (max-width: 1024px) {
  .common-cta__btn {
    margin-top: -10px;
  }
}

@media (max-width: 1024px) {
  .common-cta__box {
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
  }
}

.common-ctaBox {
  background-color: white;
  padding: 25px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1024px) {
  .common-ctaBox {
    padding: 25px 35px;
  }
}

@media (max-width: 1024px) {
  .common-ctaBox__logo {
    width: 135px;
  }
}

.common-ctaBox__heading {
  background-color: var(--color-primary);
  color: white;
  line-height: 1.53125;
  font-size: 32px;
  font-weight: 700;
  padding-left: 0.6em;
  padding-right: 0.6em;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .common-ctaBox__heading {
    font-size: 20px;
    line-height: 1.95;
    padding-left: 0.7em;
    padding-right: 0.7em;
    margin-top: 10px;
  }
}

.common-ctaBox__lead {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  margin-top: 35px;
}
@media (max-width: 1024px) {
  .common-ctaBox__lead {
    font-size: 13px;
    margin-top: 25px;
  }
}

.common-ctaBox__frame {
  margin-top: 25px;
  border: 2px solid var(--color-primary);
  width: 100%;
  position: relative;
  padding: 20px 15px 10px;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
@media (max-width: 1024px) {
  .common-ctaBox__frame {
    margin-top: 15px;
    row-gap: 0;
  }
}

.common-ctaBox__contact {
  display: grid;
  grid-template-columns: 45px 1fr;
  font-family: var(--fontFamily-en);
  font-size: 28px;
  font-weight: 500;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
@media (max-width: 1024px) {
  .common-ctaBox__contact {
    grid-template-columns: 28px 1fr;
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .common-ctaBox__contactIcon {
    width: 28px;
  }
}

.common-ctaBox__subheading {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  position: absolute;
  background-color: white;
  left: 50%;
  top: 0;
  translate: -50% -50%;
}
@media (max-width: 1024px) {
  .common-ctaBox__subheading {
    font-size: 15px;
    width: 170px;
    text-align: center;
  }
}

.top-company {
  padding-top: 160px;
  padding-bottom: 160px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .top-company {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.top-company__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.top-company__box {
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  max-width: 660px;
  padding-top: 50px;
  padding-bottom: 20px;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 767px) {
  .top-company__box {
    padding-top: 40px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 40px;
  }
}

.top-company__heading {
  font-weight: 700;
  text-align: center;
  font-size: 40px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .top-company__heading {
    font-size: 27px;
  }
}

.top-company__list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 120px 1fr;
}
@media (max-width: 767px) {
  .top-company__list {
    margin-top: 30px;
    grid-template-columns: 72px 1fr;
  }
}

.top-company__term {
  border-top: 2px solid var(--color-yellow);
  padding-top: 19px;
  padding-bottom: 19px;
  padding-left: 24px;
  padding-right: 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
}
@media (max-width: 767px) {
  .top-company__term {
    padding-left: unset;
    font-size: 13px;
    padding-right: 10px;
    padding-top: 14px;
    padding-bottom: 14px;
  }
}

.top-company__description {
  border-top: 2px solid var(--color-primary);
  padding-top: 26px;
  padding-bottom: 26px;
  padding-left: 8%;
  padding-right: 8%;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .top-company__description {
    padding-left: unset;
    padding-right: 10px;
    font-size: 10px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

.top-company__innerList {
  display: flex;
  flex-direction: column;
  row-gap: 18px;
}

.top-feature {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .top-feature {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
}

.top-feature__inner {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media (max-width: 767px) {
  .top-feature__inner {
    row-gap: 30px;
  }
}

.top-feature__row--02 .top-feature__layout {
  grid-template-columns: 456fr 544fr;
}
@media (max-width: 767px) {
  .top-feature__row--02 .top-feature__layout {
    grid-template-columns: 1fr;
  }
}
.top-feature__row--02 .top-feature__layout > *:nth-child(1) {
  order: 2;
}
@media (max-width: 767px) {
  .top-feature__row--02 .top-feature__layout > *:nth-child(1) {
    order: unset;
  }
}
@media (max-width: 767px) {
  .top-feature__row--02 .top-feature__num {
    padding-left: unset;
  }
}

.top-feature__layout {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 544fr 456fr;
}
@media (max-width: 767px) {
  .top-feature__layout {
    grid-template-columns: 1fr;
  }
}

.top-feature__body {
  background-color: var(--color-primary);
  color: white;
  padding-top: 45px;
  padding-bottom: 40px;
  padding-left: 4%;
  padding-right: 4%;
}
@media (max-width: 767px) {
  .top-feature__body {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

.top-feature__row:first-of-type {
  font-feature-settings: "palt";
}

.top-feature__num {
  font-size: clamp(28px, 5.7692307692vw, 60px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: var(--fontFamily-en);
}
@media (max-width: 767px) {
  .top-feature__num {
    font-size: 28px;
    padding-left: unset;
  }
}

.top-feature__figure {
  background-color: white;
  position: relative;
}
.top-feature__figure > * {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.top-feature__txt {
  text-align: center;
  text-decoration-color: #FFCC00;
  text-decoration-thickness: 15px;
  text-decoration-line: underline;
  text-underline-offset: -5px;
  font-size: clamp(18px, 3.0769230769vw, 32px);
  line-height: 1.5;
  font-weight: 700;
  margin-top: 10px;
  letter-spacing: 0.05em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media (max-width: 767px) {
  .top-feature__txt {
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
    text-decoration-thickness: 8px;
    font-size: 18px;
  }
}

.top-feature__txtParts {
  display: block;
  filter: drop-shadow(0 4px 4px color-mix(in srgb, black 15%, transparent));
  text-decoration-thickness: 15px;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media (max-width: 767px) {
  .top-feature__txtParts {
    text-decoration-thickness: 8px;
  }
}

.top-feature__contents {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.top-feature__zoom {
  position: absolute;
  right: 0;
  top: 0;
}

.top-more {
  padding-top: 110px;
  padding-bottom: 110px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .top-more {
    padding-top: 75px;
    padding-bottom: 50px;
  }
}

.top-more__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.top-more__heading {
  font-size: 32px;
  line-height: 1.5;
  text-align: center;
  font-weight: 700;
}
@media (max-width: 767px) {
  .top-more__heading {
    font-size: 24px;
  }
}

.top-more__headingParts {
  display: inline-block;
}

.top-more__layout {
  margin-top: 45px;
  max-width: calc(var(--width-inner-sm) * 1px);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  row-gap: 48px;
  align-items: center;
}
@media (max-width: 767px) {
  .top-more__layout {
    margin-top: 30px;
    row-gap: 23px;
  }
}

.top-more__video {
  width: 100%;
}
.top-more__video > iframe {
  aspect-ratio: 710/439;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .top-more__video > iframe {
    aspect-ratio: 335/237;
    width: 100%;
    height: auto;
  }
}
.top-more__video > video {
  aspect-ratio: 640/360;
  width: 100%;
  height: auto;
}

.top-more__btn {
  margin-top: 48px;
  display: grid;
  place-items: center;
}
@media (max-width: 767px) {
  .top-more__btn {
    margin-top: 20px;
  }
}

.top-solution {
  background-image: var(--gradient-primary-01);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: 49px;
  padding-bottom: 215px;
}
@media (max-width: 767px) {
  .top-solution {
    --gradient-primary-01: linear-gradient(180deg, rgba(18, 44, 81, 1) 0%, rgba(243, 243, 243, 1) 80%);
  }
}
@media (max-width: 767px) {
  .top-solution {
    padding-top: 60px;
    padding-bottom: 130px;
  }
}

.top-solution__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.top-solution__fukidashi {
  display: grid;
  place-items: center;
}

.top-solution__box {
  background-color: white;
  max-width: 957px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  border: 4px solid #EFBF0C;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .top-solution__box {
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 12%;
    padding-right: 4%;
  }
}

.top-solution__list {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  row-gap: 15px;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media (max-width: 767px) {
  .top-solution__list {
    grid-template-columns: 1fr;
    row-gap: 15px;
  }
}

.top-solution__item {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  display: grid;
  align-items: center;
  grid-template-columns: 34px 1fr;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media (max-width: 767px) {
  .top-solution__item {
    font-size: 15px;
    grid-template-columns: 29px 1fr;
  }
}

@media (max-width: 767px) {
  .top-solution__icon {
    width: 29px;
    align-items: flex-start;
    align-self: flex-start;
  }
}

.top-solution__figure {
  margin-top: 200px;
}
@media (max-width: 767px) {
  .top-solution__figure {
    margin-top: 100px;
  }
}

.top-solution__txtParts {
  display: inline-block;
}

.top-problem {
  background-image: var(--gradient-gold-03);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: 140px;
  padding-bottom: 140px;
  clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 60px), 55% calc(100% - 60px), 50% 100%, 45% calc(100% - 60px), 0 calc(100% - 60px));
  margin-bottom: -60px;
}
@media (max-width: 767px) {
  .top-problem {
    padding-top: 110px;
    padding-bottom: 90px;
    margin-bottom: -30px;
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 30px), 57% calc(100% - 30px), 50% 100%, 43% calc(100% - 30px), 0 calc(100% - 30px));
  }
}

.top-problem__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.top-problem__heading {
  display: grid;
  place-items: center;
}

.top-problem__fukidashi {
  display: grid;
  place-items: center;
  margin-top: 55px;
}
@media (max-width: 767px) {
  .top-problem__fukidashi {
    margin-top: 40px;
  }
}

.top-problem__box {
  background-color: white;
  max-width: 526px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .top-problem__box {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 19%;
    padding-right: 4%;
  }
}

.top-problem__list {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  row-gap: 15px;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media (max-width: 767px) {
  .top-problem__list {
    grid-template-columns: 1fr;
  }
}

.top-problem__item {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  display: grid;
  align-items: center;
  grid-template-columns: 34px 1fr;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media (max-width: 767px) {
  .top-problem__item {
    font-size: 15px;
    grid-template-columns: 29px 1fr;
  }
}

@media (max-width: 767px) {
  .top-problem__icon {
    width: 29px;
  }
}

.top-product {
  padding-top: 110px;
  padding-bottom: 100px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .top-product {
    padding-top: 70px;
    padding-bottom: 80px;
  }
}

.top-product__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.top-product__heading {
  font-size: 32px;
  line-height: 1.5;
  text-align: center;
  font-weight: 700;
}
@media (max-width: 767px) {
  .top-product__heading {
    font-size: 24px;
  }
}

.top-product__headingParts {
  display: inline-block;
}

.top-product__name {
  font-size: 60px;
  line-height: 1.5;
  text-align: center;
  font-weight: 700;
  margin-top: -5px;
  position: relative;
}
@media (max-width: 767px) {
  .top-product__name {
    font-size: 40px;
    margin-top: -7px;
  }
}
.top-product__name > small {
  font-size: 16px;
  line-height: 1;
  text-align: center;
  font-weight: 700;
  position: absolute;
  top: calc(100% - 17px);
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .top-product__name > small {
    font-size: 12px;
    top: calc(100% - 6px);
  }
}

.top-product__catch {
  font-size: 40px;
  line-height: 1.4;
  font-weight: 700;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
@media (max-width: 767px) {
  .top-product__catch {
    font-size: 22px;
    line-height: 1.5909090909;
  }
}

.top-product__mark {
  display: inline-block;
  text-decoration-color: #FFCC00;
  text-decoration-thickness: 15px;
  text-decoration-line: underline;
  text-underline-offset: -5px;
}
.top-product__layout {
  margin-top: 55px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto 1fr;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 55px;
  max-width: calc(var(--width-inner-sm) * 1px);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .top-product__layout {
    margin-top: 48px;
    grid-template-columns: 1fr;
    justify-content: center;
    row-gap: 20px;
  }
}
.top-product__layout > *:nth-child(1) {
  grid-area: 1/1/2/2;
  margin-top: -10px;
}
@media (max-width: 767px) {
  .top-product__layout > *:nth-child(1) {
    grid-area: auto;
    text-align: center;
  }
}
.top-product__layout > *:nth-child(2) {
  grid-area: 1/2/3/3;
  justify-self: flex-end;
}
@media (max-width: 767px) {
  .top-product__layout > *:nth-child(2) {
    grid-area: auto;
    justify-self: center;
    width: 90%;
    display: grid;
    place-items: center;
  }
}
.top-product__layout > *:nth-child(3) {
  grid-area: 2/1/3/2;
}
@media (max-width: 767px) {
  .top-product__layout > *:nth-child(3) {
    grid-area: auto;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

.top-product__list {
  display: flex;
  flex-direction: column;
  row-gap: 35px;
}
@media (max-width: 767px) {
  .top-product__list {
    row-gap: 18px;
  }
}

.top-product__item {
  display: grid;
  grid-template-columns: 42px 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 767px) {
  .top-product__item {
    grid-template-columns: 30px 1fr;
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
}

@media (max-width: 767px) {
  .top-product__itemIcon {
    width: 30px;
  }
}

.top-product__itemTxt {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
}
@media (max-width: 767px) {
  .top-product__itemTxt {
    font-size: 18px;
  }
}

.top-flow {
  background-image: var(--gradient-primary-02);
  padding-top: 65px;
  padding-bottom: 80px;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
@media (max-width: 767px) {
  .top-flow {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.top-flow__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.top-flow__heading {
  color: white;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  font-size: 40px;
}
@media (max-width: 767px) {
  .top-flow__heading {
    font-size: 27px;
  }
}

.top-flow__list {
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 110px;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 767px) {
  .top-flow__list {
    display: flex;
    margin-top: 80px;
    row-gap: 85px;
    flex-direction: column;
    align-items: center;
  }
}

.top-flow__item {
  width: calc((100% - 80px) / 3);
}
@media (max-width: 767px) {
  .top-flow__item {
    width: 100%;
  }
}

.top-flowItem {
  position: relative;
}

.top-flowItem__step {
  position: absolute;
  top: 0px;
  left: 50%;
  translate: -50% -70%;
  width: 80px;
  height: 80px;
  background-image: var(--gradient-gold-04);
  border-radius: 999em;
  font-size: 20px;
  color: white;
  text-align: center;
  font-family: var(--fontFamily-en);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.top-flowItem__stepName {
  display: block;
  text-transform: uppercase;
  line-height: 1;
}

.top-flowItem__stepNum {
  display: block;
  font-size: 200%;
  line-height: 1;
}

.top-flowItem__heading {
  color: white;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .top-flowItem__heading {
    margin-top: 10px;
  }
}

.top-flowItem__thumbnail {
  display: grid;
  place-items: center;
}

.top-mv {
  position: relative;
  overflow: hidden;
}

.top-mv__bg {
  position: absolute;
  background-image: var(--gradient-gold-01);
  height: 200px;
  width: 100%;
}
@media (max-width: 767px) {
  .top-mv__bg {
    height: 70px;
  }
}

.top-mv__contents {
  background-color: var(--color-primary);
  clip-path: polygon(0 0, 100% 21%, 101% 101%, -1% 101%);
  color: white;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  padding-top: 90px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .top-mv__contents {
    clip-path: polygon(0 0, 100% 13%, 101% 101%, -1% 101%);
    padding-top: 60px;
    margin-left: -5px;
    margin-right: -5px;
    padding-bottom: 10px;
  }
}

.top-mv__inner {
  max-width: calc(var(--width-inner) * 1px + 50px);
  margin-left: auto;
  margin-right: auto;
}

.top-mv__fukidashi {
  translate: -2% 15%;
}

.top-mv__heading {
  text-align: center;
  font-size: 44px;
  line-height: 1.5;
  font-weight: 700;
}
@media (max-width: 767px) {
  .top-mv__heading {
    font-size: min(8.2666666667vw, 31px);
  }
}

.top-mv__headingParts {
  display: inline-block;
  text-decoration-color: #ffd848;
  text-decoration-thickness: 5px;
  text-decoration-line: underline;
  text-underline-offset: 20px;
}
.top-mv__headingParts:first-of-type {
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .top-mv__headingParts {
    text-decoration-thickness: 3px;
    text-underline-offset: 10px;
  }
}

.top-mv__catch {
  margin-top: 15px;
  text-align: center;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 700;
}
@media (max-width: 767px) {
  .top-mv__catch {
    font-size: 11px;
    margin-top: 10px;
  }
}

.top-mv__catchParts {
  display: inline-block;
}

.top-mv__figure {
  margin-top: 5px;
}
@media (max-width: 767px) {
  .top-mv__figure {
    margin-top: 25px;
  }
  .top-mv__figure > * {
    max-width: min(400px, 100%);
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}

.top-about {
  padding-top: 90px;
  padding-bottom: 180px;
  background-color: var(--color-primary);
  clip-path: polygon(100% 0, 100% 87%, 50% 100%, 0 87%, 0 0);
  color: white;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  translate: 0 -2px;
}
@media (max-width: 767px) {
  .top-about {
    clip-path: polygon(100% 0, 100% 95%, 50% 100%, 0 95%, 0 0);
    padding-bottom: 100px;
    padding-top: 35px;
  }
}

.top-about__inner {
  max-width: calc(var(--width-inner) * 1px);
  margin-left: auto;
  margin-right: auto;
}

.top-about__heading {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 767px) {
  .top-about__heading {
    font-size: 18px;
    line-height: 1.5;
  }
}

.top-about__headingParts {
  display: inline-block;
}

.top-about__txt {
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
}
@media (max-width: 767px) {
  .top-about__txt {
    font-size: 12px;
    margin-top: 10px;
  }
}

.top-about__txtParts {
  display: inline-block;
}

@media (max-width: 767px) {
  .top-about__body {
    display: grid;
  }
}

.top-about__list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 4%;
       column-gap: 4%;
}
@media (max-width: 767px) {
  .top-about__list {
    margin-left: auto;
    margin-right: auto;
    width: min(45%, 200px);
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    align-items: center;
    grid-area: 1/-1;
    order: 2;
    position: relative;
    z-index: 2;
  }
}

.top-about__people {
  margin-top: -140px;
  display: flex;
  justify-content: center;
  -moz-column-gap: 5px;
  column-gap: 5px;
  padding-left: 9%;
}
@media (max-width: 767px) {
  .top-about__people {
    position: sticky;
    top: 35vh;
    grid-area: 1/-1;
    order: 1;
    justify-content: space-between;
    margin-top: unset;
    align-self: flex-start;
    margin-left: calc(-50vw + 45%);
    margin-right: calc(-50vw + 45%);
    margin-top: 20px;
    padding-left: 9%;
  }
  .top-about__people > *:nth-child(1) {
    width: 30%;
  }
  .top-about__people > *:nth-child(2) {
    width: 45%;
  }
}

.top-about__item {
  aspect-ratio: 1/1;
  background-image: var(--gradient-gold-02);
  border-radius: 999em;
  display: grid;
  place-items: center;
  padding: 3px;
  width: 100%;
}

.top-about__item__itemTxt {
  filter: drop-shadow(0 2px 5px color-mix(in srgb, black 25%, transparent));
  font-size: clamp(16px, 2.5vw, 25px);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 767px) {
  .top-about__item__itemTxt {
    font-size: clamp(10px, 3.4666666667vw, 16px);
  }
}

.top-about__btn {
  margin-top: 60px;
  display: grid;
  place-items: center;
}
@media (max-width: 767px) {
  .top-about__btn {
    margin-top: 40px;
  }
}

.top-space {
  height: 180px;
}
@media (max-width: 767px) {
  .top-space {
    height: 120px;
  }
}

/* 親：オーバーレイ全体 */
.common-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 50;
  /* ← visibility を消す */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  /* フェード */
}

.common-modal[aria-hidden=false] {
  opacity: 1;
  pointer-events: auto;
}

/* オーバーレイ */
.common-modal__overlay {
  position: fixed;
  inset: 0;
  background-color: color-mix(in srgb, black 60%, transparent);
  display: grid;
  place-items: center;
  padding: 20px calc(2 * var(--gutter));
}
@media (max-width: 767px) {
  .common-modal__overlay {
    padding: 20px calc(var(--gutter));
  }
}

/* 本体：拡大＋フェード */
.common-modal__inner {
  max-width: calc(var(--width-inner) * 1px);
  width: 100%;
  background: #fff;
  position: relative;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}

.common-modal[aria-hidden=false] .common-modal__inner {
  opacity: 1;
  transform: scale(1);
}

/* 閉じるボタン */
.common-modal__close {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  translate: 50% -50%;
}

@media (max-width: 767px) {
  .common-modal__closeIcon {
    width: 29px;
  }
}

.common-modal__heading {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}/*# sourceMappingURL=style.css.map */