@charset "UTF-8";
/*-----------------------
mixin
-----------------------*/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
/*mediaquery*/
html {
  font-size: 62.5%;
  line-height: 1;
}

/*-----------------------
reset
-----------------------*/
html, body, div, span, applet, object, iframe, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}

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

caption, th, td {
  text-align: left;
  vertical-align: middle;
  font-weight: 200;
}

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

a {
  display: inline-block;
}

a img {
  border: none;
}

img {
  display: block;
  vertical-align: bottom;
  max-width: 100%;
}

ul {
  list-style: none;
}

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

a {
  color: #000;
  text-decoration: none;
}
a:link {
  color: #000;
}
a:active {
  color: #000;
}
a:visited {
  color: #000;
}
a:hover {
  cursor: pointer;
}

p {
  margin: 0;
}

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

*:focus {
  outline: none;
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  letter-spacing: 0;
  width: 100%;
  font-size: 15px;
  line-height: 2;
  color: #222222;
  margin: auto;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #222222;
  transition: 0.3s;
}

.inner {
  max-width: 1100px;
  margin: auto;
}
@media (max-width: 767px) {
  .inner {
    width: 92%;
  }
}

.flex {
  display: flex;
}

@keyframes move {
  0% {
    left: 0;
  }
  80% {
    left: 94%;
  }
  100% {
    left: 0;
  }
}
header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  transition: all 0.4s ease;
}
header .inner {
  max-width: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  header .inner {
    width: 92%;
  }
}
header .inner .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  header .inner .flex {
    padding: 7px 0;
  }
}
header .inner .flex .logo {
  z-index: 99;
  margin-left: 50px;
}
@media (max-width: 767px) {
  header .inner .flex .logo {
    z-index: 0;
    margin-left: 0;
  }
}
header .inner .flex .logo a {
  display: block;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  header .inner .flex .logo a {
    width: 200px;
  }
}
header .inner .flex .logo a img {
  display: block;
  transition: all 0.4s;
}
header .inner .flex .logo a:hover {
  opacity: 0.6;
}
@media (max-width: 767px) {
  header .inner .flex .logo a:hover {
    opacity: 1;
  }
}
header .inner .flex .menu-toggle {
  display: none;
}
@media (max-width: 767px) {
  header .inner .flex .menu-toggle {
    display: block;
    background: #fff;
    border: 1px solid #1266a0;
    width: 45px;
    height: 45px;
    position: relative;
    z-index: 99;
    top: 0;
    right: 0;
    transition: all 0.1s;
    border-radius: 100%;
  }
}
header .inner .flex .menu-toggle span {
  position: absolute;
  display: block;
  width: 16px;
  height: 1px;
  background: #1266a0;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  transition: all 0.4s;
}
header .inner .flex .menu-toggle span:first-child {
  top: 15px;
}
header .inner .flex .menu-toggle span:nth-child(2) {
  top: 20px;
}
header .inner .flex .menu-toggle span.text {
  background: none;
  content: "";
  background: url("../img/menu.png") no-repeat;
  background-size: contain;
  background-position: center;
  width: 45px;
  height: 6px;
  top: auto;
  bottom: 11px;
  left: 0;
  right: 0;
  margin: auto;
}
header .inner .flex .menu-toggle.active span:first-child {
  top: 17px;
  transform: rotate(20deg);
}
header .inner .flex .menu-toggle.active span:nth-child(2) {
  top: 17px;
  transform: rotate(-20deg);
}
header .inner .flex .menu-toggle.active span.text {
  background: url("../img/close.png") no-repeat;
  background-size: contain;
  background-position: center;
}
header .inner .flex .mail-icon {
  display: none;
}
@media (max-width: 767px) {
  header .inner .flex .mail-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    content: "";
    width: 44px;
    height: 44px;
    background: #1266a0;
    border: 1px solid #1266a0;
    border-radius: 100%;
    top: 8px;
    right: 70px;
    transition: all 0.4s;
  }
}
header .inner .flex .mail-icon span {
  transition: all 0.4s;
}
@media (max-width: 767px) {
  header .inner .flex .links {
    position: absolute;
    width: 100%;
    height: 100vh;
    opacity: 0;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: all 0.4s;
    background: #dbf1fb;
    padding: 92px 0 50px;
  }
}
@media (max-width: 767px) {
  header .inner .flex .links.active {
    opacity: 1;
    transform: translateX(0);
  }
}
header .inner .flex .links ul {
  display: flex;
  align-items: center;
  gap: 0 30px;
}
@media (max-width: 767px) {
  header .inner .flex .links ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px 0;
    width: 75%;
    margin: 0 auto;
  }
}
header .inner .flex .links ul li {
  position: relative;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  header .inner .flex .links ul li {
    color: #333;
    width: 100%;
  }
}
header .inner .flex .links ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 6px;
  position: relative;
  color: #fff;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  header .inner .flex .links ul li a {
    font-size: 16px;
    color: #1266a0;
    justify-content: left;
  }
}
header .inner .flex .links ul li a span {
  transition: all 0.4s;
}
header .inner .flex .links ul li a span img {
  transition: all 0.4s;
}
@media (max-width: 767px) {
  header .inner .flex .links ul li a span img {
    filter: brightness(0) saturate(100%) invert(26%) sepia(99%) saturate(918%) hue-rotate(177deg) brightness(97%) contrast(90%);
  }
}
@media (max-width: 767px) {
  header .inner .flex .links ul li a:before {
    display: none;
  }
}
header .inner .flex .links ul li a:hover {
  opacity: 0.6;
}
@media (max-width: 767px) {
  header .inner .flex .links ul li a:hover {
    opacity: 1;
  }
}
header .inner .flex .links ul li.contact {
  transition: all 0.4s;
  position: relative;
}
@media (max-width: 767px) {
  header .inner .flex .links ul li.contact {
    border-bottom: none;
    padding-left: 0;
  }
}
header .inner .flex .links ul li.contact a {
  text-align: center;
  width: 140px;
  background: #1266a0;
  border-radius: 0 0 0 22px;
  padding: 33px 0;
}
@media (max-width: 767px) {
  header .inner .flex .links ul li.contact a {
    width: 100%;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 22px 0;
    justify-content: center;
  }
}
header .inner .flex .links ul li.contact a span {
  transition: all 0.4s;
}
@media (max-width: 767px) {
  header .inner .flex .links ul li.contact a span img {
    filter: brightness(0) saturate(100%) invert(84%) sepia(100%) saturate(2%) hue-rotate(37deg) brightness(109%) contrast(101%);
  }
}
header .inner .flex .links ul li.contact a:hover {
  opacity: 1;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 767px) {
  header .inner .flex .links ul li.contact a:hover {
    color: #fff;
  }
}
header .inner .flex .links ul li.contact a:hover span {
  opacity: 0.6;
}
@media (max-width: 767px) {
  header .inner .flex .links ul li.contact a:hover span {
    opacity: 1;
  }
}
header.active {
  background: #fff;
}
header.active .inner .flex .logo a img {
  filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2020%) hue-rotate(181deg) brightness(96%) contrast(86%);
}
header.active .inner .flex .menu .links ul li a {
  color: #1266a0;
}
header.active .inner .flex .menu .links ul li a span img {
  filter: brightness(0) saturate(100%) invert(32%) sepia(89%) saturate(580%) hue-rotate(163deg) brightness(91%) contrast(97%);
}
header.active .inner .flex .menu .links ul li.contact a {
  color: #fff;
}
header.active .inner .flex .menu .links ul li.contact a span img {
  filter: none;
}
header.active .inner .flex .menu .links ul li.contact a:hover {
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 767px) {
  header.active .inner .flex .menu .links ul li.contact a:hover {
    color: #fff;
  }
}
header.lower {
  background: #fff;
}
header.lower .inner .flex .links ul li a {
  color: #333;
}
header.lower .inner .flex .links ul li.contact a {
  color: #fff;
}
header.lower .inner .flex .links ul li.contact a:hover {
  color: #e31e23;
}

