@charset "UTF-8";

/* reset ---------------------------------------*/

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  word-break: break-all;
  font-size: inherit;
  width: 100%;
}
fieldset,
img {
  border: 0;
}
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}
li {
  list-style: none;
}
caption,
th {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
q::before,
q::after {
  content: "";
}
abbr {
  border: 0;
  font-variant: normal;
}
sup {
  vertical-align: text-top;
}
sub {
  vertical-align: text-bottom;
}
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}
input,
textarea,
select {
  *font-size: 100%;
}
legend {
  color: #000;
}
select,
input,
button,
textarea {
  font-size: inherit;
  font-family: inherit;
  box-sizing: border-box;
}
pre,
code,
kbd,
samp {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}
figure {
  padding: 0;
  margin: 0;
}
input[type="submit"],
input[type="button"],
button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
button::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus,
button::focus {
  outline-offset: -2px;
}

/* base ---------------------------------------*/

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  -webkit-text-size-adjust: 100%;
  padding: 0;
  margin: 0;
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  font-feature-settings: "palt" 1;
  -webkit-font-feature-settings: "palt" 1;
}

a {
  text-decoration: none;
  color: #000;
  transition: all 0.25s ease;
}

a:hover {
}

img {
  vertical-align: bottom;
  line-height: 1;
  max-width: 100%;
  height: auto;
}

.skyblue {
  color: #17c6cc;
}

/* common item ---------------------------------------*/

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

.ov-h {
  overflow: hidden;
}

.font-xx {
  font-family:;
}

.bg-xx {
  background-color:;
}

/* browser adjust ---------------------------------------*/

@media all and (-ms-high-contrast: none) {
  .foo {
    color: green;
  }
}

/* mask icon ---------------------------------------*/

.icon-arrow {
  -webkit-mask-image: url("../img/common/arrow.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  -webkit-mask-size: contain;
  mask-image: url("../img/common/arrow.svg");
  mask-repeat: no-repeat;
  mask-position: 0 0;
  mask-size: contain;
  display: inline-block;
  vertical-align: middle;
  height: 24px;
  width: 24px;
  background: #ff0000;
}

/* layout ---------------------------------------*/

.wrapper {
  overflow: hidden;
  position: relative;
}

.inner {
  max-width: 950px;
  margin: 0 auto;
}

.overlay {
  display: none;
}

/* scroll-margin-top（固定ヘッダー分のオフセット） -------*/

[id] {
  scroll-margin-top: 120px; /* header 100px + 20px */
}

/* header ---------------------------------------*/

header {
  position: fixed;
  background: rgba(255, 255, 255, 0.3);
  left: 0;
  top: 0px;
  width: 100%;
  height: 100px;
  z-index: 10;
}

.header-inner {
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 0 clamp(15px, 1.5vw, 20px) 0 clamp(20px, 4vw, 60px);
  gap: clamp(8px, 1vw, 20px);
  background: #fff;
}

.header-logo {
  flex-shrink: 0;
  width: clamp(100px, 10vw, 150px);
}

.header-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.header-submenu {
  flex-shrink: 0;
}

.header-submenu-list {
  display: flex;
  gap: clamp(8px, 0.8vw, 15px);
  justify-content: flex-end;
  align-items: center;
}

.header-submenu-list > li {
  font-size: clamp(11px, 1vw, 14px);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.header-submenu-list > li a {
  border: 1px solid #000;
  border-radius: 20px;
  padding: clamp(4px, 0.4vw, 5px) clamp(10px, 1.3vw, 20px);
  line-height: 1.6;
  display: block;
  position: relative;
}

.header-submenu-list > li a span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 2;
}

.header-submenu-list > li a span::before {
  display: inline-block;
  content: "";
}

.header-submenu-list > li a::after {
  display: block;
  content: "";
  background: rgba(0, 0, 0, 0.1);
  background-size: 100%;
  width: 50%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 40px;
  opacity: 0;
  transition: all 0.25s ease;
}

.header-submenu-list > li a:hover {
  transform: scale(1.05);
}

.header-submenu-list > li a:hover::after {
  opacity: 1;
  width: 100%;
}

.header-submenu-list > li.header-submenu-download a {
  background: #000;
  color: #fff;
}

.header-submenu-list > li.header-submenu-download a::after {
  background: rgba(255, 255, 255, 0.3);
}

.header-submenu-list > li.header-submenu-contact a {
  background: #fff;
  color: #000;
}

.header-submenu-list > li.header-submenu-download a span::before {
  background: url("../img/icon_download.png") no-repeat left top;
  background-size: contain;
  width: 14px;
  height: 14px;
}

.header-submenu-list > li.header-submenu-contact a span::before {
  background: url("../img/icon_document_black.png") no-repeat left top;
  background-size: contain;
  width: 17px;
  height: 16px;
}

/* gnav ---------------------------------------*/

.gnav {
  flex: 1;
  min-width: 0;
}

.gnav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(6px, 0.7vw, 14px);
}

.gnav-list > li {
  font-size: clamp(11px, 1vw, 14px);
  font-weight: bold;
  letter-spacing: 0.1em;
}

.gnav-list > li a {
  display: block;
  position: relative;
  padding-right: 13px;
  white-space: nowrap;
}

.gnav-list > li a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 40%;
  width: 6px;
  height: 6px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: translate(0, -50%) rotate(45deg);
}

.gnav-list > li a:hover {
  opacity: 0.6;
}

#openmenu {
  display: none;
}

/* kv ---------------------------------------*/

.kv-wrapper {
  background: url(../img/kv_bg.png) no-repeat center top -25px;
  background-size: 100%;
  height: 40.5vw;
  min-height: 780px;
  position: relative;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: block;
  padding: 190px 0 0 0;
}

.kv {
  position: relative;
  padding: 0 5.7vw 5vw 5.7vw;
}

.kv-title {
  font-size: 50px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 3.1vw;
}

.kv-title span {
  color: #17c6cc;
}

.kv-lead {
  /* font-size: 1.75vw; */
  font-size: 22px;
  line-height: 1.65;
  color: #4c4b4b;
  font-weight: bold;
  letter-spacing: 0.11em;
  margin-bottom: 7.3vw;
}

.kv-text {
  text-align: center;
  /* font-size: 1.75vw; */
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 2vw;
  letter-spacing: 0.11em;
}

.kv-text span {
  color: #17c6cc;
}

.kv-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 40px;
}

.kv-cta li {
  width: 400px;
}

.kv-cta li a {
  display: block;
  font-size: 24px;
  line-height: 1;
  padding: 17px 30px 19px;
  border: 1px solid #17c6cc;
  border-radius: 40px;
  letter-spacing: 0.1em;
  position: relative;
}

.kv-cta li a::after {
  display: block;
  content: "";
  background: rgba(0, 0, 0, 0.1);
  background-size: 100%;
  width: 50%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 40px;
  opacity: 0;
  transition: all 0.25s ease;
}

.kv-cta li a:hover {
  transform: scale(1.05);
}

.kv-cta li a:hover::after {
  opacity: 1;
  width: 100%;
}

.kv-cta li a span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.kv-cta li a span::before {
  display: inline-block;
  content: "";
}

.kv-cta-download a {
  background: #17c6cc;
  color: #fff;
}

.kv-cta-contact a {
  background: #fff;
  color: #17c6cc;
}

