@charset "UTF-8";

/* ========================== 構成
- reset
- base
- layout
- 共通モジュール
- ヘッダー
- フッター
- トップページ
- 機能一覧
- 導入事例
- 導入の流れ
- 私たちの想い
- よくあるご質問
- お知らせ
- ご利用料金
- お問い合わせ
- クラウドサービス情報セキュリティ方針
- js系ツール
- helper
-------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ------------------------------
base
-------------------------------*/
:root {
  --scrollbar: 0;
  --color-black: #222222;
  --color-white: #ffffff;
  --color-sigfy-orange: #f99342;
  --color-text-orange: #ed6d08;
  --color-skyblue: #70b4e2;
  --color-green: #5fc4a8;
  --color-red: #e6002d;
  --color-gray: #999999;
  --color-bg-yellow: #fffcf0;
  --color-bg-white: #ffffff;
  --color-bg-orange: #ffeee0;
  --color-bg-blue: #e0f3ff;
  --color-bg-green: #d7f4ec;
  --color-border_gray: #cccccc;
  --ff-en: "Barlow", sans-serif;
  --hover-transition: 0.4s;
  --hover-opacity: 0.6;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
html:has(#navi[aria-hidden="false"]) {
  overflow: hidden;
}

body {
  font-family: YakuHanJPs, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1.4rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-black);
  word-wrap: break-word;
}

a {
  color: inherit;
}
div[id],
section[id],
article[id] {
  scroll-margin-top: 80px;
}

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

input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
  outline: none;
}

button,
a,
select {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
select:focus-visible {
  outline: auto;
  outline-color: var(--color-black);
}

/* ------------------------------
layout
-------------------------------*/
.l-body {
  width: 100%;
}
.l-body.is-fixed {
  position: fixed;
}
@media screen and (max-width: 1024px) {
  .l-body::after {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: var(--hover-transition);
  }
  .l-body:has(.menu-btn.is-open)::after {
    opacity: 1;
  }
}

.l-header {
  position: sticky;
  top: 0;
  left: 0;
  padding: 10px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-white);
  height: 110px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}
@media screen and (max-width: 1024px) {
  .l-header {
    height: 70px;
    display: block;
    padding: 0;
    box-shadow: none;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 54px;
  }
}
.l-header__inner {
  display: contents;
}
@media screen and (max-width: 1024px) {
  .l-header__inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 10px 20px;
    z-index: 1000;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
  }
}

.l-footer {
  background: #636363;
  color: var(--color-white);
}
.l-footer__inner {
  position: relative;
  width: calc(100% - 100px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    width: calc(100% - 50px);
  }
}

@media screen and (max-width: 1024px) {
  .l-navi {
    display: none;
    position: fixed;
    top: 70px;
    right: 0;
    width: 100%;
    max-width: 298px;
    height: calc(100% - 70px);
    background: var(--color-bg-yellow);
    z-index: 100;
    overflow-y: auto;
  }
}
@media screen and (max-width: 767px) {
  .l-navi {
    height: calc(100% - 54px);
    top: 54px;
  }
}
.l-navi__inner {
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .l-navi__inner {
    flex-direction: column;
    gap: 0;
    height: auto;
    min-height: 100%;
    padding: 18px 30px 26px;
  }
}

.l-wrapper {
  position: relative;
  width: calc(100% - 100px);
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .l-wrapper {
    width: calc(100% - 50px);
  }
}

/* ------------------------------
共通モジュール
-------------------------------*/
.noscript {
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  padding: 1em;
  border: 3px solid red;
}
.noscript span {
  color: red;
}

.heading-2 {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .heading-2 {
    margin-bottom: 40px;
  }
}
.heading-2__sub {
  color: var(--color-sigfy-orange);
  font-weight: 700;
  font-family: var(--ff-en);
}
@media screen and (max-width: 767px) {
  .heading-2__sub {
    font-size: 1.3rem;
  }
}
.heading-2__sub::after {
  content: "";
  width: 2px;
  height: 20px;
  background: var(--color-sigfy-orange);
  display: block;
  margin: 8px auto;
  transform: rotate(45deg);
}
.heading-2__main {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 767px) {
  .heading-2__main {
    font-size: 2.5rem;
    letter-spacing: 0;
  }
}

.heading-3 {
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .heading-3 {
    font-size: 1.8rem;
  }
}

.heading-4 {
  position: relative;
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .heading-4 {
    font-size: 1.8rem;
  }
}
.heading-4--line {
  padding-bottom: 22px;
}
.heading-4--line::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--color-sigfy-orange);
}

.heading-5 {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .heading-5 {
    font-size: 1.6rem;
  }
}
.heading-5--line {
  position: relative;
  padding-left: 14px;
}
.heading-5--line::before {
  content: "";
  width: 4px;
  height: 100%;
  border-radius: 2px;
  background: var(--color-sigfy-orange);
  position: absolute;
  top: 0;
  left: 0;
}

.text-base {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .text-base {
    font-size: 1.4rem;
  }
  .text-base--sp-sm {
    font-size: 1.2rem;
  }
}
.text-base p:not(:last-child),
.text-base ol:not(:last-child),
.text-base ul:not(:last-child) {
  margin-bottom: 1.8em;
}
.text-base a {
  color: var(--color-text-orange);
}
@media (hover: hover) {
  .text-base a:hover {
    text-decoration: none;
  }
}

.text-sm {
  font-size: 1.4rem;
  line-height: 1.4;
}

.text-xs {
  font-size: 1.2rem;
  line-height: 1.6;
}

.text-xxs {
  font-size: 1rem;
  line-height: 1.6;
}

.text-link {
  text-decoration: underline;
}
@media (hover: hover) {
  .text-link:hover {
    text-decoration: none;
  }
}

.text-lg {
  font-size: 2rem;
  line-height: 1.8;
}
.text-lg p:not(:last-child),
.text-lg ol:not(:last-child),
.text-lg ul:not(:last-child) {
  margin-bottom: 1.8em;
}

.text-notice {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #5d5d5d;
}
.text-notice p:not(:last-child),
.text-notice ol:not(:last-child),
.text-notice ul:not(:last-child) {
  margin-bottom: 1.8em;
}

.text-note {
  padding-left: 1em;
  text-indent: -1em;
}

.buttons-wrap {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .buttons-wrap {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

.button-primary {
  position: relative;
  display: inline-block;
  min-width: 15rem;
  background: var(--color-sigfy-orange);
  border: 1px solid var(--color-sigfy-orange);
  color: var(--color-white);
  text-align: center;
  padding: 1.1rem 1.8rem;
  box-shadow: none;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.1875;
  transition: var(--hover-transition);
  overflow: hidden;
}
.button-primary::after {
  display: inline-block;
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg) translateY(-40%);
  vertical-align: middle;
  margin: 0 0 0 0.6em;
}
@media (hover: hover) {
  .button-primary:hover {
    background: var(--color-white);
    color: var(--color-sigfy-orange);
  }
}
.button-primary--no-arrow::after {
  content: none;
}

.button-secondary {
  position: relative;
  display: inline-block;
  background: var(--color-white);
  color: var(--color-text-orange);
  box-shadow: inset 0 0 0 1px var(--color-sigfy-orange);
  padding: 1.1em 1.4em;
  text-decoration: none;
  border-radius: 10px;
  font-size: 2rem;
  font-weight: 700;
  overflow: hidden;
  transition: var(--hover-transition);
}
@media screen and (max-width: 767px) {
  .button-secondary {
    font-size: 1.6rem;
    padding: 0.9em 1.4em;
  }
}
.button-secondary::after {
  display: inline-block;
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg) translateY(-40%);
  vertical-align: middle;
  margin: 0 0 0 0.6em;
}
@media (hover: hover) {
  .button-secondary:hover {
    box-shadow: 0;
    color: var(--color-white);
    background: var(--color-sigfy-orange);
  }
}

.button-tertiary {
  position: relative;
  display: inline-block;
  padding: 13px 45px 13px 24px;
  border-radius: 100px;
  gap: 8px;
  background: var(--color-white);
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  transition: var(--hover-transition);
  overflow: hidden;
}
.button-tertiary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transition: var(--hover-transition);
}
@media (hover: hover) {
  .button-tertiary:hover {
    background: var(--color-sigfy-orange);
    color: var(--color-white);
  }
}

.section {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 60px 0;
  }
}
.section:last-child {
  padding-bottom: 140px;
}
@media screen and (max-width: 767px) {
  .section:last-child {
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 768px) {
  .section--pc-0 {
    padding-top: 0;
  }
}

.page-head {
  position: relative;
  display: flex;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page-head {
    display: flex;
    flex-direction: column-reverse;
  }
}
.page-head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(36.5278% + 121px);
  min-width: 481px;
  height: 100%;
  background: var(--color-bg-orange);
  border-radius: 0 0 60px 0;
  z-index: -2;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .page-head::before {
    width: calc(100% - 25px);
    min-width: auto;
    border-radius: 0 0 30px 0;
  }
}
.page-head::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 340px;
  height: 346px;
  border-radius: 0 0 420px 0;
  background: rgba(var(--color-white), 0.1);
  box-shadow: 0px 0px 24px rgba(var(--color-sigfy-orange), 0.2);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-head::after {
    height: auto;
    aspect-ratio: 1/1;
    width: 120px;
    top: 150px;
    left: auto;
    right: 25px;
    border-radius: 0 0 0 420px;
  }
}
.page-head__main {
  position: relative;
  width: 36.5278%;
  min-width: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 30px 30px 52px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .page-head__main {
    width: 100%;
    min-width: auto;
    padding: 25px 25px;
  }
}
.page-head__en {
  display: block;
  margin-bottom: 12px;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--ff-en);
  line-height: 1.4;
  color: var(--color-sigfy-orange);
}
@media screen and (max-width: 767px) {
  .page-head__en {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
}
.page-head__jp {
  font-size: 4.6rem;
  font-weight: 800;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .page-head__jp {
    font-size: 3rem;
  }
}
.page-head__image {
  flex: 1;
  height: 335px;
  margin-bottom: 74px;
  border-radius: 0 0 0 60px;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .page-head__image {
    flex: auto;
    width: calc(100% - 25px);
    height: 180px;
    margin-bottom: 0;
    margin-left: auto;
    border-radius: 0 0 0 30px;
  }
}
.page-head__image img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.notice-box {
  background: var(--color-white);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .notice-box {
    border-radius: 10px;
    padding: 20px;
  }
}
.notice-box--sm {
  padding: 16px 20px;
  border-radius: 10px;
}
.note-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px 12px;
}
@media screen and (max-width: 767px) {
  .note-list {
    gap: 6px;
  }
}

.list-check--2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 20px;
}
@media screen and (max-width: 1024px) {
  .list-check--2col {
    grid-template-columns: repeat(1, 1fr);
  }
}
.list-check li {
  position: relative;
  padding-left: 26px;
}
.list-check li:not(:last-child) {
  margin-bottom: 2px;
}
.list-check li::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 16px;
  height: 16px;
  -webkit-mask-image: url(../img/common/icon_check_circle.svg);
  mask-image: url(../img/common/icon_check_circle.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background: var(--color-green);
}
.list-check--blue li::before {
  background: var(--color-skyblue);
}
.list-check--orange li::before {
  background: var(--color-sigfy-orange);
}
.list-check--mlg li:not(:last-child) {
  margin-bottom: 12px;
}

.list li {
  position: relative;
  padding-left: 1.7em;
}
.list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0.2em;
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background: var(--color-sigfy-orange);
}
.list--green li::before {
  background: var(--color-green);
}
.list--blue li::before {
  background: var(--color-skyblue);
}
.list--sm-black li::before {
  top: 0.8em;
  left: 11px;
  width: 4px;
  height: 4px;
  background: var(--color-black);
}

.section-check {
  position: relative;
  padding-left: 26px;
}
.section-check:not(:last-child) {
  margin-bottom: 13px;
}
.section-check::before {
  content: "";
  position: absolute;
  top: 0.4em;
  left: 0;
  width: 16px;
  height: 16px;
  -webkit-mask-image: url(../img/common/icon_check_circle.svg);
  mask-image: url(../img/common/icon_check_circle.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background: var(--color-green);
}
@media screen and (max-width: 767px) {
  .section-check::before {
    top: 0.33em;
  }
}

.icon-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .icon-head {
    gap: 15px;
    margin-bottom: 15px;
  }
}
.icon-head__icon {
  flex-shrink: 0;
  width: 50px;
}

.timeline {
  position: relative;
  margin-left: 45px;
}
@media screen and (max-width: 767px) {
  .timeline {
    margin-left: 0;
  }
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(
      180deg,
      var(--color-sigfy-orange) 0%,
      rgba(255, 255, 255, 0.9) 100%
    ),
    var(--color-sigfy-orange);
}
@media screen and (max-width: 767px) {
  .timeline::before {
    width: 3px;
  }
}
.timeline__item {
  position: relative;
  display: flex;
}
.timeline__item:not(:last-child) {
  margin-bottom: 65px;
}
@media screen and (max-width: 767px) {
  .timeline__item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.timeline__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -8px;
  width: 20px;
  height: 20px;
  background: var(--color-sigfy-orange);
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .timeline__item::before {
    left: -6px;
    width: 15px;
    height: 15px;
  }
}
.timeline__year {
  flex-shrink: 0;
  width: 245px;
  padding-left: 65px;
  padding-right: 5px;
  color: var(--color-sigfy-orange);
  font-family: var(--ff-en);
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .timeline__year {
    padding-left: 20px;
    width: 115px;
    font-size: 1.8rem;
  }
}
.timeline__body {
  margin-top: -5px;
}

/* ------------------------------
ヘッダー
-------------------------------*/
.header-logo {
  width: 148px;
}
@media screen and (max-width: 1024px) {
  .header-logo {
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .header-logo {
    width: 74px;
  }
}
.header-logo a {
  display: block;
}
.header-logo img {
  display: block;
}

.menu-btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .menu-btn {
    display: block;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    position: relative;
    color: var(--color-sigfy-orange);
    z-index: 400;
  }
  .menu-btn__icon {
    display: block;
    width: 36px;
    height: 9px;
    position: relative;
    margin: 0 auto;
  }
  .menu-btn__icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    transition: var(--hover-transition);
  }
  .menu-btn__icon span:nth-child(1) {
    top: 0;
  }
  .menu-btn__icon span:nth-child(2) {
    top: 100%;
  }
  .menu-btn__text {
    margin-top: 6px;
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
  }
  .menu-btn.is-open .menu-btn__icon span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, calc(-50% + 2px)) rotate(24deg);
  }
  .menu-btn.is-open .menu-btn__icon span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, calc(-50% + 2px)) rotate(-24deg);
  }
  .menu-btn.is-open .menu-btn__text {
    font-size: 1.1rem;
  }
}

