@charset "UTF-8";
/* ---------------------------------------
基本情報
-----------------------------------------*/
html {
  overflow-y: scroll;
}
@media screen and (min-width: 921px) {
  html {
    font-size: 41.67%;
  }
  html.safari.mac {
    font-size: 6.67px;
  }
}
@media screen and (max-width: 920px) {
  html {
    font-size: 1.3333333333vw;
  }
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
time,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
figure,
figcaption,
form,
input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  letter-spacing: 0;
  list-style-type: none;
  font-style: normal;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  font-feature-settings: "palt";
  word-break: break-all;
  line-break: strict;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  resize: none;
  outline: none;
  background: none;
}

select::-ms-expand {
  display: none;
}

button:hover {
  cursor: pointer;
}

img,
object {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  cursor: pointer;
}

.min {
  font-family: "a-otf-ryumin-pr6n", serif;
  font-weight: 300;
  font-style: normal;
}

/* responsive
--------------------------------*/
@media screen and (min-width: 921px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 920px) {
  .pc {
    display: none !important;
  }
}
/* base
--------------------------------*/
body {
  color: #404040;
  font-size: 1rem;
  text-align: left;
}

main {
  display: block;
  overflow: hidden;
}

section {
  position: relative;
}

.wrap {
  position: relative;
  width: 68rem;
  margin: 0 auto;
}

.l-inner {
  padding: 0 5rem;
  box-sizing: border-box;
}
@media screen and (min-width: 921px) {
  .l-inner {
    padding: 0 30px;
  }
}