.kv-cta-download a span::before {
  background: url("../img/icon_download.png") no-repeat left top;
  background-size: contain;
  width: 24px;
  height: 27px;
}

.kv-cta-contact a span::before {
  background: url("../img/icon_memo.png") no-repeat left top;
  background-size: contain;
  width: 29px;
  height: 28px;
}

/* fixedcta ---------------------------------------*/

.fixedcta {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #e1f8f8;
  padding: 30px 40px 40px;
  text-align: center;
  z-index: 50;
  transition: all 1.25s ease;
  transform: translate(0, 105%);
  opacity: 0;
}

.fixedcta.is-active {
  transform: translate(0, 0);
  opacity: 1;
}

.fixedcta-lead {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}

.fixedcta-lead span {
  color: #17c6cc;
}

/* common ---------------------------------------*/

.section {
  padding: 100px 30px 0;
}

.inner {
  max-width: 950px;
  margin: 0 auto;
  position: relative;
}

/* about ---------------------------------------*/

.about {
  padding-top: 40px;
}

.about-bg {
  content: "";
  background: #e1f8f8;
  position: absolute;
  right: 0;
  top: 0;
  width: 70%;
  height: 800px;
}

.about-bg {
  content: "";
  background: #e1f8f8;
  position: absolute;
  right: 0;
  top: 0;
  width: 68%;
  height: 745px;
}

.about-title {
  padding: 70px 0 63px 25px;
  position: relative;
  z-index: 2;
}

.about-title img {
  width: 800px;
}

.about-inner {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 45px;
}

.about-image {
  width: 380px;
  padding-top: 7px;
}

.about-body {
  flex: 1;
  padding-top: 3px;
  padding-right: 40px;
}

.about-body-title {
  color: #17c6cc;
  font-size: 30px;
  line-height: 1.3;
  font-weight: bold;
  letter-spacing: 0.11em;
  margin-bottom: 33px;
  border-bottom: 1px solid #17c6cc;
  white-space: nowrap;
}

.about-text {
  font-size: 16px;
  line-height: 1.86;
  letter-spacing: 0.02em;
  padding-right: 10px;
}

.about-text p:not(:last-child) {
  margin-bottom: 30px;
}

/* animation */

.animation {
  opacity: 0;
  transition: all 0.75s ease;
  transform: translate(0, 30px);
}

.animation.on {
  opacity: 1;
  transform: translate(0, 0);
}

.animation.about {
  opacity: 1;
  transform: translate(0, 0);
}

.animation .about-title,
.animation .about-image {
  opacity: 0;
  transition: all 0.75s ease;
  transform: translate(-30px, 0);
}

.animation .about-bg,
.animation .about-body {
  opacity: 0;
  transition: all 0.75s ease;
  transform: translate(30px, 0);
}

.animation.on .about-title,
.animation.on .about-image {
  transform: translate(0, 0);
  opacity: 1;
}

.animation.on .about-bg,
.animation.on .about-body {
  opacity: 1;
  transform: translate(0px, 0);
}

/* issue ---------------------------------------*/

.issue {
  padding-top: 110px;
  padding-bottom: 50px;
  position: relative;
  z-index: 2;
}

.issue::after {
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  border-top: 100px solid #fff;
  position: absolute;
  left: 50%;
  bottom: -100px;
  transform: translate(-50%, 0);
  content: "";
}

.issue-title {
  margin-bottom: 65px;
  text-align: center;
}
.issue-title img {
  width: 800px;
}

.issue-list {
  display: flex;
  justify-content: space-between;
  gap: 25px;
}

.issue-list > li {
  width: 100%;
  padding: 12px 25px 15px 20px;
  background: #e1f8f8;
}
.issue-item-title {
  color: #17c6cc;
  font-size: 30px;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-align: center;
}

.isusue-item-list > li {
  font-size: 16px;
  line-height: 1.85;
  padding-left: 17px;
  position: relative;
  letter-spacing: 0.04em;
}

.isusue-item-list > li::before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  border: 3px solid #17c6cc;
}

/* solution ---------------------------------------*/

.solution {
  padding-top: 245px;
  background: #f3fbfc;
  position: relative;
}

.solution-title {
  text-align: center;
  margin-bottom: 63px;
}

.solution-image {
  padding-bottom: 50px;
}

/* reason ---------------------------------------*/

.reason {
  padding-top: 152px;
  padding-bottom: 70px;
  position: relative;
}

.reason::before {
  display: block;
  content: "";
  background: url(../img/bg_03.png) no-repeat center bottom;
  background-size: 100%;
  width: 100%;
  height: 55vw;
  position: absolute;
  left: 0;
  top: 1030px;
}

.reason::after {
  display: block;
  content: "";
  background: url(../img/bg_04.png) no-repeat center bottom;
  background-size: 100%;
  width: 100%;
  height: 55vw;
  position: absolute;
  left: 0;
  bottom: 0;
}

.reason-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.reason-title {
  margin-bottom: 85px;
}

.reason-title img {
  width: 975px;
}

.reason-body {
}

.reason-point {
  margin-bottom: 60px;
}

.reason-point-num {
  color: #17c6cc;
  font-weight: 800;
  font-size: 30px;
  display: inline-block;
  border-bottom: 2px solid #17c6cc;
  line-height: 1.5;
  padding: 0 37px 0 20px;
  margin-bottom: 3px;
}

