/* arguments inittial */
/* font style */
/* site style */
/* [ writing-mode ]
-------------------------------------------------*/
/* [ easy breakpoint ]
-------------------------------------------------*/
.inview {
  opacity: 0;
  transition-delay: 0.1s;
  transition:
    transform 1.5s,
    opacity 1.5s;
  position: relative;
}

.inview.on {
  opacity: 1;
}

.inview.fadeInLeft {
  transform: translateX(-60px);
  -o-transform: translateX(-60px);
  -ms-transform: translateX(-60px);
  -moz-transform: translateX(-60px);
  -webkit-transform: translateX(-60px);
}

.inview.fadeInLeft.on {
  transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
}

.inview.fadeInRight {
  transform: translateX(60px);
  -o-transform: translateX(60px);
  -ms-transform: translateX(60px);
  -moz-transform: translateX(60px);
  -webkit-transform: translateX(60px);
}

.inview.fadeInRight.on {
  transform: translateX(0);
  -o-transform: translateX(0);
  -ms-transform: translateX(0);
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
}

.inview.fadeInBottom {
  opacity: 0;
  transform: translateY(30px);
  -o-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -webkit-transform: translateY(30px);
}

.inview.fadeInBottom.on {
  opacity: 1;
  transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
}

.inview.fadeInBottomPx {
  opacity: 0;
  transform: translateY(200px);
  -o-transform: translateY(200px);
  -ms-transform: translateY(200px);
  -moz-transform: translateY(200px);
  -webkit-transform: translateY(200px);
}

.inview.fadeInBottomPx.on {
  opacity: 1;
  transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
}

.inview.fadeInBottomDelay {
  transform: translateY(100%);
  -o-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -webkit-transform: translateY(100%);
  transition-delay: 0.6s;
}

.inview.fadeInBottomDelay.on {
  transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
}

.inview.fadeInTop {
  transform: translateY(-60px);
  -o-transform: translateY(-60px);
  -ms-transform: translateY(-60px);
  -moz-transform: translateY(-60px);
  -webkit-transform: translateY(-60px);
}

.inview.fadeInTop.on {
  transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
}

.inview.fadeInDelay2 {
  transition-delay: 0.2s;
}

.inview.fadeInDelay2.on {
  transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
}

.inview.fadeInDelay3 {
  transition-delay: 0.3s;
}

.inview.fadeInDelay3.on {
  transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
}