p,
th,
td,
dt,
dd,
li,
input,
button,
textarea {
  font-size: 3rem;
  line-height: 2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

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

.left {
  float: left;
}

.right {
  float: right;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.tac {
  text-align: center;
}

.center {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.bold,
strong {
  font-weight: bold;
  font-weight: 700;
}

.fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 921px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
  }
  a {
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
  a:hover {
    opacity: 0.6;
  }
  .img-hover img {
    transition: 0.3s;
  }
  .img-hover:hover {
    opacity: 1;
    text-decoration: none;
  }
  .img-hover:hover img {
    transform: scale(1.1);
  }
}
.section {
  position: relative;
}
.section .anchor {
  position: absolute; /* レイアウトを崩さない */
  top: 0;
  width: 1px;
  height: 1px;
  pointer-events: none; /* クリックなどを邪魔しない */
}

/* ---------------------------------------
  SP header
-----------------------------------------*/
.l-header {
  position: fixed;
  z-index: 100;
  width: 100%;
  left: 0;
  top: 0;
  padding: 4.7rem 4.1rem;
  z-index: 999;
}
.l-header .h-logo {
  position: relative;
  width: 29.7rem;
  z-index: 999;
}
.l-header .h-logo .white,
.l-header .h-logo .color,
.l-header .h-logo .color02 {
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.4s;
}
.l-header .h-logo .white {
  opacity: 1;
}
.l-header .h-logo .color {
  opacity: 0;
}
.l-header .h-logo .color02 {
  opacity: 0;
}
.l-header .drbtn {
  position: fixed;
  top: 7.7rem;
  right: 6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: 0.3s opacity;
  flex-wrap: wrap;
  gap: 0.8rem;
  z-index: 999;
}
.l-header .drbtn .menu-txt {
  color: #FFF;
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 160.224%;
  letter-spacing: 2px;
  margin-right: 1.8rem;
}
.l-header .drbtn .menu-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 2.6rem;
  height: 1.2rem;
}
.l-header .drbtn .menu-btn .border {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  background: #FFF;
  transition: 0.4s;
}
.l-header .drbtn.is-action .menu-btn .border:nth-of-type(1) {
  bottom: -0.4rem;
  transform: rotate(45deg);
}
.l-header .drbtn.is-action .menu-btn .border:nth-of-type(2) {
  top: -0.6rem;
  transform: rotate(-45deg);
}
.l-header .drawer {
  max-height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 22.4rem 5rem 0 5rem;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: 0.4s opacity;
}
.l-header .drawer.is-action {
  max-width: 100%;
  position: fixed;
  opacity: 1;
  pointer-events: all;
  z-index: 5;
  transition: 0.4s opacity;
  background: #404040;
}
.l-header .drawer .l-header__menu {
  max-height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none; /* IE, Edge 対応 */
  scrollbar-width: none; /* Firefox 対応 */
  width: 100%;
  display: block;
  padding-bottom: 9.5rem;
  box-sizing: border-box;
}
.l-header .drawer .l-header__menu::-webkit-scrollbar { /* Chrome, Safari 対応 */
  display: none;
}
.l-header .drawer .l-header__nav .item {
  position: relative;
  padding-top: 1.2rem;
  padding-bottom: 2rem;
  box-sizing: border-box;
}
.l-header .drawer .l-header__nav .item:after {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -0.6rem;
  display: block;
  content: "";
  background: url("../img/nav-arrow_w.svg") no-repeat center center;
  background-size: 100% auto;
  width: 1.8rem;
  height: 2.7rem;
}
.l-header .drawer .l-header__nav .item .item__inn {
  display: block;
  color: #fff;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 216.243%;
  letter-spacing: 1.8px;
}
.l-header .drawer .nav-copy {
  margin-top: 8rem;
}
.l-header .drawer .nav-copy .name {
  text-align: center;
  font-size: 3.2rem;
  color: #fff;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.3px;
  margin-bottom: 3.3rem;
}
.l-header .drawer .nav-copy .h-info {
  margin-bottom: 4rem;
}
.l-header .drawer .nav-copy .h-info .txt {
  text-align: center;
  font-size: 2.6rem;
  color: #fff;
  font-weight: 400;
  line-height: 192.308%;
  letter-spacing: 1.3px;
}
.l-header .drawer .nav-copy .copyright {
  margin: 7rem0 0 0;
  text-align: center;
  font-weight: 400;
  line-height: 241.667%;
  font-size: 2.4rem;
  letter-spacing: 1.2px;
  color: #fff;
}
.l-header .drawer .nav-copy .copyright-txt {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  line-height: 200%; /* 40px */
  letter-spacing: 1px;
  color: #fff;
}
.l-header .drawer .nav-copy .copyright-txt a {
  color: #fff;
}
.l-header.is-color .h-logo .white {
  opacity: 0;
}
.l-header.is-color .h-logo .color {
  opacity: 0;
}
.l-header.is-color .h-logo .color02 {
  opacity: 1;
}
.l-header.is-color .drbtn .menu-txt {
  color: #404040;
}
.l-header.is-color .drbtn .menu-btn .border {
  background: #404040;
}
.l-header.is-open .h-logo .white {
  opacity: 0;
}
.l-header.is-open .h-logo .color {
  opacity: 1;
}

/* ---------------------------------------
  contents_wrap
-----------------------------------------*/
.contents_wrap {
  position: relative;
  width: 100%;
}

.contents {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 921px) {
  .bg_main {
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    box-sizing: border-box;
  }
  .bg_main .pc-slider {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100dvh;
  }
  .bg_main .pc-slider .slick-item {
    height: 100dvh;
  }
  .bg_main .pc-slider .slick-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .contents {
    max-width: 440px;
  }
  .cnt_l,
  .cnt_r {
    width: calc((100% - 440px) / 2);
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
  }
  .cnt_l {
    left: 0;
    overflow: hidden;
    box-sizing: border-box;
    /* スクロールダウンの位置 */
    /* 線のアニメーション部分 */
    /* 線の背景色 */
  }
  .cnt_l .pc-logo {
    position: relative;
    width: 191px;
    margin: 35px auto 0 50px;
    z-index: 2;
  }
  .cnt_l .pc-ttl {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
    width: 190px;
    z-index: 2;
    opacity: 0;
    transition: 1s;
  }
  .cnt_l .pc-ttl.is-active {
    opacity: 1;
  }
  .cnt_l .scroll {
    position: absolute;
    left: 100px;
    bottom: 187px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row-reverse;
    gap: 0 1.4rem;
    z-index: 3;
  }
  .cnt_l .scroll .txt {
    font-size: 14px;
    line-height: 18.71px; /* 133.644% */
    letter-spacing: 1.12px;
    color: #FFF;
    font-weight: 500; /* Safari用 */
    writing-mode: vertical-rl; /* 基本の縦書き指定 */
  }
  .cnt_l .scroll-bar {
    position: relative;
    writing-mode: vertical-rl;
  }
  .cnt_l .scroll-bar::before {
    animation: scroll 2s infinite;
    background-color: #01B0F1;
    content: "";
    bottom: -180px;
    height: 180px;
    width: 2px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    z-index: 2;
  }
  .cnt_l .scroll-bar::after {
    background-color: rgba(255, 255, 255, 0.4);
    content: "";
    bottom: -180px;
    height: 180px;
    width: 2px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
  }
  .cnt_r {
    right: 0;
    overflow: hidden;
    box-sizing: border-box;
  }
  .cnt_r .pc-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 75px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    z-index: 2;
  }
  .cnt_r .pc-nav ul li {
    position: relative;
    line-height: 1;
  }
  .cnt_r .pc-nav ul li + li {
    margin-top: 9px;
  }
  .cnt_r .pc-nav ul li a {
    position: relative;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 206.25%;
    letter-spacing: 0.8px;
    padding-left: 17px;
  }
  .cnt_r .pc-nav ul li a span {
    border-bottom: 1px solid transparent;
  }
  .cnt_r .pc-nav ul li a:before {
    position: absolute;
    left: 0;
    top: 6px;
    display: block;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: #01B0F1;
    opacity: 0;
    box-sizing: border-box;
    transition: 0.1s;
  }
  .cnt_r .pc-nav ul li a:hover, .cnt_r .pc-nav ul li a.active {
    opacity: 1;
  }
  .cnt_r .pc-nav ul li a:hover span, .cnt_r .pc-nav ul li a.active span {
    border-bottom: 1px solid #fff;
  }
  .cnt_r .pc-nav ul li a:hover:before, .cnt_r .pc-nav ul li a.active:before {
    opacity: 1;
    background: #01B0F1;
  }
}
@media screen and (min-width: 921px) and (max-width: 1366px) {
  .cnt_l {
    /* スクロールダウンの位置 */
    /* 線のアニメーション部分 */
    /* 線の背景色 */
  }
  .cnt_l .pc-logo {
    width: 13.9824304539vw;
    margin: 2.5622254758vw auto 0 3.6603221083vw;
  }
  .cnt_l .pc-ttl {
    width: 13.9092240117vw;
  }
  .cnt_l .scroll {
    position: absolute;
    left: 7.3206442167vw;
    bottom: 13.6896046852vw;
  }
  .cnt_l .scroll .txt {
    font-size: 1.0248901903vw;
  }
  .cnt_l .scroll-bar::before {
    bottom: -13.17715959vw;
    height: 13.17715959vw;
  }
  .cnt_l .scroll-bar::after {
    bottom: -13.17715959vw;
    height: 13.17715959vw;
  }
  .cnt_r .pc-nav ul li:before {
    top: 0.8052708638vw;
    width: 0.439238653vw;
    height: 0.439238653vw;
  }
  .cnt_r .pc-nav ul li + li {
    margin-top: 0.6588579795vw;
  }
  .cnt_r .pc-nav ul li a {
    font-size: 1.1713030747vw;
    padding-left: 1.2445095168vw;
  }
}
/* ---------------------------------------
  main
-----------------------------------------*/
/* common
--------------------------------*/
.c-title {
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
}
.c-title .ttl {
  position: relative;
  display: inline-block;
  font-size: 4rem;
  line-height: 160%;
  letter-spacing: 0.12rem;
  padding-bottom: 1.1rem;
  padding-left: 5rem;
  margin-bottom: 0.6rem;
  box-sizing: border-box;
}
@media screen and (min-width: 921px) {
  .c-title .ttl {
    font-size: 24px;
    line-height: 156.444%;
    letter-spacing: 0.72px;
    padding-bottom: 6px;
    padding-left: 30px;
    margin-bottom: 0;
  }
}
.c-title .ttl:after {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: #404040;
}
.c-title .en-ttl {
  display: inline-block;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 228.571%;
  letter-spacing: 0.14rem;
  color: #01B0F1;
  padding-left: 5rem;
  box-sizing: border-box;
}
@media screen and (min-width: 921px) {
  .c-title .en-ttl {
    font-size: 16px;
    line-height: 234.667%;
    letter-spacing: 0.8px;
  }
}