.reason-point-title {
  color: #17c6cc;
  font-weight: 800;
  font-size: 30px;
  line-height: 1.35;
  padding-left: 20px;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.reason-point-text {
  padding: 0 30px 0 25px;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 30px;
  letter-spacing: 0.06em;
}

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

.reason-image-01 {
  padding-bottom: 33px;
}

.reason-image-02 {
  padding-top: 35px;
  padding-bottom: 13px;
}

/* consultant ---------------------------------------*/

.bg-01 {
  background: url(../img/bg_05.png) no-repeat center top;
  background-size: 100%;
  position: relative;
}

/* .bg-01 {
    position: relative;
    background: -webkit-linear-gradient(top, #e3faf9 0%, #f6fcfc 100%);
    background: -moz-linear-gradient(top, #e3faf9 0%, #f6fcfc 100%);
} */

/* .bg-01::before{
	content:'';
	display: block;
	position: absolute;
	left:0;
	top:860px;
	width:100%;
	height:88vw;
	background: url(../img/bg_06.png) no-repeat center top;
	background-size: 100%;
} */

.consultant {
  padding-top: 140px;
  position: relative;
  z-index: 2;
}

.consultant:before,
.consultant::after {
  display: block;
  content: "";
  width: 250px;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 40;
  opacity: 0.8;
}

.consultant:before {
  left: 0;
  background: url("../img/gra_left.png") repeat-y left top;
  background-size: 100%;
}

.consultant::after {
  right: 0;
  background: url("../img/gra_right.png") repeat-y left top;
  background-size: 100%;
}

.consultant-title {
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}
h2.consultant-title {
  width: 92%;
  display: block;
  margin: 0 auto 70px;
}

.consultant-list-wrapper {
  padding-bottom: 95px;
  position: relative;
}

.consultant-list {
}

.consultant-list > li {
  background: #fff;
  box-shadow: 0px 10px 10px rgba(23, 198, 204, 0.12);
}

.consultant-item-image {
  position: relative;
}

.consultant-item-image::after {
  display: block;
  content: "";
  background: url("../img/bg_wave.png") no-repeat left bottom;
  background-size: 100%;
  width: 100%;
  padding-bottom: 10%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.consultant-item-image img {
  width: 100%;
}

.consultant-item-name {
  position: absolute;
  left: 45px;
  bottom: 25px;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.consultant-item-name small {
  display: block;
  font-size: 16px;
}

.consultant-item-name b {
  display: block;
  font-size: 22px;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.consultant-item-name span {
  font-size: 16px;
}

.consultant-item-body {
  padding: 10px 45px 38px;
}

.consultant-item-text {
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.05em;
  min-height: 148px;
}

.consultant-item-tag {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.consultant-item-tag span {
  min-width: 80px;
  background: #17c6cc;
  border-radius: 20px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  line-height: 1;
  padding: 3px 11px 5px;
  letter-spacing: 0.1em;
}

.consultant .swiper-pagination .swiper-pagination-bullet,
.case .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  margin: 0 8px;
  background: #b3ecee;
}

.consultant .swiper-pagination .swiper-pagination-bullet-active,
.case .swiper-pagination .swiper-pagination-bullet-active {
  background: #17c6cc;
}

/* case ---------------------------------------*/

.case {
  padding-top: 140px;
  position: relative;
  background: url(../img/bg_06.png) no-repeat center top;
  background-size: 100%;
  padding-bottom: 50px;
}

.case:before,
.case::after {
  display: block;
  content: "";
  width: 250px;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 40;
  opacity: 0.8;
}

.case:before {
  left: 0;
  background: url("../img/gra_left.png") repeat-y left top;
  background-size: 100%;
}

.case::after {
  right: 0;
  background: url("../img/gra_right.png") repeat-y left top;
  background-size: 100%;
}

.case-title {
  text-align: center;
  margin-bottom: 70px;
}

.case-title img {
  width: 330px;
}
.case-list-wrapper {
  position: relative;
  padding-bottom: 95px;
}

.case-list {
}

.case-list > li {
  background: #fff;
  padding: 38px 50px;
  text-align: center;
  box-shadow: 0px 10px 10px rgba(23, 198, 204, 0.12);
}

.case-item-company {
  background: #17c6cc;
  display: inline-block;
  line-height: 1.3;
  padding: 3px 35px 5px;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: #fff;
  border-radius: 20px;
}

.case-item-image {
  margin-top: 40px;
}
.case-item-body {
  text-align: left;
  padding: 32px 10px 0;
  min-height: 430px;
}

.case-item-subtitle {
  font-size: 22px;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-bottom: 10px;
}

.case-item-title {
  font-size: 30px;
  line-height: 1.67;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 27px;
}

.case-item-title span {
  display: inline;
  background-image: linear-gradient(transparent 98%, #000 0%);
}

.case-item-title small {
  font-size: 80%;
}

.case-item-text {
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.05em;
}

.case-item-more {
  text-align: left;
  padding-top: 28px;
  letter-spacing: 0.05em;
}

.case-item-more a {
  display: inline-block;
  font-size: 16px;
  position: relative;
  color: #17c6cc;
}

.case-item-more a::before {
  content: "＞";
}

.case .swiper-button-prev,
.case .swiper-button-next {
  width: 60px;
  height: 60px;
  background: url(../img/icon_arrow.png) no-repeat center center;
  background-size: 100%;
  top: 45%;
  transition: all 0.25s ease;
  z-index: 60;
}

.case .swiper-button-prev {
  transform: scale(-1, 1);
  left: 50%;
  margin-left: -500px;
}

.case .swiper-button-next {
  right: 50%;
  margin-right: -500px;
}

.case .swiper-button-prev:hover {
  transform: scale(-1.05, 1.05);
  opacity: 1;
}
.case .swiper-button-next:hover {
  transform: scale(1.05);
  opacity: 1;
}

.case .swiper-button-disabled {
  opacity: 0;
}

/* step ---------------------------------------*/

.step {
  padding-top: 90px;
  padding-bottom: 185px;
}

.step-title {
  margin-bottom: 70px;
  text-align: center;
}

.step-title img {
  width: 580px;
}

.step-body {
  position: relative;
  padding-left: 122px;
}

.step-list {
}

.step-list > li {
  position: relative;
}

.step-list > li:nth-child(1) {
  z-index: 5;
}
.step-list > li:nth-child(2) {
  z-index: 4;
}
.step-list > li:nth-child(3) {
  z-index: 3;
}
.step-list > li:nth-child(4) {
  z-index: 2;
}
.step-list > li:nth-child(5) {
  z-index: 1;
}

.step-item {
  position: relative;
  height: 157px;
}

.step-item::after {
  display: block;
  content: "";
  border-bottom: 3px dotted #17c6cc;
  width: calc(100% - 250px);
  height: 0px;
  position: absolute;
  right: 0px;
  bottom: 0;
}

.step-item-image {
  position: absolute;
  left: -24px;
  top: -11px;
  z-index: 2;
}

.step-list > li:nth-child(5) .step-item-image {
  top: -20px;
}

.step-item-text {
  position: absolute;
  left: 345px;
  top: 50%;
  transform: translate(0, -50%);
}

.step-term {
  position: absolute;
  left: 20px;
  bottom: 5px;
  width: 69px;
}

/* animation */

.step-body.animation {
  opacity: 1;
  transform: translate(0, 0);
}

.animation .step-item,
.animation .step-term {
  transition: all 0.75s ease;
  opacity: 0;
  transform: translate(0, 30px);
}

.animation .step-list > li:nth-child(2) .step-item {
  transition-delay: 0.4s;
}
.animation .step-list > li:nth-child(3) .step-item {
  transition-delay: 0.8s;
}
.animation .step-list > li:nth-child(4) .step-item {
  transition-delay: 1.2s;
}
.animation .step-list > li:nth-child(5) .step-item {
  transition-delay: 1.6s;
}
.animation .step-term {
  transition-delay: 2s;
}

.animation.on .step-item,
.animation.on .step-term {
  opacity: 1;
  transform: translate(0, 0);
}

/* faq ---------------------------------------*/

/* faq ---------------------------------------*/

.section-faq {
  background: #e1f8f8;
  padding: 88px 30px 130px;
}

.faq-heading {
  width: 41%;
  display: block;
  margin: 0 auto 115px;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 74%;
  display: block;
  margin: 0 auto;
}

.faq-item:not(:last-child) {
  margin-bottom: 36px;
}

.faq-item-title {
  border-bottom: 3px dotted #17c6cc;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  padding-bottom: 14px;
  padding-right: 36px;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.05em;
  transition: opacity 0.25s;
}

.faq-item-title:hover {
  opacity: 0.7;
}

.faq-item-open {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-60%);
}

.faq-item-open::before,
.faq-item-open::after {
  display: block;
  content: "";
  background: #17c6cc;
  width: 20px;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.25s ease;
}

.faq-item-open::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item-title.is-active .faq-item-open::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item-body {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  letter-spacing: 0.02em;
  display: none;
}

.faq-item-body-inner {
  background: #fff;
  padding: 18px 20px 24px;
}

/* company ---------------------------------------*/

.company {
  padding-top: 50px;
  padding-bottom: 100px;
}

.company-title {
  margin-bottom: 65px;
}

.company-title img {
  width: 905px;
}

.company-message {
  display: flex;
  gap: 80px;
  margin-bottom: 38px;
}

.company-image {
  order: 2;
  width: 200px;
  padding-top: 40px;
}

.company-text {
  flex: 1;
}

.company-text p {
  line-height: 1.85;
  font-size: 16px;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}

.company-table {
  letter-spacing: 0.1em;
}

.company-table th {
  font-size: 16px;
  width: 197px;
  border-bottom: 2px solid #e1f8f8;
  color: #17c6cc;
  line-height: 1.6;
  padding: 15px 0 7px;
}

.company-table td {
  font-size: 16px;
  border-bottom: 2px solid #e1f8f8;
  line-height: 1.6;
  padding: 15px 0 7px;
}

/* footer ---------------------------------------*/

footer {
  background: #e1f8f8;
  padding: 40px 40px 100px;
}

.footer-inner {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.footer-logo {
  display: inline-block;
  width: 320px;
}

.footer-body {
  flex: 1;
}

.footer-nav {
  margin-bottom: 25px;
}

.footer-nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

.footer-nav-list > li {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.04em;
}

.footer-nav-list > li a {
  display: block;
  padding: 0 21px;
  position: relative;
  line-height: 1;
}

.footer-nav-list > li a::after {
  display: block;
  content: "";
  background: #000;
  width: 1px;
  height: 13px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.footer-nav-list > li:last-child a {
  padding-right: 0;
  border-right: none;
}

.footer-subnav {
  margin-bottom: 24px;
}

.footer-subnav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px 20px;
}

.footer-subnav-list > li {
  font-size: 16px;
  letter-spacing: 0.1em;
}

.footer-lang {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.footer-lang > li a {
  display: block;
  background: #17c6cc;
  line-height: 1;
  font-size: 18px;
  font-weight: bold;
  width: 71px;
  padding: 2px 4px 4px;
  color: #fff;
  text-align: center;
}

/* column (top) ---------------------------------------*/

.section-column {
  background: #e1f8f8;
  padding: 94px 30px 100px;
  position: relative;
  overflow: hidden;
}

.section-column-heading {
  font-size: 44px;
  font-weight: 900;
  color: #333;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 48px;
}
h2.section-column-heading {
  width: 46%;
  display: block;
  margin: 0 auto 60px;
}
h2.section-column-heading img {
}

.top-column-slider-outer {
  position: relative;
}

.top-column-list-wrapper {
  overflow: visible;
}

.top-column-list-wrapper .swiper-slide {
  width: 400px;
}

.recruit-list-wrapper .swiper-slide {
  width: 390px;
}

.top-col-card {
  display: block;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.top-col-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.top-col-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.top-col-card-body {
  padding: 16px 25px 24px;
}

.top-col-card-date {
  font-size: 16px;
  font-weight: 600;
  color: #17c6cc;
  margin-bottom: 21px;
}

.top-col-card-tag {
  display: inline-flex;
  background: #17c6cc;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  padding: 2px 45px;
  border-radius: 50px;
  margin-bottom: 15px;
}

.top-col-card-title {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 14px;
}

.top-col-card-arrow {
  display: block;
  width: 90px;
  height: 12px;
  position: relative;
  margin-left: auto;
}

.top-col-card-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #17c6cc;
  transform: translateY(-50%);
}

.top-col-card-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 40%;
  width: 15px;
  height: 8px;
  border-top: 2px solid #17c6cc;
  transform: translateY(-60%) rotate(45deg);
}

.top-column-btn-prev,
.top-column-btn-next {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
}

.top-column-btn-prev img,
.top-column-btn-next img {
  width: 100%;
  height: auto;
  display: block;
}

.top-column-btn-prev {
  left: 50%;
  margin-left: -520px;
}

.top-column-btn-next {
  right: 50%;
  margin-right: -520px;
}

.top-column-btn-prev.swiper-button-disabled,
.top-column-btn-next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

.top-column-list-wrapper .swiper-pagination {
  position: static;
  margin-top: 65px;
  text-align: center;
}

.top-column-list-wrapper.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  background: #17c6cc;
  opacity: 0.3;
  width: 15px;
  height: 15px;
  margin: 0 5px;
}

.top-column-list-wrapper.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet-active {
  opacity: 1;
}

.section-column-cta {
  margin-top: 70px;
  text-align: center;
}

.section-column-btn {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 42px;
  border: 1px solid #17c6cc;
  color: #17c6cc;
  font-size: 20px;
  font-weight: 500;
  padding: 16px 35px 16px 56px;
  text-align: center;
  border-radius: 50px;
  transition:
    background 0.25s,
    color 0.25s;
  width: 400px;
}

.section-column-btn:hover {
  background: #17c6cc;
  color: #fff;
}

.section-column-arrow {
  position: relative;
  display: inline-block;
  top: 2px;
  width: 25px;
  height: 2px;
  border-radius: 9999px;
  background: #17c6cc;
  flex-shrink: 0;
  transition: background 0.25s;
}

.section-column-arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 12px;
  height: 2px;
  border-radius: 9999px;
  background: #17c6cc;
  transform: rotate(45deg);
  transform-origin: calc(100% - 2px) 50%;
  transition: background 0.25s;
}

.section-column-btn:hover .section-column-arrow,
.section-column-btn:hover .section-column-arrow::before {
  background: #fff;
}

/* recruit ---------------------------------------*/

.section-recruit {
  background: #fff;
  padding: 147px 30px 100px;
  position: relative;
  overflow: hidden;
}
.section-recruit .inner {
  max-width: 820px;
}

.recruit-heading {
  width: 33%;
  display: block;
  margin: 0 auto 70px;
}

.recruit-slider-outer {
  position: relative;
  overflow: visible;
}

.recruit-slider-outer::before,
.recruit-slider-outer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.recruit-slider-outer::before {
  left: calc(50% - 50vw);
  width: calc((100vw - 100%) / 2 + 200px);
  background: linear-gradient(to right, #ffffff 0%, transparent);
}

.recruit-slider-outer::after {
  right: calc(50% - 50vw);
  width: calc((100vw - 100%) / 2 + 200px);
  background: linear-gradient(to left, #ffffff 0%, transparent);
}

.recruit-list-wrapper {
  overflow: visible;
}

.recruit-list-wrapper .swiper-wrapper {
  align-items: stretch;
}

.recruit-list-wrapper .swiper-slide {
  height: auto;
}

/* カード */
.recruit-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #c8ecec;
  background: #fff;
  position: relative;
}

.recruit-item-image {
  position: relative;
  overflow: hidden;
}

.recruit-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.recruit-item-label {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 10px 5px;
  writing-mode: vertical-rl;
  font-size: 8px;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  display: flex;
  align-items: flex-start;
}

.recruit-item-body {
  padding: 16px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.recruit-item-date {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.recruit-item-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 16px;
  flex: 1;
}

.recruit-item-arrow {
  display: block;
  width: 90px;
  height: 12px;
  position: relative;
  margin-left: auto;
}

.recruit-item-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #17c6cc;
  transform: translateY(-50%);
}

.recruit-item-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 40%;
  width: 15px;
  height: 8px;
  border-top: 2px solid #17c6cc;
  transform: translateY(-60%) rotate(45deg);
}

/* ナビゲーションボタン */
.recruit-btn-prev,
.recruit-btn-next {
  width: 52px;
  height: 52px;
  background: #17c6cc;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recruit-btn-prev::after,
.recruit-btn-next::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}

.recruit-btn-next::after {
  transform: rotate(45deg);
  margin-right: 3px;
}

.recruit-btn-prev::after {
  transform: rotate(-135deg);
  margin-left: 3px;
}

.recruit-btn-prev {
  left: 50%;
  margin-left: -520px;
}

.recruit-btn-next {
  right: 50%;
  margin-right: -520px;
}

.recruit-btn-prev.swiper-button-disabled,
.recruit-btn-next.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

/* ページネーション */
.recruit-list-wrapper .swiper-pagination {
  position: static;
  margin-top: 55px;
  text-align: center;
}

.recruit-list-wrapper .swiper-pagination-bullet {
  background: #17c6cc;
  opacity: 0.3;
  width: 15px;
  height: 15px;
  margin: 0 5px;
}

.recruit-list-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}

/* pc only */
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  .spbr {
    display: none;
  }
}

/* small pc */
@media screen and (min-width: 768px) and (max-width: 1250px) {
  .kv-wrapper {
    background: url(../img/kv_bg.png) no-repeat center top -25px;
    background-size: cover;
    height: auto;
    min-height: auto;
    padding: 13.5vw 0 5vw 0;
  }
  .kv-title {
    font-size: 4vw;
    font-weight: bold;
  }
  .kv-lead {
    font-size: 1.75vw;
  }
  .kv-text {
    font-size: 1.75vw;
  }
}

/* small pc */
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .kv-cta li {
    width: 300px;
  }
  .kv-cta li a {
    font-size: 20px;
  }

  .about-body {
    width: calc(100% - 300px);
  }

  .about-body-title {
    font-size: 20px;
  }

  .case .swiper-button-prev {
    margin-left: -350px;
  }
  .case .swiper-button-next {
    margin-right: -350px;
  }

  .step-item-text {
    left: 300px;
  }
}