/* グローバルナビ */
.gnavi {
  display: flex;
  align-items: center;
  gap: clamp(2rem, -1.9518072289rem + 3.8554216867vw, 3.6rem);
}
@media screen and (max-width: 1024px) {
  .gnavi {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}
.gnavi__item {
  position: relative;
  cursor: pointer;
}
@media (hover: hover) {
  .gnavi__item:has(.gnavi__btn):hover .gnavi__box {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 100%);
  }
}
@media screen and (hover: hover) and (max-width: 1024px) {
  .gnavi__item:has(.gnavi__btn):hover .gnavi__box {
    transform: none;
  }
}
@media (hover: hover) {
  .gnavi__item:has(.gnavi__btn):hover .gnavi__btn {
    transform: rotate(180deg);
  }
}
@media screen and (hover: hover) and (max-width: 1024px) {
  .gnavi__item:has(.gnavi__btn):hover .gnavi__btn {
    transform: none;
  }
}
.gnavi__item:has(.gnavi__btn):focus-within .gnavi__box {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 100%);
}
@media screen and (max-width: 1024px) {
  .gnavi__item:has(.gnavi__btn):focus-within .gnavi__box {
    transform: none;
  }
}
.gnavi__item:has(.gnavi__btn):focus-within .gnavi__btn {
  transform: rotate(180deg);
}
@media screen and (max-width: 1024px) {
  .gnavi__item:has(.gnavi__btn):focus-within .gnavi__btn {
    transform: none;
  }
}
@media screen and (max-width: 1024px) {
  .gnavi__item {
    border-bottom: 1px dashed #ffcca3;
    cursor: auto;
  }
}
.gnavi__item:has(.gnavi__btn) {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .gnavi__item:has(.gnavi__btn) {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.gnavi__link {
  display: block;
  flex: 1;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-decoration: none;
  transition: var(--hover-transition);
}
@media (hover: hover) {
  .gnavi__link:hover {
    color: var(--color-text-orange);
  }
}
@media screen and (max-width: 1024px) {
  .gnavi__link {
    padding: 8px 0;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0;
  }
}
.gnavi__box {
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: -moz-max-content;
  width: max-content;
  padding: 14px 20px 20px;
  background: var(--color-bg-yellow);
  border-radius: 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, calc(100% + 8px));
  transition: var(--hover-transition);
}
@media screen and (max-width: 1024px) {
  .gnavi__box {
    position: static;
    width: 100%;
    background: transparent;
    box-shadow: none;
    transform: none;
    padding: 0;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transition: none;
  }
}
.gnavi__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 20rem;
  height: 10px;
}
@media screen and (max-width: 1024px) {
  .gnavi__box::before {
    display: none;
  }
}
.gnavi__children {
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: var(--hover-transition);
}
@media screen and (max-width: 1024px) {
  .gnavi__children {
    margin-top: -2px;
    padding-bottom: 8px;
    gap: 6px;
  }
}
.gnavi__child {
  border-bottom: 1px dashed #ffcca3;
}
@media screen and (max-width: 1024px) {
  .gnavi__child {
    border-bottom: none;
  }
}
.gnavi__child a {
  display: block;
  font-size: 1.6rem;
  line-height: 1.8;
  padding: 6px 0;
  text-decoration: none;
  transition: var(--hover-transition);
}
@media (hover: hover) {
  .gnavi__child a:hover {
    color: var(--color-sigfy-orange);
  }
}
@media screen and (max-width: 1024px) {
  .gnavi__child a {
    padding: 0;
    font-size: 1.2rem;
  }
}
.gnavi__btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  pointer-events: none;
  transition: var(--hover-transition);
}
@media screen and (max-width: 1024px) {
  .gnavi__btn {
    padding: 8px 0;
    pointer-events: all;
  }
  .gnavi__btn.is-open {
    transform: rotate(-180deg) !important;
  }
}
.gnavi__icon img {
  display: block;
}

.gnavi-utility {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .gnavi-utility {
    flex: 1;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    margin-top: 28px;
  }
}
.gnavi-utility__button-wrap {
  margin-right: 36px;
}
@media screen and (max-width: 1024px) {
  .gnavi-utility__button-wrap {
    margin-right: 0;
  }
}
.gnavi-utility__button {
  position: relative;
  display: inline-block;
  padding: 5px 16px;
  background: var(--color-sigfy-orange);
  border: 1px solid var(--color-sigfy-orange);
  border-radius: 6px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4375;
  color: var(--color-white);
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  transition: var(--hover-transition);
}
@media (hover: hover) {
  .gnavi-utility__button:hover {
    background: var(--color-white);
    color: var(--color-sigfy-orange);
  }
  .gnavi-utility__button:hover::before {
    opacity: 1;
  }
}
@media screen and (max-width: 1024px) {
  .gnavi-utility__button {
    width: 100%;
    border-radius: 10px;
    padding: 9px 17px;
  }
}
.gnavi-utility__button > span {
  position: relative;
  z-index: 1;
}
.gnavi-utility__logo {
  display: flex;
  align-items: center;
  gap: 1em;
}
@media screen and (max-width: 1024px) {
  .gnavi-utility__logo {
    margin-top: 70px;
  }
}
.gnavi-utility__item a {
  display: block;
  text-decoration: none;
  transition: var(--hover-transition);
}
@media (hover: hover) {
  .gnavi-utility__item a:hover {
    opacity: var(--hover-opacity);
  }
}
.gnavi-utility__item img {
  display: block;
}

/* ------------------------------
フッター
-------------------------------*/
.copyright {
  display: block;
  text-align: center;
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.6;
  padding: 33px 0 20px;
}

.cta {
  position: relative;
  background: #ffeee0;
  padding: 60px 0;
  text-align: center;
}
.cta > * {
  z-index: 3;
}
.cta::before,
.cta::after {
  content: "";
  position: absolute;
  z-index: 0;
}
.cta::before {
  background: url("../img/common/deco_circle_2.svg") no-repeat center/contain;
  width: 295px;
  height: 230px;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .cta::before {
    width: 150px;
    height: 120px;
  }
}
.cta::after {
  content: "";
  background: url("../img/common/deco_circle_1.svg") no-repeat center/contain;
  width: 375px;
  height: 230px;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .cta::after {
    width: 150px;
    height: 90px;
  }
}
@media screen and (max-width: 767px) {
  .cta {
    padding: 40px 0;
  }
}

.for-customer {
  background: var(--color-bg-yellow);
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .for-customer {
    text-align: center;
  }
}
.for-customer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .for-customer__inner {
    flex-direction: column;
    gap: 14px;
  }
}

.footer__head {
  display: flex;
  justify-content: space-between;
  gap: 5%;
  padding: 30px 0 30px;
}
@media screen and (max-width: 767px) {
  .footer__head {
    display: block;
    padding: 41px 0 34px;
  }
}
.footer__logos {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .footer__logos {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.footer__logo img {
  width: 148px;
}
@media screen and (max-width: 767px) {
  .footer__logo img {
    width: 124px;
  }
}
.footer__logo a {
  display: flex;
  align-items: center;
  gap: 30px;
  text-decoration: none;
  transition: var(--hover-transition);
}
@media (hover: hover) {
  .footer__logo a:hover {
    opacity: var(--hover-opacity);
  }
}
@media screen and (max-width: 767px) {
  .footer__logo a {
    flex-direction: column;
    align-items: start;
    gap: 13px;
  }
}
.footer__logo span {
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .footer__logo span {
    font-size: 1.4rem;
  }
}
.footer__certification {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .footer__certification {
    margin-top: 0;
  }
}
.footer__certification img {
  height: 36px;
  width: auto;
  display: block;
}
.footer__policy {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .footer__policy {
    width: 100%;
    margin-top: 10px;
  }
}
.footer__policy a {
  text-decoration: none;
  transition: var(--hover-transition);
  font-size: 1rem;
  font-weight: 400;
}
@media (hover: hover) {
  .footer__policy a:hover {
    color: var(--color-sigfy-orange);
  }
}
.footer__company {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 30px;
  border-top: 1px solid #aaaaaa;
}
@media screen and (max-width: 767px) {
  .footer__company {
    align-items: center;
  }
}
.footer__company__logos {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer__company__logos a {
  transition: var(--hover-transition);
}
@media (hover: hover) {
  .footer__company__logos a:hover {
    opacity: var(--hover-opacity);
  }
}
@media screen and (max-width: 767px) {
  .footer__company__logos {
    gap: 10px;
  }
}
.footer__company__links {
  margin-top: 6px;
  display: flex;
  gap: 26px;
}
.footer__company__links a {
  font-size: 1rem;
  text-decoration: none;
  transition: var(--hover-transition);
}
@media (hover: hover) {
  .footer__company__links a:hover {
    color: var(--color-text-orange);
  }
}
.footer__company__text {
  margin-top: 13px;
  font-size: 1rem;
}

@media screen and (max-width: 767px) {
  .footer-nav {
    display: none;
  }
}
.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding: 0;
  margin: 0;
}
.footer-nav__item {
  position: relative;
}
.footer-nav__item a {
  font-size: 1.4rem;
  font-weight: 500;
  padding-left: 20px;
  transition: var(--hover-transition);
  text-decoration: none;
}
@media (hover: hover) {
  .footer-nav__item a:hover {
    color: var(--color-sigfy-orange);
  }
}
.footer-nav__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-sigfy-orange);
}
.footer-nav__list-sub li {
  margin-top: 13px;
}
.footer-nav__list-sub li a {
  font-size: 1.2rem;
  font-weight: 400;
}

/* ------------------------------
トップページ
-------------------------------*/
.mainvisual {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 724px;
  padding: 20px 0 70px;
}
@media screen and (max-width: 767px) {
  .mainvisual {
    flex-direction: column;
    padding: 30px 0 25px;
    min-height: inherit;
  }
}
.mainvisual__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 86.8%;
  height: 100%;
  background: url(../img/home/bg_mv_pc.jpg) no-repeat center bottom/cover;
  border-radius: 0 0 0 60px;
  clip-path: inset(0 100% 0 0 round 0 0 0 60px);
  transition: clip-path 2.8s cubic-bezier(0.1, 1, 0.3, 1);
}
@media screen and (max-width: 767px) {
  .mainvisual__bg {
    width: 94.5%;
    border-radius: 0 0 0 30px;
    background-image: url(../img/home/bg_mv_sp.jpg);
    background-position: center center;
    clip-path: inset(0 100% 0 0 round 0 0 0 30px);
  }
}
.mainvisual__bg.is-visible {
  clip-path: inset(0 0% 0 0 round 0 0 0 60px);
}
@media screen and (max-width: 767px) {
  .mainvisual__bg.is-visible {
    clip-path: inset(0 0% 0 0 round 0 0 0 30px);
  }
}
.mainvisual__image {
  clip-path: inset(0 100% 0 0 round 0 60px 60px 0);
  transition: clip-path 2.8s cubic-bezier(0.1, 1, 0.3, 1);
  overflow: hidden;
  position: absolute;
  top: calc(50% - 18px);
  left: calc(50% - 50vw);
  transform: translateY(-50%);
  width: calc(50vw + 24.2%);
  height: 100%;
  max-height: 562px;
  border-radius: 0 60px 60px 0;
}
@media screen and (max-width: 767px) {
  .mainvisual__image {
    top: 0;
    left: 0;
    transform: translateY(0);
    width: 86%;
    height: 339px;
    border-radius: 0 30px 30px 0;
    clip-path: inset(0 100% 0 0 round 0 30px 30px 0);
  }
}
.mainvisual__image img {
  display: block;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: top center;
  object-position: top center;
}
.mainvisual__image.is-visible {
  clip-path: inset(0 0% 0 0 round 0 60px 60px 0);
}
@media screen and (max-width: 767px) {
  .mainvisual__image.is-visible {
    clip-path: inset(0 0% 0 0 round 0 30px 30px 0);
  }
}
.mainvisual__wrapper {
  position: relative;
  width: calc(100% - 100px);
  max-width: 1340px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .mainvisual__wrapper {
    width: calc(100% - 40px);
    max-width: 350px;
  }
}
.mainvisual__wrap {
  position: relative;
  display: flex;
}
@media screen and (max-width: 767px) {
  .mainvisual__wrap {
    flex-direction: column;
    margin-top: 15px;
    padding: 0;
  }
}
.mainvisual__image-wrap {
  position: absolute;
  bottom: -254px;
  right: 0.5%;
  max-width: 218px;
  width: 18%;
}
@media screen and (max-width: 767px) {
  .mainvisual__image-wrap {
    position: relative;
    bottom: 0;
    right: 0;
    width: 111px;
    margin-left: auto;
  }
}
.mainvisual__mock {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.6s cubic-bezier(0.33, 1, 0.68, 1),
    transform 1.6s cubic-bezier(0.33, 1, 0.68, 1);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  border-radius: 20px;
}
.mainvisual__mock img {
  display: block;
  width: 100%;
}
.mainvisual__mock.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.mainvisual__review {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1.6s cubic-bezier(0.33, 1, 0.68, 1),
    transform 1.6s cubic-bezier(0.33, 1, 0.68, 1);
  position: absolute;
  bottom: 8px;
  right: calc(100% - 22px);
}
@media screen and (max-width: 767px) {
  .mainvisual__review {
    bottom: 0px;
    right: calc(100% - 26px);
  }
}
.mainvisual__review.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.mainvisual__body {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.8s cubic-bezier(0.33, 1, 0.68, 1),
    transform 1.8s cubic-bezier(0.33, 1, 0.68, 1);
  position: relative;
  z-index: 1;
  max-width: 670px;
  width: 62%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .mainvisual__body {
    width: 100%;
    margin-left: 0;
    padding-left: 26px;
  }
}
.mainvisual__body.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.mainvisual__sub-lead {
  display: inline-block;
  margin-bottom: 1.2em;
  padding: 0.25em 0.5em;
  background: var(--color-sigfy-orange);
  color: var(--color-white);
  font-size: 2rem;
  font-size: clamp(1.7777777778rem, 0rem + 1.3888888889vw, 2rem);
  font-weight: 800;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .mainvisual__sub-lead {
    margin-bottom: 0.6em;
    padding: 0.4em 0.5em;
    font-size: 1.4rem;
  }
}
.mainvisual__lead {
  margin-bottom: 0.7em;
  font-size: 3.2rem;
  font-size: clamp(2.8444444444rem, 0rem + 2.2222222222vw, 3.2rem);
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.06em;
  width: calc(100% + 50px);
}
@media screen and (max-width: 767px) {
  .mainvisual__lead {
    width: 100%;
    margin-bottom: 0.8em;
    font-size: 2rem;
    letter-spacing: 0;
  }
}
.mainvisual__lead__lg {
  font-size: 4.8rem;
  font-size: clamp(4.2666666667rem, 0rem + 3.3333333333vw, 4.8rem);
  font-weight: 700;
  color: var(--color-sigfy-orange);
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .mainvisual__lead__lg {
    font-size: 2.8rem;
  }
}
.mainvisual__lead__lg span {
  font-weight: 400;
}
.mainvisual__text {
  font-size: 1.6rem;
  font-size: clamp(0.85333rem, -0.8436472727rem + 1.6969772727vw, 1.6rem);
  font-size: clamp(1.4222222222rem, 0rem + 1.1111111111vw, 1.6rem);
  font-weight: 800;
  line-height: 2.2;
}
@media screen and (max-width: 767px) {
  .mainvisual__text {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}

.mainvisual-review {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 170px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .mainvisual-review {
    width: 112px;
  }
}
.mainvisual-review__stars {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mainvisual-review__stars {
    width: 75px;
  }
}
.mainvisual-review__head {
  margin-bottom: 0.3em;
  color: #0a0a0a;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .mainvisual-review__head {
    font-size: 1.1rem;
  }
}
.mainvisual-review__text {
  font-size: 1.2rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .mainvisual-review__text {
    font-size: 1rem;
  }
}
.mainvisual-review__text sup {
  position: relative;
  top: -1.5em;
  font-size: 50%;
}
.mainvisual-review__note {
  color: #999;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .mainvisual-review__note {
    font-size: 0.8rem;
  }
}