.bgco01 {
  background: #F6F7F7;
}

.bgco02 {
  background: #F2FBFE;
}

@media screen and (min-width: 921px) {
  .tel-links {
    pointer-events: none;
  }
}

.more-links {
  text-align: center;
}
.more-links .link {
  position: relative;
  display: inline-block;
  text-align: left;
  width: 39rem;
  font-size: 3.2rem;
  color: rgba(28, 28, 28, 0.5);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.64rem;
  padding-bottom: 2.6rem;
  border-bottom: 2px solid rgba(1, 176, 241, 0.3);
}
@media screen and (min-width: 921px) {
  .more-links .link {
    width: 229px;
    font-size: 18px;
    letter-spacing: 3.6px;
    padding-bottom: 15px;
  }
}
.more-links .link:before, .more-links .link:after {
  position: absolute;
  display: block;
  content: "";
}
.more-links .link:before {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -1.3rem;
  background: url("../img/ico_arrow.svg") no-repeat center center;
  background-size: 100% auto;
  width: 1.4rem;
  height: 2.1rem;
}
@media screen and (min-width: 921px) {
  .more-links .link:before {
    margin-top: -3.5px;
    width: 7px;
    height: 10px;
  }
}
.more-links .link:after {
  left: 0;
  bottom: -1px;
  width: 10.5rem;
  height: 2px;
  background: #01B0F1;
}
@media screen and (min-width: 921px) {
  .more-links .link:after {
    width: 62px;
  }
}