/* small pc */
@media screen and (min-width: 768px) and (max-width: 850px) {
  .header-logo {
    width: 120px;
  }
}

/* tablet header: hamburger (768-1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  [id] {
    scroll-margin-top: 100px; /* header 80px + 20px */
  }

  header {
    height: 80px;
    background: #fff;
  }

  .header-inner {
    padding: 0 60px 0 clamp(15px, 2vw, 20px);
  }

  .header-logo {
    width: 110px;
  }

  .header-submenu.pc {
    display: none !important;
  }

  .header-submenu.sp {
    display: block !important;
    margin-left: auto;
  }
  .header-submenu-list {
    gap: 0;
  }

  .header-submenu-list > li a {
    border: none;
    background: #17c6cc;
    border-radius: 0;
    padding: 0;
    width: 60px;
    height: 80px;
    position: relative;
  }

  .header-submenu-list > li:not(:first-child) a::after {
    display: block;
    content: "";
    background: #fff;
    width: 1px;
    height: calc(100% - 10px);
    position: absolute;
    left: 0;
    top: 5px;
    transform: translate(0, 0);
    border-radius: 0;
    opacity: 1;
  }

  .header-submenu-list > li a img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .header-submenu-list > li a::after {
    display: none;
  }

  .header-submenu-list > li.header-submenu-contact a {
    background: #17c6cc;
  }

  .header-submenu-list > li a:hover {
    transform: scale(1);
  }

  .gnav {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100dvh;
    background: #000;
    display: none;
    flex: none;
    z-index: 20;
  }

  .gnav-list {
    display: block;
    padding: 100px 40px 0;
    flex-wrap: wrap;
  }

  .gnav-list > li {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: bold;
    letter-spacing: 0.1em;
    white-space: normal;
  }

  .gnav-list > li a {
    color: #fff;
    white-space: normal;
  }

  .gnav-list > li a::after {
    width: 10px;
    height: 10px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: translate(0, -50%) rotate(-45deg);
  }

  #openmenu {
    display: block;
    width: 60px;
    height: 80px;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    background: #000;
    color: #fff;
  }

  #openmenu span {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 15px;
    transition: all 0.25s ease;
  }

  #openmenu span:nth-child(1) {
    top: 22px;
  }
  #openmenu span:nth-child(2) {
    top: 31px;
  }
  #openmenu span:nth-child(3) {
    top: 40px;
  }

  #openmenu p {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 9px;
    line-height: 1;
    color: #fff;
  }

  #openmenu.is-open span:nth-child(1) {
    transform: rotate(45deg);
    top: 31px;
    left: 15px;
  }

  #openmenu.is-open span:nth-child(2) {
    opacity: 0;
    left: -25px;
  }

  #openmenu.is-open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 31px;
    left: 15px;
  }
}