.mainv {
  position: relative;
  padding-top: 650px;
  z-index: 3;
}
@media (max-width: 767px) {
  .mainv {
    padding-top: 522px;
  }
}
.mainv:before {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, #70c4f5, #73d7e1);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 0 0 30px 30px;
}
@media (max-width: 767px) {
  .mainv:before {
    display: none;
  }
}
.mainv .main {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  right: 0;
  bottom: 35px;
  margin: auto;
}
@media (max-width: 767px) {
  .mainv .main {
    bottom: 0;
  }
}
.mainv .object {
  position: absolute;
  z-index: 1;
  color: #fff;
  right: 10px;
  bottom: 90px;
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  .mainv .object {
    right: -20px;
    bottom: 66px;
  }
}
.mainv .object p {
  display: flex;
  gap: 0 10px;
  line-height: 1;
}
@media (max-width: 767px) {
  .mainv .object p {
    gap: 0 5px;
  }
}
@media (max-width: 767px) {
  .mainv .object p img {
    width: 40px;
  }
}
.mainv .object p span {
  position: relative;
  margin-top: 5px;
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #fff;
}
@media (max-width: 767px) {
  .mainv .object p span {
    width: 30px;
  }
}
.mainv .object p span:before {
  position: absolute;
  content: "";
  background: #fff;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  animation: move 2s linear infinite;
}
@media (max-width: 767px) {
  .mainv .object p span:before {
    width: 3px;
    height: 3px;
  }
}