@media screen and (min-width: 921px) {
  .pc-dots-box {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 77px;
    margin: 0 auto;
    max-width: 440px;
    box-sizing: border-box;
    z-index: 2;
    /* アクティブ時のアニメーション */
  }
  .pc-dots-box .dots-wrap {
    display: flex;
    justify-content: center;
  }
  .pc-dots-box .dots-wrap li {
    position: relative;
    margin: 0 13px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: none;
    background-size: 100% 100% !important;
    cursor: pointer;
    /* SVGの設定 */
    /* 背景の円（薄い線） */
    /* 動く線（メインの描画線） */
  }
  .pc-dots-box .dots-wrap li:after {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    content: "";
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 100%;
  }
  .pc-dots-box .dots-wrap li .dot-btn {
    background: transparent;
    border: none;
    padding: 0;
    width: 100%;
    height: 100%;
  }
  .pc-dots-box .dots-wrap li .dot-svg {
    position: absolute;
    left: 0;
    top: 0;
    transform: rotate(-90deg); /* 12時の位置から描き始めるため回転 */
    width: 100%;
    height: 100%;
  }
  .pc-dots-box .dots-wrap li .dot-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.35);
    stroke-width: 2px;
  }
  .pc-dots-box .dots-wrap li .dot-fill {
    fill: none;
    stroke: #01B0F1; /* 線の色 */
    stroke-width: 2px;
    stroke-dasharray: 75; /* 円周（2 * π * r）に合わせる ※r=10なら約63 */
    stroke-dashoffset: 75; /* 初期状態は全隠し */
    transition: stroke-dashoffset 4s ease;
  }
  .pc-dots-box .dots-wrap li:hover .dot-fill,
  .pc-dots-box .dots-wrap li.slick-active .dot-fill {
    stroke-dashoffset: 0; /* 線を最後まで描き切る */
  }
  .pc-dots-box .dots-wrap li button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
  }
}
/* sec-fv
--------------------------------*/
.sec-fv {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  z-index: 2;
  /* スクロールダウンの位置 */
  /* 線のアニメーション部分 */
  /* 線の背景色 */
}
@media screen and (min-width: 921px) {
  .sec-fv {
    max-width: 440px;
    right: 0;
    margin: 0 auto;
  }
}
.sec-fv .fv-ttl {
  position: absolute;
  width: 33.4rem;
  top: 28.5rem;
  left: 23rem;
  z-index: 2;
  opacity: 1;
  transition: 0.4s;
}
@media screen and (min-width: 921px) {
  .sec-fv .fv-ttl {
    width: 228px;
    top: 150px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.sec-fv .fv-slider {
  position: relative;
  height: 100%;
  z-index: 1;
}
@media screen and (min-width: 921px) {
  .sec-fv .fv-slider {
    display: none;
  }
}
.sec-fv .fv-slider .slick-item {
  height: 100dvh;
}
.sec-fv .fv-slider .slick-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-fv .fv-slider .dots-box {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7.5rem;
  margin: 0 auto;
  padding-left: 0.8rem;
  box-sizing: border-box;
  /* アクティブ時のアニメーション */
}
.sec-fv .fv-slider .dots-box .dots-wrap {
  display: flex;
  justify-content: center;
}
.sec-fv .fv-slider .dots-box .dots-wrap li {
  position: relative;
  margin: 0 2.2rem;
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  background: none;
  background-size: 100% 100% !important;
  cursor: pointer;
  /* SVGの設定 */
  /* 背景の円（薄い線） */
  /* 動く線（メインの描画線） */
}
.sec-fv .fv-slider .dots-box .dots-wrap li:after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  content: "";
  width: 1rem;
  height: 1rem;
  background: #fff;
  border-radius: 100%;
}
.sec-fv .fv-slider .dots-box .dots-wrap li .dot-btn {
  background: transparent;
  border: none;
  padding: 0;
  width: 100%;
  height: 100%;
}
.sec-fv .fv-slider .dots-box .dots-wrap li .dot-svg {
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(-90deg); /* 12時の位置から描き始めるため回転 */
  width: 100%;
  height: 100%;
}
.sec-fv .fv-slider .dots-box .dots-wrap li .dot-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 2px;
}
.sec-fv .fv-slider .dots-box .dots-wrap li .dot-fill {
  fill: none;
  stroke: #01B0F1; /* 線の色 */
  stroke-width: 2px;
  stroke-dasharray: 75; /* 円周（2 * π * r）に合わせる ※r=10なら約63 */
  stroke-dashoffset: 75; /* 初期状態は全隠し */
  transition: stroke-dashoffset 4s ease;
}
.sec-fv .fv-slider .dots-box .dots-wrap li.slick-active .dot-fill {
  stroke-dashoffset: 0; /* 線を最後まで描き切る */
}
.sec-fv .fv-slider .dots-box .dots-wrap li button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}
.sec-fv .scroll {
  position: absolute;
  left: 4.5rem;
  bottom: 20.2rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row-reverse;
  gap: 0 1.4rem;
  z-index: 3;
}
@media screen and (min-width: 921px) {
  .sec-fv .scroll {
    left: 100px;
    bottom: 187px;
  }
}
.sec-fv .scroll .txt {
  font-size: 2.2rem;
  color: #FFF;
  font-weight: 500;
  line-height: 134.699%;
  letter-spacing: 0.192rem; /* Safari用 */
  writing-mode: vertical-rl; /* 基本の縦書き指定 */
}
@media screen and (min-width: 921px) {
  .sec-fv .scroll .txt {
    font-size: 14px;
    line-height: 18.71px; /* 133.644% */
    letter-spacing: 1.12px;
  }
}
.sec-fv .scroll-bar {
  position: relative;
  writing-mode: vertical-rl;
}
.sec-fv .scroll-bar::before {
  animation: scroll 2s infinite;
  background-color: #01B0F1;
  bottom: -21rem;
  content: "";
  height: 21rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 0.3rem;
  z-index: 2;
}
@media screen and (min-width: 921px) {
  .sec-fv .scroll-bar::before {
    bottom: -180px;
    height: 180px;
    width: 2px;
  }
}
.sec-fv .scroll-bar::after {
  background-color: rgba(255, 255, 255, 0.4);
  bottom: -21rem;
  content: "";
  height: 21rem;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 0.3rem;
}
@media screen and (min-width: 921px) {
  .sec-fv .scroll-bar::after {
    bottom: -180px;
    height: 180px;
    width: 2px;
  }
}