.numbers-head {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 50px;
}
@media screen and (max-width: 1024px) {
  .numbers-head {
    gap: 0 30px;
  }
}
.numbers-head__item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.numbers-head__image {
  flex-shrink: 0;
  display: block;
  width: 122px;
  height: 88px;
}
@media screen and (max-width: 1024px) {
  .numbers-head__image {
    width: 90px;
  }
}
.numbers-head__image img {
  display: block;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.numbers-head__text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2em;
  color: var(--textColor, #222);
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: 0.0264rem;
}
@media screen and (max-width: 1024px) {
  .numbers-head__text {
    gap: 0 0.2em;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .numbers-head__text {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.numbers-head__text strong {
  position: relative;
  color: var(--color-green);
  font-family: var(--ff-en);
  font-size: 8rem;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .numbers-head__text strong {
    font-size: 5.5rem;
  }
}
.numbers-head__text strong sup {
  position: absolute;
  top: 15px;
  font-family: var(--ff-en);
  right: -15px;
  display: inline-block;
  font-size: 1rem;
  font-weight: 400;
  color: #666666;
}

.numbers-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 38px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .numbers-data {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.numbers-data__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.numbers-data__item:nth-of-type(1) {
  grid-row: span 2 / span 2;
}
@media screen and (max-width: 767px) {
  .numbers-data__item:nth-of-type(1) {
    grid-row: auto;
  }
}
.numbers-data__item:nth-of-type(4) {
  grid-column-start: 2;
  grid-row-start: 2;
}
@media screen and (max-width: 767px) {
  .numbers-data__item:nth-of-type(4) {
    grid-column-start: auto;
    grid-row-start: auto;
  }
}
.numbers-data__item:nth-of-type(5) {
  grid-column-start: 3;
  grid-row-start: 2;
}
@media screen and (max-width: 767px) {
  .numbers-data__item:nth-of-type(5) {
    grid-column-start: auto;
    grid-row-start: auto;
  }
}
.numbers-data__heading {
  margin-bottom: 12px;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02195em;
}
.numbers-data__text sup {
  position: relative;
  top: -1em;
  font-size: 60%;
  font-weight: 400;
}
.numbers-data__image {
  margin-top: 30px;
}
.numbers-data__value {
  margin-top: 18px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.009375em;
}
.numbers-data__value sup {
  position: relative;
  top: -1.5em;
  font-size: 60%;
  font-weight: 400;
}
.numbers-data__value__number {
  display: inline-block;
  margin-right: 0.1em;
  font-family: var(--ff-en);
  color: var(--color-sigfy-orange);
  font-size: 3.6rem;
}
.numbers-data__value__lg {
  display: inline-block;
  margin-right: 0.1em;
  color: var(--color-sigfy-orange);
  font-size: 3.4rem;
}

.features-item__foot {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--color-border_gray);
}

.features-item-head {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 30px;
  padding: 0 7px;
}
@media screen and (max-width: 1024px) {
  .features-item-head {
    padding: 0;
    gap: 15px;
    margin-bottom: 20px;
  }
}
.features-item-head__image {
  flex-shrink: 0;
  width: 36px;
}
.features-item-head__body {
  width: 100%;
}
.features-item-head__tags {
  display: flex;
  gap: 5px 12px;
}
.features-item-head__tag-date {
  padding: 4px 11px;
  border-radius: 20px;
  border: 1px solid var(--color-sigfy-orange);
  font-family: var(--ff-en);
  font-size: 1.1rem;
  font-weight: 700;
}
.features-item-head__tag-alert {
  padding: 4px 9px;
  border-radius: 20px;
  border: 1px solid var(--color-red);
  font-size: 1rem;
  color: var(--color-red);
}
.features-item-head__heading {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.6;
}

.reason-item__head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}
.reason-item__number {
  color: var(--color-sigfy-orange);
  font-family: var(--ff-en);
  font-size: 3.6rem;
  font-weight: 700;
}
.reason-item__image {
  width: 110px;
}

.process-item__body {
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--color-border_gray);
}
@media screen and (max-width: 767px) {
  .process-item__body {
    margin-top: 24px;
    padding-top: 20px;
  }
}
.bg-green .process-item__body {
  border-top-color: var(--color-green);
}
.bg-blue .process-item__body {
  border-top-color: var(--color-skyblue);
}
.process-item__button {
  display: flex;
  justify-content: flex-end;
  margin-top: 15px;
}

.process-item-head {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 1024px) {
  .process-item-head {
    flex-direction: column;
    gap: 20px;
  }
}
.process-item-head__image {
  flex-shrink: 0;
  overflow: hidden;
  width: 120px;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .process-item-head__image {
    width: 100px;
    margin: 0 auto;
  }
}
.process-item-head__image img {
  display: block;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.process-item-head__body {
  width: 100%;
}
.process-item-head__heading {
  margin-bottom: 15px;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .process-item-head__heading {
    margin-bottom: 10px;
  }
}

/* ------------------------------
機能一覧
-------------------------------*/
.section-feature {
  display: grid;
  grid-template-columns: 1fr 250px;
  grid-template-rows: auto 1fr;
  grid-template-areas: "head image" "body image";
  gap: 0 7.6%;
}
@media screen and (max-width: 767px) {
  .section-feature {
    display: block;
  }
}
.section-feature:not(:last-child) {
  margin-bottom: 125px;
}
@media screen and (max-width: 767px) {
  .section-feature:not(:last-child) {
    margin-bottom: 60px;
  }
}
.section-feature--reverse {
  grid-template-columns: 250px 1fr;
  grid-template-areas: "image head" "image body";
}
.section-feature--wide {
  display: block;
}
.section-feature__head {
  grid-area: head;
}
.section-feature__heading {
  grid-area: head;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 25px;
  margin-bottom: 22px;
}
@media screen and (max-width: 767px) {
  .section-feature__heading {
    gap: 24px 0;
  }
}
.section-feature__heading__number {
  display: flex;
  align-items: center;
  margin-right: 32px;
}
@media screen and (max-width: 767px) {
  .section-feature__heading__number {
    margin-right: 20px;
  }
}
.section-feature__heading__main {
  margin-right: 26px;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .section-feature__heading__main {
    margin-right: 10px;
    font-size: 2.4rem;
  }
}
.section-feature__heading__tag {
  padding: 2px 10px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  background: #47b6ff;
  color: var(--color-white);
  border-radius: 50px;
}
.section-feature__heading__tag--alert {
  background: var(--color-red);
}
.section-feature__heading__lead {
  margin-left: 48px;
}
@media screen and (max-width: 1024px) {
  .section-feature__heading__lead {
    width: 100%;
    margin-left: 0;
  }
}
.section-feature__body {
  grid-area: body;
}
.section-feature__image-wrap {
  grid-area: image;
}
.section-feature__image {
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 20px;
  box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .section-feature__image {
    width: 200px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
  }
}
.section-feature__image img {
  display: block;
}

.section-feature-simple {
  display: flex;
}
@media screen and (max-width: 767px) {
  .section-feature-simple {
    flex-direction: column;
  }
}
.section-feature-simple:not(:last-child) {
  margin-bottom: 30px;
}
.section-feature-simple__number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  width: 94px;
  border-right: 1px solid var(--color-sigfy-orange);
  color: var(--color-sigfy-orange);
  font-family: var(--ff-en);
  font-size: 4.8rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .section-feature-simple__number {
    width: 75px;
    font-size: 3.6rem;
  }
}
.section-feature-simple__number img {
  display: block;
  height: 36px;
}
@media screen and (max-width: 767px) {
  .section-feature-simple__number img {
    height: 28px;
  }
}
.section-feature-simple__body {
  width: 100%;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .section-feature-simple__body {
    padding: 0;
  }
}
.section-feature-simple__head {
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .section-feature-simple__head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
  }
}
.section-feature-simple__button {
  display: flex;
  align-items: center;
  width: 150px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .section-feature-simple__button {
    margin: 20px auto 0;
  }
}

.option-horizontal {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .option-horizontal {
    flex-direction: column;
  }
}
.option-horizontal__body {
  width: 100%;
}
.option-horizontal__button {
  flex-shrink: 0;
  width: 150px;
}

.fig-security {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .fig-security {
    grid-template-columns: repeat(1, 1fr);
  }
}
.fig-security__item:not(:nth-of-type(3n)) {
  border-right: 1px solid var(--color-sigfy-orange);
}
@media screen and (max-width: 767px) {
  .fig-security__item:not(:nth-of-type(3n)) {
    border-right: none;
  }
}
@media screen and (max-width: 767px) {
  .fig-security__item:not(:last-child) {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-sigfy-orange);
  }
}
.fig-security__inner {
  max-width: 220px;
  margin: 0 auto;
}
.fig-security__image {
  margin-bottom: 10px;
}
.fig-security__image img {
  display: block;
  max-height: 80px;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

/* ------------------------------
導入事例
-------------------------------*/
.cases {
  display: grid;
  grid-template-columns: 50% 43.75%;
  grid-template-rows: auto 1fr;
  grid-template-areas: "body image" "body sub";
  gap: 0 6.25%;
}
@media screen and (max-width: 767px) {
  .cases {
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas: none;
    gap: 0;
  }
}
.cases__image {
  grid-area: image;
  overflow: hidden;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .cases__image {
    grid-area: auto;
  }
}
.cases__image img {
  display: block;
  width: 100%;
}
.cases__body {
  grid-area: body;
}
@media screen and (max-width: 767px) {
  .cases__body {
    grid-area: auto;
    margin-top: 30px;
  }
}
.cases__sub {
  margin-top: 40px;
  grid-area: sub;
}
@media screen and (max-width: 767px) {
  .cases__sub {
    grid-area: auto;
    margin-top: 30px;
    width: 100%;
  }
}
.cases__frame {
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--color-sigfy-orange);
  background: var(--color-white);
}
.card-cases {
  overflow: hidden;
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
}
.card-cases__image img {
  display: block;
  width: 100%;
}
.card-cases__body {
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .card-cases__body {
    padding: 20px;
  }
}
.card-cases__button {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.clients__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.clients__number {
  flex-shrink: 0;
  color: var(--color-sigfy-orange);
  font-size: 1.8rem;
  font-weight: 800;
}
.clients__number span {
  margin-right: 4px;
  font-family: var(--ff-en);
  font-size: 3.6rem;
  font-weight: 600;
}

.modal-feature__image {
  overflow: hidden;
  margin-bottom: 50px;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .modal-feature__image {
    margin-bottom: 25px;
    border-radius: 10px;
  }
}
.modal-feature__image img {
  display: block;
  width: 100%;
}
.modal-feature__body {
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .modal-feature__body {
    padding: 0;
  }
}

/* ------------------------------
導入の流れ
-------------------------------*/
.flow-tab-button {
  border: none;
  padding: 0;
  box-shadow: none;
  padding: 30px 0 40px;
  transition: var(--hover-transition);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .flow-tab-button {
    padding: 20px 0 15px;
  }
}
.flow-tab-button--goverment {
  background: var(--color-bg-green);
}
.flow-tab-button--goverment[aria-selected="true"] {
  background: var(--color-green);
}
@media (hover: hover) {
  .flow-tab-button--goverment:hover {
    background: #5fc4a8;
  }
}
.flow-tab-button--teacher {
  background: var(--color-bg-blue);
}
.flow-tab-button--teacher[aria-selected="true"] {
  background: var(--color-skyblue);
}
@media (hover: hover) {
  .flow-tab-button--teacher:hover {
    background: var(--color-skyblue);
  }
}
.flow-tab-button::after {
  content: "";
  display: block;
  width: 40px;
  aspect-ratio: 1/1;
  -webkit-mask: url(../img/faq/icon_tab_current.svg) no-repeat center
    bottom/auto;
  mask: url(../img/faq/icon_tab_current.svg) no-repeat center bottom/auto;
  background: inherit;
  position: absolute;
  bottom: -21px;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 0;
  transition: var(--hover-transition);
  clip-path: polygon(
    0% calc(100% - 21px),
    100% calc(100% - 21px),
    100% 100%,
    0% 100%
  );
}
.flow-tab-button:first-child {
  border-radius: 20px 0 0 0;
}
.flow-tab-button:last-child {
  border-radius: 0 20px 0 0;
}
.flow-tab-button[aria-selected="true"] {
  color: var(--color-white);
  pointer-events: none;
}
.flow-tab-button[aria-selected="true"]::after {
  opacity: 1;
}
.flow-tab-button__label {
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .flow-tab-button__label {
    font-size: 1.4rem;
    letter-spacing: -0.05em;
  }
}

.flow-wrap {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0 0 20px 20px;
  padding: 80px 40px;
}
@media screen and (max-width: 1024px) {
  .flow-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .flow-wrap {
    border-radius: 0 0 10px 10px;
    padding: 40px 15px 20px;
  }
}
.flow-wrap--government {
  border: 2px solid var(--color-green);
}
.flow-wrap--teacher {
  border: 2px solid var(--color-skyblue);
}

.flow-fig {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-align: center;
  counter-reset: item;
}
@media screen and (max-width: 1024px) {
  .flow-fig {
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .flow-fig {
    flex-direction: column;
    text-align: left;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
  }
}
.flow-fig__item {
  position: relative;
  counter-increment: item;
}
@media screen and (max-width: 767px) {
  .flow-fig__item {
    padding-left: 60px;
    padding-top: 5px;
  }
}
.flow-fig__item::before {
  content: counter(item);
  width: 5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  font-family: var(--ff-en);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-white);
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .flow-fig__item::before {
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 4rem;
  }
}
.flow-fig__item::after {
  content: "";
  width: calc(100% + 40px);
  height: 4px;
  display: block;
  position: absolute;
  top: 2.5rem;
  left: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .flow-fig__item::after {
    width: 4px;
    height: calc(100% + 25px);
    left: 18px;
    top: 0;
    transform: none;
  }
}
.flow-fig__item:first-child::after {
  width: calc(50% + 40px);
  left: 50%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .flow-fig__item:first-child::after {
    width: 4px;
    left: 18px;
    transform: none;
  }
}
.flow-fig__item:last-child::after {
  width: calc((100% + 40px) / 2);
  transform: translate(-100%, -50%);
}
@media screen and (max-width: 767px) {
  .flow-fig__item:last-child::after {
    content: none;
  }
}
.flow-fig__item--government:nth-child(odd) {
  width: 14.5rem;
}
@media screen and (max-width: 767px) {
  .flow-fig__item--government:nth-child(odd) {
    width: 100%;
  }
}
.flow-fig__item--government:nth-child(even) {
  width: 20rem;
}
@media screen and (max-width: 767px) {
  .flow-fig__item--government:nth-child(even) {
    width: 100%;
  }
}
.flow-fig__item--government::before,
.flow-fig__item--government::after {
  background: var(--color-green);
}
.flow-fig__item--teacher {
  flex: 1;
}
.flow-fig__item--teacher:first-child,
.flow-fig__item--teacher:last-child {
  width: 14.5rem;
}
.flow-fig__item--teacher::before,
.flow-fig__item--teacher::after {
  background: var(--color-skyblue);
}
.flow-fig__item > span {
  display: block;
}
.flow-fig__label {
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1.6;
}

.trouble {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .trouble {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.trouble__person {
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .trouble__person {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
}
.trouble__person__image {
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  width: 140px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .trouble__person__image {
    width: 90px;
  }
}
.trouble__person__image--government {
  background: var(--color-bg-green);
}
.trouble__person__image--teacher {
  background: var(--color-bg-blue);
}
.trouble__person__image img {
  width: 61.42%;
}
.trouble__main {
  width: 100%;
}

/* ------------------------------
私たちの想い
-------------------------------*/
.philosophy-lead {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: start;
  padding: 18px 0 40px;
}
@media screen and (max-width: 767px) {
  .philosophy-lead {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 0;
  }
}
.philosophy-lead__main {
  padding-top: 90px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .philosophy-lead__main {
    padding-top: 0;
  }
}
.philosophy-lead__vertical {
  justify-self: end;
  flex-shrink: 0;
  min-width: 0;
  width: 140px;
}
@media screen and (max-width: 767px) {
  .philosophy-lead__vertical {
    width: 100%;
  }
}
.philosophy-lead__title {
  display: block;
  margin: 0;
  line-height: 1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media screen and (max-width: 767px) {
  .philosophy-lead__title {
    writing-mode: horizontal-tb;
  }
}
.philosophy-lead__title-text,
.philosophy-lead__title-accent {
  display: block;
  font-weight: 800;
}
.philosophy-lead__title-text {
  color: #444444;
  font-size: 3rem;
  line-height: 1.4;
  letter-spacing: 0.17em;
}
@media screen and (max-width: 1024px) {
  .philosophy-lead__title-text {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .philosophy-lead__title-text {
    font-size: 1.9rem;
    line-height: 1.65;
    letter-spacing: 0;
  }
}
.philosophy-lead__title-accent {
  color: var(--color-sigfy-orange);
  font-size: 5.5rem;
  line-height: 1;
  letter-spacing: 0.2em;
  transform: translateX(-20px);
}
@media screen and (max-width: 1024px) {
  .philosophy-lead__title-accent {
    font-size: 4.6rem;
    transform: translate(0);
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .philosophy-lead__title-accent {
    font-size: 3.2rem;
    line-height: 1.35;
    letter-spacing: 0;
    margin-top: 8px;
  }
}

.philosophy-main {
  margin: 60px 0;
  padding: 0 40px;
  font-size: 1.8rem;
  line-height: 2.3;
}
@media screen and (max-width: 767px) {
  .philosophy-main {
    margin: 40px 0;
    padding: 0 12px;
    font-size: 1.6rem;
    line-height: 2;
  }
}

.philosophy-image {
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
@media screen and (max-width: 767px) {
  .philosophy-image {
    padding: 30px;
    border-radius: 30px;
  }
}

.company {
  max-width: 820px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 767px) {
  .company {
    margin: 0 auto 40px;
  }
}
.company__logo {
  margin: 0 auto;
  width: 140px;
  margin-bottom: 10px;
}
.company__logo img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .company__logo {
    width: 110px;
    margin-bottom: 0px;
  }
}
.company__list {
  margin-top: 15px;
}
.company__row {
  display: grid;
  grid-template-columns: 180px auto;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #aaaaaa;
  padding: 20px 16px 9px;
}
@media screen and (max-width: 767px) {
  .company__row {
    display: block;
    padding: 20px 0;
  }
}
.company__label {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .company__label {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
}
.company__officer {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0 10px;
}
.company__officer:not(:last-child) {
  margin-bottom: 4px;
}

/* ------------------------------
よくあるご質問
-------------------------------*/
.faq-tab-button {
  background: var(--color-bg-orange);
  border: none;
  padding: 0;
  box-shadow: none;
  padding: 40px 0;
  transition: var(--hover-transition);
  position: relative;
}
@media screen and (max-width: 767px) {
  .faq-tab-button {
    padding: 15px 0 20px;
  }
}
.faq-tab-button::after {
  content: "";
  display: block;
  width: 40px;
  aspect-ratio: 1/1;
  background: url(../img/faq/icon_tab_current.svg) no-repeat center bottom/auto;
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 0;
  transition: var(--hover-transition);
  clip-path: polygon(
    0% calc(100% - 14px),
    100% calc(100% - 14px),
    100% 100%,
    0% 100%
  );
}
.faq-tab-button:first-child {
  border-radius: 20px 0 0 0;
}
.faq-tab-button:last-child {
  border-radius: 0 20px 0 0;
}
.faq-tab-button[aria-selected="true"] {
  background: var(--color-sigfy-orange);
  color: var(--color-white);
  pointer-events: none;
}
.faq-tab-button[aria-selected="true"] .faq-tab-button__icon {
  background: var(--color-white);
}
.faq-tab-button[aria-selected="true"]::after {
  opacity: 1;
}
@media (pointer: coarse) {
  .faq-tab-button,
  .faq-tab-button:hover,
  .faq-tab-button:focus,
  .faq-tab-button:active {
    color: inherit;
  }
  .faq-tab-button[aria-selected="true"],
  .faq-tab-button[aria-selected="true"]:hover,
  .faq-tab-button[aria-selected="true"]:focus,
  .faq-tab-button[aria-selected="true"]:active {
    color: var(--color-white);
  }
}
@media (hover: hover) and (pointer: fine) {
  .faq-tab-button:hover {
    color: var(--color-text-orange);
  }
  .faq-tab-button:hover .faq-tab-button__icon {
    background: var(--color-white);
  }
}
.faq-tab-button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  transition: var(--hover-transition);
}
@media screen and (max-width: 767px) {
  .faq-tab-button__icon {
    width: 50px;
  }
}
.faq-tab-button__icon img {
  display: block;
  width: 50%;
}

.faq-wrap {
  border: 2px solid var(--color-sigfy-orange);
  padding: 20px 40px 80px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0 0 20px 20px;
}
@media screen and (max-width: 767px) {
  .faq-wrap {
    padding: 10px 15px;
  }
}

.faq {
  background: var(--color-bg-yellow);
  border-radius: 10px;
  padding: 4px 0;
}
.faq:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .faq:not(:last-child) {
    margin-bottom: 12px;
  }
}
.faq__question,
.faq__answer__inner {
  position: relative;
}
.faq__question::before,
.faq__answer__inner::before {
  width: 3rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  font-family: var(--ff-en);
  content: "";
  display: block;
  position: absolute;
  left: 19px;
}
@media screen and (max-width: 767px) {
  .faq__question::before,
  .faq__answer__inner::before {
    left: 12px;
  }
}
.faq__question {
  width: 100%;
  min-height: 30px;
  background: none;
  display: block;
  padding: 16px 60px 16px 65px;
  box-shadow: none;
  border: none;
  text-align: left;
  transition: var(--hover-transition);
}
@media screen and (max-width: 767px) {
  .faq__question {
    padding: 10px 45px 10px 52px;
  }
}
.faq__question::before {
  background: url(../img/faq/icon_q.svg) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .faq__question::before {
    top: 8px;
  }
}
.faq__question::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -12.5px;
  width: 25px;
  top: 30px;
  aspect-ratio: 1/1;
  transition: var(--hover-transition);
  background: url(../img/faq/icon_expand_circle_down.svg) no-repeat center/100%
    auto;
}
@media screen and (max-width: 767px) {
  .faq__question::after {
    top: 50%;
    right: 12px;
  }
}
.faq__question[aria-expanded="true"]::after {
  transform: rotate(180deg);
}
.faq__question:active,
.faq__question:focus {
  color: inherit;
}
@media (hover: hover) and (pointer: fine) {
  .faq__question:hover {
    color: var(--color-text-orange);
  }
  .faq__question:hover::after {
    scale: 1.1;
  }
}
.faq__answer__inner {
  padding: 0 60px 16px 65px;
  min-height: 30px;
  position: relative;
  top: 0;
}
@media screen and (max-width: 767px) {
  .faq__answer__inner {
    padding: 10px 15px 10px 52px;
  }
}
.faq__answer__inner::before {
  background: url(../img/faq/icon_a.svg) no-repeat center/contain;
}
.faq__answer__inner p:not(:last-child),
.faq__answer__inner ol:not(:last-child),
.faq__answer__inner ul:not(:last-child) {
  margin-bottom: 6px;
}
.faq__answer__inner strong {
  font-weight: 700;
}
.faq__answer__inner ol {
  counter-reset: item;
}
.faq__answer__inner ol li {
  counter-increment: item;
  padding-left: 1.4em;
  text-indent: -1.4em;
}
.faq__answer__inner ol li::before {
  content: counter(item) ".";
  padding-right: 0.5em;
}
.faq__answer__inner img {
  max-width: 420px;
  display: block;
  margin: 6px 0;
}
@media screen and (max-width: 767px) {
  .faq__answer__inner img {
    max-width: 100%;
  }
}

/* ------------------------------
お知らせ
-------------------------------*/
.post-date {
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: 2rem;
}

.post-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .post-info {
    gap: 10px;
  }
}

.cat-label {
  text-align: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 4px 10px;
  border-radius: 30px;
  flex-shrink: 0;
  align-self: center;
  height: 20px;
  display: inline-block;
}
@media screen and (min-width: 767px) {
  .cat-label {
    width: 118px;
  }
}
.cat-label--update {
  background-color: var(--color-skyblue);
}
.cat-label--introduction {
  background-color: var(--color-green);
}
.cat-label--news {
  background-color: var(--color-sigfy-orange);
}

.post-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.5;
  margin-top: 18px;
  padding-left: 42px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .post-title {
    margin-top: 12px;
    font-size: 2rem;
    padding-left: 32px;
  }
}
.post-title::before {
  content: "";
  background-color: var(--color-sigfy-orange);
  border-radius: 30px;
  width: 10px;
  height: calc(100% - 6px);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.post-content {
  margin-top: 35px;
}
.post-content strong {
  font-weight: 700;
}
.post-content ol {
  counter-reset: item;
}
.post-content ol li {
  counter-increment: item;
  padding-left: 1.4em;
  text-indent: -1.4em;
}
.post-content ol li::before {
  content: counter(item) ".";
  padding-right: 0.5em;
}
.post-content figure {
  margin: 1.8em 0;
}
.post-content figcaption {
  font-size: 80%;
}

.news-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .news-filter-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}

.news-year-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.news-year-select::-ms-expand {
  display: none;
}
.news-year-select {
  background: var(--color-white) url(../img/common/icon_arrow.svg) no-repeat
    right 10px center/23px auto;
  border: 1px solid #cccccc;
  border-radius: 6px;
  font-size: 1.4rem;
  min-width: 130px;
  height: 34px;
  padding: 0 40px 0 20px;
  align-self: center;
  transition: var(--hover-transition);
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .news-year-select {
    font-size: 1.6rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .news-year-select:hover {
    border-color: var(--color-sigfy-orange);
  }
}
.news-year-select:focus-visible {
  border-color: var(--color-sigfy-orange);
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.news-filter {
  font-weight: 600;
  font-size: 1.4rem;
  height: 34px;
  background-color: var(--color-white);
  border-radius: 20px;
  border: 1px solid #cccccc;
  min-width: 120px;
  transition: var(--hover-transition);
}
.news-filter--long {
  min-width: 152px;
}
.news-filter.active {
  background-color: var(--color-sigfy-orange);
  border: none;
  color: var(--color-white);
  pointer-events: none;
}
@media (pointer: coarse) {
  .news-filter,
  .news-filter:hover,
  .news-filter:focus,
  .news-filter:active {
    color: inherit;
  }
  .news-filter.active,
  .news-filter.active:hover,
  .news-filter.active:focus,
  .news-filter.active:active {
    color: var(--color-white);
  }
}
@media (hover: hover) and (pointer: fine) {
  .news-filter:hover {
    border-color: var(--color-sigfy-orange);
    color: var(--color-text-orange);
  }
}

.news-list {
  margin-top: 40px;
}

.news-item:not(:last-child) {
  margin-bottom: 21px;
}
.news-item--none {
  text-align: center;
  padding-top: 20px;
}
.news-item a {
  display: flex;
  gap: 26px;
  text-decoration: none;
  padding: 9px 0;
  align-items: center;
  border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 767px) {
  .news-item a {
    flex-wrap: wrap;
    gap: 13px 15px;
  }
}
@media (hover: hover) {
  .news-item a:hover .news-item__title {
    color: var(--color-text-orange);
  }
}
.news-item__date {
  flex-shrink: 0;
  width: 8rem;
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: 1.6rem;
}
.news-item__title {
  transition: var(--hover-transition);
}
@media screen and (max-width: 767px) {
  .news-item__title {
    display: block;
    width: 100%;
  }
}

/* ------------------------------
ご利用料金
-------------------------------*/
.pricing-wrap {
  position: relative;
}
.pricing-wrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #cccccc;
  pointer-events: none;
  z-index: 10;
}
.pricing-wrap__inner {
  overflow: auto;
}

.pricing {
  width: 100%;
  table-layout: auto;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .pricing {
    min-width: 510px;
  }
}
.pricing th,
.pricing td {
  vertical-align: middle;
  border-bottom: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
}
.pricing thead th {
  border-top: 1px solid #cccccc;
}
.pricing thead th:first-child,
.pricing .pricing__category,
.pricing tfoot td {
  border-left: 1px solid #cccccc;
}
.pricing .pricing__sticky {
  border-right: none;
}
.pricing thead th:first-child,
.pricing .pricing__category {
  border-right: 1px solid #cccccc;
}
.pricing th {
  color: #364153;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .pricing th {
    font-size: 1.6rem;
  }
}
.pricing thead th {
  background: #ffc08c;
  padding: 18px 29px 19px;
}
@media screen and (max-width: 767px) {
  .pricing thead th {
    padding: 10px;
    min-width: 130px;
  }
}
.pricing tbody th,
.pricing tbody td {
  padding: 18px 29px 19px;
}
@media screen and (max-width: 1024px) {
  .pricing tbody th,
  .pricing tbody td {
    padding: 18px 20px 19px;
  }
}
@media screen and (max-width: 767px) {
  .pricing tbody th,
  .pricing tbody td {
    padding: 10px;
  }
}
.pricing__sticky {
  position: sticky;
  left: 0;
  z-index: 10;
}
.pricing__sticky::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: -1px;
  border-right: 1px solid #cccccc;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .pricing__col-wide-sticky {
    max-width: calc(100vw - 50px - 20px);
    display: block;
    position: sticky;
    left: 10px;
  }
}
.pricing__label {
  text-align: left;
  background: var(--color-white);
  padding: 18px 16px 19px;
  min-width: 100px;
}
@media screen and (max-width: 767px) {
  .pricing__label {
    padding: 10px;
    min-width: 120px;
  }
}
.pricing__label a {
  text-underline-offset: 0.15em;
  text-decoration-thickness: 1px;
  transition: var(--hover-transition);
}
@media (hover: hover) {
  .pricing__label a:hover {
    text-decoration: none;
    color: var(--color-text-orange);
  }
}
.pricing__category {
  background: var(--color-bg-orange);
  text-align: center;
  font-size: 1.2rem;
  white-space: nowrap;
  padding: 4px 8px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .pricing__category {
    font-size: 1.2rem;
    padding: 4px 2px;
  }
  .pricing thead th:first-child,
  .pricing .pricing__category {
    position: relative;
    z-index: 1;
  }
}
.pricing__price {
  display: flex;
  align-items: baseline;
}
.pricing__price--center {
  justify-content: center;
}
.pricing__price--center .pricing__figure {
  flex: none;
}
.pricing__figure {
  color: var(--color-sigfy-orange);
  font-size: 3.2rem;
  font-weight: 600;
  font-family: var(--ff-en);
  flex: 1;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .pricing__figure {
    font-size: 2.2rem;
  }
}
.pricing__unit {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding-left: 0.3em;
  text-align: left;
}
.pricing__sub {
  font-size: 1.2rem;
  font-weight: 800;
  margin-left: 0.3em;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .pricing__unit {
    font-size: 1.2rem;
  }
}
.pricing__note {
  font-size: 1.2rem;
  line-height: 1.8;
  background: var(--color-bg-yellow);
  padding: 10px;
}

/* ------------------------------
お問い合わせ
-------------------------------*/
.form__item:not(:last-child) {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .form__item:not(:last-child) {
    margin-bottom: 40px;
  }
}
.form__label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .form__label {
    gap: 15px;
    margin-bottom: 15px;
  }
}
.form__required {
  display: inline-block;
  background: #e6002d;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--color-white);
}
.form__content .input,
.form__content .textarea {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--color-white);
  border: 1px solid #dddddd;
  border-radius: 1rem;
  font-size: 1.6rem;
  line-height: 1.8;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .form__content .input,
  .form__content .textarea {
    padding: 0.8rem 1.2rem;
    border-radius: 0.8rem;
  }
}
.form__content .input.is-error,
.form__content .textarea.is-error {
  border-color: #e6002d;
}
.form__content .input.is-error:focus-visible,
.form__content .textarea.is-error:focus-visible {
  border-color: var(--color-black);
}
.form__content .input:focus-visible,
.form__content .textarea:focus-visible {
  border-color: var(--color-black);
}
.form__content .input::-moz-placeholder,
.form__content .textarea::-moz-placeholder {
  color: #777777;
}
.form__content .input::placeholder,
.form__content .textarea::placeholder {
  color: #777777;
}
.form__content .input {
  height: 4.9rem;
}
.form__content .textarea {
  height: 17rem;
}
.form__fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}
.form__legend {
  position: absolute;
  width: 1px;
  padding: 0;
  pointer-events: none;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.form__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .form__column {
    gap: 8px;
  }
}
.form__check {
  position: relative;
  transition: var(--hover-transition);
  cursor: pointer;
}
.form__check .checkbox {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form__check .checkbox:checked + .form__check-text::before {
  background: var(--color-sigfy-orange);
}
.form__check .checkbox:checked + .form__check-text::after {
  display: block;
}
.form__check .checkbox:focus-visible + .form__check-text {
  outline: auto;
}
@media (hover: hover) {
  .form__check:hover {
    color: var(--color-text-orange);
  }
}
.form__check-text {
  position: relative;
  display: inline-block;
  padding-left: 3.4rem;
  padding-right: 5px;
  font-size: 1.6rem;
  line-height: 1.8;
}
.form__check-text::before,
.form__check-text::after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 2px;
  transform: translateY(-50%);
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.3rem;
  transition: var(--hover-transition);
}
.form__check-text::before {
  border: 1px solid var(--color-sigfy-orange);
  box-sizing: border-box;
  background: var(--color-white);
}
.form__check-text::after {
  display: none;
  background: url(../img/common/icon_check.svg) no-repeat center center/contain;
}
.form__error {
  display: none;
  margin-top: 8px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  color: #e6002d;
}
@media screen and (max-width: 767px) {
  .form__error {
    font-size: 1.4rem;
  }
}
.form__content:has(.is-error) .form__error {
  display: block;
}
.form__content:has(.is-error) .form__error--empty,
.form__content:has(.is-error) .form__error--invalid {
  display: none;
}
.form__content.is-error-empty .form__error--empty {
  display: block;
}
.form__content.is-error-invalid .form__error--invalid {
  display: block;
}
.form__button {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ------------------------------
クラウドサービス情報セキュリティ方針
-------------------------------*/
.policy-list {
  margin: 0;
  padding: 0;
  counter-reset: policy;
}
.policy-list__item {
  counter-increment: policy;
}
.policy-list__item:not(:last-child) {
  margin-bottom: 18px;
}
.policy-list__item dt,
.policy-list__item dd {
  padding-left: 2.5em;
}
.policy-list__item dt {
  position: relative;
}
.policy-list__item dt::before {
  content: counter(policy) ". ";
  position: absolute;
  left: 0;
  width: 2em;
  text-align: right;
}
.policy-list__date {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .policy-list__item:not(:last-child) {
    margin-bottom: 16px;
  }
  .policy-list__item dt,
  .policy-list__item dd {
    padding-left: 2.2em;
  }
  .policy-list__item dt::before {
    width: 1.6em;
  }
  .policy-list__date {
    margin-top: 30px;
  }
}

/* ------------------------------
js系ツール
-------------------------------*/

.js-tablist {
  display: flex;
}
.js-tablist__item {
  flex: 1;
}

[role="tabpanel"].is-hidden {
  display: none;
}

.js-accordion-content {
  display: none;
}

@media screen and (max-width: 1024px) {
  .js-spmenu-accordion-content {
    display: none;
  }
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 6000;
}

.modal__container {
  position: relative;
  background-color: #fff;
  max-width: 848px;
  width: calc(100% - 30px);
  z-index: 6000;
  border-radius: 40px;
  box-sizing: border-box;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .modal__container {
    border-radius: 20px;
  }
}

.modal__inner {
  padding: 80px 40px;
  overflow-y: auto;
  max-height: 88vh;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.modal__inner::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  .modal__inner {
    padding: 60px 25px;
  }
}

.modal__close-btn {
  padding: 0;
  border: none;
  position: absolute;
  top: 30px;
  right: 30px;
  width: 28px;
  height: 28px;
  background: var(--color-sigfy-orange);
  border-radius: 50%;
  display: block;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  transition: var(--hover-transition);
}
@media screen and (max-width: 767px) {
  .modal__close-btn {
    top: 20px;
    right: 20px;
  }
}
@media (hover: hover) {
  .modal__close-btn:hover {
    opacity: var(--hover-opacity);
  }
}
.modal__close-btn::before,
.modal__close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #ffffff;
}
.modal__close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/**************************\
	Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.scrollin {
  opacity: 0;
  transform: translate(0, 40px);
  transition: opacity 1.6s cubic-bezier(0.33, 1, 0.68, 1),
    transform 1.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.scrollin.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ------------------------------
helper
-------------------------------*/
.color-orange {
  color: var(--color-text-orange);
}