.about {
  position: relative;
  padding: 100px 0;
}
@media (max-width: 767px) {
  .about {
    padding: 165px 0 155px;
  }
}
.about:before {
  position: absolute;
  content: "";
  background: url("../img/about-bg.jpg") no-repeat;
  background-size: cover;
  width: 100%;
  height: 110%;
  top: -10%;
  left: 0;
}
@media (max-width: 767px) {
  .about:before {
    background: url("../img/about-bg-sp.jpg") no-repeat;
    background-size: cover;
  }
}
.about .inner {
  position: relative;
}
.about .inner h2 {
  text-align: center;
}
.about .inner h2 span {
  display: block;
  margin-bottom: 40px;
}
.about .inner h2 span.en {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
  line-height: 1;
}
.about .inner h2 span.jp {
  font-family: "ta-kobe", sans-serif;
  font-size: 45px;
  font-weight: 500;
  line-height: 1.57;
  background: linear-gradient(45deg, #183d6a, #617db6, #3cb2e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 767px) {
  .about .inner h2 span.jp {
    font-size: 34px;
  }
}
.about .inner h3 {
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1;
}
@media (max-width: 767px) {
  .about .inner h3 {
    font-size: 18px;
  }
}
.about .inner .detail {
  text-align: center;
}
.about .inner .img-object {
  position: absolute;
}
.about .inner .left-top {
  top: 18px;
  left: 10px;
}
@media (max-width: 767px) {
  .about .inner .left-top {
    width: 142px;
    top: -125px;
    left: 0;
  }
}
.about .inner .left-bottom {
  left: -50px;
  bottom: -100px;
}
@media (max-width: 767px) {
  .about .inner .left-bottom {
    width: 127px;
    left: 0;
    bottom: -155px;
  }
}
.about .inner .right-top {
  top: -40px;
  right: 5px;
}
@media (max-width: 767px) {
  .about .inner .right-top {
    width: 126px;
    top: -135px;
    right: 0;
  }
}
.about .inner .right-bottom {
  right: -50px;
  bottom: -150px;
}
@media (max-width: 767px) {
  .about .inner .right-bottom {
    width: 171.5px;
    right: 0;
    bottom: -190px;
  }
}

.features {
  padding: 105px 0 110px;
}
@media (max-width: 767px) {
  .features {
    padding: 100px 0 80px;
  }
}
.features .inner {
  position: relative;
}
.features .inner:before {
  position: absolute;
  content: "";
  background: url("../img/f-object.png") no-repeat;
  background-size: contain;
  width: 441px;
  height: 181px;
  top: -45px;
  left: -15px;
}
@media (max-width: 767px) {
  .features .inner:before {
    width: 200px;
    height: 82px;
    top: -50px;
    left: -4%;
  }
}
.features .inner h2 {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: 44px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .features .inner h2 {
    font-size: 34px;
  }
}
.features .inner h2 .sub {
  display: block;
  font-size: 20px;
}
.features .inner h2 .blue {
  display: inline-block;
  color: #37accd;
}
.features .inner h2 .blue span {
  display: inline-block;
  font-size: 64px;
}
@media (max-width: 767px) {
  .features .inner h2 .blue span {
    font-size: 54px;
  }
}
.features .inner .read {
  text-align: center;
  margin-bottom: 40px;
}
.features .inner .flex {
  justify-content: space-between;
}
@media (max-width: 767px) {
  .features .inner .flex {
    flex-direction: column;
    gap: 40px 0;
  }
}
.features .inner .flex dl {
  width: 310px;
}
@media (max-width: 767px) {
  .features .inner .flex dl {
    width: 100%;
  }
}
.features .inner .flex dl dt {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}
.features .inner .flex dl dt img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.features .inner .flex dl dd {
  text-align: center;
}
.features .inner .flex dl dd .title {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .features .inner .flex dl dd .title {
    min-height: auto;
  }
}
.features .inner .flex dl:nth-child(2) {
  position: relative;
}
.features .inner .flex dl:nth-child(2):before {
  position: absolute;
  content: "";
  background: #ccc;
  width: 1px;
  height: 100%;
  top: 0;
  left: -40px;
}
@media (max-width: 767px) {
  .features .inner .flex dl:nth-child(2):before {
    display: none;
  }
}
.features .inner .flex dl:nth-child(2):after {
  position: absolute;
  content: "";
  background: #ccc;
  width: 1px;
  height: 100%;
  top: 0;
  right: -40px;
}
@media (max-width: 767px) {
  .features .inner .flex dl:nth-child(2):after {
    display: none;
  }
}

.service {
  background: #edfaff;
  padding: 110px 0;
}
@media (max-width: 767px) {
  .service {
    padding: 80px 0;
  }
}
.service .inner h2 {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.12em;
  margin-bottom: 30px;
}
.service .inner h2 span {
  font-family: "Outfit", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 55px;
  font-weight: 600;
  display: block;
  background: linear-gradient(to right, #4cb0e6, #50c6ce);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .service .inner h2 span {
    font-size: 40px;
  }
}
.service .inner h3 {
  text-align: center;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .service .inner h3 {
    font-size: 18px;
  }
}
.service .inner .flex {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 58px 0;
}
.service .inner .flex dl {
  width: 520px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .service .inner .flex dl {
    width: 100%;
  }
}
.service .inner .flex dl dd {
  background: #fff;
  padding: 30px 20px 20px;
}
.service .inner .flex dl dd .title {
  text-align: center;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .service .inner .flex dl dd .title {
    font-size: 20px;
    line-height: 1.5;
  }
}
.service .inner .flex dl dd .sub {
  text-align: center;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .service .inner .flex dl dd .sub {
    font-size: 14px;
  }
}
.service .inner .flex dl dd .sub.big {
  font-size: 20px;
}
@media (max-width: 767px) {
  .service .inner .flex dl dd .sub.big {
    font-size: 14px;
  }
}
.service .inner .flex dl dd ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 0;
}
.service .inner .flex dl dd ul li {
  width: 100%;
  text-align: center;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: 14px;
  font-weight: 700;
  background: #1266a0;
  color: #fff;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .service .inner .flex dl dd ul li {
    padding: 0 10px;
  }
}
.service .inner .flex dl dd ul li.w140 {
  width: 140px;
}
@media (max-width: 767px) {
  .service .inner .flex dl dd ul li.w140 {
    width: 100%;
  }
}
.service .inner .flex dl dd ul li.w170 {
  width: 170px;
}
@media (max-width: 767px) {
  .service .inner .flex dl dd ul li.w170 {
    width: 100%;
  }
}
.service .inner .flex dl dd ul li.w165 {
  width: 165px;
}
@media (max-width: 767px) {
  .service .inner .flex dl dd ul li.w165 {
    width: 100%;
  }
}
.service .inner .flex dl dd ul li.w215 {
  width: 215px;
}
@media (max-width: 767px) {
  .service .inner .flex dl dd ul li.w215 {
    width: 100%;
  }
}
.service .inner .flex dl dd ul li.w254 {
  width: 254px;
}
@media (max-width: 767px) {
  .service .inner .flex dl dd ul li.w254 {
    width: 100%;
  }
}
.service .inner .flex dl dd ul li.w301 {
  width: 301px;
}
@media (max-width: 767px) {
  .service .inner .flex dl dd ul li.w301 {
    width: 100%;
  }
}
.service .inner .flex dl dd ul li.w394 {
  width: 394px;
}
@media (max-width: 767px) {
  .service .inner .flex dl dd ul li.w394 {
    width: 100%;
  }
}
.service .inner .flex .last {
  width: 520px;
  text-align: center;
}
@media (max-width: 767px) {
  .service .inner .flex .last {
    width: 100%;
  }
}
.service .inner .flex .last .title {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .service .inner .flex .last .title {
    font-size: 20px;
  }
}
.service .inner .flex .last .detail {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .service .inner .flex .last .detail {
    margin-bottom: 20px;
  }
}
.service .inner .flex .last .img img {
  margin: 0 auto;
}