/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/* sec-philosophy
--------------------------------*/
.sec-philosophy {
  position: relative;
  margin-top: 100dvh;
  height: 100dvh;
  z-index: 2;
}
.sec-philosophy .l-inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s;
}
.sec-philosophy .l-inner .txt {
  width: 48.5rem;
  margin: 0 auto;
}
@media screen and (min-width: 921px) {
  .sec-philosophy .l-inner .txt {
    width: 262px;
  }
}
.sec-philosophy.is-active .l-inner {
  opacity: 1;
}

/* sec-reason
--------------------------------*/
.sec-reason {
  position: relative;
  margin-top: 100vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15rem 0 20rem 0;
  background: #F2FBFE;
  z-index: 3;
}
@media screen and (min-width: 921px) {
  .sec-reason {
    padding: 56px 0 0 0;
    max-height: inherit !important;
  }
}
.sec-reason .c-title {
  margin-bottom: 0;
}
@media screen and (min-width: 921px) {
  .sec-reason .c-title {
    margin-bottom: 10px;
  }
}
.sec-reason .js-stop {
  position: relative;
}
.sec-reason .point-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.sec-reason .point-box.js-trigger1 {
  position: relative;
  top: 1px;
  z-index: 3;
}
@media screen and (min-width: 921px) {
  .sec-reason .point-box.js-trigger1 {
    top: 2px;
  }
}
.sec-reason .point-box.js-trigger2 {
  opacity: 0;
  z-index: 2;
}
.sec-reason .point-box.js-trigger3 {
  opacity: 0;
  z-index: 1;
}
.sec-reason .point-box.is-active {
  opacity: 1 !important;
}
.sec-reason .point-box .box-img {
  width: 52.3rem;
  margin: 0 auto;
}
@media screen and (min-width: 921px) {
  .sec-reason .point-box .box-img {
    width: 340px;
  }
}
.sec-reason .point-box .box-txt {
  padding-top: 2rem;
  padding-bottom: 2.8rem;
  border-top: 1px solid #404040;
  border-bottom: 1px solid #404040;
  height: 30.8rem;
}
@media screen and (min-width: 921px) {
  .sec-reason .point-box .box-txt {
    margin-top: 7px;
    padding-top: 17px;
    padding-bottom: 33px;
    height: 206px;
  }
}
.sec-reason .point-box .box-txt .num {
  font-size: 2.4rem;
  color: #2FB0D0;
  font-weight: 600;
  line-height: 200%;
  letter-spacing: 0.24rem;
}
@media screen and (min-width: 921px) {
  .sec-reason .point-box .box-txt .num {
    font-size: 14px;
    line-height: 301.714%;
    letter-spacing: 1.4px;
  }
}
.sec-reason .point-box .box-txt .ttl {
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 180.779%;
}
@media screen and (min-width: 921px) {
  .sec-reason .point-box .box-txt .ttl {
    font-size: 20px;
    line-height: 211.2%;
  }
}
.sec-reason .point-box .box-txt .txt {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 195.844%;
  letter-spacing: 1.3px;
}
@media screen and (min-width: 921px) {
  .sec-reason .point-box .box-txt .txt {
    font-size: 14px;
    line-height: 217.905%;
    letter-spacing: -0.14px;
  }
}