/* s0 only */
@media screen and (max-width: 767px) {
  /* common item ---------------------------------------*/

  .pc {
    display: none !important;
  }
  .pcbr {
    display: none;
  }

  /* layout ---------------------------------------*/

  .header-inner,
  .footer-inner,
  .inner,
  .wrapper {
    min-width: 0;
    width: 100%;
  }

  /* header ---------------------------------------*/

  [id] {
    scroll-margin-top: 80px; /* header 60px + 20px */
  }

  header {
    position: fixed;
    height: 60px;
    background: #fff;
  }

  .header-inner {
    padding: 0 60px 0 20px;
  }

  .header-logo {
    width: 80px;
  }

  .header-submenu {
    margin-left: auto;
  }

  .header-submenu-list {
    gap: 0;
  }

  .header-submenu-list > li {
  }

  .header-submenu-list > li a {
    border: none;
    background: #17c6cc;
    border-radius: 0;
    padding: 0;
    width: 60px;
    height: 60px;
    position: relative;
  }

  .header-submenu-list > li:not(:first-child) a::after {
    display: block;
    content: "";
    background: #fff;
    width: 1px;
    height: calc(100% - 10px);
    position: absolute;
    left: 0;
    top: 5px;
    transform: translate(0, 0);
    border-radius: 0;
    opacity: 1;
  }

  .header-submenu-list > li a img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .header-submenu-list > li a::after {
    display: none;
  }

  .header-submenu-list > li a:hover {
    transform: scale(1);
  }

  .header-submenu-list > li.header-submenu-download a {
    background: #17c6cc;
  }

  .header-submenu-list > li.header-submenu-download a::after {
    display: none;
  }

  .header-submenu-list > li.header-submenu-contact a {
    background: #17c6cc;
  }

  .header-submenu-list > li.header-submenu-download a span::before {
    display: none;
  }

  .header-submenu-list > li.header-submenu-contact a span::before {
    display: none;
  }

  .overlay {
    content: "";
    display: block;
    position: fixed;
    width: 100%;
    height: 300px;
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    z-index: 6;
  }

  #openmenu {
    display: block;
    width: 60px;
    height: 60px;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    background: #000;
    color: #fff;
  }

  #openmenu span {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 15px;
    transition: all 0.25s ease;
  }

  #openmenu span:nth-child(1) {
    top: 14px;
  }
  #openmenu span:nth-child(2) {
    top: 23px;
  }
  #openmenu span:nth-child(3) {
    top: 32px;
  }

  #openmenu p {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 9px;
    line-height: 1;
    color: #fff;
  }

  #openmenu.is-open span:nth-child(1) {
    transform: rotate(45deg);
    top: 23px;
    left: 15px;
  }

  #openmenu.is-open span:nth-child(2) {
    opacity: 0;
    left: -25px;
  }

  #openmenu.is-open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 23px;
    left: 15px;
  }

  .bodyfixed {
    position: fixed;
    width: 100%;
    height: 100%;
  }

  /* gnav ---------------------------------------*/

  .gnav {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100dvh;
    background: #000;
    display: none;
    z-index: 20;
  }

  .gnav-list {
    display: block;
    padding: 100px 40px 0;
  }

  .gnav-list > li {
    font-size: 14px;
    margin-bottom: 25px;
    font-weight: bold;
    letter-spacing: 0.1em;
  }

  .gnav-list > li a {
    display: block;
    position: relative;
    padding-right: 13px;
    color: #fff;
  }

  .gnav-list > li a::after {
    width: 10px;
    height: 10px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: translate(0, -50%) rotate(-45deg);
  }

  .gnav-list > li a:hover {
    opacity: 1;
  }

  /* kv ---------------------------------------*/

  .kv-wrapper {
    background: url(../img/kv_bg_sp.png) no-repeat center top;
    background-size: cover;
    height: auto;
    padding: 60px 5vw 0 5vw;
    width: auto;
    min-height: auto;
    margin: auto;
  }

  .kv {
    padding: 7.5vw 0 0 0;
    height: 113.5vw;
  }

  .kv-title {
    font-size: 6vw;
    line-height: 1.45;
    margin-bottom: 4vw;
    letter-spacing: 0.03em;
  }

  .kv-lead {
    font-size: 3.1vw;
    line-height: 1.5;
    letter-spacing: 0.11em;
    margin-bottom: 42vw;
  }

  .kv-text {
    font-size: 3.1vw;
    line-height: 1.4;
    margin-bottom: 4.5vw;
    letter-spacing: 0.1em;
  }

  .kv-cta {
    gap: 10px 10px;
  }

  .kv-cta li {
    width: 162px;
  }

  .kv-cta li a {
    font-size: 14px;
    padding: 11px 10px 12px;
    letter-spacing: 0.1em;
  }

  .kv-cta li a::after {
    display: none;
  }

  .kv-cta li a:hover {
    transform: scale(1);
  }

  .kv-cta li a span {
    gap: 5px;
  }

  .kv-cta-download a span::before {
    background: url("../img/icon_download.png") no-repeat left top;
    background-size: contain;
    width: 15px;
    height: 16px;
  }

  .kv-cta-contact a span::before {
    background: url("../img/icon_memo.png") no-repeat left top;
    background-size: contain;
    width: 16px;
    height: 15px;
  }

  /* fixedcta ---------------------------------------*/

  .fixedcta {
    padding: 20px 20px 20px;
  }

  .fixedcta-lead {
    font-size: 14px;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
  }

  /* common ---------------------------------------*/

  .section {
    padding: 50px 20px 0;
  }

  /* about ---------------------------------------*/

  .about {
    padding-top: 35px;
  }

  .about-bg {
    width: 85vw;
    height: calc(100% - 0px);
    right: -20px;
  }

  .about-title {
    padding: 35px 0 25px 0;
  }

  .about-title img {
    width: 330px;
  }

  .about-inner {
    display: block;
  }

  .about-image {
    width: 100%;
    padding-top: 0;
    margin-bottom: 20px;
  }

  .about-image img {
    width: 100%;
  }

  .about-body {
    padding: 0 15px 30px;
  }

  .about-body-title {
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
    display: inline-block;
  }

  .about-text {
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0.03em;
    padding-right: 0px;
  }

  .about-text p:not(:last-child) {
    margin-bottom: 17px;
  }

  /* issue ---------------------------------------*/

  .issue {
    padding-top: 74px;
    padding-bottom: 30px;
  }

  .issue::after {
    border-top: 25px solid #fff;
    bottom: -25px;
  }

  .issue-title {
    margin-bottom: 25px;
  }
  .issue-title img {
    width: 335px;
  }

  .issue-list {
    display: block;
  }

  .issue-list > li {
    width: auto;
    padding: 6px 12px 5px 15px;
    margin: 0 auto 20px;
    max-width: 450px;
  }

  .issue-item-title {
    font-size: 16px;
    margin-bottom: 4px;
  }

  .isusue-item-list > li {
    font-size: 12px;
    line-height: 1.65;
    padding-left: 10px;
    letter-spacing: 0.03em;
  }

  .isusue-item-list > li::before {
    top: 7px;
    width: 3px;
    height: 3px;
    border: 2px solid #17c6cc;
  }

  /* solution ---------------------------------------*/

  .solution {
    padding-top: 105px;
  }

  .solution-title {
    margin-bottom: 28px;
  }
  .solution-title img {
    width: 250px;
  }

  .solution-image {
    padding-bottom: 25px;
    max-width: 450px;
    margin: 0 auto;
  }

  /* reason ---------------------------------------*/

  .reason {
    padding-top: 125px;
    padding-bottom: 30px;
  }

  .reason::before {
    background: url(../img/bg_03.png) no-repeat center bottom;
    background-size: 100%;
    width: 100%;
    height: 55vw;
    top: 500px;
  }

  .reason::after {
    background: url(../img/bg_04.png) no-repeat center top;
    background-size: 100%;
    width: 100%;
    height: 80vw;
  }

  .reason-inner {
  }

  .reason-title {
    text-align: center;
    margin-bottom: 32px;
  }

  .reason-title img {
    width: 325px;
  }

  .reason-body {
    max-width: 450px;
    margin: 0 auto;
  }

  .reason-point {
    margin-bottom: 33px;
  }

  .reason-point-num {
    font-size: 16px;
    border-bottom: 1px solid #17c6cc;
    line-height: 1.5;
    padding: 0 0px 4px 20px;
    margin-left: -20px;
    margin-bottom: 4px;
  }

  .reason-point-title {
    font-size: 16px;
    line-height: 1.4;
    padding-left: 0px;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
  }

  .reason-point-text {
    padding: 0;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 18px;
    letter-spacing: 0.06em;
  }

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

  .reason-image-01 {
    padding: 0 14px 10px;
  }

  .reason-image-02 {
    padding: 2px 10px 10px;
  }

  /* consultant ---------------------------------------*/

  .bg-01 {
    background: url(../img/bg_05.png) no-repeat center top;
    background-size: 100%;
    position: relative;
  }

  .bg-01::before {
    top: 540px;
    height: 150vw;
    background: url(../img/bg_06.png) no-repeat center top;
    background-size: 100%;
  }

  .consultant {
    padding-top: 80px;
  }

  .consultant:before,
  .consultant::after {
    width: 100px;
  }
  .consultant:before {
    left: -20px;
  }
  .consultant::after {
    right: -20px;
  }

  .consultant-title {
    margin-bottom: 25px;
    text-align: center;
  }
  h2.consultant-title {
    width: 92%;
    display: block;
    margin: 0 auto 23px;
  }

  .consultant-title img {
    width: 60%;
  }

  .consultant-list-wrapper {
    padding: 0 42px 50px;
  }

  .consultant-list {
  }

  .consultant-list > li {
    box-shadow: 0px 5px 5px rgba(23, 198, 204, 0.12);
  }

  .consultant-item-image::after {
    padding-bottom: 10%;
  }

  .consultant-item-name {
    left: 25px;
    bottom: 15px;
  }

  .consultant-item-name b {
    font-size: 14px;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  }

  .consultant-item-body {
    padding: 5px 22px 10px;
  }

  .consultant-item-text {
    font-size: 12px;
    line-height: 1.57;
    letter-spacing: 0.07em;
    min-height: 10px;
  }

  .consultant-item-tag {
    gap: 5px 10px;
    margin-top: 10px;
  }

  .consultant-item-tag span {
    min-width: calc(50% - 5px);
    font-size: 10px;
    padding: 2px 5px 3px;
  }

  .consultant .swiper-pagination .swiper-pagination-bullet,
  .case .swiper-pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    margin: 0 13px;
  }

  /* case ---------------------------------------*/

  .case {
    padding-top: 60px;
  }

  .case:before,
  .case::after {
    width: 100px;
    height: calc(100% - 30px);
  }

  .case:before {
    left: -20px;
  }
  .case::after {
    right: -20px;
  }

  .case-title {
    margin-bottom: 28px;
  }

  .case-title img {
    width: 135px;
  }

  .case-list-wrapper {
    padding: 0 42px 40px;
  }

  .case-list {
  }

  .case-list > li {
    padding: 15px 10px;
    box-shadow: 0px 5px 5px rgba(23, 198, 204, 0.12);
  }

  .case-item-company {
    padding: 1px 10px 2px;
    font-size: 13px;
    letter-spacing: 0.1em;
  }

  .case-item-image {
    margin-top: 20px;
  }

  .case-item-body {
    padding: 15px 5px 0;
    min-height: 10px;
  }

  .case-item-subtitle {
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    padding-bottom: 4px;
  }

  .case-item-title {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
  }

  .case-item-title small {
    font-size: 73%;
  }

  .case-item-text {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }

  .case-item-more {
    padding-top: 8px;
    letter-spacing: 0.05em;
  }

  .case-item-more a {
    font-size: 12px;
  }

  .case .swiper-button-prev,
  .case .swiper-button-next {
    width: 30px;
    height: 30px;
    top: 45%;
  }

  .case .swiper-button-prev {
    left: 0;
    margin-left: 0;
  }

  .case .swiper-button-next {
    right: 0;
    margin-right: 0;
  }

  .case .swiper-button-prev:hover {
    transform: scale(-1, 1);
  }
  .case .swiper-button-next:hover {
    transform: scale(1);
  }

  .case .swiper-button-disabled {
    opacity: 0 !important;
  }

  /* step ---------------------------------------*/

  .step {
    padding-top: 63px;
    padding-bottom: 85px;
    background: #fff;
  }

  .step-title {
    margin-bottom: 25px;
  }

  .step-title img {
    width: 240px;
  }

  .step-body {
    padding-left: 25px;
    max-width: 335px;
    margin: 0 auto;
  }

  .step-list {
  }

  .step-item {
    height: 80px;
  }

  .step-item::after {
    border-bottom: 1px dotted #17c6cc;
    width: calc(100% - 90px);
  }

  .step-item-image {
    width: 95px;
    left: -8px;
    top: -5px;
  }

  .step-list > li:nth-child(5) .step-item-image {
    top: -5px;
  }

  .step-item-text {
    left: 93px;
  }

  .step-term {
    left: 0px;
    bottom: -2px;
    width: 21.5px;
  }

  /* faq ---------------------------------------*/

  .section-faq {
    padding: 20px 20px 76px;
  }

  .faq-heading {
    width: 36%;
    display: block;
    margin-bottom: 33px;
  }
  .faq-list {
    width: 100%;
  }

  .faq-item:not(:last-child) {
    margin-bottom: 20px;
  }

  .faq-item-title {
    font-size: 12px;
    padding-bottom: 3px;
    padding-right: 28px;
    border-bottom: 1px dotted #17c6cc;
  }

  .faq-item-open {
    width: 14px;
    height: 14px;
  }

  .faq-item-open::before,
  .faq-item-open::after {
    width: 14px;
    height: 2px;
  }

  .faq-item-body {
    font-size: 11px;
    line-height: 1.65;
  }

  .faq-item-body-inner {
    padding: 2px 10px 15px;
  }

  /* company ---------------------------------------*/

  .company {
    padding-top: 25px;
    padding-bottom: 77px;
  }

  .company-title {
    margin-bottom: 30px;
    text-align: center;
  }

  .company-title img {
    width: 335px;
  }

  .company-message {
    display: block;
    margin-bottom: 27px;
  }

  .company-image {
    width: 91px;
    padding: 0;
    margin: 0 auto;
  }

  .company-image img {
    position: relative;
    left: -12px;
  }

  .company-text {
    margin-bottom: 32px;
  }

  .company-text p {
    line-height: 1.4;
    font-size: 11px;
    margin-bottom: 13px;
    letter-spacing: 0em;
  }

  .company-table,
  .company-table tbody,
  .company-table tr,
  .company-table th,
  .company-table td {
    display: block;
  }

  .company-table {
    letter-spacing: 0.1em;
  }

  .company-table tr {
    border-bottom: 1px solid #e1f8f8;
  }

  .company-table th {
    font-size: 10px;
    width: auto;
    border: none;
    line-height: 1.6;
    padding: 4px 0 0;
  }

  .company-table td {
    font-size: 10px;
    border-bottom: none;
    line-height: 1.6;
    padding: 0px 0 8px;
    letter-spacing: 0.07em;
  }

  /* footer ---------------------------------------*/

  footer {
    padding: 30px 20px 150px;
  }

  .footer-inner {
    display: block;
  }

  .footer-logo {
    display: block;
    margin: 0 auto;
    width: 200px;
    margin-bottom: 28px;
  }

  .footer-body {
  }

  .footer-nav {
    margin-bottom: 27px;
  }

  .footer-nav-list {
    justify-content: center;
  }

  .footer-nav-list > li {
    font-size: 13px;
    letter-spacing: 0.04em;
  }

  .footer-nav-list > li a {
    padding: 0 18px;
  }

  .footer-nav-list > li a::after {
    height: 8px;
  }
  .footer-nav-list > li:first-child a::after {
    display: none;
  }

  .footer-nav-list > li:first-child a {
    padding-left: 0;
    border-left: none;
  }

  .footer-subnav {
    padding: 0 45px 0;
    margin-bottom: 18px;
  }

  .footer-subnav-list {
    justify-content: center;
    gap: 6px 15px;
  }

  .footer-subnav-list > li {
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  .footer-lang {
    justify-content: center;
    gap: 3px;
  }

  .footer-lang > li a {
    font-size: 13px;
    width: 48px;
    padding: 2px 4px 4px;
  }

  /* column (top) ---------------------------------------*/

  .section-column {
    padding: 56px 20px 72px;
  }

  .section-column-heading {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .top-col-card-title {
    font-size: 11px;
  }

  .top-column-btn-prev,
  .top-column-btn-next {
    width: 40px;
    height: 40px;
  }

  .top-column-btn-prev {
    left: -40px;
    margin-left: 0;
  }

  .top-column-btn-next {
    right: -40px;
    margin-right: 0;
  }
  .section-column-arrow {
    position: relative;
    display: inline-block;
    top: 2px;
    width: 18px;
    height: 1px;
    border-radius: 9999px;
    background: #17c6cc;
    flex-shrink: 0;
    transition: background 0.25s;
  }
  .section-column-arrow::before {
    content: "";
    position: absolute;
    top: calc(50% - 2px);
    right: 0;
    width: 8px;
    height: 1px;
    border-radius: 9999px;
    background: #17c6cc;
    transform: rotate(45deg);
    transform-origin: calc(100% - 2px) 50%;
    transition: background 0.25s;
  }

  .section-column-cta {
    margin-top: 23px;
  }

  .section-column-btn {
    font-size: 14px;
    padding: 10px 15px 10px 30px;
    width: 58%;
    gap: 5px;
  }

  /* recruit ---------------------------------------*/

  .section-recruit {
    padding: 60px 20px 10px;
  }

  .recruit-slider-outer {
    overflow: visible;
    padding: 0 42px 40px;
  }

  .recruit-slider-outer::before {
    left: calc(50% - 50vw);
    width: calc((100vw - 100%) / 2 + 80px);
  }

  .recruit-slider-outer::after {
    right: calc(50% - 50vw);
    width: calc((100vw - 100%) / 2 + 80px);
  }

  .recruit-item-body {
    padding: 14px 14px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .recruit-heading {
    font-size: 28px;
    margin-bottom: 36px;
  }

  .recruit-btn-prev,
  .recruit-btn-next {
    width: 40px;
    height: 40px;
  }

  .recruit-btn-prev {
    left: 10px;
    margin-left: 0;
  }

  .recruit-btn-next {
    right: 10px;
    margin-right: 0;
  }

  .recruit-item-date {
    font-size: 12px;
  }

  .recruit-item-text {
    font-size: 12px;
    margin-bottom: 3px;
  }
  .recruit-list-wrapper .swiper-slide {
    width: 250px;
  }
  .recruit-item-arrow {
    display: block;
    width: 45px;
    height: 4px;
    position: relative;
    margin-left: auto;
  }
  .recruit-item-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #17c6cc;
    transform: translateY(-50%);
  }
  .recruit-item-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: 40%;
    width: 8px;
    height: 5px;
    border-top: 1px solid #17c6cc;
    transform: translateY(-60%) rotate(45deg);
  }
  .recruit-list-wrapper .swiper-pagination {
    position: static;
    margin-top: 35px;
    text-align: center;
  }
  .recruit-list-wrapper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

/* iphone5 iphoneSE用 */
@media screen and (max-width: 376px) {
  .kv-cta li {
    width: 47%;
  }
  .kv-cta li a {
    font-size: 3.2vw;
  }
}

/* ============================================================
   下層ページ共通
   ============================================================ */

/* page-content ---------------------------------------*/

.page-content {
  padding-top: 100px; /* fixed header分のオフセット */
}

/* breadcrumb ---------------------------------------*/

.breadcrumb {
  padding: 34px 0 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 15px;
  color: #17c6cc;
}

.breadcrumb-list li + li::before {
  content: ">";
  margin: 0 8px;
  color: #17c6cc;
}

.breadcrumb-list a {
  color: #17c6cc;
}

.breadcrumb-list a:hover {
  text-decoration: underline;
}

.breadcrumb-list li:last-child {
  color: #17c6cc;
}

/* 下層ページ SP ---------------------------------------*/

@media screen and (max-width: 767px) {
  .page-content {
    padding-top: 60px;
  }
  .breadcrumb {
    padding: 15px 0;
  }
  /* .breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 11px;
    color: #17c6cc;
  } */

  .breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0;
    font-size: 11px;
    color: #17c6cc;
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .breadcrumb-list li {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .breadcrumb-list li:last-child {
    flex: 1 1 auto;
    min-width: 0;
    color: #17c6cc;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* ============================================================
   ご提供サービス（#services）
   ============================================================ */

.section-services {
  background: #f1fcfc;
  padding: 40px 30px 40px;
  position: relative;
}
.section.reason {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/bg_blue_next.png) no-repeat top center;
  background-size: 100%;
}

.services-heading {
  font-size: 44px;
  font-weight: 900;
  color: #333;
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: 0.02em;
}

h2.services-heading {
  width: 440px;
  margin: 0 auto 72px;
}
h2.services-heading img {
}

.section-services .inner {
  max-width: 1060px;
}

/* カードグリッド */
.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* カード */
.services-card {
  background: #fff;
  border-radius: 0;
  padding: 30px 28px 44px;
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.services-card-title {
  font-size: 26px;
  font-weight: 500;
  color: #333;
  text-align: center;
  line-height: 1.4;
  min-height: 73px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-card-divider {
  width: 150px;
  height: 2px;
  background: #17c6cc;
  margin: 0 auto;
  flex-shrink: 0;
}

.services-card-desc {
  font-size: 16px;
  line-height: 1.9;
  color: #333;
  flex: 1;
  letter-spacing: 0.05em;
}

.services-card-btn {
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding: 12px 36px 12px 28px;
  border-radius: 50px;
  transition: opacity 0.25s;
  width: 100%;
  background: url(../img/icon-service-btn.png) no-repeat right 20px center / 28px 10px #17c6cc;
  display: block;
  text-align: center;
  letter-spacing: 0.12em;
}

.services-card-btn:hover {
  opacity: 0.85;
  color: #fff;
}

/* ご提供サービス SP ---------------------------------------*/

@media screen and (max-width: 767px) {
  .section-services {
    padding: 35px 20px 0;
  }
  h2.services-heading {
    width: 56%;
    margin: 0 auto 24px;
  }

  .services-heading {
    font-size: 28px;
    margin-bottom: 36px;
  }

  .services-list {
    gap: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .services-card-divider {
    width: 60%;
    height: 1px;
    background: #17c6cc;
    margin: 0 auto;
    flex-shrink: 0;
  }

  .services-card {
    padding: 14px 12px 20px;
    gap: 15px;
    width: 48%;
    margin-bottom: 20px;
  }

  .services-card-title {
    font-size: 13px;
    min-height: 42px;
  }

  .services-card-desc {
    font-size: 11px;
    line-height: 1.8;
  }

  .services-card-btn {
    font-size: 12px;
    padding: 12px 5px 12px 7px;
    background: url(../img/icon-service-btn.png) no-repeat right 6px center / 13px 6px #17c6cc;
    text-align: left;
    letter-spacing: 0.03em;
  }

  .section.reason {
    background: url(../img/bg_blue_next_sp.png) no-repeat top center;
    background-size: 100%;
  }

  h2.section-column-heading {
    width: 54%;
    display: block;
    margin: 0 auto 30px;
  }
  .top-column-slider-outer {
    position: relative;
    display: block;
    width: 74%;
    margin: 0 auto;
  }
  .top-col-card-body {
    padding: 9px 13px 18px;
  }
  .top-col-card-date {
    font-size: 13px;
    font-weight: 500;
    color: #17c6cc;
    margin-bottom: 8px;
  }
  .top-col-card-tag {
    display: inline-flex;
    background: #17c6cc;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    padding: 2px 45px;
    border-radius: 50px;
    margin-bottom: 5px;
  }
  .top-col-card-arrow {
    display: block;
    width: 50px;
    height: 5px;
    position: relative;
    margin-left: auto;
  }
  .top-col-card-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #17c6cc;
    transform: translateY(-50%);
  }
  .top-col-card-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 10px;
    height: 7px;
    border-top: 1px solid #17c6cc;
    transform: translateY(-60%) rotate(45deg);
  }
  .top-column-list-wrapper .swiper-pagination {
    position: static;
    margin-top: 22px;
    text-align: center;
  }
  .top-column-list-wrapper.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    background: #17c6cc;
    opacity: 0.3;
    width: 12px;
    height: 12px;
    margin: 0 5px;
  }
  .top-column-list-wrapper .swiper-slide {
    width: 250px;
  }
}