.voice {
  padding: 90px 0;
  background: linear-gradient(to right, #73d6e3, #66bff4);
}
@media (max-width: 767px) {
  .voice {
    padding: 80px 0;
  }
}
.voice .inner {
  position: relative;
}
.voice .inner:before {
  position: absolute;
  content: "";
  background: url("../img/v-light.png") no-repeat;
  background-size: contain;
  width: 396px;
  height: 228px;
  top: -40px;
  left: 0;
  right: 80px;
  margin: auto;
}
@media (max-width: 767px) {
  .voice .inner:before {
    width: 200px;
    height: 115px;
    top: -20px;
    right: 30px;
  }
}
.voice .inner:after {
  position: absolute;
  content: "";
  background: url("../img/v-object.png") no-repeat;
  background-size: contain;
  width: 473px;
  height: 204px;
  top: -65px;
  right: 0;
}
@media (max-width: 767px) {
  .voice .inner:after {
    width: 200px;
    height: 86px;
  }
}
.voice .inner h2 {
  position: relative;
  text-align: center;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.12em;
  margin-bottom: 60px;
  color: #fff;
  z-index: 1;
}
@media (max-width: 767px) {
  .voice .inner h2 {
    margin-bottom: 40px;
  }
}
.voice .inner h2 span {
  font-family: "Outfit", sans-serif;
  font-size: 55px;
  font-weight: 600;
  display: block;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .voice .inner h2 span {
    font-size: 40px;
  }
}
.voice .inner .flex {
  position: relative;
  justify-content: space-between;
  z-index: 1;
}
@media (max-width: 767px) {
  .voice .inner .flex {
    flex-direction: column;
    gap: 40px 0;
  }
}
.voice .inner .flex dl {
  background: #fff;
  width: 340px;
  border-radius: 10px;
  padding: 16px 24px 20px;
}
@media (max-width: 767px) {
  .voice .inner .flex dl {
    width: 100%;
  }
}
.voice .inner .flex dl dt {
  display: flex;
  align-items: center;
  gap: 0 15px;
  margin-bottom: 15px;
}
.voice .inner .flex dl dt .icon {
  width: -moz-fit-content;
  width: fit-content;
}
.voice .inner .flex dl dt .profile {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}
.voice .inner .flex dl dt .profile span {
  font-size: 14px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background: #249bcb;
  color: #fff;
  padding: 2px 10px 3px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.image-sec {
  padding: 90px 0 100px;
}
@media (max-width: 767px) {
  .image-sec {
    padding: 80px 0;
  }
}
.image-sec .inner .cnt {
  position: relative;
  padding-bottom: 70px;
  margin-bottom: 75px;
}
.image-sec .inner .cnt:before {
  position: absolute;
  content: "";
  background: url("../img/border.png");
  background-size: contain;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
}
.image-sec .inner .cnt h3 {
  position: relative;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0f3774;
  line-height: 1.6;
  padding-left: 26px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .image-sec .inner .cnt h3 {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
.image-sec .inner .cnt h3:before {
  position: absolute;
  content: "";
  background: linear-gradient(to bottom, #6fc0fa, #73d7e1);
  width: 6px;
  height: 50px;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.image-sec .inner .cnt .img {
  text-align: center;
}
.image-sec .inner .cnt .img img {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.image-sec .inner .cnt.last {
  position: relative;
  padding-bottom: 0;
  margin-bottom: 70px;
}
.image-sec .inner .cnt.last:before {
  display: none;
}
.image-sec .inner .cnt.last h3 {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .image-sec .inner .cnt.last h3 {
    position: relative;
  }
}
.image-sec .inner .flex {
  justify-content: space-between;
}
@media (max-width: 767px) {
  .image-sec .inner .flex {
    flex-direction: column;
    gap: 40px 0;
  }
}
.image-sec .inner .flex .box {
  width: 520px;
}
@media (max-width: 767px) {
  .image-sec .inner .flex .box {
    width: 100%;
  }
}
.image-sec .inner .flex .box .title {
  position: relative;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding-left: 19px;
  margin-bottom: 30px;
}
.image-sec .inner .flex .box .title:before {
  position: absolute;
  content: "";
  background: #7ecef4;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

.example {
  background: #edfaff;
  padding: 100px 0 40px;
}
@media (max-width: 767px) {
  .example {
    padding: 80px 0;
  }
}
.example .inner h2 {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.12em;
  margin-bottom: 40px;
}
.example .inner h2 span {
  font-family: "Outfit", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 55px;
  font-weight: 600;
  display: block;
  background: linear-gradient(to right, #4cb0e6, #50c6ce);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .example .inner h2 span {
    font-size: 40px;
  }
}
.example .inner .cnt {
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 50px;
}
.example .inner .cnt:before {
  position: absolute;
  content: "";
  background: url("../img/border.png");
  background-size: contain;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
}
.example .inner .cnt h3 {
  position: relative;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0f3774;
  line-height: 1.6;
  padding-left: 26px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .example .inner .cnt h3 {
    font-size: 20px;
    padding-left: 20px;
  }
}
.example .inner .cnt h3:before {
  position: absolute;
  content: "";
  background: linear-gradient(to bottom, #6fc0fa, #73d7e1);
  width: 6px;
  height: 80%;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 767px) {
  .example .inner .cnt h3:before {
    height: 100%;
  }
}
.example .inner .cnt .bg {
  width: -moz-fit-content;
  width: fit-content;
  background: #daf2fa;
  padding: 36px 20px 12px;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .example .inner .cnt .bg {
    width: 100%;
    padding: 30px 20px;
  }
}
.example .inner .cnt .bg .worries {
  position: relative;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding-left: 28px;
  margin-bottom: 22px;
}
@media (max-width: 767px) {
  .example .inner .cnt .bg .worries {
    font-size: 18px;
  }
}
.example .inner .cnt .bg .worries:before {
  position: absolute;
  content: "";
  background: url("../img/w-title-icon.png") no-repeat;
  background-size: contain;
  width: 19px;
  height: 29px;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.example .inner .cnt .bg .worries-detail {
  display: flex;
  gap: 0 16px;
}
@media (max-width: 767px) {
  .example .inner .cnt .bg .worries-detail {
    flex-direction: column;
    gap: 20px 0;
  }
}
.example .inner .cnt .bg .worries-detail .detail-cnt {
  position: relative;
  background: #fff;
  font-size: 16px;
  height: 66px;
  display: flex;
  align-items: center;
  padding-left: 55px;
  line-height: 1.375;
  border-radius: 3px;
}
@media (max-width: 767px) {
  .example .inner .cnt .bg .worries-detail .detail-cnt {
    font-size: 14px;
    padding-left: 50px;
  }
}
.example .inner .cnt .bg .worries-detail .detail-cnt.w285 {
  width: 285px;
}
@media (max-width: 767px) {
  .example .inner .cnt .bg .worries-detail .detail-cnt.w285 {
    width: 100%;
  }
}
.example .inner .cnt .bg .worries-detail .detail-cnt.w322 {
  width: 322px;
}
@media (max-width: 767px) {
  .example .inner .cnt .bg .worries-detail .detail-cnt.w322 {
    width: 100%;
  }
}
.example .inner .cnt .bg .worries-detail .detail-cnt.w340 {
  width: 340px;
}
@media (max-width: 767px) {
  .example .inner .cnt .bg .worries-detail .detail-cnt.w340 {
    width: 100%;
  }
}
.example .inner .cnt .bg .worries-detail .detail-cnt.w397 {
  width: 397px;
}
@media (max-width: 767px) {
  .example .inner .cnt .bg .worries-detail .detail-cnt.w397 {
    width: 100%;
  }
}
.example .inner .cnt .bg .worries-detail .detail-cnt.w412 {
  width: 412px;
}
@media (max-width: 767px) {
  .example .inner .cnt .bg .worries-detail .detail-cnt.w412 {
    width: 100%;
  }
}
.example .inner .cnt .bg .worries-detail .detail-cnt:before {
  position: absolute;
  content: "";
  background: url("../img/w-check-icon.png") no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  top: 0;
  left: 14px;
  bottom: 0;
  margin: auto;
}
@media (max-width: 767px) {
  .example .inner .cnt .bg .worries-detail .detail-cnt:before {
    width: 20px;
    height: 20px;
  }
}
.example .inner .cnt .bg.full {
  padding: 36px 20px 33px;
}
.example .inner .cnt .bg.full .worries-detail .detail-cnt {
  width: 340px;
  height: 45px;
}
@media (max-width: 767px) {
  .example .inner .cnt .bg.full .worries-detail .detail-cnt {
    width: 100%;
  }
}
.example .inner .cnt .img {
  overflow: hidden;
  border-radius: 3px;
}
.example .inner .cnt .img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.example .inner .cnt .example-detail {
  margin-top: 40px;
  margin-bottom: 30px;
}
.example .inner .cnt .example-detail .title {
  position: relative;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding-left: 19px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .example .inner .cnt .example-detail .title {
    font-size: 18px;
  }
}
.example .inner .cnt .example-detail .title:before {
  position: absolute;
  content: "";
  background: #7ecef4;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.example .inner .cnt .example-detail ul {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .example .inner .cnt .example-detail ul {
    flex-direction: column;
    gap: 60px 0;
  }
}
.example .inner .cnt .example-detail ul li {
  position: relative;
}
@media (max-width: 767px) {
  .example .inner .cnt .example-detail ul li {
    width: 350px;
    margin: 0 auto;
  }
}
.example .inner .cnt .example-detail ul li:before {
  position: absolute;
  content: "";
  background: url("../img/n-arrow.png") no-repeat;
  background-size: contain;
  width: 28px;
  height: 9px;
  top: 32px;
  right: -38px;
}
@media (max-width: 767px) {
  .example .inner .cnt .example-detail ul li:before {
    top: auto;
    right: 0;
    left: 0;
    margin: auto;
    bottom: -35px;
    transform: rotate(90deg);
  }
}
.example .inner .cnt .example-detail ul li .border {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: 16px;
  font-weight: 700;
  width: 180px;
  height: 70px;
  background: #fff;
  border: 1px solid #37accd;
  line-height: 1.375;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 3px;
}
@media (max-width: 767px) {
  .example .inner .cnt .example-detail ul li .border {
    width: 100%;
  }
}
.example .inner .cnt .example-detail ul li .border.mini {
  font-size: 14px;
}
.example .inner .cnt .example-detail ul li .border.dot {
  background: url("../img/e-detail-bg.png") no-repeat;
  background-size: contain;
  border: none;
}
@media (max-width: 767px) {
  .example .inner .cnt .example-detail ul li .border.dot {
    background: url("../img/e-detail-bg-sp.png") no-repeat;
    background-size: contain;
  }
}
.example .inner .cnt .example-detail ul li .cap {
  display: block;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 5px auto 0;
  font-size: 13px;
  line-height: 1.7;
}
.example .inner .cnt .example-detail ul li .cap.left {
  text-align: left;
  font-size: 12px;
  margin: 5px 0 0;
}
.example .inner .cnt .example-detail ul li:nth-child(4):before {
  background: url("../img/o-arrow.png") no-repeat;
  background-size: contain;
}
.example .inner .cnt .example-detail ul li:last-of-type:before {
  display: none;
}
.example .inner .cnt .example-detail ul.four li:before {
  position: absolute;
  content: "";
  background: url("../img/n-arrow-2.png") no-repeat;
  background-size: contain;
  width: 48px;
  height: 9px;
  top: 32px;
  right: -58px;
}
@media (max-width: 767px) {
  .example .inner .cnt .example-detail ul.four li:before {
    background: url("../img/n-arrow.png") no-repeat;
    background-size: contain;
    width: 28px;
    height: 9px;
    top: auto;
    left: 0;
    right: 0;
    bottom: -35px;
    margin: auto;
  }
}
.example .inner .cnt .example-detail ul.four li .border {
  width: 220px;
}
@media (max-width: 767px) {
  .example .inner .cnt .example-detail ul.four li .border {
    width: 100%;
  }
}
.example .inner .cnt .example-detail ul.four li .border.four {
  background: url("../img/e-detail-bg-2.png") no-repeat;
  background-size: contain;
  border: none;
}
@media (max-width: 767px) {
  .example .inner .cnt .example-detail ul.four li .border.four {
    background: url("../img/e-detail-bg-sp.png") no-repeat;
    background-size: contain;
  }
}
.example .inner .cnt .example-detail .box-flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .example .inner .cnt .example-detail .box-flex {
    flex-direction: column;
    gap: 60px 0;
  }
}
.example .inner .cnt .example-detail .box-flex .box-cnt {
  width: 520px;
}
@media (max-width: 767px) {
  .example .inner .cnt .example-detail .box-flex .box-cnt {
    width: 100%;
  }
}
.example .inner .cnt .example-detail .box-flex .box-cnt .box {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #37accd;
  background: #fff;
  text-align: center;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.625;
  border-radius: 3px;
}
@media (max-width: 767px) {
  .example .inner .cnt .example-detail .box-flex .box-cnt .box {
    font-size: 14px;
  }
}
.example .inner .cnt .example-detail .box-flex .left .box {
  padding: 0 45px;
  height: 187px;
}
@media (max-width: 767px) {
  .example .inner .cnt .example-detail .box-flex .left .box {
    height: 140px;
  }
}
@media (max-width: 767px) {
  .example .inner .cnt .example-detail .box-flex .right {
    display: flex;
    justify-content: space-between;
  }
}
.example .inner .cnt .example-detail .box-flex .right .box {
  position: relative;
  padding: 16px 75px;
}
@media (max-width: 767px) {
  .example .inner .cnt .example-detail .box-flex .right .box {
    width: 50%;
    min-height: 215px;
    padding: 10px 20px;
  }
}
.example .inner .cnt .example-detail .box-flex .right .box:before {
  position: absolute;
  content: "";
  background: url("../img/n-arrow.png") no-repeat;
  background-size: contain;
  width: 28px;
  height: 9px;
  top: 0;
  left: -45px;
  bottom: 0;
  margin: auto;
}
@media (max-width: 767px) {
  .example .inner .cnt .example-detail .box-flex .right .box:before {
    transform: rotate(90deg);
    top: -35px;
    left: 0;
    right: 0;
    bottom: auto;
  }
}
.example .inner .cnt .example-detail .box-flex .right .box:first-of-type {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .example .inner .cnt .example-detail .box-flex .right .box:first-of-type {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .example .inner .cnt .example-detail .box-flex .right .box.last {
    width: 42%;
  }
}
.example .inner .cnt .example-detail.mb {
  margin-bottom: 40px;
}
.example .inner .cnt .flex {
  justify-content: space-between;
}
@media (max-width: 767px) {
  .example .inner .cnt .flex {
    flex-direction: column;
    gap: 50px 0;
  }
}
.example .inner .cnt .flex.st {
  align-items: flex-start;
  margin-bottom: 50px;
}
.example .inner .cnt .flex .example-detail {
  margin: 0;
}
@media (max-width: 767px) {
  .example .inner .cnt .flex .example-detail {
    width: 100%;
  }
}
.example .inner .cnt .flex .example-detail .title {
  margin-bottom: 25px;
}
.example .inner .cnt .flex .example-detail .box-flex {
  width: 600px;
}
@media (max-width: 767px) {
  .example .inner .cnt .flex .example-detail .box-flex {
    width: 100%;
  }
}
.example .inner .cnt .flex .example-detail .box-flex .box-cnt {
  width: 270px;
  height: 178px;
}
@media (max-width: 767px) {
  .example .inner .cnt .flex .example-detail .box-flex .box-cnt {
    width: 100%;
    height: auto;
  }
}
.example .inner .cnt .flex .example-detail .box-flex .box-cnt .box {
  height: 178px;
  padding: 0;
}
@media (max-width: 767px) {
  .example .inner .cnt .flex .example-detail .box-flex .box-cnt .box {
    width: 100%;
    min-height: auto;
    height: 70px !important;
  }
}
.example .inner .cnt .flex .g-flex .img {
  width: 350px;
  overflow: initial;
}
@media (max-width: 767px) {
  .example .inner .cnt .flex .g-flex .img {
    width: 100%;
  }
}
.example .inner .cnt .flex .g-flex .img p {
  margin-top: 10px;
  font-size: 12px;
}
.example .inner .cnt .half {
  width: -moz-fit-content;
  width: fit-content;
  padding: 36px 20px 42px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .example .inner .cnt .half {
    width: 100%;
  }
}
.example .inner .cnt .half .worries-detail .detail-cnt {
  height: 45px;
  padding-right: 50px;
}
.example .inner .cnt .caution {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .example .inner .cnt .caution {
    font-size: 15px;
  }
}
.example .inner .cnt .caution p {
  position: relative;
  padding-left: 20px;
}
.example .inner .cnt .caution p span {
  position: absolute;
  top: 0;
  left: 0;
}
.example .inner .cnt .caution.normal {
  font-size: 16px;
  font-weight: normal;
}
@media (max-width: 767px) {
  .example .inner .cnt .caution.normal {
    font-size: 15px;
  }
}
.example .inner .cnt .btn a {
  position: relative;
  text-align: center;
  display: block;
  background: #1266a0;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 16px 45px;
  border-radius: 25px;
  line-height: 1;
}
@media (max-width: 767px) {
  .example .inner .cnt .btn a {
    width: 300px;
    padding: 16px 0;
  }
}
.example .inner .cnt .btn a:before {
  position: absolute;
  content: "";
  background: url("../img/btn-arrow.png") no-repeat;
  background-size: contain;
  width: 11px;
  height: 10px;
  top: 2px;
  right: 22px;
  bottom: 0;
  margin: auto;
  transition: all 0.4s;
}
.example .inner .cnt .btn a:hover:before {
  right: 16px;
}
@media (max-width: 767px) {
  .example .inner .cnt .btn a:hover:before {
    right: 22px;
  }
}
.example .inner .cnt.last {
  margin-bottom: 0;
  padding-bottom: 0;
}
.example .inner .cnt.last:before {
  display: none;
}

.greeting {
  padding: 150px 0 100px;
}
@media (max-width: 767px) {
  .greeting {
    padding: 80px 0;
  }
}
.greeting .inner .cnt {
  position: relative;
  padding-right: 430px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .greeting .inner .cnt {
    padding-right: 0;
  }
}
.greeting .inner .cnt h2 {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.12em;
  margin-bottom: 40px;
}
.greeting .inner .cnt h2 span {
  font-family: "Outfit", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 55px;
  font-weight: 600;
  display: block;
  background: linear-gradient(to right, #4cb0e6, #50c6ce);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .greeting .inner .cnt h2 span {
    font-size: 40px;
  }
}
.greeting .inner .cnt h3 {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .greeting .inner .cnt h3 {
    font-size: 20px;
  }
}
.greeting .inner .cnt .detail {
  margin-bottom: 20px;
}
.greeting .inner .cnt .detail p {
  margin-bottom: 20px;
}
.greeting .inner .cnt .detail p:last-of-type {
  margin-bottom: 0;
}
.greeting .inner .cnt .name {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .greeting .inner .cnt .name {
    font-size: 16px;
  }
}
.greeting .inner .cnt .name span {
  display: block;
  font-size: 16px;
}
@media (max-width: 767px) {
  .greeting .inner .cnt .name span {
    font-size: 14px;
  }
}
.greeting .inner .cnt .img {
  position: absolute;
  top: 0;
  right: 50px;
}
@media (max-width: 767px) {
  .greeting .inner .cnt .img {
    position: relative;
    right: 0;
  }
}
@media (max-width: 767px) {
  .greeting .inner .cnt .img img {
    margin: 0 auto;
  }
}
.greeting .inner .border {
  width: 1000px;
  margin: 0 auto;
  border: 1px solid #e5e5e5;
  padding: 40px 35px;
}
@media (max-width: 767px) {
  .greeting .inner .border {
    width: 100%;
    padding: 30px 20px;
  }
}
.greeting .inner .border .title {
  position: relative;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  border-bottom: 2px solid #e5e5e5;
  padding-bottom: 15px;
  margin-bottom: 10px;
}
.greeting .inner .border .title:before {
  position: absolute;
  content: "";
  background: #249bcb;
  width: 60px;
  height: 2px;
  left: 0;
  bottom: -2px;
}
.greeting .inner .border ul li {
  position: relative;
  padding-left: 15px;
}
.greeting .inner .border ul li:before {
  position: absolute;
  content: "";
  background: #222;
  width: 2px;
  height: 2px;
  border-radius: 100%;
  top: 14px;
  left: 5px;
}

.company {
  background: #edfaff;
  padding: 100px 0;
}
@media (max-width: 767px) {
  .company {
    padding: 80px 0;
  }
}
.company .inner h2 {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.12em;
  margin-bottom: 40px;
}
.company .inner h2 span {
  font-family: "Outfit", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 55px;
  font-weight: 600;
  display: block;
  background: linear-gradient(to right, #4cb0e6, #50c6ce);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .company .inner h2 span {
    font-size: 40px;
  }
}
.company .inner .detail-info {
  width: 830px;
  margin: 0 auto;
  border: 1px solid #d0d0d0;
}
@media (max-width: 767px) {
  .company .inner .detail-info {
    width: 100%;
  }
}
.company .inner .detail-info dl {
  display: flex;
  letter-spacing: 0.04em;
  border-bottom: 1px solid #d0d0d0;
}
.company .inner .detail-info dl:last-of-type {
  border-bottom: none;
}
.company .inner .detail-info dl dt {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 700;
  width: 180px;
  background: #1266a0;
  color: #fff;
  text-align: center;
  padding: 18px 0;
}
@media (max-width: 767px) {
  .company .inner .detail-info dl dt {
    width: 100px;
    padding: 10px 0;
  }
}
.company .inner .detail-info dl dd {
  width: calc(100% - 180px);
  background: #fff;
  padding: 18px 30px;
}
@media (max-width: 767px) {
  .company .inner .detail-info dl dd {
    width: calc(100% - 100px);
    padding: 10px 20px;
  }
}
.company .inner .detail-info dl dd ul li {
  position: relative;
  line-height: 1.5;
  margin-bottom: 10px;
  padding-left: 15px;
}
@media (max-width: 767px) {
  .company .inner .detail-info dl dd ul li {
    padding-left: 18px;
  }
}
.company .inner .detail-info dl dd ul li:last-of-type {
  margin-bottom: 0;
}
.company .inner .detail-info dl dd ul li span {
  position: absolute;
  top: 0;
  left: 0;
}

.form {
  padding: 100px 0 120px;
}
@media (max-width: 767px) {
  .form {
    padding: 80px 0;
  }
}
.form .inner {
  max-width: 890px;
}
.form .inner h2 {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.12em;
  margin-bottom: 30px;
}
.form .inner h2 span {
  font-family: "Outfit", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 55px;
  font-weight: 600;
  display: block;
  background: linear-gradient(to right, #4cb0e6, #50c6ce);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .form .inner h2 span {
    font-size: 40px;
  }
}
.form .inner .read {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .form .inner .read {
    font-size: 13px;
  }
}
.form .inner form dl {
  display: flex;
  padding: 20px 0;
  border-top: 1px solid #e1e1e1;
  gap: 0 50px;
}
@media (max-width: 767px) {
  .form .inner form dl {
    flex-direction: column;
  }
}
.form .inner form dl dt {
  font-family: "zen-kaku-gothic-new", sans-serif;
  display: flex;
  justify-content: space-between;
  width: 190px;
  line-height: 1;
  padding: 18px 0;
  font-weight: 700;
}
@media (max-width: 767px) {
  .form .inner form dl dt {
    width: 100%;
    padding: 0 0 18px;
  }
}
.form .inner form dl dt span {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: normal;
  display: block;
  background: #a4a4a4;
  height: -moz-fit-content;
  height: fit-content;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
}
.form .inner form dl dt span.required {
  background: #61b3ff;
}
.form .inner form dl dd {
  width: calc(100% - 240px);
}
@media (max-width: 767px) {
  .form .inner form dl dd {
    width: 100%;
  }
}
.form .inner form dl dd input {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  width: 100%;
  background: #f3f3f3;
  font-size: 17px;
  padding: 14px 20px;
}
.form .inner form dl dd input::-moz-placeholder {
  color: #b6b6b6;
}
.form .inner form dl dd input::placeholder {
  color: #b6b6b6;
}
.form .inner form dl dd textarea {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  width: 100%;
  background: #f3f3f3;
  font-size: 17px;
  padding: 14px 20px;
}
.form .inner form dl dd textarea::-moz-placeholder {
  color: #b6b6b6;
}
.form .inner form dl dd textarea::placeholder {
  color: #b6b6b6;
}
.form .inner form dl:last-of-type {
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 50px;
}
.form .inner form .btn button {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background: #1266a0;
  color: #fff;
  margin: 0 auto;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 85px;
  border-radius: 25px;
}
@media (max-width: 767px) {
  .form .inner form .btn button {
    width: 300px;
    padding: 14px 0;
  }
}
.form .inner form .btn button:before {
  position: absolute;
  content: "";
  background: url("../img/btn-arrow.png") no-repeat;
  background-size: contain;
  width: 17px;
  height: 15px;
  top: 2px;
  right: 40px;
  bottom: 0;
  margin: auto;
  transition: all 0.4s;
}
.form .inner form .btn button:hover:before {
  right: 35px;
}
@media (max-width: 767px) {
  .form .inner form .btn button:hover:before {
    right: 40px;
  }
}

footer {
  background: #101f35;
  padding: 50px 0 30px;
  color: #fff;
}
footer .inner .flex {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 125px;
}
@media (max-width: 767px) {
  footer .inner .flex {
    flex-direction: column;
    gap: 40px 0;
    margin-bottom: 50px;
  }
}
footer .inner .flex .logo a {
  display: block;
}
@media (max-width: 767px) {
  footer .inner .flex .logo a {
    width: 256px;
  }
}
@media (max-width: 767px) {
  footer .inner .flex .links {
    width: 256px;
  }
}
footer .inner .flex .links ul {
  display: flex;
  gap: 0 30px;
}
@media (max-width: 767px) {
  footer .inner .flex .links ul {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px 0;
  }
}
@media (max-width: 767px) {
  footer .inner .flex .links ul li {
    width: 170px;
  }
}
footer .inner .flex .links ul li a {
  display: flex;
  align-items: baseline;
  gap: 0 6px;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
@media (max-width: 767px) {
  footer .inner .flex .links ul li a {
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (max-width: 767px) {
  footer .inner .flex .links ul li:nth-child(even) {
    width: 84px;
  }
}
footer .inner .copy {
  text-align: center;
  font-size: 12px;
  line-height: 1;
}
@media (max-width: 767px) {
  footer .inner .copy {
    font-size: 10px;
  }
}

.mail-confirm {
  padding: 250px 0 200px;
}
@media (max-width: 767px) {
  .mail-confirm {
    padding: 120px 0 70px;
  }
}
.mail-confirm .inner {
  max-width: 600px;
}
.mail-confirm .inner h2 {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1;
}
@media (max-width: 767px) {
  .mail-confirm .inner h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.mail-confirm .inner .text {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .mail-confirm .inner .text {
    margin-bottom: 30px;
  }
}
.mail-confirm .inner table {
  width: 100%;
  margin-bottom: 50px;
  border-collapse: collapse;
}
.mail-confirm .inner table tr th {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-weight: 700;
  background: #1266a0;
  color: #fff;
  border: 1px solid #a4a4a4;
  padding: 10px 20px;
}
.mail-confirm .inner table tr td {
  border: 1px solid #a4a4a4;
  padding: 10px 20px;
}
.mail-confirm .inner .flex {
  justify-content: space-between;
}
@media (max-width: 767px) {
  .mail-confirm .inner .flex {
    flex-direction: column;
    gap: 30px 0;
  }
}
.mail-confirm .inner .flex .btn button {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background: #1266a0;
  color: #fff;
  margin: 0 auto;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 85px;
  border-radius: 25px;
}
@media (max-width: 767px) {
  .mail-confirm .inner .flex .btn button {
    width: 300px;
    padding: 14px 0;
  }
}
.mail-confirm .inner .flex .btn button:before {
  position: absolute;
  content: "";
  background: url("../img/btn-arrow.png") no-repeat;
  background-size: contain;
  width: 17px;
  height: 15px;
  top: 2px;
  right: 40px;
  bottom: 0;
  margin: auto;
  transition: all 0.4s;
}
.mail-confirm .inner .flex .btn button:hover:before {
  right: 35px;
}
@media (max-width: 767px) {
  .mail-confirm .inner .flex .btn button:hover:before {
    right: 40px;
  }
}

.complate {
  padding: 250px 0 200px;
}
@media (max-width: 767px) {
  .complate {
    padding: 120px 0 70px;
  }
}
.complate .inner {
  max-width: 900px;
}
.complate .inner h2 {
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1;
}
@media (max-width: 767px) {
  .complate .inner h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.complate .inner .text {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .complate .inner .text {
    margin-bottom: 30px;
  }
}
.complate .inner .btn a {
  position: relative;
  text-align: center;
  display: block;
  background: #1266a0;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-family: "zen-kaku-gothic-new", sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 16px 70px;
  border-radius: 25px;
  line-height: 1;
}
@media (max-width: 767px) {
  .complate .inner .btn a {
    width: 300px;
    padding: 16px 0;
  }
}
.complate .inner .btn a:before {
  position: absolute;
  content: "";
  background: url("../img/btn-arrow.png") no-repeat;
  background-size: contain;
  width: 11px;
  height: 10px;
  top: 2px;
  right: 22px;
  bottom: 0;
  margin: auto;
  transition: all 0.4s;
}
.complate .inner .btn a:hover:before {
  right: 16px;
}
@media (max-width: 767px) {
  .complate .inner .btn a:hover:before {
    right: 22px;
  }
}