/* sec-cases
--------------------------------*/
.sec-cases {
  position: relative;
  padding: 14rem 0 14rem 0;
  background: #fff;
  box-sizing: border-box;
  z-index: 3;
}
@media screen and (min-width: 921px) {
  .sec-cases {
    padding: 80px 0 94px 0;
  }
}
.sec-cases .c-title {
  margin-bottom: 6.4rem;
}
@media screen and (min-width: 921px) {
  .sec-cases .c-title {
    margin-bottom: 37px;
  }
}
.sec-cases .cases-slider .slick-list {
  overflow: visible !important;
}
.sec-cases .cases-slider .slick-track {
  display: flex !important;
  align-items: stretch;
}
.sec-cases .cases-slider .slick-items {
  height: auto !important;
  display: flex !important;
  margin: 0 1.8rem;
}
@media screen and (min-width: 921px) {
  .sec-cases .cases-slider .slick-items {
    margin: 0 10px;
  }
}
.sec-cases .cases-slider .post {
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0px 0px 12px 0 rgba(0, 0, 0, 0.27);
  overflow: hidden;
  box-sizing: border-box;
  cursor: pointer;
}
@media screen and (min-width: 921px) {
  .sec-cases .cases-slider .post {
    border-radius: 12px;
  }
}
.sec-cases .cases-slider .post-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
}
.sec-cases .cases-slider .post-img .post-info {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(28, 28, 28, 0.8);
  padding: 3.4rem 4.7rem 5.7rem 4.7rem;
  box-sizing: border-box;
  z-index: 2;
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
}
@media screen and (min-width: 921px) {
  .sec-cases .cases-slider .post-img .post-info {
    padding: 28px 32px 20px 32px;
  }
}
.sec-cases .cases-slider .post-img .post-info .info-ttl {
  font-size: 3.2rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1.6px;
  margin-bottom: 0.8rem;
}
@media screen and (min-width: 921px) {
  .sec-cases .cases-slider .post-img .post-info .info-ttl {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
.sec-cases .cases-slider .post-img .post-info .info-ttl .ico {
  position: relative;
  top: 1.2rem;
  display: inline-block;
  width: 4.3rem;
  margin-right: 1rem;
}
@media screen and (min-width: 921px) {
  .sec-cases .cases-slider .post-img .post-info .info-ttl .ico {
    top: 6px;
    width: 26px;
    margin-right: 8px;
  }
}
.sec-cases .cases-slider .post-img .post-info .info-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #fff;
  padding-top: 1.4rem;
  padding-bottom: 2.2rem;
  box-sizing: border-box;
}
@media screen and (min-width: 921px) {
  .sec-cases .cases-slider .post-img .post-info .info-box {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.sec-cases .cases-slider .post-img .post-info .info-box:after {
  content: "";
  flex-grow: 1;
  margin: 0 1.4rem;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 4px 1px;
  background-repeat: repeat-x;
  background-position: bottom;
  height: 1px;
  order: 1;
}
.sec-cases .cases-slider .post-img .post-info .info-box dt {
  white-space: nowrap;
  font-size: 2.8rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1.4px;
  box-sizing: border-box;
}
@media screen and (min-width: 921px) {
  .sec-cases .cases-slider .post-img .post-info .info-box dt {
    font-size: 16px;
  }
}
.sec-cases .cases-slider .post-img .post-info .info-box dt .ico {
  position: relative;
  top: 1.4rem;
  display: inline-block;
  width: 4.5rem;
  margin-right: 1.8rem;
}
@media screen and (min-width: 921px) {
  .sec-cases .cases-slider .post-img .post-info .info-box dt .ico {
    top: 7px;
    width: 24px;
    margin-right: 10px;
  }
}
.sec-cases .cases-slider .post-img .post-info .info-box dd {
  position: relative;
  order: 2;
  text-align: right;
  font-size: 2.8rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1.4px;
}
@media screen and (min-width: 921px) {
  .sec-cases .cases-slider .post-img .post-info .info-box dd {
    font-size: 16px;
  }
}
.sec-cases .cases-slider .post-img .post-dots-box {
  position: absolute;
  right: 4.2rem;
  top: 4rem;
  box-sizing: border-box;
  /* アクティブ時のアニメーション */
}
@media screen and (min-width: 921px) {
  .sec-cases .cases-slider .post-img .post-dots-box {
    right: 20px;
    top: 12px;
  }
}
.sec-cases .cases-slider .post-img .post-dots-box .post-dots-wrap {
  display: flex;
  flex-direction: column;
}
.sec-cases .cases-slider .post-img .post-dots-box .post-dots-wrap li {
  position: relative;
  margin: 1.6rem 0;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: none;
  background-size: 100% 100% !important;
  cursor: pointer;
}
@media screen and (min-width: 921px) {
  .sec-cases .cases-slider .post-img .post-dots-box .post-dots-wrap li {
    margin: 13px 0;
    width: 9px;
    height: 9px;
  }
}
.sec-cases .cases-slider .post-img .post-dots-box .post-dots-wrap li:after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 100%;
  opacity: 0.4;
}
.sec-cases .cases-slider .post-img .post-dots-box .post-dots-wrap li.slick-active:after {
  opacity: 1;
}
.sec-cases .cases-slider .post-img .post-dots-box .post-dots-wrap li button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
  text-indent: -9999px;
}
.sec-cases .cases-slider .post-txt {
  position: relative;
  background: #fff;
  padding: 3.2rem 11.6rem 3.2rem 2.6rem;
  box-sizing: border-box;
}
@media screen and (min-width: 921px) {
  .sec-cases .cases-slider .post-txt {
    padding: 17px 66px 17px 16px;
  }
}
.sec-cases .cases-slider .post-txt .txt {
  font-size: 2.4rem;
  color: #1C1C1C;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.12rem;
  margin-bottom: 0.6rem;
}
@media screen and (min-width: 921px) {
  .sec-cases .cases-slider .post-txt .txt {
    font-size: 14px;
    letter-spacing: 0.7px;
  }
}
.sec-cases .cases-slider .post-txt .ttl {
  font-size: 2.8rem;
  line-height: 153.571%;
  color: #1C1C1C;
  font-weight: 500;
  text-decoration: underline;
}
@media screen and (min-width: 921px) {
  .sec-cases .cases-slider .post-txt .ttl {
    font-size: 16px;
  }
}
.sec-cases .cases-slider .post-txt:before, .sec-cases .cases-slider .post-txt:after {
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "";
  background-size: 100% auto !important;
  width: 9.9rem;
  height: 9.9rem;
  transition: 0.4s;
}
@media screen and (min-width: 921px) {
  .sec-cases .cases-slider .post-txt:before, .sec-cases .cases-slider .post-txt:after {
    right: 16px;
    width: 41px;
    height: 41px;
  }
}
.sec-cases .cases-slider .post-txt:before {
  opacity: 1;
  background: url("../img/ico_info.svg") no-repeat center center;
}
.sec-cases .cases-slider .post-txt:after {
  opacity: 0;
  background: url("../img/ico_info_on.svg") no-repeat center center;
}
.sec-cases .cases-slider .post.active .post-img .post-info {
  opacity: 1;
  pointer-events: auto;
}
.sec-cases .cases-slider .post.active .post-txt:before {
  opacity: 0;
}
.sec-cases .cases-slider .post.active .post-txt:after {
  opacity: 1;
}
.sec-cases .cases-slider .arrow_box {
  display: none;
}
@media screen and (min-width: 921px) {
  .sec-cases .cases-slider .arrow_box {
    display: block;
  }
}
.sec-cases .cases-slider .arrow_box .slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 20px;
  width: 60px;
  height: 60px;
  background: url("../img/arrow_slide.svg") no-repeat center center;
  background-size: 100% auto;
  cursor: pointer;
  transition: 0.4s;
}
.sec-cases .cases-slider .arrow_box .slide-arrow.prev-arrow {
  left: 12px;
  transform: translateY(-50%) scale(-1, 1);
}
.sec-cases .cases-slider .arrow_box .slide-arrow.next-arrow {
  right: 12px;
}
.sec-cases .cases-slider .arrow_box .slide-arrow:hover {
  opacity: 0.7;
}

