@charset "UTF-8";
/*===============================
reset
================================*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: justify;
}

html, body {
  overflow: hidden; /* デフォルトのスクロールバーを非表示 */
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  font-size: 100%;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

button {
  padding: 0;
  background: transparent;
  border: none;
  outline: none;
}

nav ul {
  list-style: none;
}

ol,
ul {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  color: #212121;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

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

blockquote,
q {
  quotes: none;
}

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

table, td, th {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea {
  resize: vertical;
}

/*===============================
base
================================*/
html {
  font-weight: 700;
  letter-spacing: 1px;
  color: #212121;
  font-family: "Zen Kaku Gothic New", sans-serif;
  overflow: auto;
  height: 100%;
}

body {
  position: relative;
  z-index: 100;
  font-size: clamp(0.813rem, 0.75rem + 0.27vw, 1rem);
}

.wrap {
  width: calc(100% - 60px);
  max-width: 1200px;
  margin-inline: auto;
}

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

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

.sclNone {
  overflow: hidden;
}

/*===============================
layout
================================*/
/*
header
================================*/
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
}
.site-header .container {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.site-header .container .logo {
  font-size: 25px;
}
@media screen and (min-width: 1024px) {
  .site-header .container .logo {
    font-size: 50px;
  }
}
.site-header .container .hbg {
  position: relative;
  cursor: pointer;
  pointer-events: auto;
  width: 40px;
  height: 30px;
  background: #2B358E;
  border-radius: 5px;
}
@media screen and (min-width: 1024px) {
  .site-header .container .hbg {
    width: 50px;
    height: 45px;
  }
}
.site-header .container .hbg .line {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.site-header .container .hbg .line:first-child {
  top: 9px;
}
@media screen and (min-width: 1024px) {
  .site-header .container .hbg .line:first-child {
    top: 15px;
  }
}
.site-header .container .hbg .line:nth-child(2) {
  top: 14px;
}
@media screen and (min-width: 1024px) {
  .site-header .container .hbg .line:nth-child(2) {
    top: 21.5px;
  }
}
.site-header .container .hbg .line:nth-child(3) {
  top: 19px;
}
@media screen and (min-width: 1024px) {
  .site-header .container .hbg .line:nth-child(3) {
    top: 28.5px;
  }
}
.site-header .container .is-hbg .line:first-child {
  -webkit-transform: translateX(-50%) translateY(5px) rotate(45deg);
          transform: translateX(-50%) translateY(5px) rotate(45deg);
}
@media screen and (min-width: 1024px) {
  .site-header .container .is-hbg .line:first-child {
    -webkit-transform: translateX(-50%) translateY(7px) rotate(45deg);
            transform: translateX(-50%) translateY(7px) rotate(45deg);
  }
}
.site-header .container .is-hbg .line:nth-child(2) {
  opacity: 0;
}
.site-header .container .is-hbg .line:nth-child(3) {
  -webkit-transform: translateX(-50%) translateY(-5px) rotate(-45deg);
          transform: translateX(-50%) translateY(-5px) rotate(-45deg);
}
@media screen and (min-width: 1024px) {
  .site-header .container .is-hbg .line:nth-child(3) {
    -webkit-transform: translateX(-50%) translateY(-7px) rotate(-45deg);
            transform: translateX(-50%) translateY(-7px) rotate(-45deg);
  }
}

/*
main
================================*/
.site-main {
  margin-top: 90px;
}
@media screen and (min-width: 1024px) {
  .site-main {
    margin-top: 105px;
  }
}
.site-main__hero {
  position: relative;
  background-image: url("image/hero-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 1024px) {
  .site-main__hero .column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__hero .column .text {
    width: 50%;
    max-width: 500px;
    margin-inline: auto;
  }
}
.site-main__hero .column .text .btn {
  margin-top: 25px;
}
@media screen and (min-width: 1024px) {
  .site-main__hero .column .text .btn {
    margin-top: 35px;
  }
}
.site-main__hero .column .text .btn a {
  width: 100%;
  max-width: 300px;
  margin-inline: auto;
  display: block;
  background: #fff;
  border-radius: 100vh;
  color: #2B358E;
  text-align: center;
  padding: 15px 0;
}
.site-main__problem {
  position: relative;
  background-image: url("image/problem-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 1024px) {
  .site-main__problem .problem-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.site-main__problem .problem-list .item {
  margin-top: 25px;
  background: #f1f1f1;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  line-height: 1.4em;
  font-size: clamp(0.938rem, 0.833rem + 0.44vw, 1.25rem);
}
@media screen and (min-width: 1024px) {
  .site-main__problem .problem-list .item {
    margin-top: 0;
    width: calc(33.3% - 33.3px);
    margin-right: 50px;
  }
}
.site-main__problem .problem-list .item:first-child {
  margin-top: 0;
}
@media screen and (min-width: 1024px) {
  .site-main__problem .problem-list .item:nth-child(3n) {
    margin-right: 0;
  }
}
.site-main__problem .img {
  margin-top: clamp(1.875rem, 1.458rem + 1.78vw, 3.125rem);
}
.site-main__solution {
  background-image: url("image/solution-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.site-main__solution .title-style1__en, .site-main__solution .title-style1__ja {
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .site-main__solution .solution-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.site-main__solution .solution-list .item {
  margin-top: 25px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .site-main__solution .solution-list .item {
    margin-top: 0;
    width: calc(33.3% - 33.3px);
    margin-right: 50px;
  }
}
.site-main__solution .solution-list .item:first-child {
  margin-top: 0;
}
@media screen and (min-width: 1024px) {
  .site-main__solution .solution-list .item:nth-child(3n) {
    margin-right: 0;
  }
}
.site-main__solution .solution-list .item .contents {
  padding: 15px 30px;
  background: #fff;
  color: #212121;
}
@media screen and (min-width: 1024px) {
  .site-main__solution .solution-list .item .contents {
    padding: 30px;
  }
}
.site-main__solution .solution-list .item .contents .title {
  text-align: center;
  line-height: 1.4em;
  font-size: clamp(0.938rem, 0.833rem + 0.44vw, 1.25rem);
}
.site-main__solution .solution-list .item .contents .desc {
  margin-top: 11px;
  line-height: 1.6em;
}
@media screen and (min-width: 1024px) {
  .site-main__solution .solution-list .item .contents .desc {
    margin-top: 15px;
  }
}
@media screen and (min-width: 1024px) {
  .site-main__reason .reason-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.site-main__reason .reason-list .item {
  margin-top: 25px;
}
@media screen and (min-width: 1024px) {
  .site-main__reason .reason-list .item {
    margin-top: 0;
    width: calc(33.3% - 33.3px);
    margin-right: 50px;
  }
}
.site-main__reason .reason-list .item:first-child {
  margin-top: 0;
}
@media screen and (min-width: 1024px) {
  .site-main__reason .reason-list .item:nth-child(3n) {
    margin-right: 0;
  }
}
.site-main__reason .reason-list .item .thumb {
  border-radius: 10px;
  overflow: hidden;
}
.site-main__reason .reason-list .item .contents {
  margin-top: 15px;
}
.site-main__reason .reason-list .item .contents .title {
  text-align: center;
  line-height: 1.4em;
  font-size: clamp(0.938rem, 0.833rem + 0.44vw, 1.25rem);
}
.site-main__reason .reason-list .item .contents .desc {
  margin-top: 11px;
  line-height: 1.6em;
}
@media screen and (min-width: 1024px) {
  .site-main__reason .reason-list .item .contents .desc {
    margin-top: 15px;
  }
}
.site-main__price {
  background: #f7f7f7;
}
@media screen and (min-width: 1024px) {
  .site-main__price .price-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.site-main__price .price-list .item {
  border-radius: 10px;
  border: 1px solid #212121;
  padding: 30px;
  background: #fff;
  color: #212121;
  margin-top: 25px;
  overflow: hidden;
}
@media screen and (min-width: 1024px) {
  .site-main__price .price-list .item {
    margin-top: 0;
    width: calc(33.3% - 33.3px);
    margin-right: 50px;
  }
}
.site-main__price .price-list .item:first-child {
  margin-top: 0;
}
@media screen and (min-width: 1024px) {
  .site-main__price .price-list .item:nth-child(3n) {
    margin-right: 0;
  }
}
.site-main__price .price-list .item .plan-name {
  -moz-text-align-last: center;
       text-align-last: center;
}
.site-main__price .price-list .item .plan-name__en {
  font-size: clamp(0.938rem, 0.833rem + 0.44vw, 1.25rem);
  font-family: "Inter", serif;
  letter-spacing: 0;
  color: #2B358E;
}
.site-main__price .price-list .item .plan-name__ja {
  margin-top: 5px;
  font-size: clamp(1.25rem, 0.833rem + 1.78vw, 2.5rem);
  line-height: 1.4em;
  font-weight: 900;
}
.site-main__price .price-list .item .price {
  margin-top: 20px;
  text-align: center;
  font-size: clamp(1.25rem, 0.833rem + 1.78vw, 2.5rem);
  font-weight: 900;
  color: #2B358E;
}
@media screen and (min-width: 1024px) {
  .site-main__price .price-list .item .price {
    margin-top: 25px;
  }
}
.site-main__price .price-list .item .overview-list {
  margin-top: 25px;
}
@media screen and (min-width: 1024px) {
  .site-main__price .price-list .item .overview-list {
    margin-top: 40px;
  }
}
.site-main__price .price-list .item .overview-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 1024px) {
  .site-main__price .price-list .item .overview-list__item {
    font-size: 14px;
  }
}
.site-main__price .price-list .item .overview-list__item:not(:last-child) {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dashed #aaa;
}
@media screen and (min-width: 1024px) {
  .site-main__price .price-list .item .overview-list__item:not(:last-child) {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
.site-main__price .price-list .item .overview-list__item dt, .site-main__price .price-list .item .overview-list__item dd {
  line-height: 1.4em;
}
.site-main__price .price-list .item .overview-list__item dt {
  width: 100px;
}
.site-main__price .price-list .item .overview-list__item dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.site-main__faq .faq-list .item {
  background: #f1f1f1;
  margin-top: 15px;
}
.site-main__faq .faq-list .item:first-child {
  margin-top: 0;
}
.site-main__faq .faq-list .item dt, .site-main__faq .faq-list .item dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.6em;
}
.site-main__faq .faq-list .item dt .inner, .site-main__faq .faq-list .item dd .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.site-main__faq .faq-list .item dt .inner .icon, .site-main__faq .faq-list .item dd .inner .icon {
  font-size: clamp(0.938rem, 0.833rem + 0.44vw, 1.25rem);
}
.site-main__faq .faq-list .item dt {
  position: relative;
  background: #f7f7f7;
  cursor: pointer;
  pointer-events: auto;
}
.site-main__faq .faq-list .item dt:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  right: 15px;
  background-image: url("image/icon-add.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top right;
  width: 13px;
  height: 13px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.site-main__faq .faq-list .item dt .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #2B358E;
  color: #fff;
  width: 40px;
}
@media screen and (min-width: 1024px) {
  .site-main__faq .faq-list .item dt .icon {
    width: 60px;
  }
}
.site-main__faq .faq-list .item dt .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 15px 40px 15px 15px;
}
@media screen and (min-width: 1024px) {
  .site-main__faq .faq-list .item dt .text {
    padding: 20px 50px 20px 30px;
  }
}
.site-main__faq .faq-list .item dd {
  display: none;
  border-top: 1px solid #2B358E;
}
.site-main__faq .faq-list .item dd .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2B358E;
  width: 40px;
}
@media screen and (min-width: 1024px) {
  .site-main__faq .faq-list .item dd .icon {
    width: 60px;
  }
}
.site-main__faq .faq-list .item dd .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 15px;
}
@media screen and (min-width: 1024px) {
  .site-main__faq .faq-list .item dd .text {
    padding: 20px 30px;
  }
}
.site-main__faq .faq-list .item .rotate:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.site-main__company {
  background: #f7f7f7;
}
.site-main__company .info-list .item {
  border: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .site-main__company .info-list .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.site-main__company .info-list .item:not(:first-child) {
  border-top: none;
}
.site-main__company .info-list .item dt, .site-main__company .info-list .item dd {
  padding: 10px 15px;
  line-height: 1.4em;
}
@media screen and (min-width: 768px) {
  .site-main__company .info-list .item dt, .site-main__company .info-list .item dd {
    padding: 15px 30px;
  }
}
.site-main__company .info-list .item dt {
  background: #dedede;
}
@media screen and (min-width: 768px) {
  .site-main__company .info-list .item dt {
    width: 200px;
  }
}
.site-main__company .info-list .item dd {
  border-top: 1px solid #ccc;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .site-main__company .info-list .item dd {
    border-top: none;
    border-left: 1px solid #ccc;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.site-main__contact {
  background-image: url("image/solution-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.site-main__contact .title-style1__en, .site-main__contact .title-style1__ja {
  color: #fff;
}
.site-main__contact .desc {
  margin-top: -5px;
  line-height: 1.6em;
  text-align: center;
}
.site-main__contact .btn {
  -moz-text-align-last: center;
       text-align-last: center;
  margin-top: clamp(1.875rem, 1.458rem + 1.78vw, 3.125rem);
}
.site-main__contact .btn a {
  max-width: 350px;
  margin-inline: auto;
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 25px;
}
.site-main__contact .btn a .icon img {
  height: 40px;
}
.site-main__contact .btn a .text {
  margin-top: 20px;
  color: #2B358E;
}

/*
footer
================================*/
.site-footer .logo {
  font-size: 25px;
}
@media screen and (min-width: 1024px) {
  .site-footer .logo {
    font-size: 50px;
  }
}
.site-footer .list {
  margin: clamp(1.875rem, 1.458rem + 1.78vw, 3.125rem) 0;
}
@media screen and (min-width: 768px) {
  .site-footer .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.site-footer .list .item:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .site-footer .list .item:not(:first-child) {
    margin-top: 0;
    margin-left: 30px;
  }
}
.site-footer .cp {
  font-family: "Inter", serif;
  letter-spacing: 0;
  font-size: 12px;
}

/*
bottom-contact-btn
================================*/
.btm-contact-btn {
  position: fixed;
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .btm-contact-btn {
    display: none;
  }
}
.btm-contact-btn a {
  text-align: center;
  display: block;
  padding: 20px 0;
  background: #2B358E;
  color: #fff;
}

/*
drawer
================================*/
.drawer {
  position: fixed;
  z-index: 150;
  top: 75px;
  right: 30px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 1024px) {
  .drawer {
    top: 90px;
  }
}
.drawer .inner {
  background: #fff;
  border-radius: 5px;
  padding: 20px;
  -webkit-box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
          box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
@media screen and (min-width: 1024px) {
  .drawer .inner {
    padding: 30px;
  }
}
.drawer .inner .menu__item:not(:first-child) {
  margin-top: 20px;
}
@media screen and (min-width: 1024px) {
  .drawer .inner .menu__item:not(:first-child) {
    margin-top: 25px;
  }
}
.drawer .inner .btn {
  margin-top: 20px;
}
.drawer .inner .btn:first-child a {
  background: #2B358E;
  color: #fff;
}
.drawer .inner .btn:nth-child(2) {
  margin-top: 15px;
}
.drawer .inner .btn:nth-child(2) a {
  background: #212121;
  border: 2px solid #212121;
  color: #fff;
}
.drawer .inner .btn a {
  padding: 15px;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.drawer .inner .btn a .icon {
  margin-right: 10px;
}
@media screen and (min-width: 1024px) {
  .drawer .inner .btn a .icon {
    margin-right: 15px;
  }
}
.drawer .inner .btn a .icon img {
  height: clamp(0.813rem, 0.75rem + 0.27vw, 1rem);
}
.is-drawer {
  opacity: 1;
  pointer-events: auto;
}

/*===============================
module
================================*/
/*
title-style
================================*/
.title-style1 {
  -moz-text-align-last: center;
       text-align-last: center;
  margin-bottom: clamp(1.875rem, 1.458rem + 1.78vw, 3.125rem);
}
.title-style1__en {
  font-size: clamp(0.938rem, 0.833rem + 0.44vw, 1.25rem);
  color: #2B358E;
  font-family: "Inter", serif;
  letter-spacing: 0;
}
.title-style1__ja {
  margin-top: 10px;
  font-size: clamp(1.25rem, 0.833rem + 1.78vw, 2.5rem);
  line-height: 1.4em;
  font-weight: 900;
}

/*
btn-style
================================*/
/*
page-style
================================*/
.site-main--page {
  margin-top: 85.5px;
}
@media screen and (min-width: 1024px) {
  .site-main--page {
    margin-top: 91.2px;
  }
}

.site-main__pH {
  background-image: url("image/page-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.site-main__pH .title {
  text-align: center;
  color: #fff;
  font-weight: 900;
  font-size: clamp(1.25rem, 0.833rem + 1.78vw, 2.5rem);
}

.site-main__page .block:not(:first-child) {
  margin-top: clamp(1.875rem, 1.458rem + 1.78vw, 3.125rem);
}
.site-main__page .block__title {
  font-size: 15px;
  border-bottom: 2px solid #212121;
  padding-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .site-main__page .block__title {
    font-size: 17px;
  }
}
.site-main__page .block__desc {
  margin-top: 15px;
  line-height: 1.4em;
}
@media screen and (min-width: 1024px) {
  .site-main__page .block__desc {
    margin-top: 20px;
  }
}

/*
tokusho-style
================================*/
/*
news-style
================================*/
/*
space
================================*/
.pad-tb {
  padding: clamp(3.125rem, 2.083rem + 4.44vw, 6.25rem) 0;
}

.pad-t {
  padding-top: clamp(3.125rem, 2.083rem + 4.44vw, 6.25rem);
}

.pad-b {
  padding-bottom: clamp(3.125rem, 2.083rem + 4.44vw, 6.25rem);
}

/*
align
================================*/
.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

/*
font
================================*/
.ja {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

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

/*
font-weight
================================*/
/*
color
================================*/
/*
paragraph
================================*/
/*
animation
================================*/
.anim-blur {
  -webkit-filter: blur(10px);
          filter: blur(10px);
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.anim-blur-visible {
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
}