@keyframes scrollhintappear {
  0% {
    transform: translateX(40px) translateY(-35%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%,
  100% {
    transform: translateX(-40px) translateY(-35%);
    opacity: 0;
  }
}

.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;
}

.fadein.fadein-left {
  transform: translate(-30px, 0);
}

.fadein.fadein-right {
  transform: translate(30px, 0);
}

.fadein.fadein-up {
  transform: translate(0, -30px);
}

.fadein.fadein-bottom {
  transform: translate(0, 30px);
}

.fadein.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

@keyframes loop-text {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.delay1 {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.delay2 {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.delay3 {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.delay4 {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.delay5 {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.delay6 {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

.delay7 {
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}

.delay8 {
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}

.delay9 {
  -webkit-transition-delay: 1.8s;
  transition-delay: 1.8s;
}

.delay10 {
  -webkit-transition-delay: 2s;
  transition-delay: 2s;
}

/*-----------------------------------------------------------
clearfix
------------------------------------------------------------*/
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/*-----------------------------------------------------------
reset
------------------------------------------------------------*/
p {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

input,
textarea {
  margin: 0;
  font-size: 100%;
  resize: none;
}

input[type="text"],
input[type="date"],
input[type="email"],
input[type="number"],
input[type="url"] {
  word-break: normal;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}

dl,
dt,
dd,
th,
td {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /*font-size: 100%;*/
  font-weight: normal;
  margin: 0;
  padding: 0;
}

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,
dialog {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

img {
  margin: 0;
  padding: 0;
  vertical-align: middle;
  border: 0;
  max-width: 100%;
  height: auto;
}

table img {
  margin: 0;
  padding: 0;
  vertical-align: middle;
  border: 0;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*:focus {
  outline: none !important;
}

label,
select,
button {
  cursor: pointer;
}

input,
textarea,
select,
button {
  font-family: inherit;
}

/*-----------------------------------------------------------
Link
------------------------------------------------------------*/
a {
  outline: none;
  transition: opacity 0.3s;
  cursor: pointer;
}

@media only screen and (min-width: 1025px) {
  a:hover {
    opacity: 0.5;
  }
}

a:link,
a:visited,
a:active {
  color: #333333;
  text-decoration: none;
}

/*-----------------------------------------------------------
FONT family
------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/*-----------------------------------------------------------
Body
-------------------------------------------------------------*/
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html.is-ipad * {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -o-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6em;
  word-break: break-word;
  color: #333333;
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

#wrap {
  display: block;
  padding-top: 115px;
}

@media (max-width: 767px) {
  #wrap {
    padding-top: 62px;
  }
}

/*-----------------------------------------------------------
COMMON
-------------------------------------------------------------*/
.inner {
  max-width: 1030px;
  padding: 0 15px;
  margin: 0 auto;
}

.wcm {
  max-width: 1236px;
  margin: 0 auto;
  padding: 0 18px;
}

.wcm-sm {
  max-width: 1136px;
  margin: 0 auto;
  padding: 0 18px;
}

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

@media (max-width: 767px) {
  .pc,
  .PC {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .wrapper > div {
    width: 100%;
  }
}

.c-img {
  display: block;
  position: relative;
}

.c-img img {
  display: block;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.c-img--contain img {
  object-fit: contain;
}

.c-img--top img {
  object-position: top;
}

.c-fw {
  width: 100%;
}

[rel~="js-lazy"] {
  opacity: 0;
}

[rel~="js-lazy"]:not(.initial) {
  transition: opacity 0.15s;
}

[rel~="js-lazy"].initial,
[rel~="js-lazy"].loaded,
[rel~="js-lazy"].error {
  opacity: 1;
}

.c-lazybg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.c-lazybg--top {
  background-position: center top;
}

.c-lazybg--contain {
  background-size: contain;
}

.news-posts {
  height: 67px;
  border-radius: 33px;
  border: 1px solid #00469d;
  margin: 64px auto 118px;
  position: relative;
  transition: all 0.3s ease-in-out;
  display: table;
}

.news-posts::after {
  content: "";
  position: absolute;
  bottom: -68px;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 1px;
  height: 30px;
  background: #00469d;
}

@media (max-width: 767px) {
  .news-posts::after {
    bottom: -32px;
    height: 16px;
  }
}

.news-posts span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #00469d;
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  padding: 0 58px;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.15em;
  letter-spacing: 0.04em;
  font-weight: 700;
}

@media (max-width: 767px) {
  .news-posts {
    max-width: calc(100% - 30px);
    height: 49px;
    border-radius: 24px;
    margin: 38px auto 49px;
  }
  .news-posts span {
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 18px;
    padding: 0 32px;
  }
}

.btn-link {
  max-width: 268px;
  width: 100%;
  height: 84px;
  border-radius: 42px;
  background: #00469d;
  border: 1px solid #00469d;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

@media (max-width: 767px) {
  .btn-link {
    max-width: 298px;
    height: 70px;
  }
}

.btn-link a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.btn-link span {
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.0625em;
  letter-spacing: 0em;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  overflow: visible;
}

@media (max-width: 767px) {
  .btn-link span {
    overflow: visible;
  }
}

.btn-link span:after {
  content: "";
  position: absolute;
  top: 47%;
  right: 29px;
  width: 16px;
  height: 5px;
  background: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/alive-theme/assets/img/common/icon/ico-arrow-white.svg") no-repeat;
  background-size: contain;
}

@media (max-width: 767px) {
  .btn-link span:after {
    right: 19px;
  }
}

@media only screen and (min-width: 1025px) {
  .btn-link:hover {
    background: #fff;
  }
  .btn-link:hover a {
    opacity: 1;
  }
  .btn-link:hover span {
    color: #00469d;
  }
  .btn-link:hover span::after {
    background: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/alive-theme/assets/img/common/icon/ico-arrow-blue.svg") no-repeat;
    background-size: contain;
  }
}

.btn-link--white {
  background: #fff;
  border-color: #fff;
  max-width: 380px;
  cursor: pointer;
}

.btn-link--white span {
  color: #00469d;
}

.btn-link--white span::after {
  background: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/alive-theme/assets/img/common/icon/ico-arrow-blue.svg") no-repeat;
  background-size: contain;
}

@media only screen and (min-width: 1025px) {
  .btn-link--white:hover {
    background: #00469d;
    border-color: #00469d;
  }
  .btn-link--white:hover span {
    color: #fff;
  }
  .btn-link--white:hover span::after {
    background: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/alive-theme/assets/img/common/icon/ico-arrow-white.svg") no-repeat;
    background-size: contain;
  }
}

.btn-link--center {
  margin: 0 auto;
}

.btn-thumb {
  max-width: 570px;
  width: 100%;
  height: 161px;
  border-radius: 80px;
  background: #fff;
  border: 1px solid #00469d;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

@media (min-width: 768px) {
  .btn-thumb.col-2 {
    width: calc(50% - 30px);
    margin-bottom: 55px;
    height: auto;
    border-radius: 200px;
    max-width: unset;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .btn-thumb.col-2 {
    width: calc(50% - 16px);
    margin-bottom: 32px;
  }
}

@media (min-width: 768px) {
  .btn-thumb.col-2:nth-child(even) {
    position: relative;
    bottom: -60px;
  }
}

@media (min-width: 768px) and (max-width: 767px) {
  .btn-thumb.col-2:nth-child(even) {
    bottom: 0;
  }
}

@media (min-width: 768px) {
  .btn-thumb.col-2 a {
    padding: 24px 40px 24px 29px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .btn-thumb.col-2 a {
    padding: 16px 24px 16px 22px;
  }
}

@media (min-width: 768px) {
  .btn-thumb.col-2 a::after {
    right: 28px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .btn-thumb.col-2 a::after {
    right: 10px;
  }
}

@media (min-width: 768px) {
  .btn-thumb.col-2 .img {
    position: relative;
    width: 175px;
    height: auto;
  }
  .btn-thumb.col-2 .img:before {
    display: block;
    content: " ";
    width: 100%;
    padding-top: 100%;
  }
  .btn-thumb.col-2 .img > .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .btn-thumb.col-2 .img {
    width: 14.58333vw;
  }
}

@media (min-width: 768px) {
  .btn-thumb.col-2 .txt {
    padding: 0 0 6px 30px;
    width: calc(100% - 175px);
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .btn-thumb.col-2 .txt {
    width: auto;
    flex: 1;
    padding-left: 14px;
  }
}

@media (min-width: 768px) {
  .btn-thumb.col-2 .txt .en {
    font-size: 40px;
    font-size: 4rem;
    line-height: 1.125em;
    letter-spacing: 0.025em;
    font-weight: 700;
    margin-bottom: 8px;
    white-space: nowrap;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .btn-thumb.col-2 .txt .en {
    font-size: 24px;
    margin-bottom: 6px;
  }
}

@media (min-width: 768px) {
  .btn-thumb.col-2 .txt .ja {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.5em;
    letter-spacing: 0.04em;
    font-weight: 700;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .btn-thumb.col-2 .txt .ja {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .btn-thumb.col-2 .txt .ja.sm {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.75em;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .btn-thumb.col-2 .txt .ja.sm {
    font-size: 12px;
    line-height: 1.6;
  }
}

@media (min-width: 768px) and (max-width: 767px) {
  .btn-thumb.col-2 .txt .ja.sm {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.35714em;
    letter-spacing: 0.04em;
    font-weight: 400;
  }
}

@media (min-width: 768px) {
  .btn-thumb.col-3 {
    width: calc(33.33% - 12px);
    margin-bottom: 23px;
    height: 117px;
    cursor: pointer;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .btn-thumb.col-3 {
    width: calc(50% - 16px);
  }
}

@media (min-width: 768px) {
  .btn-thumb.col-3:nth-child(even) {
    bottom: 0;
  }
}

@media only screen and (min-width: 768px) and (min-width: 1025px) {
  .btn-thumb.col-3:hover a::after {
    background: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/alive-theme/assets/img/common/icon/ico-arrow-white.svg") center/100% no-repeat;
  }
}

@media (min-width: 768px) {
  .btn-thumb.col-3 a {
    padding: 8px 40px 10px 19px;
  }
  .btn-thumb.col-3 a::after {
    right: 25px;
    background: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/alive-theme/assets/img/common/icon/ico-arrow-blue.svg") center/100% no-repeat;
    width: 19px;
    height: 6px;
    top: 48%;
  }
  .btn-thumb.col-3 .img {
    width: 80px;
    height: auto;
    position: relative;
  }
  .btn-thumb.col-3 .img:before {
    display: block;
    content: " ";
    width: 100%;
    padding-top: 100%;
  }
  .btn-thumb.col-3 .img > .content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .btn-thumb.col-3 .txt {
    width: calc(100% - 80px);
    padding: 0 0 0px 17px;
  }
  .btn-thumb.col-3 .txt .en {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.09091em;
    margin-bottom: 2px;
  }
  .btn-thumb.col-3 .txt .ja {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 400;
  }
  .btn-thumb.col-3 .txt .ja.sm {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5em;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .btn-thumb.col-3 .txt .ja.sm {
    font-size: 10px;
  }
}

@media (max-width: 767px) {
  .btn-thumb.col-3.largeSp a {
    padding: 9px 20px 8px 8px;
  }
  .btn-thumb.col-3.largeSp a::after {
    right: 20px;
    top: 45%;
  }
  .btn-thumb.col-3.largeSp .txt {
    padding-left: 16px;
  }
  .btn-thumb.col-3.largeSp.charity {
    padding-top: 10px;
    padding-bottom: 8px;
  }
}

@media (max-width: 767px) {
  .btn-thumb {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    height: auto;
  }
}

.btn-thumb.charity .txt {
  padding-bottom: 0px;
}

@media (max-width: 767px) {
  .btn-thumb.charity a {
    padding-top: 21px;
    padding-bottom: 17px;
  }
}

.btn-thumb a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 30px;
  position: relative;
}

.btn-thumb a:after {
  content: "";
  position: absolute;
  top: 49%;
  right: 34px;
  width: 36px;
  height: 5px;
  background: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/alive-theme/assets/img/common/icon/ico-arrow-blue-long.svg") no-repeat;
  background-size: contain;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .btn-thumb a:after {
    background: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/alive-theme/assets/img/common/icon/ico-arrow-blue.svg") no-repeat;
    width: 16px;
    top: 47%;
    right: 16px;
  }
}

@media (max-width: 767px) {
  .btn-thumb a {
    padding: 13px 20px 13px 15px;
  }
}

.btn-thumb span {
  display: block;
}

.btn-thumb .img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.btn-thumb .img img {
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .btn-thumb .img {
    width: 61px;
    height: 61px;
  }
}

.btn-thumb .txt {
  width: calc(100% - 110px);
  padding-left: 26px;
  padding-top: 3px;
}

@media (max-width: 767px) {
  .btn-thumb .txt {
    padding: 0px 0 0px 12px;
    width: calc(100% - 61px);
  }
}

.btn-thumb .en {
  font-family: "Barlow", sans-serif;
  color: #00469d;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.33333em;
  letter-spacing: 0.03em;
  font-weight: bold;
}

@media (max-width: 767px) {
  .btn-thumb .en {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1em;
    margin-bottom: 5px;
    white-space: wrap;
  }
}

.btn-thumb .ja {
  color: #00469d;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875em;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.btn-thumb .ja.sm {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75em;
}

@media only screen and (max-width: 1200px) {
  .btn-thumb .ja.sm {
    font-size: 12px;
    line-height: 1.6;
  }
}

@media (max-width: 767px) {
  .btn-thumb .ja.sm {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.35714em;
    letter-spacing: 0.04em;
    font-weight: 400;
  }
}

@media (max-width: 767px) {
  .btn-thumb .ja {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.125em;
    letter-spacing: 0.04em;
    font-weight: 400;
  }
}

@media only screen and (min-width: 1025px) {
  .btn-thumb:hover {
    background: #00469d;
  }
  .btn-thumb:hover a {
    opacity: 1;
  }
  .btn-thumb:hover a::after {
    background: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/alive-theme/assets/img/common/icon/ico-arrow-white-long.svg") no-repeat;
    background-size: contain;
  }
  .btn-thumb:hover a .img img {
    transform: scale(1.1);
  }
  .btn-thumb:hover a .en {
    color: #fff;
  }
  .btn-thumb:hover a .ja {
    color: #fff;
  }
}

.btn-card {
  max-width: 222px;
  width: 100%;
  height: 511px;
  background: #fff;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.btn-card:nth-child(1) {
  transition-delay: 0.2s;
}

.btn-card:nth-child(2) {
  transition-delay: 0.4s;
}

.btn-card:nth-child(3) {
  transition-delay: 0.6s;
}

.btn-card:nth-child(4) {
  transition-delay: 0.8s;
}

.btn-card:nth-child(5) {
  transition-delay: 1s;
}

.btn-card:nth-child(6) {
  transition-delay: 1.2s;
}

.btn-card:nth-child(7) {
  transition-delay: 1.4s;
}

.btn-card:nth-child(8) {
  transition-delay: 1.6s;
}

.btn-card:nth-child(9) {
  transition-delay: 1.8s;
}

.btn-card:nth-child(10) {
  transition-delay: 2s;
}

.btn-card:nth-child(11) {
  transition-delay: 2.2s;
}

.btn-card:nth-child(12) {
  transition-delay: 2.4s;
}

.btn-card:nth-child(13) {
  transition-delay: 2.6s;
}

.btn-card:nth-child(14) {
  transition-delay: 2.8s;
}

.btn-card:nth-child(15) {
  transition-delay: 3s;
}

.btn-card:nth-child(16) {
  transition-delay: 3.2s;
}

.btn-card:nth-child(17) {
  transition-delay: 3.4s;
}

.btn-card:nth-child(18) {
  transition-delay: 3.6s;
}

.btn-card:nth-child(19) {
  transition-delay: 3.8s;
}

.btn-card:nth-child(20) {
  transition-delay: 4s;
}

.btn-card:nth-child(21) {
  transition-delay: 4.2s;
}

.btn-card:nth-child(22) {
  transition-delay: 4.4s;
}

.btn-card:nth-child(23) {
  transition-delay: 4.6s;
}

.btn-card:nth-child(24) {
  transition-delay: 4.8s;
}

.btn-card:nth-child(25) {
  transition-delay: 5s;
}

.btn-card:nth-child(26) {
  transition-delay: 5.2s;
}

.btn-card:nth-child(27) {
  transition-delay: 5.4s;
}

.btn-card:nth-child(28) {
  transition-delay: 5.6s;
}

.btn-card:nth-child(29) {
  transition-delay: 5.8s;
}

.btn-card:nth-child(30) {
  transition-delay: 6s;
}

.btn-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0%;
  background: #00469d;
  transition: all 0.6s ease-in-out;
}

@media (min-width: 768px) {
  .btn-card {
    border-radius: 140px;
    border: 1px solid #00469d;
    margin: 0 11px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .btn-card {
    height: 460px;
    margin: 0 8px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) and (max-width: 900px) {
  .btn-card {
    margin: 0 4px;
  }
}

@media (max-width: 767px) {
  .btn-card {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    height: auto;
    border: none;
  }
}

.btn-card a {
  width: 100%;
  height: 100%;
  z-index: 2;
  position: relative;
  padding: 18px 15px;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .btn-card a {
    padding: 8px;
  }
}

.btn-card a:after {
  content: "";
  position: absolute;
  bottom: 61px;
  left: 0;
  right: 0;
  width: 29px;
  height: 6px;
  margin: 0 auto;
  background: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/alive-theme/assets/img/common/icon/ico-arrow-blue-long.svg") no-repeat;
  background-size: contain;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .btn-card a:after {
    bottom: 30px;
  }
}

@media (max-width: 767px) {
  .btn-card a:after {
    display: none;
  }
}

@media (max-width: 767px) {
  .btn-card a {
    padding: 0;
  }
}

.btn-card span {
  display: block;
}

.btn-card .img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.btn-card .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .btn-card .img {
    width: 61px;
    height: 61px;
  }
}

.btn-card .ttl {
  color: #00469d;
  text-align: center;
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1.44em;
  letter-spacing: 0em;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  margin: 25px -10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (min-width: 768px) and (max-width: 1300px) {
  .btn-card .ttl {
    font-size: calc(100vw * 25 / 1300);
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .btn-card .ttl {
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.58824em;
    letter-spacing: 0em;
  }
}

@media only screen and (max-width: 900px) {
  .btn-card .ttl {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .btn-card .ttl {
    margin: 0 auto 0 18px;
    white-space: wrap;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.18182em;
    letter-spacing: 0.04em;
    text-align: left;
  }
}

.btn-card .ja {
  color: #00469d;
  margin-top: 20px;
  padding: 0 3px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.86667em;
  letter-spacing: 0.04em;
  font-weight: 400;
  transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .btn-card .ja {
    padding: 0;
    font-size: 14px;
    line-height: 26px;
    max-width: 180px;
    margin: 20px auto 0;
  }
}

@media (max-width: 767px) {
  .btn-card .ja {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.125em;
    letter-spacing: 0.04em;
    font-weight: 400;
    margin-top: 9px;
    padding: 0 0 0 4px;
  }
}

@media only screen and (min-width: 1025px) {
  .btn-card:hover::before {
    height: 100%;
  }
  .btn-card:hover a {
    opacity: 1;
  }
  .btn-card:hover a::after {
    background: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/alive-theme/assets/img/common/icon/ico-arrow-white-long.svg") no-repeat;
    background-size: contain;
  }
  .btn-card:hover a .img img {
    transform: scale(1.1);
  }
  .btn-card:hover a .ja,
  .btn-card:hover a .en,
  .btn-card:hover a .ttl {
    color: #fff;
  }
}

@media (max-width: 767px) {
  .btn-card .ctn {
    border-radius: 55px;
    border: 1px solid #00469d;
    padding: 7px 8px;
    min-height: 110px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn-card .ctn:after {
    content: "";
    position: absolute;
    width: 29px;
    height: 5px;
    transition: all 0.3s ease-in-out;
    background: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/alive-theme/assets/img/common/icon/ico-arrow-blue-long.svg") no-repeat;
    background-size: contain;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
}

.title-heading {
  padding-left: 40px;
  position: relative;
}

@media (max-width: 767px) {
  .title-heading {
    padding-left: 18px;
  }
}

.title-heading.subpage {
  padding-left: 0;
  margin: 52px auto 62px;
}

@media (max-width: 767px) {
  .title-heading.subpage {
    margin: 14px auto 22px;
  }
}

.title-heading.subpage::after {
  content: "";
  position: absolute;
  width: 676px;
  height: 705px;
  background: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/alive-theme/assets/img/components/img_hd.png") center/100% no-repeat;
  top: 0px;
  left: 50%;
  transform: translate(-50%, -52%);
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 767px) {
  .title-heading.subpage::after {
    width: 367px;
    height: 383px;
    left: 51%;
    transform: translate(-50%, -53%);
  }
}

.title-heading.subpage.detail {
  margin: 32px auto 41px;
}

@media (max-width: 767px) {
  .title-heading.subpage.detail {
    margin: 23px auto 15px;
    padding-left: 13px;
  }
}

.title-heading.subpage.detail::after {
  transform: translate(-50%, -49.5%);
}

@media (max-width: 767px) {
  .title-heading.subpage.detail::after {
    transform: translate(-50%, -60.5%);
  }
}

.title-heading.subpage.detail .title-heading__en {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6em;
  letter-spacing: 0.025em;
  font-weight: 700;
}

.title-heading.subpage.detail .title-heading__en::after {
  width: 9px;
  height: 9px;
  left: -24px;
  top: 8px;
}

@media (max-width: 767px) {
  .title-heading.subpage.detail .title-heading__en::after {
    width: 7px;
    height: 7px;
    left: 0;
  }
}

@media (max-width: 767px) {
  .title-heading.subpage.detail .title-heading__en {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.title-heading.subpage .title-heading__en {
  font-size: 140px;
  font-size: 14rem;
  line-height: 1em;
  letter-spacing: 0.025em;
  font-weight: 700;
  text-transform: uppercase;
}

.title-heading.subpage .title-heading__en::after {
  left: -38px;
  top: 28px;
}

@media only screen and (max-width: 1300px) {
  .title-heading.subpage .title-heading__en::after {
    left: -26px;
  }
}

@media (max-width: 767px) {
  .title-heading.subpage .title-heading__en::after {
    left: -26px;
    top: 16px;
  }
}

@media (max-width: 767px) {
  .title-heading.subpage .title-heading__en {
    font-size: 66px;
    font-size: 6.6rem;
    line-height: 1em;
  }
}

.title-heading.subpage .title-heading__ja {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.14286em;
  letter-spacing: 0.04em;
  font-weight: 700;
  margin-top: 42px;
}

@media (max-width: 767px) {
  .title-heading.subpage .title-heading__ja {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1em;
    margin-top: 14px;
  }
}

.title-heading.sm {
  padding-left: 0;
}

.title-heading.sm .title-heading__en {
  font-size: 90px;
  font-size: 9rem;
  line-height: 1em;
  letter-spacing: 0.025em;
}

@media (max-width: 767px) {
  .title-heading.sm .title-heading__en {
    font-size: 50px;
    font-size: 5rem;
  }
}

.title-heading.sm .title-heading__en::after {
  left: -38px;
  top: 16px;
}

@media only screen and (max-width: 1300px) {
  .title-heading.sm .title-heading__en::after {
    left: -26px;
  }
}

@media (max-width: 767px) {
  .title-heading.sm .title-heading__en::after {
    left: -27px;
    top: 18px;
  }
}

.title-heading.sm .title-heading__ja {
  margin-top: 24px;
}

@media (max-width: 767px) {
  .title-heading.sm .title-heading__ja {
    font-size: 16px;
    font-size: 1.6rem;
    margin-top: 15px;
  }
}

.title-heading__en {
  font-family: "Barlow", sans-serif;
  color: #00469d;
  font-size: 120px;
  font-size: 12rem;
  line-height: 1.26667em;
  letter-spacing: 0.025em;
  font-weight: bold;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .title-heading__en {
    font-size: calc(100vw * 120 / 1200);
  }
}

@media (max-width: 767px) {
  .title-heading__en {
    font-size: 60px;
    font-size: 6rem;
    line-height: 1em;
  }
}

.title-heading__en::after {
  content: "";
  position: absolute;
  top: 42px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: #fd4e24;
  border-radius: 50%;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .title-heading__en::after {
    top: calc(100vw * 42 / 1200);
  }
}

@media (max-width: 767px) {
  .title-heading__en::after {
    width: 16px;
    height: 16px;
    top: 10px;
    left: -8px;
  }
}

.title-heading__ja {
  color: #00469d;
  margin-top: 8px;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1em;
  letter-spacing: 0.04em;
  font-weight: bold;
}

@media (max-width: 767px) {
  .title-heading__ja {
    margin-top: 20px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 0.72222em;
  }
}

.title-heading--white .title-heading__en,
.title-heading--white .title-heading__ja {
  color: #fff;
}

.title-heading--vertical {
  padding: 33px 0 0;
  display: flex;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .title-heading--vertical {
    padding-top: 25px;
  }
}

.title-heading--vertical .title-heading__en {
  writing-mode: vertical-lr;
  white-space: nowrap;
  font-size: 80px;
  font-size: 8rem;
}

@media (max-width: 767px) {
  .title-heading--vertical .title-heading__en {
    font-size: 44px;
    font-size: 4.4rem;
  }
}

.title-heading--vertical .title-heading__en::after {
  top: 0;
  left: 56px;
}

@media (max-width: 767px) {
  .title-heading--vertical .title-heading__en::after {
    top: 6px;
    left: 24px;
    width: 10px;
    height: 10px;
  }
}

.title-heading--vertical .title-heading__ja {
  width: 26px;
  margin-left: 25px;
  margin-top: -2px;
  font-size: 26px;
  font-size: 2.6rem;
  line-height: 1.15385em;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .title-heading--vertical .title-heading__ja {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.05556em;
    letter-spacing: 0.04em;
    width: 100%;
  }
}

.title-heading--large .title-heading__en {
  font-size: 140px;
  font-size: 14rem;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .title-heading--large .title-heading__en {
    font-size: calc(100vw * 120 / 1200);
  }
}

@media (min-width: 768px) {
  .title-heading--large .title-heading__en::after {
    top: 47px;
    left: 9px;
  }
}

@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1200px) {
  .title-heading--large .title-heading__en::after {
    top: calc(100vw * 47 / 1200);
  }
}

@media (max-width: 767px) {
  .title-heading--large .title-heading__en {
    font-size: 90px;
    font-size: 9rem;
  }
}

.title-heading--small .title-heading__en {
  font-size: 110px;
  font-size: 11rem;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .title-heading--small .title-heading__en {
    font-size: calc(100vw * 110 / 1200);
  }
}

@media (max-width: 767px) {
  .title-heading--small .title-heading__en {
    font-size: 60px;
    font-size: 6rem;
  }
}

.title-heading--small .title-heading__en::after {
  top: 37px;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .title-heading--small .title-heading__en::after {
    top: calc(100vw * 37 / 1200);
  }
}

@media (max-width: 767px) {
  .title-heading--small .title-heading__en::after {
    top: 13px;
  }
}

.title-heading--small .title-heading__ja {
  margin-top: 12px;
  font-size: 26px;
  font-size: 2.6rem;
}

@media (max-width: 767px) {
  .title-heading--small .title-heading__ja {
    margin-top: 20px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.breadcrumb {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  .breadcrumb {
    flex-wrap: wrap;
  }
}

.breadcrumb li {
  font-size: 10px;
  font-size: 1rem;
  line-height: 1.5em;
  letter-spacing: 0.04em;
  font-weight: 500;
  margin-right: 25px;
  position: relative;
}

.breadcrumb li::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 1px;
  background: #00469d;
  right: -15px;
  top: 50%;
}

.breadcrumb li:last-child {
  margin-right: 0;
}

.breadcrumb li:last-child::after {
  display: none;
}

.breadcrumb li > * {
  color: #00469d;
}

.c-comp.col-3 {
  margin-top: 108px;
  margin-bottom: 92px;
}

@media (max-width: 767px) {
  .c-comp.col-3 {
    margin-top: 80px;
    margin-bottom: 72px;
  }
}

.c-comp.col-3 .c-comp__ttl {
  font-size: 72px;
  font-size: 7.2rem;
  margin-bottom: -12px;
}

@media (max-width: 767px) {
  .c-comp.col-3 .c-comp__ttl {
    font-size: 60px;
    font-size: 6rem;
  }
}

@media (max-width: 767px) {
  .c-comp.col-3 .c-comp__ttl.largeSp {
    margin-bottom: -8px;
  }
}

@media (min-width: 768px) {
  .c-comp.col-3 .c-comp__wrap {
    max-width: 1100px;
    margin: 0 auto;
  }
}

.c-comp__ttl {
  font-size: 146px;
  font-size: 14.6rem;
  line-height: 1em;
  letter-spacing: 0.025em;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  color: #f2f2f7;
  text-align: center;
  margin-bottom: -47px;
}

@media only screen and (max-width: 1200px) {
  .c-comp__ttl {
    margin-bottom: -32px;
    font-size: 120px;
  }
}

@media (max-width: 767px) {
  .c-comp__ttl {
    font-size: 64px;
    font-size: 6.4rem;
    margin-bottom: -10px;
  }
}

.c-comp__wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sidebar {
  width: 190px;
}

@media (max-width: 767px) {
  .sidebar {
    width: 100%;
    max-width: 298px;
    margin: 50px auto 0;
  }
}

@media (max-width: 767px) {
  .sidebar .hidebox {
    padding-bottom: 6px;
    display: none;
  }
}

.sidebar__ttl {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1em;
  letter-spacing: 0.025em;
  font-weight: 700;
  color: #00469d;
  font-family: "Barlow", sans-serif;
  margin-bottom: 28px;
}

@media (max-width: 767px) {
  .sidebar__ttl {
    text-align: center;
    margin: 0;
    padding: 24px 0;
    position: relative;
  }
  .sidebar__ttl::after,
  .sidebar__ttl::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 1px;
    background: #00469d;
    right: 36px;
    top: 50%;
  }
  .sidebar__ttl::after {
    transform: rotate(90deg);
  }
  .sidebar__ttl.active::after {
    transform: rotate(0deg);
  }
}

.sidebar__item {
  margin-bottom: 61px;
}

@media (min-width: 768px) {
  .sidebar__item.tag {
    margin-bottom: 73px;
  }
}

@media (max-width: 767px) {
  .sidebar__item {
    margin-bottom: 15px;
    border: 1px solid #00469d;
    border-radius: 32px;
    overflow: hidden;
  }
}

.sidebar__item:last-child {
  margin-bottom: 0;
}

.sidebar li {
  margin-bottom: 11px;
  position: relative;
}

@media (max-width: 767px) {
  .sidebar li {
    border-top: 1px solid #b6cae2;
    margin-bottom: 0px;
  }
}

.sidebar li:last-child {
  margin-bottom: 0;
}

.sidebar li.parent:first-child ul {
  display: block;
}

.sidebar li.parent ul {
  display: none;
}

@media (max-width: 767px) {
  .sidebar li.child {
    border-bottom: 0;
    border: none;
  }
}

.sidebar li.child a {
  padding-left: 18px;
}

@media (max-width: 767px) {
  .sidebar li.child a {
    padding: 4px 0;
  }
}

@media (min-width: 768px) {
  .sidebar li.child a span {
    padding-left: 16px;
  }
}

.sidebar li a {
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.6em;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: #00469d;
  display: block;
}

@media (max-width: 767px) {
  .sidebar li a {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2em;
    padding: 13px 50px 12px 52px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
  }
}

.sidebar li a span {
  padding-left: 19px;
  position: relative;
  display: block;
}

@media (max-width: 767px) {
  .sidebar li a span {
    padding-left: 0;
  }
}

.sidebar li a span::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 1px;
  background: #00469d;
  left: 0;
  top: 10px;
}

@media (max-width: 767px) {
  .sidebar li a span::after {
    top: 14px;
    left: -14px;
  }
}

.sidebar li a.year span::after {
  width: 7px;
}

@media (max-width: 767px) {
  .sidebar li a.year span::after {
    left: -16px;
  }
}

.sidebar li a.year span::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 1px;
  left: 0;
  top: 10px;
  background: #00469d;
  transform: rotate(90deg);
}

@media (max-width: 767px) {
  .sidebar li a.year span::before {
    left: -16px;
    top: 14px;
  }
}

.sidebar li a.year.active {
  margin-bottom: 12px;
}

@media (max-width: 767px) {
  .sidebar li a.year.active {
    margin-bottom: 0px;
  }
}

.sidebar li a.year.active span::before {
  transform: rotate(0);
}

.sidebar li a.year.active + ul {
  padding-bottom: 6px;
}

@media (max-width: 767px) {
  .sidebar li a.year.active + ul {
    padding: 6px 0px;
    border-top: 1px solid #b6cae2;
  }
}

@media (min-width: 768px) {
  .sidebar .link {
    margin-right: -9px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

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

.sidebar .link a {
  color: #00469d;
  border-radius: 15px;
  background: #fff;
  border: 1px solid #b6cae2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 4px 8px 0;
  padding: 6px 9px;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.23077em;
  letter-spacing: 0.01em;
  font-weight: 400;
}

@media (max-width: 767px) {
  .sidebar .link a {
    width: 100%;
    border: none;
    border-radius: 0;
    border-top: 1px solid #b6cae2;
    padding: 13px 10px 12px 12px;
    height: auto;
    margin: 0 auto;
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 28px;
  }
  .sidebar .link a:last-child {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .column-post {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .column-post {
    width: 98%;
  }
}

@media (max-width: 767px) {
  .column-post {
    width: 100%;
    max-width: calc(100vw * 375 / 375);
  }
}

.column-post__inner {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .column-post__inner {
    width: 100%;
    flex-wrap: nowrap;
  }
}

.column-post__item {
  width: 46.488%;
  margin: 0 7% 8.7% 0;
  cursor: pointer;
}

.column-post__item a {
  width: 100%;
  display: block;
}

@media (max-width: 767px) {
  .column-post__item a {
    width: calc(100vw * 178 / 375);
  }
}

@media (min-width: 768px) {
  .column-post__item:nth-child(2n + 2) {
    margin-right: 0;
  }
}

@media only screen and (min-width: 1025px) {
  .column-post__item:hover a {
    opacity: 1;
  }
  .column-post__item:hover .column-post__img img {
    transform: scale(1.1);
  }
}

@media (max-width: 767px) {
  .column-post__item {
    width: 47.2%;
    margin: 0 5.6% 26px 0;
  }
}

.column-post__img {
  aspect-ratio: 1 / 0;
  overflow: hidden;
  height: calc(100vw * 287 / 1366);
  width: 100%;
}

@media (max-width: 767px) {
  .column-post__img {
    max-width: calc(100vw * 160 / 375);
    height: calc(100vw * 106 / 375);
  }
}

.column-post__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.column-post__content {
  margin-top: 31px;
}

@media (max-width: 767px) {
  .column-post__content {
    margin-top: 0;
  }
}

.column-post__content .info {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

@media (max-width: 767px) {
  .column-post__content .info {
    display: block;
  }
}

.column-post__content .date {
  color: #00469d;
  font-family: "Barlow", sans-serif;
  margin-right: 15px;
  white-space: nowrap;
  margin-top: 3px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8em;
  letter-spacing: 0em;
  font-weight: 700;
}

@media (max-width: 767px) {
  .column-post__content .date {
    font-size: 13px;
    line-height: 27px;
    margin-top: 0;
  }
}

.column-post__content .cat {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.column-post__content .cat span {
  padding: 9px 16px;
  margin: 0 2px 3px 0;
  border-radius: 16px;
  background: #f2f2f7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  white-space: wrap;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1em;
  letter-spacing: 0.01em;
  font-weight: 500;
}

@media only screen and (min-width: 768px) and (max-width: 1000px) {
  .column-post__content .cat span {
    font-size: 11px;
    font-size: 1.1rem;
    line-height: 1em;
  }
}

@media (max-width: 767px) {
  .column-post__content .cat span {
    height: auto;
    font-size: 11px;
    padding: 7px 11px;
    border-radius: 12px;
    letter-spacing: 0.01em;
  }
}

.column-post__content .ttl {
  color: #222;
  margin-top: 9px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.66667em;
  letter-spacing: 0.04em;
  font-weight: 700;
}

@media (max-width: 767px) {
  .column-post__content .ttl {
    font-size: 14px;
    letter-spacing: 0.02em;
    line-height: 21px;
    margin-top: 3px;
  }
}

.column-post__content .tag {
  margin-top: 26px;
}

@media (max-width: 767px) {
  .column-post__content .tag {
    margin-top: 7px;
    display: flex;
    flex-flow: row wrap;
  }
}

.column-post__content .tag span {
  color: #00469d;
  display: inline-block;
  margin: 0 8px 5px 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1em;
  letter-spacing: 0.01em;
  font-weight: 400;
}

@media (max-width: 767px) {
  .column-post__content .tag span {
    font-size: 12px;
    letter-spacing: 0.01em;
  }
}

@media (min-width: 768px) {
  .popular-articles {
    max-width: 190px;
  }
}

@media (max-width: 767px) {
  .popular-articles {
    border: none;
    border-radius: 0;
    margin: 57px calc(149px - 50vw) 0;
    position: relative;
    padding-bottom: 37px;
    padding-left: 19px;
  }
}

@media only screen and (max-width: 767px) and (min-width: 280px) and (max-width: 374px) {
  .popular-articles {
    margin: 57px -20px 0 -20px;
  }
}

@media (max-width: 767px) {
  .popular-articles::after {
    content: "";
    position: absolute;
    top: 13px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f2f2f7;
  }
}

.popular-articles__ttl {
  text-align: center;
  color: #00469d;
  position: relative;
  padding-right: 6px;
  padding-bottom: 21px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.0625em;
  letter-spacing: 0.03em;
  font-weight: 700;
}

@media (max-width: 767px) {
  .popular-articles__ttl {
    font-size: 22px;
    letter-spacing: 0.03em;
    line-height: 17px;
    padding-right: 22px;
    padding-bottom: 28px;
    position: relative;
    z-index: 2;
  }
}

.popular-articles__ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -6px;
  right: 0;
  width: 124px;
  height: 9px;
  margin: 0 auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='124.379' height='9.156' viewBox='0 0 124.379 9.156'%3E%3Cpath id='Path_748' data-name='Path 748' d='M-15386.5-22528h64.808' transform='translate(15386.5 22528.535)' fill='none' stroke='%2300469d' stroke-width='1'/%3E%3Cpath id='Path_750' data-name='Path 750' d='M-15386.5-22528h54.379' transform='translate(15456.5 22528.535)' fill='none' stroke='%2300469d' stroke-width='1'/%3E%3Cpath id='Path_749' data-name='Path 749' d='M-15391.446-22526.648l-6.809,8.531' transform='translate(15456.254 22526.961)' fill='none' stroke='%2300469d' stroke-width='1'/%3E%3C/svg%3E%0A");
  background-position: bottom;
  background-size: contain;
}

@media (max-width: 767px) {
  .popular-articles__ttl::after {
    width: 158px;
    height: 9px;
    left: -23px;
  }
}

.popular-articles__inner {
  margin: 19px auto 0;
}

@media (max-width: 767px) {
  .popular-articles__inner {
    margin: 40px auto 0;
    position: relative;
    z-index: 2;
  }
}

.popular-articles .slick-dots {
  bottom: -2px;
}

.popular-articles .slick-dots li {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b6cae2;
  border: 1px solid #b6cae2;
  margin: 0 6px;
}

.popular-articles .slick-dots li.slick-active {
  background: #00469d;
  border-color: #00469d;
}

.popular-articles .slick-dots li button {
  display: none;
}

@media (max-width: 767px) {
  .popular-articles .slick-slide {
    margin: 0 22px 0 0;
  }
}

.popular-articles .slick-dotted.slick-slider {
  margin-bottom: 0;
}

.popular-articles .slick-slide,
.popular-articles__item {
  position: relative;
  cursor: pointer;
  margin: 0 0 34px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .popular-articles .slick-slide,
  .popular-articles__item {
    width: 205px;
    margin-right: 20px;
  }
}

.popular-articles .slick-slide:last-child,
.popular-articles__item:last-child {
  margin-bottom: 0;
}

.popular-articles .slick-slide a,
.popular-articles__item a {
  display: block;
  padding: 0 0 0 22px;
}

@media (max-width: 767px) {
  .popular-articles .slick-slide a,
  .popular-articles__item a {
    padding-left: 26px;
  }
}

.popular-articles .slick-slide .date,
.popular-articles__item .date {
  color: #00469d;
  font-family: "Barlow", sans-serif;
  position: absolute;
  top: 0;
  left: -4px;
  writing-mode: vertical-rl;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1em;
  letter-spacing: 0em;
  font-weight: 700;
}

@media (max-width: 767px) {
  .popular-articles .slick-slide .date,
  .popular-articles__item .date {
    left: 0;
  }
}

@media only screen and (min-width: 1025px) {
  .popular-articles .slick-slide:hover a,
  .popular-articles__item:hover a {
    opacity: 1;
  }
  .popular-articles .slick-slide:hover img,
  .popular-articles__item:hover img {
    transform: scale(1.1);
  }
}

.popular-articles__img {
  width: 168px;
  height: 113px;
  overflow: hidden;
  max-width: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .popular-articles__img {
    width: 178px;
    height: 120px;
  }
}

.popular-articles__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.popular-articles__content {
  margin: 10px 0 0;
}

@media (max-width: 767px) {
  .popular-articles__content {
    margin-top: 13px;
    width: 100%;
  }
}

.popular-articles__content .cat {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.popular-articles__content .cat span {
  width: auto;
  height: 24px;
  border-radius: 12px;
  background: #f2f2f7;
  color: #333;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1em;
  letter-spacing: 0.01em;
  font-weight: 500;
  margin-top: 2px;
}

.popular-articles__content .cat span:first-child {
  margin-top: 0;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .popular-articles__content .cat span {
    height: auto;
    padding: 8px 10px;
    line-height: 1.3;
  }
}

@media (max-width: 767px) {
  .popular-articles__content .cat span {
    border-radius: 12px;
    background: #00469d;
    color: #fff;
  }
}

.popular-articles__content .ttl {
  margin-top: 6px;
  color: #222;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.53846em;
  letter-spacing: 0.04em;
  font-weight: 500;
  overflow: hidden;
  width: 100%;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: normal;
}

@media (max-width: 767px) {
  .popular-articles__content .ttl {
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 22px;
    margin-top: 11px;
  }
}

.table-content {
  border: 1px solid #b6cae2;
  color: #00469d;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.125em;
  letter-spacing: 0.04em;
  font-weight: 400;
  padding: 52px 57px 36px;
  max-width: 750px;
  margin: 0 auto 71px;
  counter-reset: child-counter;
}

@media (max-width: 767px) {
  .table-content {
    padding: 30px 29px 16px;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.6em;
    margin: 0 auto 60px;
  }
}

.table-content__ttl {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1em;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-align: center;
  font-family: "Barlow", sans-serif;
  margin-bottom: 31px;
}

@media (max-width: 767px) {
  .table-content__ttl {
    margin-bottom: 24px;
  }
}

.table-content__ttl span {
  position: relative;
  padding-left: 30px;
}

@media (max-width: 767px) {
  .table-content__ttl span {
    padding-left: 15px;
  }
}

.table-content__ttl span::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 10px;
  border: 1px solid #00469d;
  left: 2px;
  top: 5px;
  border-width: 1px 0;
}

@media (max-width: 767px) {
  .table-content__ttl span::after {
    left: -12px;
  }
}

.table-content__ttl span::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 1px;
  top: 9px;
  left: 2px;
  border-top: 1px solid #00469d;
}

@media (max-width: 767px) {
  .table-content__ttl span::before {
    transform: translateY(50%);
    left: -12px;
  }
}

.table-content .row {
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .table-content .row {
    padding-left: 19px;
    margin-bottom: 19px;
  }
}

.table-content .row:last-child {
  margin-bottom: 0px;
}

.table-content .row::after {
  counter-increment: child-counter;
  content: counter(child-counter) ".";
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  position: absolute;
  left: 0;
  top: 1px;
}

@media (max-width: 767px) {
  .table-content .row::after {
    font-size: 14px;
    top: 0px;
  }
}

.table-content .row > a {
  font-weight: 700;
}

.table-content a {
  color: #00469d;
}

.table-content ul {
  margin: 11px 0;
}

.table-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 4px;
}

@media (max-width: 767px) {
  .table-content ul li {
    padding-left: 10px;
  }
}

.table-content ul li:last-child {
  margin-bottom: 0;
}

.table-content ul li::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background: #00469d;
  border-radius: 50%;
  left: 5px;
  top: 15px;
}

@media (max-width: 767px) {
  .table-content ul li::after {
    width: 5px;
    height: 5px;
    top: 10px;
    left: 0px;
  }
}

.cms-content {
  margin-bottom: 86px;
}

@media (max-width: 767px) {
  .cms-content {
    margin-bottom: 82px;
  }
}

.cms-content h2 {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.57143em;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #00469d;
  background: #f2f2f7;
  border-radius: 20px;
  padding: 22px 33px 18px 54px;
  position: relative;
  margin-bottom: 42px;
}

@media (max-width: 767px) {
  .cms-content h2 {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.5em;
    padding: 22px 20px 18px 42px;
    margin-bottom: 24px;
  }
}

.cms-content h2::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background: #fd4e24;
  left: 30px;
  top: 38px;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .cms-content h2::after {
    width: 7px;
    height: 7px;
    top: 33px;
    left: 24px;
  }
}

.cms-content h3 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.75em;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #00469d;
  padding: 17px 0;
  border: 1px solid #00469d;
  border-width: 1px 0;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .cms-content h3 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.66667em;
    padding: 15px 0;
    margin-bottom: 25px;
  }
}

.cms-content h4 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2.11111em;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #00469d;
  padding-left: 50px;
  margin-bottom: 44px;
  position: relative;
}

@media (max-width: 767px) {
  .cms-content h4 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.66667em;
    padding-left: 22px;
    margin-bottom: 20px;
  }
}

.cms-content h4::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 1px;
  background: #00469d;
  top: 20px;
  left: 0;
}

@media (max-width: 767px) {
  .cms-content h4::after {
    width: 18px;
    left: -10px;
    top: 14px;
  }
}

.cms-content p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.25em;
  letter-spacing: 0.04em;
  font-weight: 400;
  margin-bottom: 46px;
}

.cms-content p.caption {
  font-size: 13px;
  font-size: 1.3rem;
  margin-bottom: 102px;
}

@media (max-width: 767px) {
  .cms-content p.caption {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 62px;
  }
}

@media (max-width: 767px) {
  .cms-content p {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 2.13333em;
    margin-bottom: 24px;
  }
}

.cms-content img {
  margin: 17px 0 9px;
}

@media (max-width: 767px) {
  .cms-content img {
    margin: 21px 0 8px;
  }
}

.cms-content blockquote {
  padding: 0px 44px 0 52px;
  position: relative;
  margin: 102px 0 68px 18px;
  border: 1px solid #00469d;
  border-width: 0 1px;
}

@media (max-width: 767px) {
  .cms-content blockquote {
    padding: 10px 20px 6px;
    margin: 62px 0 48px;
  }
}

.cms-content blockquote::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 25px;
  background: url("") center/100% no-repeat;
  left: -18px;
  top: -44px;
}

@media (max-width: 767px) {
  .cms-content blockquote::after {
    width: 27px;
    height: 20px;
    top: -28px;
    left: -6px;
  }
}

.cms-content blockquote p {
  margin-bottom: 0px;
}

@media (max-width: 767px) {
  .cms-content blockquote p {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.85714em;
    margin-bottom: 6px;
  }
}

.cms-content blockquote a {
  text-align: right;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 2em;
  letter-spacing: 0.04em;
}

.cms-content a {
  color: #00469d;
  text-decoration: underline;
  display: block;
}

.cms-content span[style="text-decoration: underline;"] {
  text-decoration: none !important;
  background: #ffdbd3;
  font-weight: 700;
}

.cms-content ul,
.cms-content ol {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .cms-content ul,
  .cms-content ol {
    margin-bottom: 48px;
  }
}

.cms-content ul li,
.cms-content ol li {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875em;
  letter-spacing: 0.04em;
  font-weight: 400;
  padding-left: 26px;
  margin-bottom: 7px;
  position: relative;
}

@media (max-width: 767px) {
  .cms-content ul li,
  .cms-content ol li {
    padding-left: 16px;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.46667em;
    margin-bottom: 11px;
  }
}

.cms-content ul li:last-child,
.cms-content ol li:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .cms-content ul {
    margin-top: 44px;
  }
}

.cms-content ul li::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background: #00469d;
  border-radius: 50%;
  left: 0;
  top: 12px;
}

@media (max-width: 767px) {
  .cms-content ul li::after {
    width: 7px;
    height: 7px;
    top: 8px;
  }
}

.cms-content ol {
  counter-reset: child-counter;
}

@media (max-width: 767px) {
  .cms-content ol li {
    padding-left: 20px;
  }
}

.cms-content ol li::after {
  counter-increment: child-counter;
  content: counter(child-counter) ".";
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  position: absolute;
  left: 2px;
  top: 1px;
  color: #00469d;
}

@media (max-width: 767px) {
  .cms-content ol li::after {
    left: 0;
    top: 0;
  }
}

.pagi {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #00469d;
  border-width: 1px 0;
  padding: 50px 0 58px;
}

@media (max-width: 767px) {
  .pagi {
    flex-wrap: wrap;
    padding: 40px 0 0px;
    border-width: 0px 0 0 0;
    position: relative;
  }
  .pagi::after {
    content: "";
    position: absolute;
    width: 100vw;
    height: 1px;
    left: -18px;
    top: 0;
    background: #b6cae2;
  }
}

.pagi__list {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1em;
  letter-spacing: 0em;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  position: relative;
  padding-bottom: 12px;
}

.pagi .pagi__list {
  color: #00469d;
}

@media (max-width: 767px) {
  .pagi__list {
    order: 3;
    width: 100%;
    max-width: 162px;
    border: 1px solid #b6cae2;
    border-radius: 55px;
    text-align: center;
    margin: 36px auto 0;
    padding: 18px 0 18px 30px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1em;
    letter-spacing: 0.04em;
  }
}

.pagi__list::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 12px;
  background: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/alive-theme/assets/img/common/icon/ico_list.svg") center/100% no-repeat;
  left: 50%;
  transform: translateX(-50%);
  top: 24px;
}

@media (max-width: 767px) {
  .pagi__list::after {
    left: 36%;
    top: 21px;
  }
}

.pagi__item {
  width: calc(354 / 900 * 100%);
  cursor: pointer;
}

.pagi__item a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .pagi__item a {
    flex-wrap: wrap;
  }
}

@media (max-width: 767px) {
  .pagi__item {
    width: calc(50% - 20px);
  }
}

@media (max-width: 767px) {
  .pagi__item.prev {
    position: relative;
  }
  .pagi__item.prev::after {
    content: "";
    position: absolute;
    width: 1px;
    height: calc(100% + 20px);
    background: #b6cae2;
    right: -22px;
    top: -20px;
  }
}

.pagi__item.next {
  flex-direction: row-reverse;
}

@media (max-width: 767px) {
  .pagi__item.next {
    position: relative;
  }
  .pagi__item.next::after {
    content: "";
    position: absolute;
    width: 1px;
    height: calc(100% + 20px);
    background: #b6cae2;
    left: -19px;
    top: -20px;
  }
}

.pagi__item.next .cont {
  padding: 6px 0 0 25px;
}

@media (max-width: 767px) {
  .pagi__item.next .cont {
    padding: 10px 0px 0;
  }
}

.pagi__item .thumb {
  position: relative;
  width: 130px;
  overflow: hidden;
}

.pagi__item .thumb:before {
  display: block;
  content: " ";
  width: 100%;
  padding-top: 66.92308%;
}

.pagi__item .thumb > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.pagi__item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .pagi__item .thumb {
    width: 100%;
  }
}

.pagi__item .cont {
  width: calc(100% - 130px);
  padding: 6px 0 0 25px;
}

@media (max-width: 767px) {
  .pagi__item .cont {
    width: 100%;
    padding: 10px 0 0px;
  }
}

.pagi__item .cont__date {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.1em;
  letter-spacing: 0em;
  font-weight: 700;
  color: #00469d;
  font-family: "Barlow", sans-serif;
  display: block;
  margin-bottom: 6px;
}

@media (max-width: 767px) {
  .pagi__item .cont__date {
    margin-bottom: 8px;
  }
}

.pagi__item .cont__ttl {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.71429em;
  letter-spacing: 0.04em;
  font-weight: 400;
  overflow: hidden;
  width: 100%;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: normal;
  color: #333333;
}

@media (max-width: 767px) {
  .pagi__item .cont__ttl {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.57143em;
    letter-spacing: 0em;
  }
}

@media only screen and (min-width: 1025px) {
  .pagi__item:hover {
    opacity: 1;
  }
  .pagi__item:hover .thumb img {
    transform: scale(1.1);
  }
}

.pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 3px;
  margin: 28px auto 0;
}

@media (max-width: 767px) {
  .pagenavi {
    margin: 42px auto 71px;
  }
}

.pagenavi .page,
.pagenavi a,
.pagenavi span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #fff;
  font-family: "Barlow", sans-serif;
  color: #00469d;
  border-radius: 50%;
  margin: 0 4px;
  white-space: nowrap;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.0625em;
  letter-spacing: 0.03em;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.pagenavi .page.current,
.pagenavi a.current,
.pagenavi span.current {
  color: #fff;
  background: #00469d;
  border-color: #00469d;
}

@media only screen and (min-width: 1025px) {
  .pagenavi .page:hover,
  .pagenavi a:hover,
  .pagenavi span:hover {
    opacity: 1;
    color: #fff;
    background: #00469d;
    border-color: #00469d;
  }
}

.pagenavi span {
  width: auto;
  height: auto;
  cursor: pointer;
}

@media only screen and (min-width: 1025px) {
  .pagenavi span:hover {
    cursor: default;
    opacity: 1;
    color: #00469d;
    background: #fff;
    border-color: #fff;
  }
}

.pagenavi .prev,
.pagenavi .next {
  width: 20px;
  height: 20px;
  position: relative;
  margin-top: 4px;
  cursor: pointer;
}

.pagenavi .prev::after,
.pagenavi .next::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 1025px) {
  .pagenavi .prev:hover,
  .pagenavi .next:hover {
    background: transparent;
    border-color: transparent;
  }
}

@media (max-width: 767px) {
  .pagenavi .prev,
  .pagenavi .next {
    margin-top: 1px;
  }
}

.pagenavi .prev {
  margin-right: 14px;
  cursor: pointer;
}

.pagenavi .prev::after {
  background: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/alive-theme/assets/img/common/icon/prev.svg") no-repeat;
  background-size: cover;
}

@media only screen and (min-width: 1025px) {
  .pagenavi .prev:hover::after {
    left: -10px;
  }
}

.pagenavi .next {
  margin-left: 10px;
  cursor: pointer;
}

.pagenavi .next::after {
  background: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/alive-theme/assets/img/common/icon/next.svg") no-repeat;
  background-size: cover;
}

@media only screen and (min-width: 1025px) {
  .pagenavi .next:hover::after {
    left: 10px;
  }
}

.c-pagenavi {
  margin: 100px 0 0;
}

@media (max-width: 767px) {
  .c-pagenavi {
    margin: 45px 0 0;
  }
}

.c-pagenavi.page {
  margin: 28px auto 0;
}

@media (max-width: 767px) {
  .c-pagenavi.page {
    margin: 42px auto 71px;
  }
}

.c-pagenavi .hs-pagination__link {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1em;
  letter-spacing: 0.025em;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  color: #00469d;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 7px;
}

.c-pagenavi .hs-pagination__link--active {
  color: #fff;
  background: #00469d;
  border-radius: 50%;
}

.c-pagenavi .hs-pagination__link--next,
.c-pagenavi .hs-pagination__link--prev {
  width: 14px;
  height: 14px;
}

.c-pagenavi .hs-pagination__link--next svg,
.c-pagenavi .hs-pagination__link--prev svg {
  display: none;
}

.c-pagenavi .hs-pagination__link--next span,
.c-pagenavi .hs-pagination__link--prev span {
  width: 12px;
  height: 12px;
  position: relative;
}

.c-pagenavi .hs-pagination__link--next span::after,
.c-pagenavi .hs-pagination__link--prev span::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-left: 1px solid #00469d;
  border-top: 1px solid #00469d;
  transform: rotate(-45deg);
}

.c-pagenavi .hs-pagination__link--next span::after {
  transform: rotate(135deg);
}

@media (max-width: 767px) {
  .cmn-block .box-slider .btn-link span::after {
    top: 46%;
    right: 18px;
  }
}

.cmn-block .box-slider .content {
  margin: auto;
  width: 100%;
  box-sizing: border-box;
}

.cmn-block .box-slider .content .btn_prev,
.cmn-block .box-slider .content .btn_next {
  top: 27%;
  width: 90px;
  height: 90px;
  position: absolute;
  border-radius: 50%;
  border: 1px solid #fff;
  cursor: pointer;
  transform: translate3d(0, 0, 0);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .cmn-block .box-slider .content .btn_prev,
  .cmn-block .box-slider .content .btn_next {
    width: 70px;
    height: 70px;
    top: 30%;
  }
}

.cmn-block .box-slider .content .btn_prev::after,
.cmn-block .box-slider .content .btn_next::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 20px;
  right: 0;
  width: 20px;
  height: 6px;
  background: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/alive-theme/assets/img/common/icon/ico-arrow-white-long-nx.svg") no-repeat;
  background-size: contain;
  transition: all 0.3s ease-in-out;
  transform: translate(-50%, 0%);
  margin: 0 auto;
}

@media only screen and (min-width: 1025px) {
  .cmn-block .box-slider .content .btn_prev:hover,
  .cmn-block .box-slider .content .btn_next:hover {
    opacity: 0.5;
  }
}

@media (max-width: 767px) {
  .cmn-block .box-slider .content .btn_prev,
  .cmn-block .box-slider .content .btn_next {
    top: 17%;
    width: 48px;
    height: 48px;
  }
  .cmn-block .box-slider .content .btn_prev::after,
  .cmn-block .box-slider .content .btn_next::after {
    width: 15px;
    height: 4px;
  }
}

.cmn-block .box-slider .content .btn_prev {
  left: -20px;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .cmn-block .box-slider .content .btn_prev {
    left: 10px;
  }
}

@media (max-width: 767px) {
  .cmn-block .box-slider .content .btn_prev {
    left: -9px;
  }
}

.cmn-block .box-slider .content .btn_prev::after {
  background: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/alive-theme/assets/img/common/icon/ico-arrow-white-long-reserve.svg") no-repeat;
  background-size: contain;
}

.cmn-block .box-slider .content .btn_next {
  right: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .cmn-block .box-slider .content .btn_next {
    right: 30px;
  }
}

@media (max-width: 767px) {
  .cmn-block .box-slider .content .btn_next {
    right: -7px;
  }
}

.cmn-block .box-slider .content .slick-dots {
  position: absolute;
  top: -83px;
  left: 82.8vw;
  bottom: auto;
  z-index: 9;
  text-align: right;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: auto;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .cmn-block .box-slider .content .slick-dots {
    right: 30px;
    left: auto;
  }
}

@media (max-width: 767px) {
  .cmn-block .box-slider .content .slick-dots {
    top: -53px;
    right: 35px;
    left: auto;
  }
}

.cmn-block .box-slider .content .slick-dots li {
  width: 6px;
  height: 6px;
  background: #fff;
  opacity: 0.25;
  border-radius: 50%;
  margin: 0 6px;
}

@media (max-width: 767px) {
  .cmn-block .box-slider .content .slick-dots li {
    margin: 0 4px;
  }
  .cmn-block .box-slider .content .slick-dots li:last-child {
    margin-right: 0;
  }
}

.cmn-block .box-slider .content .slick-dots li button {
  display: none;
}

.cmn-block .box-slider .content .slick-dots li.slick-active {
  opacity: 1;
}

.cmn-block .box-slider__item .slick-list {
  position: static;
}

.cmn-block .box-slider__item .slick-dotted.slick-slider {
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .cmn-block .box-slider__item .slick-dotted.slick-slider {
    max-width: calc(100vw * 768 / 768);
  }
}

@media (max-width: 767px) {
  .cmn-block .box-slider__item .slick-dotted.slick-slider {
    max-width: calc(100vw * 375 / 375);
    position: relative;
  }
}

.cmn-block .box-slider__item .btn-link {
  margin: 105px auto 0;
  max-width: 350px;
  position: relative;
  right: 22px;
}

@media (max-width: 767px) {
  .cmn-block .box-slider__item .btn-link {
    right: auto;
    margin: 45px auto 0;
    max-width: 280px;
    height: 70px;
  }
}

.cmn-block .box-slider__item .study-slider,
.cmn-block .box-slider__item .item-slider {
  display: flex;
  align-items: flex-start;
}

.cmn-block .box-slider .box-item .slick-slide,
.cmn-block .box-slider .box-item__index,
.cmn-block .box-slider .box-item__item {
  margin-right: 33px;
  width: 378px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .cmn-block .box-slider .box-item .slick-slide,
  .cmn-block .box-slider .box-item__index,
  .cmn-block .box-slider .box-item__item {
    width: 165px;
    margin-right: 10px;
  }
}

@media only screen and (min-width: 1025px) {
  .cmn-block .box-slider .box-item .slick-slide:hover,
  .cmn-block .box-slider .box-item__index:hover,
  .cmn-block .box-slider .box-item__item:hover {
    opacity: 1;
  }
  .cmn-block .box-slider .box-item .slick-slide:hover a,
  .cmn-block .box-slider .box-item__index:hover a,
  .cmn-block .box-slider .box-item__item:hover a {
    opacity: 1;
  }
  .cmn-block .box-slider .box-item .slick-slide:hover .img img,
  .cmn-block .box-slider .box-item__index:hover .img img,
  .cmn-block .box-slider .box-item__item:hover .img img {
    transform: scale(1.1);
  }
}

.cmn-block .box-slider .box-item .slick-slide .img,
.cmn-block .box-slider .box-item__index .img,
.cmn-block .box-slider .box-item__item .img {
  overflow: hidden;
  max-width: 378px;
  max-height: 253px;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
}

@media (max-width: 767px) {
  .cmn-block .box-slider .box-item .slick-slide .img,
  .cmn-block .box-slider .box-item__index .img,
  .cmn-block .box-slider .box-item__item .img {
    max-width: 164px;
    max-height: 110px;
  }
}

.cmn-block .box-slider .box-item .slick-slide .img img,
.cmn-block .box-slider .box-item__index .img img,
.cmn-block .box-slider .box-item__item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.cmn-block .box-slider .box-item .slick-slide .ttl,
.cmn-block .box-slider .box-item__index .ttl,
.cmn-block .box-slider .box-item__item .ttl {
  color: #fff;
  margin-top: 15px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.66667em;
  letter-spacing: 0.04em;
  font-weight: 400;
}

@media (max-width: 767px) {
  .cmn-block .box-slider .box-item .slick-slide .ttl,
  .cmn-block .box-slider .box-item__index .ttl,
  .cmn-block .box-slider .box-item__item .ttl {
    margin-top: 10px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.57143em;
  }
}

.cmn-block .box-slider .box-item {
  padding: 116px 0 160px 43px;
  overflow: hidden;
  position: relative;
}

.cmn-block .box-slider .box-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 222px;
  z-index: -1;
  background: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/alive-theme/assets/img/case/border_grey.png") center/100% 100% no-repeat;
  left: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  .cmn-block .box-slider .box-item::after {
    height: 36px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .cmn-block .box-slider .box-item {
    padding-left: 20px;
  }
}

@media (max-width: 767px) {
  .cmn-block .box-slider .box-item {
    padding: 50px 0 90px;
  }
  .cmn-block .box-slider .box-item .btn-link {
    margin-top: 40px;
    max-width: 298px;
  }
}

@media (max-width: 767px) {
  .cmn-block .box-slider .box-item .title-heading__en {
    font-size: 55px;
    font-size: 5.5rem;
  }
}

@media (max-width: 767px) {
  .cmn-block .box-slider .box-item .title-heading__ja {
    margin-top: 28px;
  }
}

.cmn-block .box-slider .box-item__inner {
  margin: 77px auto 0;
  padding-left: 40px;
  display: flex;
  position: relative;
  z-index: 2;
  width: 100%;
  align-items: flex-start;
  justify-content: flex-start;
}

@media (max-width: 767px) {
  .cmn-block .box-slider .box-item__inner {
    margin: 44px auto 0;
    padding-left: 18px;
  }
}

.cmn-block .box-slider .box-item .ttl.ttl-cl {
  color: #333;
}

.cmn-block .box-slider .box-item .slick-dots {
  top: -95px;
}

@media (max-width: 767px) {
  .cmn-block .box-slider .box-item .slick-dots {
    top: -52px;
    right: 18px;
  }
}

.cmn-block .box-slider .box-item .slick-dots li {
  background: #00469d;
}

.cmn-block .box-slider .box-item .btn_prev,
.cmn-block .box-slider .box-item .btn_next {
  background: #fff;
  border: 1px solid #00469d;
}

@media (min-width: 768px) {
  .cmn-block .box-slider .box-item .btn_prev::after,
  .cmn-block .box-slider .box-item .btn_next::after {
    background: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/alive-theme/assets/img/common/icon/ico-arrow-blue-long-nx.svg") no-repeat;
    background-size: contain;
  }
}

@media (max-width: 767px) {
  .cmn-block .box-slider .box-item .btn_prev::after,
  .cmn-block .box-slider .box-item .btn_next::after {
    background: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/alive-theme/assets/img/common/icon/ico-arrow-blue.svg") no-repeat;
    background-size: contain;
    width: 14px;
  }
}

@media (min-width: 768px) {
  .cmn-block .box-slider .box-item .btn_prev::after {
    background: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/alive-theme/assets/img/common/icon/ico-arrow-blue-long-reserve.svg") no-repeat;
    background-size: contain;
  }
}

@media (max-width: 767px) {
  .cmn-block .box-slider .box-item .btn_prev::after {
    width: 14px;
    background: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/alive-theme/assets/img/common/icon/ico-arrow-blue-long-reserve-sp.svg") no-repeat;
    background-size: contain;
  }
}

.cmn-block__ttl {
  font-size: 45px;
  font-size: 4.5rem;
  line-height: 1.6em;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #00469d;
  text-align: center;
  position: relative;
}

@media only screen and (max-width: 1200px) {
  .cmn-block__ttl {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .cmn-block__ttl {
    font-size: 30px;
    font-size: 3rem;
    line-height: 1.4em;
  }
}

.cmn-block__ttl::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 42px;
  bottom: -66px;
  left: 50%;
  background: #00469d;
}

@media (max-width: 767px) {
  .cmn-block__ttl::after {
    height: 30px;
    bottom: -44px;
  }
}

@media (max-width: 767px) {
  .cmn-block__inner {
    position: relative;
  }
  .cmn-block__inner .btn_prev,
  .cmn-block__inner .btn_next {
    content: "";
    position: absolute;
    top: 130px;
    width: 48px;
    height: 48px;
    z-index: 9;
  }
  .cmn-block__inner .btn_prev {
    left: -8px;
    background-image: url("data:image/svg+xml,%3Csvg id='Group_131005' data-name='Group 131005' xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg id='Group_314' data-name='Group 314'%3E%3Cg id='Ellipse_329' data-name='Ellipse 329' fill='%2300469d' stroke='%2300469d' stroke-width='1'%3E%3Ccircle cx='24' cy='24' r='24' stroke='none'/%3E%3Ccircle cx='24' cy='24' r='23.5' fill='none'/%3E%3C/g%3E%3Cpath id='Path_31' data-name='Path 31' d='M20.754.518h-10.5L14.009-1.71V-.045' transform='translate(8.185 24.051)' fill='none' stroke='%23fff' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E%0A");
  }
  .cmn-block__inner .btn_next {
    right: -8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Cg id='Group_131004' data-name='Group 131004' transform='translate(-6 -6)'%3E%3Cg id='Group_314' data-name='Group 314'%3E%3Cg id='Ellipse_329' data-name='Ellipse 329' transform='translate(6 6)' fill='%2300469d' stroke='%2300469d' stroke-width='1'%3E%3Ccircle cx='24' cy='24' r='24' stroke='none'/%3E%3Ccircle cx='24' cy='24' r='23.5' fill='none'/%3E%3C/g%3E%3Cpath id='Path_31' data-name='Path 31' d='M10.258.518h10.5L17-1.71V-.045' transform='translate(14.804 30.051)' fill='none' stroke='%23fff' stroke-width='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  }
}

.cmn-block .business {
  padding: 65px 0px 0px;
  position: relative;
  margin-bottom: 138px;
}

@media (min-width: 768px) {
  .cmn-block .business .cmn-block__ttl::after {
    bottom: -50px;
  }
}

.cmn-block .business::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: calc(100% - 114px);
  left: 0;
  top: 0;
  background: #f2f2f7;
}

@media (max-width: 767px) {
  .cmn-block .business::after {
    height: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .cmn-block .business {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .cmn-block .business {
    padding: 47px 0 14px;
    margin-bottom: 56px;
  }
}

.cmn-block .business__inner {
  margin: 76px auto 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .cmn-block .business__inner {
    margin: 50px auto;
  }
}

@media (max-width: 767px) {
  .cmn-block .business__inner {
    align-items: flex-start;
    margin: 52px auto 8px;
    padding: 0 0 12px;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
  }
  .cmn-block .business__inner .slick-dots {
    display: none;
  }
  .cmn-block .business__inner .slick-slide {
    padding: 0 0 34px 12px;
  }
  .cmn-block .business__inner .slick-slide,
  .cmn-block .business__inner .btn-card {
    width: 167px;
    background: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .cmn-block .business__inner .slick-slide .ttl,
  .cmn-block .business__inner .btn-card .ttl {
    height: 77px !important;
    text-align: center;
    margin: 8px auto 0;
    font-size: 20px;
  }
  .cmn-block .business__inner .slick-slide .ctn,
  .cmn-block .business__inner .btn-card .ctn {
    background: #fff;
    display: block;
    border-radius: 140px;
    min-height: 278px;
  }
  .cmn-block .business__inner .slick-slide .ctn::after,
  .cmn-block .business__inner .btn-card .ctn::after {
    top: auto;
    bottom: 22px;
    left: 5px;
    right: 0;
    margin: 0 auto;
    width: 29px;
    height: 7px;
    background-position: center;
  }
  .cmn-block .business__inner .slick-slide .img,
  .cmn-block .business__inner .btn-card .img {
    width: 139px;
    height: 139px;
  }
  .cmn-block .business__inner .slick-slide .ja,
  .cmn-block .business__inner .btn-card .ja {
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 22px;
    margin-top: 12px;
  }
}

.cmn-block .case__list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 120px 0 114px;
}

@media (max-width: 767px) {
  .cmn-block .case__list {
    margin: 80px 0 48px;
  }
}

.cmn-block .case__list .item {
  width: calc(50% - 39px);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  padding: 0 40px 29px 0;
  margin-bottom: 32px;
  border-bottom: 1px solid #b6cae2;
  position: relative;
  cursor: pointer;
}

@media only screen and (max-width: 1200px) {
  .cmn-block .case__list .item {
    width: calc(50% - 20px);
    padding: 0 30px 22px 0;
  }
}

@media (max-width: 767px) {
  .cmn-block .case__list .item {
    width: 100%;
    padding: 0 26px 19px 0;
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 1025px) {
  .cmn-block .case__list .item:hover {
    opacity: 1;
  }
  .cmn-block .case__list .item:hover .item__thumb img {
    scale: 1.1;
  }
}

.cmn-block .case__list .item .arw {
  position: absolute;
  width: 28px;
  height: 28px;
  top: calc(50% - 14px);
  transform: translateY(-50%);
  background: #00469d;
  border-radius: 50%;
  right: 0;
}

@media (max-width: 767px) {
  .cmn-block .case__list .item .arw {
    width: 24px;
    height: 24px;
    top: calc(50% - 10px);
  }
}

.cmn-block .case__list .item .arw::after {
  content: "";
  width: 11px;
  height: 4px;
  top: 11px;
  left: 9px;
  position: absolute;
  background: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/alive-theme/assets/img/common/icon/ico-arrow-white.svg") center/100% no-repeat;
}

@media (max-width: 767px) {
  .cmn-block .case__list .item .arw::after {
    top: 10px;
    left: 7px;
  }
}

.cmn-block .case__list .item__thumb {
  width: 130px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}

.cmn-block .case__list .item__thumb:before {
  display: block;
  content: " ";
  width: 100%;
  padding-top: 100%;
}

.cmn-block .case__list .item__thumb > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cmn-block .case__list .item__thumb img {
  transition: 0.3s all ease;
}

@media only screen and (max-width: 1200px) {
  .cmn-block .case__list .item__thumb {
    width: 120px;
  }
}

@media only screen and (max-width: 950px) {
  .cmn-block .case__list .item__thumb {
    width: 100px;
  }
}

@media (max-width: 767px) {
  .cmn-block .case__list .item__thumb {
    width: 95px;
    order: 1;
  }
}

.cmn-block .case__list .item__order {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1em;
  letter-spacing: 0.025em;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  color: #00469d;
  padding-bottom: 18px;
  border-bottom: 1px solid #00469d;
  margin: 0 30px;
  width: 26px;
  white-space: nowrap;
}

@media only screen and (max-width: 1200px) {
  .cmn-block .case__list .item__order {
    margin: 0 20px;
    font-size: 20px;
  }
}

@media only screen and (max-width: 950px) {
  .cmn-block .case__list .item__order {
    margin: 0 16px;
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .cmn-block .case__list .item__order {
    font-size: 18px;
    font-size: 1.8rem;
    margin: 0 10px 0 0px;
    order: 0;
    width: 21px;
    padding-bottom: 12px;
  }
}

.cmn-block .case__list .item__ttl {
  font-size: 19px;
  font-size: 1.9rem;
  line-height: 1.68421em;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #00469d;
  width: calc(297 / 510 * 100%);
}

@media only screen and (max-width: 1200px) {
  .cmn-block .case__list .item__ttl {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.6em;
  }
}

@media only screen and (max-width: 930px) {
  .cmn-block .case__list .item__ttl {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .cmn-block .case__list .item__ttl {
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.52941em;
    order: 2;
    width: calc(167 / 308 * 100%);
    margin-left: 15px;
  }
}

.footer-lp {
  background-color: #fff;
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.4em;
  letter-spacing: 0em;
  font-weight: 400;
  color: #000;
  padding: 14px 20px 17px;
}

@media (max-width: 767px) {
  .footer-lp {
    font-size: 10px;
    padding: 8px 15px 9px;
  }
}

.footer {
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 183px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: calc(100% - 202px);
  background: #f2f2f7;
  pointer-events: none;
}

@media (max-width: 767px) {
  .footer::before {
    top: 127px;
  }
}

.footer .footer-inner {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 9;
  padding: 0 20px;
}

@media (max-width: 767px) {
  .footer .footer-inner {
    max-width: calc(100% - 36px);
    margin: 0 auto;
    padding: 0;
  }
}

.footer .footer-inner .box-ctc__sub {
  font-family: "Barlow", sans-serif;
  text-align: center;
  color: #00469d;
  position: relative;
  padding-bottom: 66px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 0.9375em;
  letter-spacing: 0.03em;
  font-weight: bold;
}

@media (max-width: 767px) {
  .footer .footer-inner .box-ctc__sub {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1em;
    padding-bottom: 46px;
  }
}

.footer .footer-inner .box-ctc__sub::after {
  content: "";
  width: 1px;
  height: 42px;
  background: #00469d;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .footer .footer-inner .box-ctc__sub::after {
    height: 30px;
  }
}

.footer .footer-inner .box-ctc__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 23px;
}

@media (max-width: 767px) {
  .footer .footer-inner .box-ctc__inner {
    flex-wrap: wrap;
    margin-top: 0;
  }
}

.footer .footer-inner .box-ctc__contact {
  background: #fd4e24;
}

.footer .footer-inner .box-ctc__catalog,
.footer .footer-inner .box-ctc__contact {
  max-width: 1100px;
  min-height: 230px;
  width: 100%;
  padding: 57px 70px;
  position: relative;
  cursor: pointer;
}

.footer .footer-inner .box-ctc__catalog a,
.footer .footer-inner .box-ctc__contact a {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .footer .footer-inner .box-ctc__catalog,
  .footer .footer-inner .box-ctc__contact {
    max-width: 100%;
    min-height: auto;
    padding: 29px 33px 40px;
  }
}

.footer .footer-inner .box-ctc__catalog .dots,
.footer .footer-inner .box-ctc__contact .dots {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 67px;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  border: 1px solid #fff;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .footer .footer-inner .box-ctc__catalog .dots,
  .footer .footer-inner .box-ctc__contact .dots {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 767px) {
  .footer .footer-inner .box-ctc__catalog .dots,
  .footer .footer-inner .box-ctc__contact .dots {
    width: 55px;
    height: 55px;
    bottom: 38px;
    right: 29px;
  }
}

.footer .footer-inner .box-ctc__catalog .dots::before,
.footer .footer-inner .box-ctc__contact .dots::before {
  content: "";
  position: absolute;
  top: 47%;
  left: 20px;
  right: 0;
  width: 24px;
  height: 6px;
  background: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/alive-theme/assets/img/common/icon/ico-arrow-white-long.svg") no-repeat;
  background-size: contain;
  transition: all 0.3s ease-in-out;
  transform: translate(-50%, 0%);
  margin: 0 auto;
}

@media (max-width: 767px) {
  .footer .footer-inner .box-ctc__catalog .dots::before,
  .footer .footer-inner .box-ctc__contact .dots::before {
    width: 16px;
    height: 4px;
    background: url("//20348057.fs1.hubspotusercontent-na1.net/hubfs/20348057/raw_assets/public/alive-theme/assets/img/common/icon/ico-arrow-white.svg") no-repeat;
    background-size: contain;
  }
}

.footer .footer-inner .box-ctc__catalog .en,
.footer .footer-inner .box-ctc__contact .en {
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-size: 75px;
  font-size: 7.5rem;
  line-height: 1em;
  letter-spacing: 0.03em;
  font-weight: 700;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .footer .footer-inner .box-ctc__catalog .en,
  .footer .footer-inner .box-ctc__contact .en {
    font-size: 60px;
    font-size: 6rem;
    line-height: 1em;
    letter-spacing: 0em;
  }
}

@media (max-width: 767px) {
  .footer .footer-inner .box-ctc__catalog .en,
  .footer .footer-inner .box-ctc__contact .en {
    font-size: 34px;
    letter-spacing: 0.03em;
    line-height: 39px;
  }
}

.footer .footer-inner .box-ctc__catalog .ja,
.footer .footer-inner .box-ctc__contact .ja {
  color: #fff;
  margin-top: 16px;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1em;
  letter-spacing: 0.03em;
  font-weight: 700;
}

@media (max-width: 767px) {
  .footer .footer-inner .box-ctc__catalog .ja,
  .footer .footer-inner .box-ctc__contact .ja {
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 11px;
    margin-top: 9px;
  }
}

@media only screen and (min-width: 1025px) {
  .footer .footer-inner .box-ctc__catalog:hover:hover .dots,
  .footer .footer-inner .box-ctc__contact:hover:hover .dots {
    right: 30px;
  }
}

.footer .footer-inner .box-web {
  position: relative;
  padding: 72px 0 97px;
  display: flex;
  align-items: flex-start;
}

@media (max-width: 767px) {
  .footer .footer-inner .box-web {
    padding: 39px 0 54px;
    display: block;
  }
}

.footer .footer-inner .box-web__sub {
  color: #00469d;
  font-family: "Barlow", sans-serif;
  margin-top: 3px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1em;
  letter-spacing: 0.03em;
  font-weight: 700;
}

@media (max-width: 767px) {
  .footer .footer-inner .box-web__sub {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1em;
    margin-top: 0;
  }
}

.footer .footer-inner .box-web__inner {
  max-width: 845px;
  width: 100%;
  margin: 0 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .footer .footer-inner .box-web__inner {
    margin: 19px auto 0;
  }
  .footer .footer-inner .box-web__inner img {
    width: 100%;
  }
}

.footer .footer-inner .box-web__item {
  max-width: 400px;
  width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .footer .footer-inner .box-web__item {
    max-width: 49%;
  }
}

@media (max-width: 767px) {
  .footer .footer-inner .box-web__item {
    max-width: 48.6%;
  }
}

.footer .footer-inner .box-web__item .img img {
  width: 100%;
}

.footer .footer-inner .box-web__item .ttl {
  color: #222;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2em;
  letter-spacing: 0.04em;
  font-weight: 700;
}

@media (max-width: 767px) {
  .footer .footer-inner .box-web__item .ttl {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.footer .footer-inner .box-web__item .txt {
  color: #333;
  margin-top: 2px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.66667em;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.footer .footer-inner .box-web__item .ctn {
  padding-top: 18px;
}

@media (max-width: 767px) {
  .footer .footer-inner .box-web__item .ctn {
    padding-top: 8px;
  }
}

.footer .footer-box {
  position: relative;
  z-index: 9;
  padding: 97px 0 22px;
  background: #fff;
}

@media (max-width: 767px) {
  .footer .footer-box {
    padding: 44px 0 35px;
  }
}

.footer .footer-box .child span {
  padding-left: 12px;
  position: relative;
}

.footer .footer-box .child span::after {
  content: "-";
  position: absolute;
  left: 0;
  top: -2px;
}

.footer .footer-box__inner {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 9;
  padding: 0 20px;
}

@media (max-width: 767px) {
  .footer .footer-box__inner {
    padding: 0 19px;
  }
}

.footer .footer-box__ctn {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

@media (max-width: 767px) {
  .footer .footer-box__ctn {
    display: block;
  }
}

@media (max-width: 767px) {
  .footer .footer-box__logo {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .footer .footer-box__logo img {
    width: 250px;
    height: 52px;
  }
}

@media (max-width: 767px) {
  .footer .footer-box__logo img {
    width: 255px;
    height: 53px;
  }
}

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

@media (min-width: 768px) {
  .footer .footer-box__address {
    padding: 13px 0 0 75px;
  }
}

@media (max-width: 767px) {
  .footer .footer-box__address {
    margin: 41px auto 0;
  }
}

.footer .footer-box__address p,
.footer .footer-box__address a {
  color: #00469d;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 2em;
  letter-spacing: 0.04em;
  font-weight: 400;
}

@media (max-width: 767px) {
  .footer .footer-box__address p,
  .footer .footer-box__address a {
    line-height: 22px;
  }
}

.footer .footer-box__lst {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 62px auto 48px;
  text-align: left;
}

@media (max-width: 767px) {
  .footer .footer-box__lst {
    margin: 25px auto 0;
    display: block;
  }
}

@media (min-width: 768px) {
  .footer .footer-box__lst ul:nth-child(1) {
    width: 25.4%;
  }
  .footer .footer-box__lst ul:nth-child(1) li {
    margin-bottom: 26px;
  }
  .footer .footer-box__lst ul:nth-child(2) {
    width: 41%;
  }
  .footer .footer-box__lst ul:nth-child(2) li {
    margin-bottom: 13px;
  }
  .footer .footer-box__lst ul:nth-child(2) li:nth-child(1) {
    margin-bottom: 23px;
  }
  .footer .footer-box__lst ul:nth-child(3) {
    width: 16%;
  }
  .footer .footer-box__lst ul:nth-child(3) li {
    margin-bottom: 13px;
  }
  .footer .footer-box__lst ul:nth-child(3) li:nth-child(1) {
    margin-bottom: 23px;
  }
  .footer .footer-box__lst ul:nth-child(4) {
    width: 17.6%;
  }
  .footer .footer-box__lst ul:nth-child(4) li {
    margin-bottom: 13px;
  }
  .footer .footer-box__lst ul:nth-child(4) li:nth-child(1) {
    margin-bottom: 23px;
  }
}

@media (max-width: 767px) {
  .footer .footer-box__lst ul a {
    display: block;
  }
  .footer .footer-box__lst ul li.h35 a {
    height: 51px;
  }
  .footer .footer-box__lst ul:nth-child(1) li a {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #b6cae2;
  }
  .footer .footer-box__lst ul:nth-child(2) li:first-child strong {
    padding-bottom: 11px;
    margin-bottom: 11px;
    border-bottom: 1px solid #b6cae2;
  }
  .footer .footer-box__lst ul:nth-child(2) li a {
    padding-left: 20px;
    padding-bottom: 10px;
    margin-bottom: 12px;
    border-bottom: 1px dotted #b6cae2;
  }
  .footer .footer-box__lst ul:nth-child(2) li:last-child a {
    border-bottom: 1px solid #b6cae2;
  }
  .footer .footer-box__lst ul:nth-child(2) li span {
    line-height: 20px;
  }
  .footer .footer-box__lst ul:nth-child(3) {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .footer .footer-box__lst ul:nth-child(3) li {
    width: 54%;
  }
  .footer .footer-box__lst ul:nth-child(3) li:first-child {
    width: 100%;
  }
  .footer .footer-box__lst ul:nth-child(3) li:first-child strong {
    padding-bottom: 11px;
    margin-bottom: 12px;
    border-bottom: 1px dotted #b6cae2;
  }
  .footer .footer-box__lst ul:nth-child(3) li:nth-child(2),
  .footer .footer-box__lst ul:nth-child(3) li:nth-child(4) {
    width: 46%;
  }
  .footer .footer-box__lst ul:nth-child(3) li:nth-child(5) {
    width: 54%;
  }
  .footer .footer-box__lst ul:nth-child(3) li:nth-child(6) {
    width: 100%;
  }
  .footer .footer-box__lst ul:nth-child(3) li:nth-child(6) a {
    border-bottom: 1px solid #b6cae2;
  }
  .footer .footer-box__lst ul:nth-child(3) li a {
    padding-left: 20px;
    padding-bottom: 17px;
    margin-bottom: 13px;
    border-bottom: 1px dotted #b6cae2;
  }
  .footer .footer-box__lst ul:nth-child(3) li span {
    line-height: 20px;
  }
  .footer .footer-box__lst ul:nth-child(4) {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: -4px;
  }
  .footer .footer-box__lst ul:nth-child(4) li {
    width: 50%;
  }
  .footer .footer-box__lst ul:nth-child(4) li:first-child {
    width: 100%;
  }
  .footer .footer-box__lst ul:nth-child(4) li:first-child strong {
    padding-bottom: 11px;
    margin-bottom: 12px;
    border-bottom: 1px dotted #b6cae2;
  }
  .footer .footer-box__lst ul:nth-child(4) li:nth-child(4) a,
  .footer .footer-box__lst ul:nth-child(4) li:nth-child(5) a {
    min-height: 51px;
    padding-bottom: 9px;
    margin-bottom: 11px;
  }
  .footer .footer-box__lst ul:nth-child(4) li:nth-child(2),
  .footer .footer-box__lst ul:nth-child(4) li:nth-child(4),
  .footer .footer-box__lst ul:nth-child(4) li:nth-child(6) {
    width: 52%;
  }
  .footer .footer-box__lst ul:nth-child(4) li:nth-child(3) a,
  .footer .footer-box__lst ul:nth-child(4) li:nth-child(7) a {
    min-height: 37px;
  }
  .footer .footer-box__lst ul:nth-child(4) li:nth-child(3),
  .footer .footer-box__lst ul:nth-child(4) li:nth-child(5),
  .footer .footer-box__lst ul:nth-child(4) li:nth-child(7) {
    width: 48%;
  }
  .footer .footer-box__lst ul:nth-child(4) li:nth-child(3) a,
  .footer .footer-box__lst ul:nth-child(4) li:nth-child(5) a,
  .footer .footer-box__lst ul:nth-child(4) li:nth-child(7) a {
    padding: 0;
  }
  .footer .footer-box__lst ul:nth-child(4) li:nth-child(6) a,
  .footer .footer-box__lst ul:nth-child(4) li:nth-child(7) a {
    border-bottom: 1px solid #b6cae2;
  }
  .footer .footer-box__lst ul:nth-child(4) li a {
    padding-left: 20px;
    padding-bottom: 16px;
    margin-bottom: 11px;
    border-bottom: 1px dotted #b6cae2;
  }
  .footer .footer-box__lst ul:nth-child(4) li span {
    line-height: 20px;
  }
}

.footer .footer-box__lst strong {
  color: #00469d;
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.57143em;
  letter-spacing: 0.04em;
  font-weight: bold;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .footer .footer-box__lst strong {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .footer .footer-box__lst strong {
    line-height: 24px;
  }
}

.footer .footer-box__lst span {
  color: #00469d;
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.42857em;
  letter-spacing: 0.04em;
  font-weight: 400;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .footer .footer-box__lst span {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .footer .footer-box__lst span {
    line-height: 24px;
  }
}

@media only screen and (min-width: 280px) and (max-width: 374px) {
  .footer .footer-box__lst span {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.footer .footer-box__info {
  display: inline-flex;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.71429em;
  letter-spacing: 0.04em;
  font-weight: 400;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .footer .footer-box__info {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  .footer .footer-box__info {
    margin: 27px auto 0;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.footer .footer-box__info a {
  display: inline-block;
}

.footer .footer-box__info em {
  font-style: normal;
  margin: 0 5px;
}

.footer .footer-box__info span {
  color: #00469d;
}

.footer .footer-copy {
  text-align: right;
  color: #00469d;
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 0 42px 37px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.66667em;
  letter-spacing: 0.04em;
  font-weight: 400;
}

@media (max-width: 767px) {
  .footer .footer-copy {
    font-size: 10px;
    font-size: 1rem;
    text-align: center;
    padding-bottom: 110px;
  }
}

.header-lp {
  position: absolute;
  width: 100%;
  min-height: 82px;
  left: 0;
  top: 0;
  z-index: 9999;
}

@media (max-width: 767px) {
  .header-lp {
    min-height: 60px;
  }
}

.header-lp__inner {
  display: flex;
  justify-content: space-between;
  min-height: 82px;
}

@media (max-width: 767px) {
  .header-lp__inner {
    min-height: 60px;
  }
}

.header-lp__inner .logo {
  display: block;
  padding-left: 26px;
  padding-top: 25px;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .header-lp__inner .logo {
    padding-top: 10px;
  }
}

@media (max-width: 767px) {
  .header-lp__inner .logo {
    padding-left: 16px;
    padding-top: 13px;
  }
  .header-lp__inner .logo img {
    width: 172px;
  }
}

.header-lp__inner .btn-contact {
  display: flex;
  min-width: 228px;
  align-items: center;
  justify-content: center;
  background-color: #00469d;
  border-bottom-left-radius: 20px;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1em;
  letter-spacing: 0em;
  font-weight: bold;
  padding: 10px 10px 11px;
  color: #fff;
  position: fixed;
  right: 0;
  top: 0;
  min-height: 82px;
  transition: background 0.3s ease-in-out;
  cursor: pointer;
}

@media (max-width: 767px) {
  .header-lp__inner .btn-contact {
    width: calc((170 / 375) * 100%);
    max-width: 170px;
    font-size: 15px;
    min-height: 60px;
    min-width: unset;
    padding-top: 8px;
  }
}

.header-lp__inner .btn-contact span {
  padding-left: 30px;
  background-image: url("data:image/svg+xml,%3Csvg id='Group_19' data-name='Group 19' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='18' height='14.274' viewBox='0 0 18 14.274'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_29' data-name='Rectangle 29' width='18' height='14.274' fill='%23fff'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Group_20' data-name='Group 20' clip-path='url(%23clip-path)'%3E%3Cpath id='Path_3' data-name='Path 3' d='M2.741,14.274a2.748,2.748,0,0,1-1.749-.63c-.066-.055-.127-.111-.189-.173a2.674,2.674,0,0,1-.577-.851A2.711,2.711,0,0,1,0,11.533V2.741a2.667,2.667,0,0,1,.053-.533,2.712,2.712,0,0,1,.563-1.2A2.444,2.444,0,0,1,.8.8,2.723,2.723,0,0,1,2.741,0H15.259A2.753,2.753,0,0,1,17.2.8a2.393,2.393,0,0,1,.187.207,2.741,2.741,0,0,1,.564,1.2A2.814,2.814,0,0,1,18,2.742v8.791a2.707,2.707,0,0,1-.2,1.02v0l-.028.066a2.724,2.724,0,0,1-.579.849,2.417,2.417,0,0,1-.19.172,2.728,2.728,0,0,1-1.748.631Zm12.372-1.906-4.279-3.73-.245.213a2.418,2.418,0,0,1-3.178,0l-.245-.213-4.28,3.73Zm.98-1.525V4.051L12.2,7.449Zm-14.188,0L5.8,7.447l-3.895-3.4ZM8.59,7.5A.62.62,0,0,0,9,7.651.613.613,0,0,0,9.41,7.5l6.28-5.473a.827.827,0,0,0-.431-.119H2.741a.817.817,0,0,0-.428.117Z' transform='translate(0 0)' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: left top 3px;
}

@media (max-width: 767px) {
  .header-lp__inner .btn-contact span {
    padding: 2px 0 2px 32px;
    background-position: left 3px top 3px;
  }
}

@media only screen and (min-width: 1025px) {
  .header-lp__inner .btn-contact:hover:hover {
    opacity: 1;
    background-color: #0065e3;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  padding: 17px 16px 17px 24px;
  transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header {
    padding: 15px 15px;
  }
}

@media (max-width: 767px) {
  .header {
    height: 70px;
    padding: 4px 0 4px 14px;
  }
}

.header #logo img {
  width: 226px;
  height: 47px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header #logo img {
    width: 180px;
    height: auto;
  }
}

@media (max-width: 767px) {
  .header #logo img {
    width: 190px;
    height: 40px;
  }
}

.header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .header-nav {
  display: flex;
  align-items: center;
  margin: 0 0 0 auto;
  justify-content: flex-end;
  width: calc(100% - 300px);
}

@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  .header .header-nav {
    width: calc(100% - 250px);
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header .header-nav {
    width: calc(100% - 180px);
  }
}

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

.header .header-menu {
  overflow: scroll;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 99999;
  right: -100%;
  padding: 62px 0 150px;
  background: #f2f2f7;
  transition: all 0.3s ease-in-out;
}

@media (min-width: 768px) {
  .header .header-menu {
    display: none;
  }
}

.header .header-menu__link {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px 11px;
}

.header .header-menu__link.mt {
  padding-top: 20px;
  margin-bottom: 10px;
}

.header .header-menu__link li {
  width: 48.5%;
  height: 48px;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 7px;
}

.header .header-menu__link li.h60 {
  height: 61px;
}

.header .header-menu__link li.full {
  width: 100%;
}

.header .header-menu__link li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 13px 19px;
}

.header .header-menu__link li a span {
  color: #00469d;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.28571em;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.header .header-menu__inner {
  background: #e4e4ef;
  padding: 17px 18px 13px;
}

.header .header-menu__txt {
  text-align: center;
  color: #00469d;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.2em;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.header .header-menu__sub {
  margin-top: 9px;
}

.header .header-menu__sub li {
  margin-bottom: 6px;
  display: block;
}

.header .header-menu__sub li.br30 a {
  border-radius: 30px;
}

.header .header-menu__sub li a {
  display: block;
  border-radius: 24px;
  background: #fff;
  color: #00469d;
  padding: 15px 21px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.28571em;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.header .header-menu .link-href {
  text-align: center;
  color: #00469d;
  margin: 29px auto 0;
}

.header .header-menu .link-href span {
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 24px;
  text-align: center;
  color: #00469d;
}

.header .main-menu {
  display: flex;
  align-items: flex-start;
  margin-right: 32px;
}

@media only screen and (min-width: 1024px) and (max-width: 1200px) {
  .header .main-menu {
    margin-right: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header .main-menu {
    margin-right: 10px;
  }
}

@media (min-width: 768px) {
  .header .main-menu li {
    margin-right: 31px;
  }
}

@media only screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1024px) {
  .header .main-menu li {
    margin-right: 10px;
  }
}

@media (min-width: 768px) {
  .header .main-menu li:last-child {
    margin-right: 0;
  }
}

.header .main-menu li span,
.header .main-menu li span.none a {
  cursor: pointer;
  display: inline-block;
  color: #00469d;
  white-space: nowrap;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.2em;
  letter-spacing: 0em;
  font-weight: 500;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header .main-menu li span,
  .header .main-menu li span.none a {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .header .main-menu li span.none a {
    pointer-events: none;
  }
}

.header .main-menu li.dropdown {
  cursor: pointer;
  position: relative;
}

.header .main-menu li.dropdown::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  right: 0;
  width: 500%;
  height: 120px;
  pointer-events: none;
  transform: translateX(-50%);
}

.header .main-menu li.dropdown .submenu {
  top: 78px;
  left: 95%;
  right: 0;
  opacity: 0;
  display: flex;
  visibility: hidden;
  pointer-events: none;
  z-index: 100;
  width: 1100px;
  background: #fff;
  border-radius: 80px;
  position: absolute;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 27px 44px;
  transform: translateX(-57%);
  transition: all 0.3s ease-in-out;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .header .main-menu li.dropdown .submenu {
    transition: none;
    transform: scale(0.65) translateX(-88%) translateY(-44%);
  }
}

.header .main-menu li.dropdown .submenu li {
  width: calc(100% / 3 - 22px);
  white-space: nowrap;
  cursor: pointer;
}

.header .main-menu li.dropdown .submenu li:nth-child(3n + 3) {
  margin-right: 0;
}

.header .main-menu li.dropdown .submenu li:nth-child(1),
.header .main-menu li.dropdown .submenu li:nth-child(2),
.header .main-menu li.dropdown .submenu li:nth-child(3) {
  padding-bottom: 17px;
  margin-bottom: 20px;
  border-bottom: 1px solid #b6cae2;
}

.header .main-menu li.dropdown .submenu li a {
  opacity: 1;
  display: flex;
  align-items: center;
}

@media only screen and (min-width: 1025px) {
  .header .main-menu li.dropdown .submenu li:hover:hover .img img {
    transform: scale(1.1);
  }
}

.header .main-menu li.dropdown .submenu .img {
  width: 95px;
  height: 95px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 17px 0 16px;
  transform: translate3d(0, 0, 0);
}

.header .main-menu li.dropdown .submenu .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}

.header .main-menu li.dropdown .submenu .num {
  font-family: "Barlow", sans-serif;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 22px;
  text-align: left;
  color: #00469d;
  margin-top: 7px;
}

.header .main-menu li.dropdown .submenu .txt {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 22px;
  text-align: left;
  color: #00469d;
}

.header .main-menu li.dropdown .submenu.mdf1 {
  width: 860px;
  top: 81px;
  left: 50%;
  transform: translateX(-60%);
  padding: 29px 22px 29px 18px;
}

.header .main-menu li.dropdown .submenu.mdf1 li {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
  display: block;
  width: calc(100% / 5);
  margin: 0 auto;
}

.header .main-menu li.dropdown .submenu.mdf1 li a {
  display: block;
}

.header .main-menu li.dropdown .submenu.mdf1 li .img {
  width: 135px;
  height: 135px;
}

.header .main-menu li.dropdown .submenu.mdf1 li .txt {
  display: block;
  text-align: center;
  margin-top: 5px;
  padding-left: 8px;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .header .main-menu li.dropdown .submenu.mdf1 {
    transform: scale(0.65) translateX(-88%) translateY(-44%);
  }
}

.header .main-menu li.dropdown .submenu.mdf2 {
  top: 81px;
  left: 45%;
  padding: 24px 44px 32px;
  transform: translateX(-72%);
}

.header .main-menu li.dropdown .submenu.mdf2 li {
  width: calc(100% / 3 - 26px);
}

.header .main-menu li.dropdown .submenu.mdf2 li .img {
  margin-left: 0;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .header .main-menu li.dropdown .submenu.mdf2 {
    transform: scale(0.65) translateX(-104%) translateY(-44%);
  }
  .header .main-menu li.dropdown .submenu.mdf2 li {
    width: calc(100% / 3 - 21px);
  }
}

@media (min-width: 768px) {
  .header .main-menu li.dropdown:hover::after {
    pointer-events: visible;
  }
  .header .main-menu li.dropdown:hover > .submenu {
    visibility: visible;
    pointer-events: visible;
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .header .main-menu {
    margin: 0 auto;
    display: block;
  }
}

.header .btn-catalog {
  max-width: 178px;
  width: 100%;
  height: 52px;
  border-radius: 26px;
  background: #00469d;
  border: 1px solid #00469d;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header .btn-catalog {
    max-width: 86px;
    height: 42px;
  }
}

.header .btn-catalog span {
  color: #fff;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.26667em;
  letter-spacing: 0em;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header .btn-catalog span {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

@media only screen and (min-width: 1025px) {
  .header .btn-catalog:hover:hover {
    opacity: 1;
    background: #fff;
  }
  .header .btn-catalog:hover:hover span {
    color: #00469d;
  }
}

@media (max-width: 767px) {
  .header .btn-catalog {
    width: 100%;
    max-width: calc(100% - 34px);
    height: 61px;
    border-radius: 30px;
    border: none;
    background: #fd4e24;
    margin: 0 auto;
  }
  .header .btn-catalog span {
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 18px;
  }
}

.header .btn-contact {
  max-width: 178px;
  width: 100%;
  height: 52px;
  background: #fff;
  border-radius: 26px;
  border: 1px solid #00469d;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header .btn-contact {
    max-width: 86px;
    height: 42px;
  }
}

.header .btn-contact span {
  color: #00469d;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.26667em;
  letter-spacing: 0em;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header .btn-contact span {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

@media only screen and (min-width: 1025px) {
  .header .btn-contact:hover:hover {
    opacity: 1;
    background: #00469d;
  }
  .header .btn-contact:hover:hover span {
    color: #fff;
  }
}

@media (max-width: 767px) {
  .header .btn-contact {
    width: 100%;
    max-width: calc(100% - 34px);
    height: 61px;
    border-radius: 30px;
    border: none;
    background: #00469d;
    margin: 10px auto 0;
  }
  .header .btn-contact span {
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.04em;
    line-height: 18px;
  }
}

.header .hamberger {
  width: 80px;
  height: 62px;
  padding: 24px 21px;
  display: none;
  z-index: 99999;
}

.header .hamberger::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 62px;
  width: 100%;
  background: #f2f2f7;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .header .hamberger {
    display: block;
  }
}

.header .hamberger span {
  display: block;
  width: 38px;
  height: 1px;
  background: #00469d;
  margin: 0 auto 5px;
  transition: all 0.2s ease-in-out;
}

.header .hamberger span:last-child {
  margin-bottom: 0;
}

.header .hamberger.active span:nth-child(1) {
  transform: rotate(45deg) translateX(5px) translateY(4px);
}

.header .hamberger.active span:nth-child(2) {
  width: 0;
}

.header .hamberger.active span:nth-child(3) {
  transform: rotate(-45deg) translateX(4px) translateY(-4px);
}

.header .close {
  margin: 55px auto 0;
}

.header .close span {
  display: block;
  width: 35px;
  height: 1px;
  background: #00469d;
  margin: 0 auto 5px;
  transition: all 0.2s ease-in-out;
}

.header .close span:last-child {
  margin-bottom: 0;
}

.header .close span:nth-child(1) {
  transform: rotate(45deg) translateX(5px) translateY(4px);
}

.header .close span:nth-child(2) {
  width: 0;
}

.header .close span:nth-child(3) {
  transform: rotate(-45deg) translateX(4px) translateY(-4px);
}

.fixHeader .header {
  background: #fff;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.layerOn {
  overflow: hidden;
}

.layerOn .header-menu {
  right: 0;
}

.layerOn .hamberger::before {
  opacity: 1;
}

.menu-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.menu-cta__contact {
  width: 100%;
  height: 60px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 14px 0 10px;
  transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .menu-cta__contact {
    max-width: 86px;
    height: 42px;
  }
}

.menu-cta__contact span {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1em;
  letter-spacing: 0em;
  font-weight: 600;
  display: table;
  text-align: center;
  padding-left: 30px;
  margin: 0 auto;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.menu-cta__contact span::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 0;
  width: 19px;
  height: 13px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='18' height='13' viewBox='0 0 18 13'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rectangle_25944' data-name='Rectangle 25944' width='18' height='13' transform='translate(0.217 0)' fill='none' stroke='%23fff' stroke-width='1'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Group_131001' data-name='Group 131001' transform='translate(-0.217 -0.23)'%3E%3Cg id='Group_131000' data-name='Group 131000' transform='translate(0 0.23)' clip-path='url(%23clip-path)'%3E%3Cpath id='Path_115357' data-name='Path 115357' d='M18.6,5.495v7.864H2V2H18.6L10.3,8.553,2,2' transform='translate(-1.126 -1.373)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-size: cover;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .menu-cta__contact span {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.menu-cta__catalog {
  background: #fd4e24;
}

.menu-cta__catalog span {
  color: #fff;
}

.menu-cta__contact {
  background: #00469d;
}

.menu-cta__contact span {
  color: #fff;
}

/*# sourceMappingURL=maps/styles.min.css.map */