/* sec-company
--------------------------------*/
.sec-company {
  padding: 9.8rem 0 0 0;
  box-sizing: border-box;
  z-index: 2;
}
@media screen and (min-width: 921px) {
  .sec-company {
    padding: 58px 0 0 0;
  }
}
.sec-company .c-title {
  margin-bottom: 4.4rem;
}
@media screen and (min-width: 921px) {
  .sec-company .c-title {
    margin-bottom: 37px;
  }
}
.sec-company .tbl {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  box-sizing: border-box;
  margin-bottom: 10.5rem;
}
@media screen and (min-width: 921px) {
  .sec-company .tbl {
    margin-bottom: 62px;
  }
}
.sec-company .tbl th, .sec-company .tbl td {
  text-align: left;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #222222;
  box-sizing: border-box;
}
@media screen and (min-width: 921px) {
  .sec-company .tbl th, .sec-company .tbl td {
    padding-top: 10px;
    padding-bottom: 13px;
  }
}
.sec-company .tbl th {
  width: 20rem;
  vertical-align: top;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 176.923%;
}
@media screen and (min-width: 921px) {
  .sec-company .tbl th {
    width: 117px;
    font-size: 14px;
  }
}
.sec-company .tbl td {
  width: calc(100% - 20rem);
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 176.923%;
}
@media screen and (min-width: 921px) {
  .sec-company .tbl td {
    width: calc(100% - 117px);
    font-size: 14px;
    line-height: 192.762%;
  }
}
.sec-company .gmap {
  width: 100%;
  aspect-ratio: 1/1;
}
.sec-company .gmap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* sec-about
--------------------------------*/
.sec-about {
  position: relative;
  padding: 14.8rem 0 8rem 0;
  box-sizing: border-box;
  z-index: 2;
}
@media screen and (min-width: 921px) {
  .sec-about {
    padding: 87px 0 0 0;
  }
}
.sec-about .c-title {
  margin-bottom: 5rem;
}
@media screen and (min-width: 921px) {
  .sec-about .c-title {
    margin-bottom: 37px;
  }
}
.sec-about .img {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 2;
}
.sec-about .img .img-list {
  display: flex;
  gap: 0 0.8rem;
  width: 123.4rem;
}
@media screen and (min-width: 921px) {
  .sec-about .img .img-list {
    gap: 0 6px;
    width: 726px;
  }
}
.sec-about .img .img-list li {
  width: 40.6rem;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (min-width: 921px) {
  .sec-about .img .img-list li {
    width: 238px;
    border-radius: 6px;
  }
}
.sec-about .img + .img {
  margin-top: 0.8rem;
}
@media screen and (min-width: 921px) {
  .sec-about .img + .img {
    margin-top: 6px;
  }
}
.sec-about .l-inner {
  position: absolute;
  left: 0;
  right: 0;
  top: 19rem;
  width: 100%;
  z-index: 1;
  opacity: 0;
  z-index: 3;
}
@media screen and (min-width: 921px) {
  .sec-about .l-inner {
    top: 70px;
  }
}
.sec-about .l-inner .logo {
  width: 18.1rem;
  margin: 0 auto 7.2rem auto;
}
@media screen and (min-width: 921px) {
  .sec-about .l-inner .logo {
    width: 106px;
    margin: 0 auto 42px auto;
  }
}
.sec-about .l-inner .txt {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 261.538%;
  letter-spacing: 0.078rem;
}
@media screen and (min-width: 921px) {
  .sec-about .l-inner .txt {
    font-size: 14px;
    line-height: 39.95px; /* 285.357% */
    letter-spacing: 0.42px;
  }
}
.sec-about .l-inner .txt + .txt {
  margin-top: 0.5rem;
}
@media screen and (min-width: 921px) {
  .sec-about .l-inner .txt + .txt {
    margin-top: 35px;
  }
}
.sec-about .l-inner .more-links {
  margin-top: 6.3rem;
}
@media screen and (min-width: 921px) {
  .sec-about .l-inner .more-links {
    margin-top: 37px;
  }
}

/* ---------------------------------------
footer
-----------------------------------------*/
#footer {
  position: relative;
  margin-top: -2px;
  padding: 11.2rem 5rem 4rem;
  background: url("../img/bg_footer.jpg") no-repeat center top;
  background-size: cover;
  z-index: 2;
}
@media screen and (min-width: 921px) {
  #footer {
    padding: 66px 30px 23px;
  }
}
#footer .f-logo {
  width: 12rem;
  margin: 0 auto 3rem auto;
}
@media screen and (min-width: 921px) {
  #footer .f-logo {
    width: 70px;
    margin: 0 auto 18px auto;
  }
}
#footer .f-logo__txt {
  text-align: center;
  color: #5B5B5B;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 137.802%;
  letter-spacing: 0.1828px;
}
@media screen and (min-width: 921px) {
  #footer .f-logo__txt {
    font-size: 27px;
    line-height: 36.137 0.802%;
    letter-spacing: 1.074px;
  }
}
#footer .f-nav {
  margin-top: 7.2rem;
}
@media screen and (min-width: 921px) {
  #footer .f-nav {
    margin-top: 43px;
  }
}
#footer .f-nav .nav-list__items {
  text-align: center;
}
#footer .f-nav .nav-list__items a {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 211.538%;
  letter-spacing: 0.182px;
}
@media screen and (min-width: 921px) {
  #footer .f-nav .nav-list__items a {
    font-size: 15px;
    line-height: 211.538%;
    letter-spacing: 1.069px;
  }
}
#footer .f-info {
  margin-top: 5rem;
  padding-top: 5rem;
  border-top: 1px solid #404040;
}
@media screen and (min-width: 921px) {
  #footer .f-info {
    margin-top: 29px;
    padding-top: 29px;
  }
}
#footer .f-info .name {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.28rem;
  margin-bottom: 2.9rem;
}
@media screen and (min-width: 921px) {
  #footer .f-info .name {
    font-size: 16px;
    letter-spacing: 1.645px;
    margin-bottom: 16px;
  }
}
#footer .f-info .txt {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 192.308%;
  letter-spacing: 1.3px;
}
@media screen and (min-width: 921px) {
  #footer .f-info .txt {
    font-size: 15px;
    line-height: 192.308%;
    letter-spacing: 0.764px;
  }
}
#footer .topBtn {
  margin-top: 3.2rem;
  text-align: center;
}
@media screen and (min-width: 921px) {
  #footer .topBtn {
    margin-top: 11px;
  }
}
#footer .topBtn .btn {
  position: relative;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 241.667%;
  letter-spacing: 0.24rem;
}
@media screen and (min-width: 921px) {
  #footer .topBtn .btn {
    font-size: 14px;
    letter-spacing: 1.41px;
  }
}
#footer .topBtn .btn .ico {
  position: relative;
  display: inline-block;
  width: 6rem;
  margin-right: 1.6rem;
}
@media screen and (min-width: 921px) {
  #footer .topBtn .btn .ico {
    width: 35px;
    margin-right: 9px;
  }
}
#footer .copyright {
  margin: 3.2rem 0 0 0;
  text-align: center;
  font-weight: 400;
  line-height: 200%;
  font-size: 2.4rem;
  letter-spacing: 0.24rem;
}
@media screen and (min-width: 921px) {
  #footer .copyright {
    margin: 27px 0 0 0;
    font-size: 14px;
    letter-spacing: 1.41px;
  }
}
#footer .copyright-txt {
  text-align: center;
  font-size: 2rem;
  color: rgba(64, 64, 64, 0.3);
  font-weight: 400;
  line-height: 190%;
  letter-spacing: 0.2rem;
}
@media screen and (min-width: 921px) {
  #footer .copyright-txt {
    font-size: 12px;
    letter-spacing: 1.175px;
  }
}

/* ---------------------------------------
clearfix
-----------------------------------------*/
.cf:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.cf {
  display: inline-block;
}

/* Hides from IE Mac */
* html .cf {
  height: 1%;
}

.cf {
  display: block;
}

/* ---------------------------------------
animation
-----------------------------------------*/
@keyframes horizontal-animation {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* End Hack */