.color-sigfy-orange {
  color: var(--color-sigfy-orange);
}

.color-green {
  color: var(--color-green);
}

.color-skyblue {
  color: var(--color-skyblue);
}

.color-gray {
  color: var(--color-gray);
}

.bg-yellow {
  background: var(--color-bg-yellow);
}

.bg-orange {
  background: var(--color-bg-orange);
}

.bg-blue {
  background: var(--color-bg-blue);
}

.bg-green {
  background: var(--color-bg-green);
}

.bg-white {
  background: var(--color-bg-white);
}

.bg-grid-top-white {
  background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0))
      no-repeat left top/100% 100%,
    linear-gradient(to right, rgb(254, 235, 201) 1px, transparent 1px) repeat
      left top 10px/400px 400px,
    linear-gradient(to bottom, rgb(254, 235, 201) 1px, transparent 1px) repeat
      left top 10px/400px 400px,
    linear-gradient(to right, rgb(254, 244, 224) 1px, transparent 1px) repeat
      left top 10px/20px 20px,
    linear-gradient(to bottom, rgb(254, 244, 224) 1px, transparent 1px) repeat
      left top 10px/20px 20px;
}

.bg-grid-left-white {
  background: linear-gradient(to right, #fff 13%, rgba(255, 255, 255, 0))
      no-repeat left top/100% 100%,
    linear-gradient(to right, rgb(254, 235, 201) 1px, transparent 1px) repeat
      left top 10px/400px 400px,
    linear-gradient(to bottom, rgb(254, 235, 201) 1px, transparent 1px) repeat
      left top 10px/400px 400px,
    linear-gradient(to right, rgb(254, 244, 224) 1px, transparent 1px) repeat
      left top 10px/20px 20px,
    linear-gradient(to bottom, rgb(254, 244, 224) 1px, transparent 1px) repeat
      left top 10px/20px 20px;
}

.text-left {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .text-left-sp {
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .text-left-pc {
    text-align: left;
  }
}

.text-center {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .text-center-sp {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .text-center-pc {
    text-align: center;
  }
}

.text-right {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .text-right-sp {
    text-align: right;
  }
}

@media screen and (min-width: 768px) {
  .text-right-pc {
    text-align: right;
  }
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.hidden {
  display: none !important;
}

.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}
.clearfix::after {
  clear: both;
}

.clear {
  clear: both;
}

/* show only  SP/PC
-------------------------------*/
.sp-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: block !important;
  }
}

.sp-only-2 {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-only-2 {
    display: inline-block !important;
  }
}

.pc-only {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

.pc-only-2 {
  display: inline-block !important;
}
@media screen and (max-width: 767px) {
  .pc-only-2 {
    display: none !important;
  }
}

/* font
-------------------------------*/
.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

/* margin
-------------------------------*/
.mt-0 {
  margin-top: 0px !important;
}

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

.mr-0 {
  margin-right: 0px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.mx-0 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.my-0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.mt-5 {
  margin-top: 5px !important;
}

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

.mr-5 {
  margin-right: 5px !important;
}

.ml-5 {
  margin-left: 5px !important;
}

.mx-5 {
  margin-left: 5px !important;
  margin-right: 5px !important;
}

.my-5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

.mt-8 {
  margin-top: 8px !important;
}

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

.mr-8 {
  margin-right: 8px !important;
}

.ml-8 {
  margin-left: 8px !important;
}

.mx-8 {
  margin-left: 8px !important;
  margin-right: 8px !important;
}

.my-8 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

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

.mr-10 {
  margin-right: 10px !important;
}

.ml-10 {
  margin-left: 10px !important;
}

.mx-10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

.my-10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

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

.mr-15 {
  margin-right: 15px !important;
}

.ml-15 {
  margin-left: 15px !important;
}

.mx-15 {
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.my-15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

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

.mr-20 {
  margin-right: 20px !important;
}

.ml-20 {
  margin-left: 20px !important;
}

.mx-20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.my-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

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

.mr-25 {
  margin-right: 25px !important;
}

.ml-25 {
  margin-left: 25px !important;
}

.mx-25 {
  margin-left: 25px !important;
  margin-right: 25px !important;
}

.my-25 {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

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

.mr-30 {
  margin-right: 30px !important;
}

.ml-30 {
  margin-left: 30px !important;
}

.mx-30 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}

.my-30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.mt-35 {
  margin-top: 35px !important;
}

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

.mr-35 {
  margin-right: 35px !important;
}

.ml-35 {
  margin-left: 35px !important;
}

.mx-35 {
  margin-left: 35px !important;
  margin-right: 35px !important;
}

.my-35 {
  margin-top: 35px !important;
  margin-bottom: 35px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

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

.mr-40 {
  margin-right: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.mx-40 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

.my-40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.mt-45 {
  margin-top: 45px !important;
}

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

.mr-45 {
  margin-right: 45px !important;
}

.ml-45 {
  margin-left: 45px !important;
}

.mx-45 {
  margin-left: 45px !important;
  margin-right: 45px !important;
}

.my-45 {
  margin-top: 45px !important;
  margin-bottom: 45px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

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

.mr-50 {
  margin-right: 50px !important;
}

.ml-50 {
  margin-left: 50px !important;
}

.mx-50 {
  margin-left: 50px !important;
  margin-right: 50px !important;
}

.my-50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.mt-55 {
  margin-top: 55px !important;
}

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

.mr-55 {
  margin-right: 55px !important;
}

.ml-55 {
  margin-left: 55px !important;
}

.mx-55 {
  margin-left: 55px !important;
  margin-right: 55px !important;
}

.my-55 {
  margin-top: 55px !important;
  margin-bottom: 55px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

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

.mr-60 {
  margin-right: 60px !important;
}

.ml-60 {
  margin-left: 60px !important;
}

.mx-60 {
  margin-left: 60px !important;
  margin-right: 60px !important;
}

.my-60 {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

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

.mr-70 {
  margin-right: 70px !important;
}

.ml-70 {
  margin-left: 70px !important;
}

.mx-70 {
  margin-left: 70px !important;
  margin-right: 70px !important;
}

.my-70 {
  margin-top: 70px !important;
  margin-bottom: 70px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

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

.mr-80 {
  margin-right: 80px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.mx-80 {
  margin-left: 80px !important;
  margin-right: 80px !important;
}

.my-80 {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}

.mt-auto {
  margin-top: auto !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

@media screen and (min-width: 768px) {
  .mt-0-pc {
    margin-top: 0px !important;
  }
  .mb-0-pc {
    margin-bottom: 0px !important;
  }
  .mr-0-pc {
    margin-right: 0px !important;
  }
  .ml-0-pc {
    margin-left: 0px !important;
  }
  .mx-0-pc {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .my-0-pc {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
}
@media screen and (min-width: 768px) {
  .mt-5-pc {
    margin-top: 5px !important;
  }
  .mb-5-pc {
    margin-bottom: 5px !important;
  }
  .mr-5-pc {
    margin-right: 5px !important;
  }
  .ml-5-pc {
    margin-left: 5px !important;
  }
  .mx-5-pc {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .my-5-pc {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
}
@media screen and (min-width: 768px) {
  .mt-8-pc {
    margin-top: 8px !important;
  }
  .mb-8-pc {
    margin-bottom: 8px !important;
  }
  .mr-8-pc {
    margin-right: 8px !important;
  }
  .ml-8-pc {
    margin-left: 8px !important;
  }
  .mx-8-pc {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .my-8-pc {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
}
@media screen and (min-width: 768px) {
  .mt-10-pc {
    margin-top: 10px !important;
  }
  .mb-10-pc {
    margin-bottom: 10px !important;
  }
  .mr-10-pc {
    margin-right: 10px !important;
  }
  .ml-10-pc {
    margin-left: 10px !important;
  }
  .mx-10-pc {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .my-10-pc {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
}
@media screen and (min-width: 768px) {
  .mt-15-pc {
    margin-top: 15px !important;
  }
  .mb-15-pc {
    margin-bottom: 15px !important;
  }
  .mr-15-pc {
    margin-right: 15px !important;
  }
  .ml-15-pc {
    margin-left: 15px !important;
  }
  .mx-15-pc {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .my-15-pc {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
}
@media screen and (min-width: 768px) {
  .mt-20-pc {
    margin-top: 20px !important;
  }
  .mb-20-pc {
    margin-bottom: 20px !important;
  }
  .mr-20-pc {
    margin-right: 20px !important;
  }
  .ml-20-pc {
    margin-left: 20px !important;
  }
  .mx-20-pc {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .my-20-pc {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
}
@media screen and (min-width: 768px) {
  .mt-25-pc {
    margin-top: 25px !important;
  }
  .mb-25-pc {
    margin-bottom: 25px !important;
  }
  .mr-25-pc {
    margin-right: 25px !important;
  }
  .ml-25-pc {
    margin-left: 25px !important;
  }
  .mx-25-pc {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .my-25-pc {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
}
@media screen and (min-width: 768px) {
  .mt-30-pc {
    margin-top: 30px !important;
  }
  .mb-30-pc {
    margin-bottom: 30px !important;
  }
  .mr-30-pc {
    margin-right: 30px !important;
  }
  .ml-30-pc {
    margin-left: 30px !important;
  }
  .mx-30-pc {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .my-30-pc {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
}
@media screen and (min-width: 768px) {
  .mt-35-pc {
    margin-top: 35px !important;
  }
  .mb-35-pc {
    margin-bottom: 35px !important;
  }
  .mr-35-pc {
    margin-right: 35px !important;
  }
  .ml-35-pc {
    margin-left: 35px !important;
  }
  .mx-35-pc {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .my-35-pc {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
}
@media screen and (min-width: 768px) {
  .mt-40-pc {
    margin-top: 40px !important;
  }
  .mb-40-pc {
    margin-bottom: 40px !important;
  }
  .mr-40-pc {
    margin-right: 40px !important;
  }
  .ml-40-pc {
    margin-left: 40px !important;
  }
  .mx-40-pc {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .my-40-pc {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
}
@media screen and (min-width: 768px) {
  .mt-45-pc {
    margin-top: 45px !important;
  }
  .mb-45-pc {
    margin-bottom: 45px !important;
  }
  .mr-45-pc {
    margin-right: 45px !important;
  }
  .ml-45-pc {
    margin-left: 45px !important;
  }
  .mx-45-pc {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .my-45-pc {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
}
@media screen and (min-width: 768px) {
  .mt-50-pc {
    margin-top: 50px !important;
  }
  .mb-50-pc {
    margin-bottom: 50px !important;
  }
  .mr-50-pc {
    margin-right: 50px !important;
  }
  .ml-50-pc {
    margin-left: 50px !important;
  }
  .mx-50-pc {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .my-50-pc {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
}
@media screen and (min-width: 768px) {
  .mt-55-pc {
    margin-top: 55px !important;
  }
  .mb-55-pc {
    margin-bottom: 55px !important;
  }
  .mr-55-pc {
    margin-right: 55px !important;
  }
  .ml-55-pc {
    margin-left: 55px !important;
  }
  .mx-55-pc {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .my-55-pc {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
}
@media screen and (min-width: 768px) {
  .mt-60-pc {
    margin-top: 60px !important;
  }
  .mb-60-pc {
    margin-bottom: 60px !important;
  }
  .mr-60-pc {
    margin-right: 60px !important;
  }
  .ml-60-pc {
    margin-left: 60px !important;
  }
  .mx-60-pc {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .my-60-pc {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
}
@media screen and (min-width: 768px) {
  .mt-70-pc {
    margin-top: 70px !important;
  }
  .mb-70-pc {
    margin-bottom: 70px !important;
  }
  .mr-70-pc {
    margin-right: 70px !important;
  }
  .ml-70-pc {
    margin-left: 70px !important;
  }
  .mx-70-pc {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .my-70-pc {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
}
@media screen and (min-width: 768px) {
  .mt-80-pc {
    margin-top: 80px !important;
  }
  .mb-80-pc {
    margin-bottom: 80px !important;
  }
  .mr-80-pc {
    margin-right: 80px !important;
  }
  .ml-80-pc {
    margin-left: 80px !important;
  }
  .mx-80-pc {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .my-80-pc {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
}
@media screen and (max-width: 1024px) {
  .mt-0-tab {
    margin-top: 0px !important;
  }
  .mb-0-tab {
    margin-bottom: 0px !important;
  }
  .mr-0-tab {
    margin-right: 0px !important;
  }
  .ml-0-tab {
    margin-left: 0px !important;
  }
  .mx-0-tab {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .my-0-tab {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
}
@media screen and (max-width: 1024px) {
  .mt-5-tab {
    margin-top: 5px !important;
  }
  .mb-5-tab {
    margin-bottom: 5px !important;
  }
  .mr-5-tab {
    margin-right: 5px !important;
  }
  .ml-5-tab {
    margin-left: 5px !important;
  }
  .mx-5-tab {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .my-5-tab {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
}
@media screen and (max-width: 1024px) {
  .mt-8-tab {
    margin-top: 8px !important;
  }
  .mb-8-tab {
    margin-bottom: 8px !important;
  }
  .mr-8-tab {
    margin-right: 8px !important;
  }
  .ml-8-tab {
    margin-left: 8px !important;
  }
  .mx-8-tab {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .my-8-tab {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
}
@media screen and (max-width: 1024px) {
  .mt-10-tab {
    margin-top: 10px !important;
  }
  .mb-10-tab {
    margin-bottom: 10px !important;
  }
  .mr-10-tab {
    margin-right: 10px !important;
  }
  .ml-10-tab {
    margin-left: 10px !important;
  }
  .mx-10-tab {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .my-10-tab {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
}
@media screen and (max-width: 1024px) {
  .mt-15-tab {
    margin-top: 15px !important;
  }
  .mb-15-tab {
    margin-bottom: 15px !important;
  }
  .mr-15-tab {
    margin-right: 15px !important;
  }
  .ml-15-tab {
    margin-left: 15px !important;
  }
  .mx-15-tab {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .my-15-tab {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
}
@media screen and (max-width: 1024px) {
  .mt-20-tab {
    margin-top: 20px !important;
  }
  .mb-20-tab {
    margin-bottom: 20px !important;
  }
  .mr-20-tab {
    margin-right: 20px !important;
  }
  .ml-20-tab {
    margin-left: 20px !important;
  }
  .mx-20-tab {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .my-20-tab {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 1024px) {
  .mt-25-tab {
    margin-top: 25px !important;
  }
  .mb-25-tab {
    margin-bottom: 25px !important;
  }
  .mr-25-tab {
    margin-right: 25px !important;
  }
  .ml-25-tab {
    margin-left: 25px !important;
  }
  .mx-25-tab {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .my-25-tab {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
}
@media screen and (max-width: 1024px) {
  .mt-30-tab {
    margin-top: 30px !important;
  }
  .mb-30-tab {
    margin-bottom: 30px !important;
  }
  .mr-30-tab {
    margin-right: 30px !important;
  }
  .ml-30-tab {
    margin-left: 30px !important;
  }
  .mx-30-tab {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .my-30-tab {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
}
@media screen and (max-width: 1024px) {
  .mt-35-tab {
    margin-top: 35px !important;
  }
  .mb-35-tab {
    margin-bottom: 35px !important;
  }
  .mr-35-tab {
    margin-right: 35px !important;
  }
  .ml-35-tab {
    margin-left: 35px !important;
  }
  .mx-35-tab {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .my-35-tab {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
}
@media screen and (max-width: 1024px) {
  .mt-40-tab {
    margin-top: 40px !important;
  }
  .mb-40-tab {
    margin-bottom: 40px !important;
  }
  .mr-40-tab {
    margin-right: 40px !important;
  }
  .ml-40-tab {
    margin-left: 40px !important;
  }
  .mx-40-tab {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .my-40-tab {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 1024px) {
  .mt-45-tab {
    margin-top: 45px !important;
  }
  .mb-45-tab {
    margin-bottom: 45px !important;
  }
  .mr-45-tab {
    margin-right: 45px !important;
  }
  .ml-45-tab {
    margin-left: 45px !important;
  }
  .mx-45-tab {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .my-45-tab {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
}
@media screen and (max-width: 1024px) {
  .mt-50-tab {
    margin-top: 50px !important;
  }
  .mb-50-tab {
    margin-bottom: 50px !important;
  }
  .mr-50-tab {
    margin-right: 50px !important;
  }
  .ml-50-tab {
    margin-left: 50px !important;
  }
  .mx-50-tab {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .my-50-tab {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
}
@media screen and (max-width: 1024px) {
  .mt-55-tab {
    margin-top: 55px !important;
  }
  .mb-55-tab {
    margin-bottom: 55px !important;
  }
  .mr-55-tab {
    margin-right: 55px !important;
  }
  .ml-55-tab {
    margin-left: 55px !important;
  }
  .mx-55-tab {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .my-55-tab {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
}
@media screen and (max-width: 1024px) {
  .mt-60-tab {
    margin-top: 60px !important;
  }
  .mb-60-tab {
    margin-bottom: 60px !important;
  }
  .mr-60-tab {
    margin-right: 60px !important;
  }
  .ml-60-tab {
    margin-left: 60px !important;
  }
  .mx-60-tab {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .my-60-tab {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
}
@media screen and (max-width: 1024px) {
  .mt-70-tab {
    margin-top: 70px !important;
  }
  .mb-70-tab {
    margin-bottom: 70px !important;
  }
  .mr-70-tab {
    margin-right: 70px !important;
  }
  .ml-70-tab {
    margin-left: 70px !important;
  }
  .mx-70-tab {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .my-70-tab {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
}
@media screen and (max-width: 1024px) {
  .mt-80-tab {
    margin-top: 80px !important;
  }
  .mb-80-tab {
    margin-bottom: 80px !important;
  }
  .mr-80-tab {
    margin-right: 80px !important;
  }
  .ml-80-tab {
    margin-left: 80px !important;
  }
  .mx-80-tab {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .my-80-tab {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
}
@media screen and (max-width: 767px) {
  .mt-0-sp {
    margin-top: 0px !important;
  }
  .mb-0-sp {
    margin-bottom: 0px !important;
  }
  .mr-0-sp {
    margin-right: 0px !important;
  }
  .ml-0-sp {
    margin-left: 0px !important;
  }
  .mx-0-sp {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .my-0-sp {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
}
@media screen and (max-width: 767px) {
  .mt-5-sp {
    margin-top: 5px !important;
  }
  .mb-5-sp {
    margin-bottom: 5px !important;
  }
  .mr-5-sp {
    margin-right: 5px !important;
  }
  .ml-5-sp {
    margin-left: 5px !important;
  }
  .mx-5-sp {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .my-5-sp {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
}
@media screen and (max-width: 767px) {
  .mt-8-sp {
    margin-top: 8px !important;
  }
  .mb-8-sp {
    margin-bottom: 8px !important;
  }
  .mr-8-sp {
    margin-right: 8px !important;
  }
  .ml-8-sp {
    margin-left: 8px !important;
  }
  .mx-8-sp {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
  .my-8-sp {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }
}
@media screen and (max-width: 767px) {
  .mt-10-sp {
    margin-top: 10px !important;
  }
  .mb-10-sp {
    margin-bottom: 10px !important;
  }
  .mr-10-sp {
    margin-right: 10px !important;
  }
  .ml-10-sp {
    margin-left: 10px !important;
  }
  .mx-10-sp {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .my-10-sp {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
}
@media screen and (max-width: 767px) {
  .mt-15-sp {
    margin-top: 15px !important;
  }
  .mb-15-sp {
    margin-bottom: 15px !important;
  }
  .mr-15-sp {
    margin-right: 15px !important;
  }
  .ml-15-sp {
    margin-left: 15px !important;
  }
  .mx-15-sp {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .my-15-sp {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
}
@media screen and (max-width: 767px) {
  .mt-20-sp {
    margin-top: 20px !important;
  }
  .mb-20-sp {
    margin-bottom: 20px !important;
  }
  .mr-20-sp {
    margin-right: 20px !important;
  }
  .ml-20-sp {
    margin-left: 20px !important;
  }
  .mx-20-sp {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .my-20-sp {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 767px) {
  .mt-25-sp {
    margin-top: 25px !important;
  }
  .mb-25-sp {
    margin-bottom: 25px !important;
  }
  .mr-25-sp {
    margin-right: 25px !important;
  }
  .ml-25-sp {
    margin-left: 25px !important;
  }
  .mx-25-sp {
    margin-left: 25px !important;
    margin-right: 25px !important;
  }
  .my-25-sp {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }
}
@media screen and (max-width: 767px) {
  .mt-30-sp {
    margin-top: 30px !important;
  }
  .mb-30-sp {
    margin-bottom: 30px !important;
  }
  .mr-30-sp {
    margin-right: 30px !important;
  }
  .ml-30-sp {
    margin-left: 30px !important;
  }
  .mx-30-sp {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .my-30-sp {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
}
@media screen and (max-width: 767px) {
  .mt-35-sp {
    margin-top: 35px !important;
  }
  .mb-35-sp {
    margin-bottom: 35px !important;
  }
  .mr-35-sp {
    margin-right: 35px !important;
  }
  .ml-35-sp {
    margin-left: 35px !important;
  }
  .mx-35-sp {
    margin-left: 35px !important;
    margin-right: 35px !important;
  }
  .my-35-sp {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }
}
@media screen and (max-width: 767px) {
  .mt-40-sp {
    margin-top: 40px !important;
  }
  .mb-40-sp {
    margin-bottom: 40px !important;
  }
  .mr-40-sp {
    margin-right: 40px !important;
  }
  .ml-40-sp {
    margin-left: 40px !important;
  }
  .mx-40-sp {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .my-40-sp {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
}
@media screen and (max-width: 767px) {
  .mt-45-sp {
    margin-top: 45px !important;
  }
  .mb-45-sp {
    margin-bottom: 45px !important;
  }
  .mr-45-sp {
    margin-right: 45px !important;
  }
  .ml-45-sp {
    margin-left: 45px !important;
  }
  .mx-45-sp {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .my-45-sp {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }
}
@media screen and (max-width: 767px) {
  .mt-50-sp {
    margin-top: 50px !important;
  }
  .mb-50-sp {
    margin-bottom: 50px !important;
  }
  .mr-50-sp {
    margin-right: 50px !important;
  }
  .ml-50-sp {
    margin-left: 50px !important;
  }
  .mx-50-sp {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .my-50-sp {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
}
@media screen and (max-width: 767px) {
  .mt-55-sp {
    margin-top: 55px !important;
  }
  .mb-55-sp {
    margin-bottom: 55px !important;
  }
  .mr-55-sp {
    margin-right: 55px !important;
  }
  .ml-55-sp {
    margin-left: 55px !important;
  }
  .mx-55-sp {
    margin-left: 55px !important;
    margin-right: 55px !important;
  }
  .my-55-sp {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }
}
@media screen and (max-width: 767px) {
  .mt-60-sp {
    margin-top: 60px !important;
  }
  .mb-60-sp {
    margin-bottom: 60px !important;
  }
  .mr-60-sp {
    margin-right: 60px !important;
  }
  .ml-60-sp {
    margin-left: 60px !important;
  }
  .mx-60-sp {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .my-60-sp {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
}
@media screen and (max-width: 767px) {
  .mt-70-sp {
    margin-top: 70px !important;
  }
  .mb-70-sp {
    margin-bottom: 70px !important;
  }
  .mr-70-sp {
    margin-right: 70px !important;
  }
  .ml-70-sp {
    margin-left: 70px !important;
  }
  .mx-70-sp {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .my-70-sp {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
}
@media screen and (max-width: 767px) {
  .mt-80-sp {
    margin-top: 80px !important;
  }
  .mb-80-sp {
    margin-bottom: 80px !important;
  }
  .mr-80-sp {
    margin-right: 80px !important;
  }
  .ml-80-sp {
    margin-left: 80px !important;
  }
  .mx-80-sp {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .my-80-sp {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
}
@media screen and (max-width: 767px) {
  .mt-auto-sp {
    margin-top: auto !important;
  }
  .mb-auto-sp {
    margin-bottom: auto !important;
  }
  .mr-auto-sp {
    margin-right: auto !important;
  }
  .ml-auto-sp {
    margin-left: auto !important;
  }
  .mx-auto-sp {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .my-auto-sp {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }
}
/* padding
-------------------------------*/
.p-0 {
  padding: 0px !important;
}

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

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

.pr-0 {
  padding-right: 0px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.px-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.py-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.p-5 {
  padding: 5px !important;
}

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

.pb-5 {
  padding-bottom: 5px !important;
}

.pr-5 {
  padding-right: 5px !important;
}

.pl-5 {
  padding-left: 5px !important;
}

.px-5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.py-5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.p-8 {
  padding: 8px !important;
}

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

.pb-8 {
  padding-bottom: 8px !important;
}

.pr-8 {
  padding-right: 8px !important;
}

.pl-8 {
  padding-left: 8px !important;
}

.px-8 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.py-8 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.p-10 {
  padding: 10px !important;
}

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

.pb-10 {
  padding-bottom: 10px !important;
}

.pr-10 {
  padding-right: 10px !important;
}

.pl-10 {
  padding-left: 10px !important;
}

.px-10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.py-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.p-15 {
  padding: 15px !important;
}

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

.pb-15 {
  padding-bottom: 15px !important;
}

.pr-15 {
  padding-right: 15px !important;
}

.pl-15 {
  padding-left: 15px !important;
}

.px-15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.py-15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.p-20 {
  padding: 20px !important;
}

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

.pb-20 {
  padding-bottom: 20px !important;
}

.pr-20 {
  padding-right: 20px !important;
}

.pl-20 {
  padding-left: 20px !important;
}

.px-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.py-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.p-25 {
  padding: 25px !important;
}

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

.pb-25 {
  padding-bottom: 25px !important;
}

.pr-25 {
  padding-right: 25px !important;
}

.pl-25 {
  padding-left: 25px !important;
}

.px-25 {
  padding-left: 25px !important;
  padding-right: 25px !important;
}

.py-25 {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

.p-30 {
  padding: 30px !important;
}

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

.pb-30 {
  padding-bottom: 30px !important;
}

.pr-30 {
  padding-right: 30px !important;
}

.pl-30 {
  padding-left: 30px !important;
}

.px-30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.py-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.p-35 {
  padding: 35px !important;
}

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

.pb-35 {
  padding-bottom: 35px !important;
}

.pr-35 {
  padding-right: 35px !important;
}

.pl-35 {
  padding-left: 35px !important;
}

.px-35 {
  padding-left: 35px !important;
  padding-right: 35px !important;
}

.py-35 {
  padding-top: 35px !important;
  padding-bottom: 35px !important;
}

.p-40 {
  padding: 40px !important;
}

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

.pb-40 {
  padding-bottom: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.px-40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.py-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.p-45 {
  padding: 45px !important;
}

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

.pb-45 {
  padding-bottom: 45px !important;
}

.pr-45 {
  padding-right: 45px !important;
}

.pl-45 {
  padding-left: 45px !important;
}

.px-45 {
  padding-left: 45px !important;
  padding-right: 45px !important;
}

.py-45 {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}

.p-50 {
  padding: 50px !important;
}

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

.pb-50 {
  padding-bottom: 50px !important;
}

.pr-50 {
  padding-right: 50px !important;
}

.pl-50 {
  padding-left: 50px !important;
}

.px-50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

.py-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.p-55 {
  padding: 55px !important;
}

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

.pb-55 {
  padding-bottom: 55px !important;
}

.pr-55 {
  padding-right: 55px !important;
}

.pl-55 {
  padding-left: 55px !important;
}

.px-55 {
  padding-left: 55px !important;
  padding-right: 55px !important;
}

.py-55 {
  padding-top: 55px !important;
  padding-bottom: 55px !important;
}

.p-60 {
  padding: 60px !important;
}

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

.pb-60 {
  padding-bottom: 60px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.px-60 {
  padding-left: 60px !important;
  padding-right: 60px !important;
}

.py-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.p-70 {
  padding: 70px !important;
}

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

.pb-70 {
  padding-bottom: 70px !important;
}

.pr-70 {
  padding-right: 70px !important;
}

.pl-70 {
  padding-left: 70px !important;
}

.px-70 {
  padding-left: 70px !important;
  padding-right: 70px !important;
}

.py-70 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.p-80 {
  padding: 80px !important;
}

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

.pb-80 {
  padding-bottom: 80px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.px-80 {
  padding-left: 80px !important;
  padding-right: 80px !important;
}

.py-80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

@media screen and (max-width: 767px) {
  .p-0-sp {
    padding: 0px !important;
  }
  .pt-0-sp {
    padding-top: 0px !important;
  }
  .pb-0-sp {
    padding-bottom: 0px !important;
  }
  .pr-0-sp {
    padding-right: 0px !important;
  }
  .pl-0-sp {
    padding-left: 0px !important;
  }
  .px-0-sp {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .py-0-sp {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
}
@media screen and (max-width: 767px) {
  .p-5-sp {
    padding: 5px !important;
  }
  .pt-5-sp {
    padding-top: 5px !important;
  }
  .pb-5-sp {
    padding-bottom: 5px !important;
  }
  .pr-5-sp {
    padding-right: 5px !important;
  }
  .pl-5-sp {
    padding-left: 5px !important;
  }
  .px-5-sp {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .py-5-sp {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
}
@media screen and (max-width: 767px) {
  .p-8-sp {
    padding: 8px !important;
  }
  .pt-8-sp {
    padding-top: 8px !important;
  }
  .pb-8-sp {
    padding-bottom: 8px !important;
  }
  .pr-8-sp {
    padding-right: 8px !important;
  }
  .pl-8-sp {
    padding-left: 8px !important;
  }
  .px-8-sp {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }
  .py-8-sp {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
}
@media screen and (max-width: 767px) {
  .p-10-sp {
    padding: 10px !important;
  }
  .pt-10-sp {
    padding-top: 10px !important;
  }
  .pb-10-sp {
    padding-bottom: 10px !important;
  }
  .pr-10-sp {
    padding-right: 10px !important;
  }
  .pl-10-sp {
    padding-left: 10px !important;
  }
  .px-10-sp {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .py-10-sp {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
}
@media screen and (max-width: 767px) {
  .p-15-sp {
    padding: 15px !important;
  }
  .pt-15-sp {
    padding-top: 15px !important;
  }
  .pb-15-sp {
    padding-bottom: 15px !important;
  }
  .pr-15-sp {
    padding-right: 15px !important;
  }
  .pl-15-sp {
    padding-left: 15px !important;
  }
  .px-15-sp {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .py-15-sp {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
}
@media screen and (max-width: 767px) {
  .p-20-sp {
    padding: 20px !important;
  }
  .pt-20-sp {
    padding-top: 20px !important;
  }
  .pb-20-sp {
    padding-bottom: 20px !important;
  }
  .pr-20-sp {
    padding-right: 20px !important;
  }
  .pl-20-sp {
    padding-left: 20px !important;
  }
  .px-20-sp {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .py-20-sp {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
}
@media screen and (max-width: 767px) {
  .p-25-sp {
    padding: 25px !important;
  }
  .pt-25-sp {
    padding-top: 25px !important;
  }
  .pb-25-sp {
    padding-bottom: 25px !important;
  }
  .pr-25-sp {
    padding-right: 25px !important;
  }
  .pl-25-sp {
    padding-left: 25px !important;
  }
  .px-25-sp {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
  .py-25-sp {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
}
@media screen and (max-width: 767px) {
  .p-30-sp {
    padding: 30px !important;
  }
  .pt-30-sp {
    padding-top: 30px !important;
  }
  .pb-30-sp {
    padding-bottom: 30px !important;
  }
  .pr-30-sp {
    padding-right: 30px !important;
  }
  .pl-30-sp {
    padding-left: 30px !important;
  }
  .px-30-sp {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .py-30-sp {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}
@media screen and (max-width: 767px) {
  .p-35-sp {
    padding: 35px !important;
  }
  .pt-35-sp {
    padding-top: 35px !important;
  }
  .pb-35-sp {
    padding-bottom: 35px !important;
  }
  .pr-35-sp {
    padding-right: 35px !important;
  }
  .pl-35-sp {
    padding-left: 35px !important;
  }
  .px-35-sp {
    padding-left: 35px !important;
    padding-right: 35px !important;
  }
  .py-35-sp {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }
}
@media screen and (max-width: 767px) {
  .p-40-sp {
    padding: 40px !important;
  }
  .pt-40-sp {
    padding-top: 40px !important;
  }
  .pb-40-sp {
    padding-bottom: 40px !important;
  }
  .pr-40-sp {
    padding-right: 40px !important;
  }
  .pl-40-sp {
    padding-left: 40px !important;
  }
  .px-40-sp {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .py-40-sp {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}
@media screen and (max-width: 767px) {
  .p-45-sp {
    padding: 45px !important;
  }
  .pt-45-sp {
    padding-top: 45px !important;
  }
  .pb-45-sp {
    padding-bottom: 45px !important;
  }
  .pr-45-sp {
    padding-right: 45px !important;
  }
  .pl-45-sp {
    padding-left: 45px !important;
  }
  .px-45-sp {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .py-45-sp {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }
}
@media screen and (max-width: 767px) {
  .p-50-sp {
    padding: 50px !important;
  }
  .pt-50-sp {
    padding-top: 50px !important;
  }
  .pb-50-sp {
    padding-bottom: 50px !important;
  }
  .pr-50-sp {
    padding-right: 50px !important;
  }
  .pl-50-sp {
    padding-left: 50px !important;
  }
  .px-50-sp {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .py-50-sp {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
}
@media screen and (max-width: 767px) {
  .p-55-sp {
    padding: 55px !important;
  }
  .pt-55-sp {
    padding-top: 55px !important;
  }
  .pb-55-sp {
    padding-bottom: 55px !important;
  }
  .pr-55-sp {
    padding-right: 55px !important;
  }
  .pl-55-sp {
    padding-left: 55px !important;
  }
  .px-55-sp {
    padding-left: 55px !important;
    padding-right: 55px !important;
  }
  .py-55-sp {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }
}
@media screen and (max-width: 767px) {
  .p-60-sp {
    padding: 60px !important;
  }
  .pt-60-sp {
    padding-top: 60px !important;
  }
  .pb-60-sp {
    padding-bottom: 60px !important;
  }
  .pr-60-sp {
    padding-right: 60px !important;
  }
  .pl-60-sp {
    padding-left: 60px !important;
  }
  .px-60-sp {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .py-60-sp {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}
@media screen and (max-width: 767px) {
  .p-70-sp {
    padding: 70px !important;
  }
  .pt-70-sp {
    padding-top: 70px !important;
  }
  .pb-70-sp {
    padding-bottom: 70px !important;
  }
  .pr-70-sp {
    padding-right: 70px !important;
  }
  .pl-70-sp {
    padding-left: 70px !important;
  }
  .px-70-sp {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .py-70-sp {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
}
@media screen and (max-width: 767px) {
  .p-80-sp {
    padding: 80px !important;
  }
  .pt-80-sp {
    padding-top: 80px !important;
  }
  .pb-80-sp {
    padding-bottom: 80px !important;
  }
  .pr-80-sp {
    padding-right: 80px !important;
  }
  .pl-80-sp {
    padding-left: 80px !important;
  }
  .px-80-sp {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .py-80-sp {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
}
/* gap
-------------------------------*/
.gap-0 {
  gap: 0px;
}

.gap-x-0 {
  -moz-column-gap: 0px;
  column-gap: 0px;
}

.gap-y-0 {
  row-gap: 0px;
}

.gap-5 {
  gap: 5px;
}

.gap-x-5 {
  -moz-column-gap: 5px;
  column-gap: 5px;
}

.gap-y-5 {
  row-gap: 5px;
}

.gap-8 {
  gap: 8px;
}

.gap-x-8 {
  -moz-column-gap: 8px;
  column-gap: 8px;
}

.gap-y-8 {
  row-gap: 8px;
}

.gap-10 {
  gap: 10px;
}

.gap-x-10 {
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.gap-y-10 {
  row-gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-x-15 {
  -moz-column-gap: 15px;
  column-gap: 15px;
}

.gap-y-15 {
  row-gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-x-20 {
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.gap-y-20 {
  row-gap: 20px;
}

.gap-25 {
  gap: 25px;
}

.gap-x-25 {
  -moz-column-gap: 25px;
  column-gap: 25px;
}

.gap-y-25 {
  row-gap: 25px;
}

.gap-30 {
  gap: 30px;
}

.gap-x-30 {
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.gap-y-30 {
  row-gap: 30px;
}

.gap-35 {
  gap: 35px;
}

.gap-x-35 {
  -moz-column-gap: 35px;
  column-gap: 35px;
}

.gap-y-35 {
  row-gap: 35px;
}

.gap-40 {
  gap: 40px;
}

.gap-x-40 {
  -moz-column-gap: 40px;
  column-gap: 40px;
}

.gap-y-40 {
  row-gap: 40px;
}

.gap-45 {
  gap: 45px;
}

.gap-x-45 {
  -moz-column-gap: 45px;
  column-gap: 45px;
}

.gap-y-45 {
  row-gap: 45px;
}

.gap-50 {
  gap: 50px;
}

.gap-x-50 {
  -moz-column-gap: 50px;
  column-gap: 50px;
}

.gap-y-50 {
  row-gap: 50px;
}

.gap-55 {
  gap: 55px;
}

.gap-x-55 {
  -moz-column-gap: 55px;
  column-gap: 55px;
}

.gap-y-55 {
  row-gap: 55px;
}

.gap-60 {
  gap: 60px;
}

.gap-x-60 {
  -moz-column-gap: 60px;
  column-gap: 60px;
}

.gap-y-60 {
  row-gap: 60px;
}

.gap-70 {
  gap: 70px;
}

.gap-x-70 {
  -moz-column-gap: 70px;
  column-gap: 70px;
}

.gap-y-70 {
  row-gap: 70px;
}

.gap-80 {
  gap: 80px;
}

.gap-x-80 {
  -moz-column-gap: 80px;
  column-gap: 80px;
}

.gap-y-80 {
  row-gap: 80px;
}

@media screen and (min-width: 768px) {
  .gap-0-pc {
    gap: 0px;
  }
  .gap-x-0-pc {
    -moz-column-gap: 0px;
    column-gap: 0px;
  }
  .gap-y-0-pc {
    row-gap: 0px;
  }
}
@media screen and (min-width: 768px) {
  .gap-5-pc {
    gap: 5px;
  }
  .gap-x-5-pc {
    -moz-column-gap: 5px;
    column-gap: 5px;
  }
  .gap-y-5-pc {
    row-gap: 5px;
  }
}
@media screen and (min-width: 768px) {
  .gap-8-pc {
    gap: 8px;
  }
  .gap-x-8-pc {
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
  .gap-y-8-pc {
    row-gap: 8px;
  }
}
@media screen and (min-width: 768px) {
  .gap-10-pc {
    gap: 10px;
  }
  .gap-x-10-pc {
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
  .gap-y-10-pc {
    row-gap: 10px;
  }
}
@media screen and (min-width: 768px) {
  .gap-15-pc {
    gap: 15px;
  }
  .gap-x-15-pc {
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
  .gap-y-15-pc {
    row-gap: 15px;
  }
}
@media screen and (min-width: 768px) {
  .gap-20-pc {
    gap: 20px;
  }
  .gap-x-20-pc {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .gap-y-20-pc {
    row-gap: 20px;
  }
}
@media screen and (min-width: 768px) {
  .gap-25-pc {
    gap: 25px;
  }
  .gap-x-25-pc {
    -moz-column-gap: 25px;
    column-gap: 25px;
  }
  .gap-y-25-pc {
    row-gap: 25px;
  }
}
@media screen and (min-width: 768px) {
  .gap-30-pc {
    gap: 30px;
  }
  .gap-x-30-pc {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
  .gap-y-30-pc {
    row-gap: 30px;
  }
}
@media screen and (min-width: 768px) {
  .gap-35-pc {
    gap: 35px;
  }
  .gap-x-35-pc {
    -moz-column-gap: 35px;
    column-gap: 35px;
  }
  .gap-y-35-pc {
    row-gap: 35px;
  }
}
@media screen and (min-width: 768px) {
  .gap-40-pc {
    gap: 40px;
  }
  .gap-x-40-pc {
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
  .gap-y-40-pc {
    row-gap: 40px;
  }
}
@media screen and (min-width: 768px) {
  .gap-45-pc {
    gap: 45px;
  }
  .gap-x-45-pc {
    -moz-column-gap: 45px;
    column-gap: 45px;
  }
  .gap-y-45-pc {
    row-gap: 45px;
  }
}
@media screen and (min-width: 768px) {
  .gap-50-pc {
    gap: 50px;
  }
  .gap-x-50-pc {
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
  .gap-y-50-pc {
    row-gap: 50px;
  }
}
@media screen and (min-width: 768px) {
  .gap-55-pc {
    gap: 55px;
  }
  .gap-x-55-pc {
    -moz-column-gap: 55px;
    column-gap: 55px;
  }
  .gap-y-55-pc {
    row-gap: 55px;
  }
}
@media screen and (min-width: 768px) {
  .gap-60-pc {
    gap: 60px;
  }
  .gap-x-60-pc {
    -moz-column-gap: 60px;
    column-gap: 60px;
  }
  .gap-y-60-pc {
    row-gap: 60px;
  }
}
@media screen and (min-width: 768px) {
  .gap-70-pc {
    gap: 70px;
  }
  .gap-x-70-pc {
    -moz-column-gap: 70px;
    column-gap: 70px;
  }
  .gap-y-70-pc {
    row-gap: 70px;
  }
}
@media screen and (min-width: 768px) {
  .gap-80-pc {
    gap: 80px;
  }
  .gap-x-80-pc {
    -moz-column-gap: 80px;
    column-gap: 80px;
  }
  .gap-y-80-pc {
    row-gap: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .gap-0-tab {
    gap: 0px;
  }
  .gap-x-0-tab {
    -moz-column-gap: 0px;
    column-gap: 0px;
  }
  .gap-y-0-tab {
    row-gap: 0px;
  }
}
@media screen and (max-width: 1024px) {
  .gap-5-tab {
    gap: 5px;
  }
  .gap-x-5-tab {
    -moz-column-gap: 5px;
    column-gap: 5px;
  }
  .gap-y-5-tab {
    row-gap: 5px;
  }
}
@media screen and (max-width: 1024px) {
  .gap-8-tab {
    gap: 8px;
  }
  .gap-x-8-tab {
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
  .gap-y-8-tab {
    row-gap: 8px;
  }
}
@media screen and (max-width: 1024px) {
  .gap-10-tab {
    gap: 10px;
  }
  .gap-x-10-tab {
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
  .gap-y-10-tab {
    row-gap: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .gap-15-tab {
    gap: 15px;
  }
  .gap-x-15-tab {
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
  .gap-y-15-tab {
    row-gap: 15px;
  }
}
@media screen and (max-width: 1024px) {
  .gap-20-tab {
    gap: 20px;
  }
  .gap-x-20-tab {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .gap-y-20-tab {
    row-gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .gap-25-tab {
    gap: 25px;
  }
  .gap-x-25-tab {
    -moz-column-gap: 25px;
    column-gap: 25px;
  }
  .gap-y-25-tab {
    row-gap: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .gap-30-tab {
    gap: 30px;
  }
  .gap-x-30-tab {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
  .gap-y-30-tab {
    row-gap: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .gap-35-tab {
    gap: 35px;
  }
  .gap-x-35-tab {
    -moz-column-gap: 35px;
    column-gap: 35px;
  }
  .gap-y-35-tab {
    row-gap: 35px;
  }
}
@media screen and (max-width: 1024px) {
  .gap-40-tab {
    gap: 40px;
  }
  .gap-x-40-tab {
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
  .gap-y-40-tab {
    row-gap: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .gap-45-tab {
    gap: 45px;
  }
  .gap-x-45-tab {
    -moz-column-gap: 45px;
    column-gap: 45px;
  }
  .gap-y-45-tab {
    row-gap: 45px;
  }
}
@media screen and (max-width: 1024px) {
  .gap-50-tab {
    gap: 50px;
  }
  .gap-x-50-tab {
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
  .gap-y-50-tab {
    row-gap: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .gap-55-tab {
    gap: 55px;
  }
  .gap-x-55-tab {
    -moz-column-gap: 55px;
    column-gap: 55px;
  }
  .gap-y-55-tab {
    row-gap: 55px;
  }
}
@media screen and (max-width: 1024px) {
  .gap-60-tab {
    gap: 60px;
  }
  .gap-x-60-tab {
    -moz-column-gap: 60px;
    column-gap: 60px;
  }
  .gap-y-60-tab {
    row-gap: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .gap-70-tab {
    gap: 70px;
  }
  .gap-x-70-tab {
    -moz-column-gap: 70px;
    column-gap: 70px;
  }
  .gap-y-70-tab {
    row-gap: 70px;
  }
}
@media screen and (max-width: 1024px) {
  .gap-80-tab {
    gap: 80px;
  }
  .gap-x-80-tab {
    -moz-column-gap: 80px;
    column-gap: 80px;
  }
  .gap-y-80-tab {
    row-gap: 80px;
  }
}
@media screen and (max-width: 767px) {
  .gap-0-sp {
    gap: 0px;
  }
  .gap-x-0-sp {
    -moz-column-gap: 0px;
    column-gap: 0px;
  }
  .gap-y-0-sp {
    row-gap: 0px;
  }
}
@media screen and (max-width: 767px) {
  .gap-5-sp {
    gap: 5px;
  }
  .gap-x-5-sp {
    -moz-column-gap: 5px;
    column-gap: 5px;
  }
  .gap-y-5-sp {
    row-gap: 5px;
  }
}
@media screen and (max-width: 767px) {
  .gap-8-sp {
    gap: 8px;
  }
  .gap-x-8-sp {
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
  .gap-y-8-sp {
    row-gap: 8px;
  }
}
@media screen and (max-width: 767px) {
  .gap-10-sp {
    gap: 10px;
  }
  .gap-x-10-sp {
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
  .gap-y-10-sp {
    row-gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .gap-15-sp {
    gap: 15px;
  }
  .gap-x-15-sp {
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
  .gap-y-15-sp {
    row-gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .gap-20-sp {
    gap: 20px;
  }
  .gap-x-20-sp {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  .gap-y-20-sp {
    row-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .gap-25-sp {
    gap: 25px;
  }
  .gap-x-25-sp {
    -moz-column-gap: 25px;
    column-gap: 25px;
  }
  .gap-y-25-sp {
    row-gap: 25px;
  }
}
@media screen and (max-width: 767px) {
  .gap-30-sp {
    gap: 30px;
  }
  .gap-x-30-sp {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
  .gap-y-30-sp {
    row-gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .gap-35-sp {
    gap: 35px;
  }
  .gap-x-35-sp {
    -moz-column-gap: 35px;
    column-gap: 35px;
  }
  .gap-y-35-sp {
    row-gap: 35px;
  }
}
@media screen and (max-width: 767px) {
  .gap-40-sp {
    gap: 40px;
  }
  .gap-x-40-sp {
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
  .gap-y-40-sp {
    row-gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .gap-45-sp {
    gap: 45px;
  }
  .gap-x-45-sp {
    -moz-column-gap: 45px;
    column-gap: 45px;
  }
  .gap-y-45-sp {
    row-gap: 45px;
  }
}
@media screen and (max-width: 767px) {
  .gap-50-sp {
    gap: 50px;
  }
  .gap-x-50-sp {
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
  .gap-y-50-sp {
    row-gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .gap-55-sp {
    gap: 55px;
  }
  .gap-x-55-sp {
    -moz-column-gap: 55px;
    column-gap: 55px;
  }
  .gap-y-55-sp {
    row-gap: 55px;
  }
}
@media screen and (max-width: 767px) {
  .gap-60-sp {
    gap: 60px;
  }
  .gap-x-60-sp {
    -moz-column-gap: 60px;
    column-gap: 60px;
  }
  .gap-y-60-sp {
    row-gap: 60px;
  }
}
@media screen and (max-width: 767px) {
  .gap-70-sp {
    gap: 70px;
  }
  .gap-x-70-sp {
    -moz-column-gap: 70px;
    column-gap: 70px;
  }
  .gap-y-70-sp {
    row-gap: 70px;
  }
}
@media screen and (max-width: 767px) {
  .gap-80-sp {
    gap: 80px;
  }
  .gap-x-80-sp {
    -moz-column-gap: 80px;
    column-gap: 80px;
  }
  .gap-y-80-sp {
    row-gap: 80px;
  }
}
/* grid
-------------------------------*/
.grid-1col > *,
.grid-2col > *,
.grid-3col > *,
.grid-4col > * {
  min-width: 0;
}

.grid-1col {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 1024px) {
  .grid-1col-tab {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-2col-tab {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3col-tab {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4col-tab {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .grid-1col-sp {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-2col-sp {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3col-sp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4col-sp {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========================================
   PC/SP 改行切り替え
   ======================================== */
.br-pc {
  display: inline;
}
.br-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .br-pc {
    display: none;
  }
  .br-sp {
    display: inline;
  }
}
