@charset "UTF-8";
@keyframes scroll-text {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scroll-text-reverse {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

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

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none;
}

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  background: #f3f3f3;
  color: #333333;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
}

body {
  font-size: 14px;
  font-size: 1.4rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  body {
    padding-top: 64px;
  }
}
body > img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
  width: 64.705882%;
  height: auto;
}

* {
  box-sizing: border-box;
}

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

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

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

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.inner {
  max-width: 1140px;
  padding: 0 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .inner {
    padding: 0 16px;
  }
}

[data-trigger] {
  position: relative;
  top: 60px;
  transition: top 1s, opacity 1s;
  opacity: 0;
}
[data-trigger].visible {
  top: 0;
  opacity: 1;
}

.footer__contact {
  background: #09abbe;
  background-image: url(/images/footer_cv_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 84px 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .footer__contact {
    padding: 48px 0;
    background-image: url(/images/footer_cv_bg_sp.jpg);
  }
}
.footer__contact__inner {
  max-width: 1020px;
  padding: 0 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .footer__contact__inner {
    padding: 0 16px;
  }
}
.footer__contact h3 {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer__contact h3 em {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #fff;
  font-family: "Open Sans", sans-serif;
}
.footer__contact h3 span {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .footer__contact h3 span {
    font-size: 24px;
  }
}
.footer__contact__box {
  padding: 16px;
  background: linear-gradient(219deg, #09abbe 0%, #09abbe 15%, #bbc5d5 15%, #bbc5d5 85%, #09abbe 85%, #09abbe 100%);
  position: relative;
}
.footer__contact__box:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  background: #fff;
}
.footer__contact__box > * {
  position: relative;
  z-index: 1;
}
.footer__contact__box__intro {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
  padding-bottom: 12px;
}
.footer__contact__box__row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
  position: relative;
  max-width: 726px;
  margin: 0 auto;
  padding-top: 16px;
  justify-content: space-between;
}
.footer__contact__box__row:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 100%;
  background: #e3eaee;
}
@media only screen and (max-width: 767px) {
  .footer__contact__box__row:before {
    display: none;
  }
}
.footer__contact__box__tel {
  width: calc(50% - 40px);
}
@media only screen and (max-width: 767px) {
  .footer__contact__box__tel {
    width: 100%;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #e3eaee;
  }
}
.footer__contact__box__tel > strong {
  line-height: 2;
  padding-bottom: 8px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  display: block;
}
.footer__contact__box__tel > a > span {
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.footer__contact__box__tel > a > span small {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.footer__contact__box__tel > a > span strong {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.footer__contact__box__tel > a > small {
  font-size: 14px;
  letter-spacing: 0.05em;
  display: block;
  padding-top: 10px;
}
.footer__contact__box__btn {
  width: calc(50% - 40px);
}
@media only screen and (max-width: 767px) {
  .footer__contact__box__btn {
    width: 100%;
  }
}
.footer__contact__box__btn > strong {
  line-height: 2;
  padding-bottom: 8px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  display: block;
}
.footer__contact__box__btn > a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
  border: 1px solid #09abbe;
  background: #09abbe;
  color: #fff;
  height: 62px;
  transition: all 0.3s;
}
@media only screen and (min-width: 768px) {
  .footer__contact__box__btn > a:hover {
    background: #fff;
    color: #09abbe;
  }
  .footer__contact__box__btn > a:hover svg path {
    fill: #09abbe;
  }
  .footer__contact__box__btn > a:hover span {
    color: #09abbe;
  }
}
.footer__contact__box__btn > a svg {
  width: 20px;
  height: 16px;
}
.footer__contact__box__btn > a svg path {
  fill: #fff;
  transition: fill 0.3s;
}
.footer__contact__box__btn > a span {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: color 0.3s;
  color: #fff;
}
.footer__contact__term {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
  background-color: #f3f3f3;
  line-height: 2;
  padding: 16px 0;
  margin-top: 32px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .footer__contact__term {
    padding: 8px 0;
  }
}
.footer__bottom {
  background-color: #f3f3f3;
  padding: 88px 0;
}
@media only screen and (max-width: 767px) {
  .footer__bottom {
    padding: 48px 0;
  }
}
.footer__bottom__inner {
  max-width: 1140px;
  padding: 0 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .footer__bottom__inner {
    padding: 0 16px;
  }
}
.footer__bottom__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .footer__bottom__row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer__bottom__logo {
  width: 100%;
  max-width: 211px;
  margin-bottom: 16px;
}
.footer__bottom__info {
  width: 100%;
  font-size: 12px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.footer__bottom__googlemap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__bottom__googlemap a {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media only screen and (min-width: 768px) {
  .footer__bottom__googlemap a {
    transition: all 0.3s;
    opacity: 1;
  }
  .footer__bottom__googlemap a:hover {
    opacity: 0.7;
  }
}
.footer__bottom__googlemap a span {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.75;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media only screen and (max-width: 767px) {
  .footer__bottom__nav {
    padding-top: 32px;
  }
}
.footer__bottom__nav ul {
  display: flex;
  gap: 32px;
  padding-bottom: 92px;
}
@media only screen and (max-width: 767px) {
  .footer__bottom__nav ul {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .footer__bottom__nav ul li a:hover span {
    color: #09abbe;
  }
  .footer__bottom__nav ul li a:hover span:before {
    opacity: 1;
  }
}
.footer__bottom__nav ul li a.is-active span {
  color: #09abbe;
}
.footer__bottom__nav ul li a.is-active span:before {
  opacity: 1;
}
.footer__bottom__nav ul li a span {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.01em;
  transition: color 0.3s;
}
.footer__bottom__nav ul li a span:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -17px;
  width: 100%;
  height: 2px;
  background: #09abbe;
  opacity: 0;
  transition: opacity 0.3s;
}
.footer__bottom__nav p {
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.75;
}
.footer__copy {
  background-color: #333;
  padding: 16px 0;
}
@media only screen and (max-width: 767px) {
  .footer__copy {
    padding: 24px 0;
  }
}
.footer__copy__inner {
  max-width: 1140px;
  padding: 0 30px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  .footer__copy__inner {
    flex-direction: column;
  }
}
.footer__copy__inner p {
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.75;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .footer__copy__inner p {
    order: 2;
  }
}
.footer__copy__inner ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .footer__copy__inner ul {
    order: 1;
  }
}
.footer__copy__inner ul li:first-child {
  position: relative;
}
.footer__copy__inner ul li:first-child:after {
  content: "";
  position: absolute;
  right: -10px;
  top: 56%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: #fff;
}
.footer__copy__inner ul li a {
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.75;
  color: #fff;
  text-decoration: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media only screen and (min-width: 768px) {
  .footer__copy__inner ul li a {
    transition: all 0.3s;
    opacity: 1;
  }
  .footer__copy__inner ul li a:hover {
    opacity: 0.7;
  }
}

.header {
  position: absolute;
  left: 0;
  top: 10px;
  width: 100%;
  z-index: 9;
  transition: all 0.3s;
}
.header.is-fixed {
  background: rgba(243, 243, 243, 0.75);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
@media only screen and (max-width: 767px) {
  .header {
    background: rgba(243, 243, 243, 0.75);
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    top: 0;
  }
}
.header-title {
  padding: 8px 32px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .header-title {
    display: none;
  }
}
.header-title span {
  display: block;
  font-size: 10px;
  line-height: 1.75;
}
.header__inner {
  padding: 0 32px;
  padding-bottom: 16px;
  padding-top: 16px;
}
@media only screen and (max-width: 767px) {
  .header__inner {
    padding: 0;
  }
}
.header__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.header__brand {
  width: 100%;
  max-width: 211px;
}
@media only screen and (max-width: 767px) {
  .header__brand {
    padding: 16px;
    padding-right: 0;
    max-width: 156px;
  }
}
.header__brand a img {
  display: block;
  width: 100%;
  height: auto;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  .header__menu {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}
.header__nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
@media only screen and (min-width: 768px) {
  .header__nav ul li a:hover span {
    color: #09ABBE;
  }
  .header__nav ul li a:hover span:before {
    opacity: 1;
  }
}
.header__nav ul li a.is-active span {
  color: #09ABBE;
}
.header__nav ul li a.is-active span:before {
  opacity: 1;
}
.header__nav ul li a span {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.01em;
  transition: color 0.3s;
}
.header__nav ul li a span:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -17px;
  width: 100%;
  height: 2px;
  background: #09ABBE;
  opacity: 0;
  transition: opacity 0.3s;
}
.header__contact {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__contact__tel a {
  display: flex;
  flex-direction: column;
  opacity: 1;
  transition: opacity 0.3s;
}
@media only screen and (min-width: 768px) {
  .header__contact__tel a:hover {
    opacity: 0.7;
  }
}
.header__contact__tel a span {
  display: flex;
  align-items: baseline;
  font-family: "Open Sans", sans-serif;
  font-weight: 900;
}
.header__contact__tel a span small {
  font-size: 14px;
  line-height: 1.75;
}
.header__contact__tel a span strong {
  font-size: 24px;
  letter-spacing: 0.1em;
}
.header__contact__tel a > small {
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  padding-left: 22px;
}
.header__contact__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 198px;
  justify-content: center;
  border: 1px solid #09ABBE;
  background: #09ABBE;
  color: #fff;
  height: 62px;
  transition: all 0.3s;
}
@media only screen and (min-width: 768px) {
  .header__contact__btn:hover {
    background: #fff;
    color: #09ABBE;
  }
  .header__contact__btn:hover svg path {
    fill: #09ABBE;
  }
  .header__contact__btn:hover span {
    color: #09ABBE;
  }
}
.header__contact__btn svg {
  width: 20px;
  height: 16px;
}
.header__contact__btn svg path {
  fill: #fff;
  transition: fill 0.3s;
}
.header__contact__btn span {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: color 0.3s;
  color: #fff;
}
.header__sp-menus {
  display: none;
}
@media only screen and (max-width: 767px) {
  .header__sp-menus {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header__sp-menus__tel a {
    display: block;
    background: #E3EAEE;
    width: 100%;
    height: 100%;
    padding: 14px;
    width: 64px;
    height: 64px;
  }
  .header__sp-menus__tel a svg {
    width: 32px;
    height: auto;
  }
  .header__sp-menus__toggle a {
    display: block;
    background: #09ABBE;
    width: 100%;
    height: 100%;
    width: 64px;
    height: 64px;
    position: relative;
  }
  .header__sp-menus__toggle a.is-active span:nth-child(1) {
    top: calc(50% - 0px);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .header__sp-menus__toggle a.is-active span:nth-child(2) {
    top: calc(50% + 0px);
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .header__sp-menus__toggle a.is-active span:nth-child(3) {
    opacity: 0;
  }
  .header__sp-menus__toggle a span {
    display: block;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 2px;
    transition: all 0.3s;
  }
  .header__sp-menus__toggle a span:nth-child(1) {
    top: calc(50% - 10px);
  }
  .header__sp-menus__toggle a span:nth-child(2) {
    top: calc(50% + 10px);
  }
}
.header__sp-mega {
  display: none;
  position: fixed;
  left: 0;
  top: 64px;
  width: 100%;
  height: calc(100% - 64px);
  background: #fff;
  z-index: 9;
}
.header__sp-mega__inner {
  overflow: scroll;
  padding: 32px 16px 64px;
  height: 100%;
}
.header__sp-mega__item ul li a {
  display: block;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  height: 64px;
  display: flex;
  align-items: center;
  padding-left: 12px;
  width: 100%;
  border-bottom: 1px solid #E3EAEE;
  justify-content: space-between;
}
.header__sp-mega__item ul li a img {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
}
.header__sp-mega__contact {
  padding-top: 40px;
}
.header__sp-mega__contact h5 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header__sp-mega__contact h5 em {
  font-size: 148x;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.75;
  font-family: "Open Sans", sans-serif;
  color: #09ABBE;
}
.header__sp-mega__contact h5 strong {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #0E61A0;
}
.header__sp-mega__contact p {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
  margin-top: 10px;
}
.header__sp-mega__contact a {
  display: flex;
  flex-direction: column;
  opacity: 1;
  transition: opacity 0.3s;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 24px;
}
@media only screen and (min-width: 768px) {
  .header__sp-mega__contact a:hover {
    opacity: 0.7;
  }
}
.header__sp-mega__contact a span {
  display: flex;
  align-items: baseline;
  font-family: "Open Sans", sans-serif;
  font-weight: 900;
}
.header__sp-mega__contact a span small {
  font-size: 18px;
  line-height: 1.75;
}
.header__sp-mega__contact a span strong {
  font-size: 36px;
  letter-spacing: 0.1em;
}
.header__sp-mega__contact a > small {
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  padding-left: 22px;
}
.header__sp-mega__btn {
  margin-top: 24px;
}
.header__sp-mega__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 62px;
  background: #09ABBE;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  border: 1px solid #09ABBE;
  gap: 6px;
}
.header__sp-mega__btn a svg {
  width: 32px;
  height: 32px;
}
.header__sp-mega__btn a svg path {
  fill: #fff;
}
.header__sp-mega__btn a span {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: color 0.3s;
  color: #fff;
}
.header__sp-mega__terms {
  margin-top: 12px;
  background: #F3F3F3;
  padding: 8px 0;
  text-align: center;
}
.header__sp-mega__terms p {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 2;
}

.anchors {
  padding: 48px 0;
  background-color: #E3EAEE;
}
@media only screen and (max-width: 767px) {
  .anchors {
    display: none;
  }
}
.anchors .inner ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.anchors .inner ul li a {
  width: 206px;
  height: 46px;
  border: 1px solid #09ABBE;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  background: #09ABBE;
  transition: all 0.3s;
  position: relative;
}
.anchors .inner ul li a:hover {
  background: #fff;
  color: #09ABBE;
}
.anchors .inner ul li a:hover svg path {
  fill: #09ABBE;
}
.anchors .inner ul li a svg {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translate(0, -50%);
  width: 24px;
  height: 24px;
  fill: #fff;
  transition: all 0.3s;
}

.breadcrumbs {
  background: #F3F3F3;
  padding: 24px 64px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
@media only screen and (max-width: 767px) {
  .breadcrumbs {
    padding: 24px 16px;
    justify-content: flex-start;
    align-items: center;
  }
}
.breadcrumbs ul {
  display: flex;
  gap: 32px;
  align-items: center;
}
.breadcrumbs ul li {
  position: relative;
}
.breadcrumbs ul li:first-child:before {
  display: none;
}
.breadcrumbs ul li:before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: -16px;
  top: 50%;
  border-top: 1px solid #09ABBE;
  border-right: 1px solid #09ABBE;
  transform: translate(-50%, -50%) rotate(45deg);
}
.breadcrumbs ul li a {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media only screen and (min-width: 768px) {
  .breadcrumbs ul li a {
    transition: all 0.3s;
    opacity: 1;
  }
  .breadcrumbs ul li a:hover {
    opacity: 0.7;
  }
}

.sub-kv {
  padding-top: 130px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .sub-kv {
    padding-top: 110px;
  }
}
@media only screen and (max-width: 767px) {
  .sub-kv {
    padding-top: 0px;
  }
}
.sub-kv__inner {
  position: relative;
}
.sub-kv__content {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 430px;
  padding: 64px;
  background: #F3F3F3;
  z-index: 2;
  height: 204px;
}
@media only screen and (max-width: 767px) {
  .sub-kv__content {
    width: auto;
    height: auto;
    padding: 0;
    bottom: 0;
  }
}
.sub-kv__content.big {
  width: 656px;
}
@media only screen and (max-width: 767px) {
  .sub-kv__content.big {
    width: 81%;
  }
}
.sub-kv__content.big h2 {
  width: 440px;
}
@media only screen and (max-width: 767px) {
  .sub-kv__content.big h2 {
    width: 100%;
  }
}
.sub-kv__content.middle {
  width: 500px;
}
@media only screen and (max-width: 767px) {
  .sub-kv__content.middle {
    width: 59%;
  }
}
.sub-kv__content.middle h2 {
  width: 280px;
}
@media only screen and (max-width: 767px) {
  .sub-kv__content.middle h2 {
    width: 100%;
  }
}
.sub-kv__content h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media only screen and (max-width: 767px) {
  .sub-kv__content h2 {
    gap: 4px;
    width: 100%;
    position: static;
    transform: none;
    padding: 24px;
  }
}
.sub-kv__content h2 em {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #09ABBE;
  letter-spacing: 0.05em;
  font-family: "Open Sans", sans-serif;
}
.sub-kv__content h2 strong {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #0E61A0;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .sub-kv__content h2 strong {
    font-size: 24px;
  }
}
.sub-kv__img {
  width: 85.294118%;
  margin: 0 0 0 auto;
  height: 320px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .sub-kv__img {
    width: 100%;
    height: 240px;
    overflow: hidden;
  }
}
.sub-kv__img img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.business_content .flow {
  padding: 88px 0;
  background-color: #f3f3f3;
}
@media only screen and (max-width: 767px) {
  .business_content .flow {
    padding: 48px 0;
  }
}
.business_content .flow .inner {
  max-width: 940px;
  margin: 0 auto;
}
.business_content .flow h2 {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.35;
  color: #0e61a0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .business_content .flow h2 {
    font-size: 24px;
  }
}
.business_content .flow p {
  margin-top: 24px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 2;
}
.business_content .flow img {
  margin-top: 48px;
}
.business_content .zaiseki {
  padding: 88px 0;
  background-color: #e3eaee;
}
@media only screen and (max-width: 767px) {
  .business_content .zaiseki {
    padding: 48px 0;
  }
}
.business_content .zaiseki .inner {
  max-width: 940px;
  margin: 0 auto;
}
.business_content .zaiseki__hero p {
  border: 1px solid #ec643b;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #ec643b;
  background: #fff;
  padding: 32px;
}
@media only screen and (max-width: 767px) {
  .business_content .zaiseki__hero p {
    font-size: 18px;
    padding: 16px;
  }
}
.business_content__section {
  width: 100%;
}
.business_content__section__row {
  margin-top: 48px;
  display: flex;
  gap: 48px;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .business_content__section__row {
    flex-direction: column;
  }
}
.business_content__section__text {
  width: 56.363636%;
}
@media only screen and (max-width: 767px) {
  .business_content__section__text {
    width: 100%;
    order: 2;
  }
}
.business_content__section__text h3 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.business_content__section__text h3 em {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #09abbe;
  font-family: "Open Sans", sans-serif;
}
.business_content__section__text h3 strong {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.35;
  color: #0e61a0;
}
@media only screen and (max-width: 767px) {
  .business_content__section__text h3 strong {
    font-size: 24px;
  }
}
.business_content__section__text ul {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .business_content__section__text ul {
    flex-direction: column;
    gap: 8px;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.business_content__section__text ul li {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  background: #ec643b;
  color: #fff;
  padding: 0 8px;
}
.business_content__section__text p {
  margin-top: 24px;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
}
.business_content__section__img {
  width: 39.090909%;
}
@media only screen and (max-width: 767px) {
  .business_content__section__img {
    width: 100%;
    order: 1;
    padding-top: 69.767442%;
    position: relative;
  }
}
.business_content__section__img img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .business_content__section__img img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}
.business_content .level {
  padding: 88px 0;
  background-color: #f3f3f3;
}
@media only screen and (max-width: 767px) {
  .business_content .level {
    padding: 48px 0;
  }
}
.business_content .level .inner {
  max-width: 940px;
  margin: 0 auto;
}
.business_content .level .inner .business_content__section__row {
  margin-top: 0;
}
.business_content .level .inner .business_content__section__text {
  order: 2;
}
.business_content .level .inner .business_content__section__img {
  order: 1;
}
.business_content .level__img {
  margin-top: 48px;
}
.business_content .level__img img {
  width: 100%;
  height: auto;
}
.business_content .level__block {
  margin-top: 48px;
}
.business_content .level__block h3 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  color: #0e61a0;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.05em;
}
.business_content .level__block table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #bbc5d5;
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .business_content .level__block table {
    display: block;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .business_content .level__block table tbody, .business_content .level__block table tr {
    display: block;
    width: 100%;
  }
}
.business_content .level__block table th,
.business_content .level__block table td {
  border-bottom: 1px solid #bbc5d5;
  text-align: left;
  padding: 16px 24px;
}
@media only screen and (max-width: 767px) {
  .business_content .level__block table th,
  .business_content .level__block table td {
    display: block;
    width: 100%;
    border: none;
    padding: 8px;
  }
}
.business_content .level__block table th {
  font-size: 16px;
  vertical-align: middle;
  font-weight: bold;
  color: #0e61a0;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .business_content .level__block table th {
    display: block;
    width: 100%;
    padding-bottom: 0;
  }
}
.business_content .level__block table th small {
  display: block;
  font-size: 14px;
}
.business_content .level__block table td {
  vertical-align: middle;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .business_content .level__block table td {
    display: block;
    width: 100%;
    padding-top: 0;
    border-bottom: 1px solid #bbc5d5;
  }
}
.business_content .level__block table td small {
  display: block;
  font-size: 14px;
}
.business_content .level__block__images {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .business_content .level__block__images {
    flex-direction: column;
  }
}
.business_content .level__block__images img {
  width: calc(33.333333% - 11px);
  height: auto;
}
@media only screen and (max-width: 767px) {
  .business_content .level__block__images img {
    width: 100%;
  }
}
.business_content .kikai {
  padding: 88px 0;
  background-color: #E3EAEE;
}
.business_content .kikai .inner {
  max-width: 940px;
  margin: 0 auto;
}
.business_content .kikai .business_content__section__row {
  margin-top: 0;
}
.business_content .kikai .business_content__section__text {
  order: 2;
}
.business_content .kikai .business_content__section__img {
  order: 1;
}

body.company h2 {
  padding-bottom: 24px;
}
body.company h2 span {
  font-size: 24px;
  font-weight: 700;
  color: #0E61A0;
  padding-bottom: 8px;
  display: block;
  position: relative;
  line-height: 2;
}
body.company h2 span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64px;
  height: 2px;
  background: #09ABBE;
}
body.company .inner {
  max-width: 940px;
}
body.company #outline {
  padding-top: 88px;
}
@media only screen and (max-width: 767px) {
  body.company #outline {
    padding-top: 48px;
  }
}
body.company #access {
  padding-top: 88px;
  padding-bottom: 88px;
}
@media only screen and (max-width: 767px) {
  body.company #access {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
body.company #outline,
body.company #access {
  background: #F3F3F3;
}
body.company #outline table,
body.company #access table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #BBC5D5;
}
@media only screen and (max-width: 767px) {
  body.company #outline table,
  body.company #access table {
    width: 100%;
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  body.company #outline table tbody, body.company #outline table tr,
  body.company #access table tbody,
  body.company #access table tr {
    width: 100%;
    display: block;
  }
}
body.company #outline table th, body.company #outline table td,
body.company #access table th,
body.company #access table td {
  border-bottom: 1px solid #BBC5D5;
  padding: 16px 24px;
}
@media only screen and (max-width: 767px) {
  body.company #outline table th, body.company #outline table td,
  body.company #access table th,
  body.company #access table td {
    padding: 8px;
    width: 100%;
    display: block;
    border: none;
  }
}
body.company #outline table th,
body.company #access table th {
  color: #0E61A0;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
  vertical-align: middle;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  body.company #outline table th,
  body.company #access table th {
    padding-bottom: 0;
  }
}
body.company #outline table th small,
body.company #access table th small {
  font-size: 14px;
  color: #333;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  body.company #outline table th small,
  body.company #access table th small {
    display: block;
  }
}
body.company #outline table td,
body.company #access table td {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
  font-weight: 500;
  color: #333;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  body.company #outline table td,
  body.company #access table td {
    padding-top: 0;
    border-bottom: 1px solid #BBC5D5;
  }
}
body.company #outline table td small,
body.company #access table td small {
  display: block;
  font-size: 14px;
}
body.company #outline iframe,
body.company #access iframe {
  width: 100%;
  height: 450px;
}
@media only screen and (max-width: 767px) {
  body.company #outline iframe,
  body.company #access iframe {
    height: 240px;
  }
}
body.company #outline iframe + p,
body.company #access iframe + p {
  margin-top: 16px;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.75;
  font-weight: 500;
  color: #333;
}

.contact .contact-tel {
  background: #E3EAEE;
  padding: 48px 0;
}
.contact .contact-tel .inner {
  max-width: 940px;
}
.contact .contact-tel h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #0E61A0;
  letter-spacing: 0.05em;
  text-align: center;
  padding-bottom: 10px;
  position: relative;
}
.contact .contact-tel h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 2px;
  background: #09ABBE;
}
.contact .contact-tel__tel {
  text-align: center;
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .contact .contact-tel__tel {
    margin-top: 16px;
  }
}
.contact .contact-tel__tel a {
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.contact .contact-tel__tel a small {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.5;
  font-family: "Open Sans", sans-serif;
}
@media only screen and (max-width: 767px) {
  .contact .contact-tel__tel a small {
    font-size: 18px;
  }
}
.contact .contact-tel__tel a strong {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Open Sans", sans-serif;
}
@media only screen and (max-width: 767px) {
  .contact .contact-tel__tel a strong {
    font-size: 32px;
  }
}
.contact .contact-tel__tel > small {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-top: 16px;
  display: block;
}
@media only screen and (max-width: 767px) {
  .contact .contact-tel__tel > small {
    margin-top: 0;
  }
}
.contact .contact-tel__license {
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-top: 24px;
  background: #fff;
  padding: 16px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .contact .contact-tel__license {
    padding: 16px 0;
  }
}
.contact .form {
  padding: 88px 0;
  background-color: #F3F3F3;
}
@media only screen and (max-width: 767px) {
  .contact .form {
    padding: 48px 0;
  }
}
.contact .form .inner {
  max-width: 940px;
}
.contact .form .inner > h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
  color: #0E61A0;
  padding-bottom: 10px;
}
.contact .form .inner > h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 2px;
  background: #09ABBE;
}
.contact .form .inner > p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 32px;
}
@media only screen and (max-width: 767px) {
  .contact .form .inner > p {
    margin-top: 16px;
  }
}
.contact .form__step {
  max-width: 740px;
  margin: 0 auto;
  margin-top: 48px;
  padding-bottom: 48px;
}
@media only screen and (max-width: 767px) {
  .contact .form__step {
    max-width: 280px;
    margin: 0 auto;
    margin-top: 24px;
    padding-bottom: 24px;
  }
}
.contact .form__step img {
  width: 100%;
  height: auto;
  display: block;
}
.contact .form__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 32px;
}
@media only screen and (max-width: 767px) {
  .contact .form__row {
    flex-direction: column;
    gap: 8px;
  }
}
.contact .form__head {
  width: 240px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .contact .form__head {
    width: 100%;
  }
}
.contact .form__head p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #0E61A0;
}
.contact .form__head span {
  font-size: 10px;
  color: #fff;
  background: #EC643B;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  border-radius: 4px;
  padding: 8px;
}
.contact .form__body {
  width: calc(100% - 240px - 40px);
}
@media only screen and (max-width: 767px) {
  .contact .form__body {
    width: 100%;
  }
}
.contact .form__body input,
.contact .form__body textarea {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #BBC5D5;
  background: #FFF;
  padding: 16px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.05em;
  padding: 10px 24px;
}
.contact .form__body input::-moz-placeholder, .contact .form__body textarea::-moz-placeholder {
  color: #B3B3B3;
}
.contact .form__body input::placeholder,
.contact .form__body textarea::placeholder {
  color: #B3B3B3;
}
.contact .form__body textarea {
  line-height: 1.5;
  padding: 24px;
  height: 312px;
}
.contact .form__agree {
  margin-top: 48px;
  background: #E3EAEE;
  padding: 48px;
}
@media only screen and (max-width: 767px) {
  .contact .form__agree {
    padding: 48px 8px;
  }
}
.contact .form__agree__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.contact .form__agree__intro h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #0E61A0;
}
.contact .form__agree__intro p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .contact .form__agree__intro p {
    text-align: center;
  }
}
.contact .form__agree__body {
  text-align: center;
  margin-top: 36px;
  padding-bottom: 12px;
}
.contact .form__agree__body label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}
.contact .form__agree__body label input {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  cursor: pointer;
  z-index: -1;
}
.contact .form__agree__body label input:checked + span:before {
  background: #09ABBE;
}
.contact .form__agree__body label input:checked + span:after {
  opacity: 1;
}
.contact .form__agree__body label span {
  display: block;
  padding-left: 32px;
  position: relative;
}
.contact .form__agree__body label span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #BBC5D5;
  background: #FFF;
  transition: all 0.3s ease;
}
.contact .form__agree__body label span:after {
  content: "";
  position: absolute;
  top: 28%;
  left: 5px;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
  opacity: 0;
  transition: all 0.3s ease;
}
.contact .form__agree__body label span a {
  font-size: 16px;
  font-weight: 700;
  line-height: 130%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.contact .form__agree__back {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .form__agree__back a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: #09ABBE;
  width: 318px;
  height: 62px;
  border: 1px solid #09ABBE;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .contact .form__agree__back a:hover {
    background: #09ABBE;
    color: #fff;
  }
  .contact .form__agree__back a:hover svg path {
    fill: #fff;
  }
}
.contact .form__agree__back a svg {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%) rotate(180deg);
}
.contact .form__agree__back a svg path {
  transition: all 0.3s ease;
  fill: #09ABBE;
}
.contact .form__agree__submit {
  text-align: center;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .form__agree__submit button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #09ABBE;
  color: #fff;
  width: 318px;
  height: 62px;
  border: 1px solid #09ABBE;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .contact .form__agree__submit button:hover {
    background: #fff;
    color: #09ABBE;
  }
  .contact .form__agree__submit button:hover svg path {
    fill: #09ABBE;
  }
}
.contact .form__agree__submit button svg {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
.contact .form__agree__submit button svg path {
  transition: all 0.3s ease;
}
.contact .form__thanks {
  text-align: center;
  padding-top: 48px;
}
@media only screen and (max-width: 767px) {
  .contact .form__thanks {
    padding-top: 12px;
  }
}
.contact .form__thanks h3 {
  color: #0E61A0;
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  line-height: 135%;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .contact .form__thanks h3 {
    font-size: 24px;
  }
}
.contact .form__thanks p {
  margin-top: 24px;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 767px) {
  .contact .form__thanks p {
    text-align: left;
  }
  .contact .form__thanks p span {
    display: block;
    margin: 8px 0;
  }
}
.contact .form__thanks__btn {
  text-align: center;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .contact .form__thanks__btn {
    margin-top: 32px;
  }
}
.contact .form__thanks__btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #09ABBE;
  color: #fff;
  width: 318px;
  height: 62px;
  border: 1px solid #09ABBE;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .contact .form__thanks__btn a:hover {
    background: #fff;
    color: #09ABBE;
  }
  .contact .form__thanks__btn a:hover svg path {
    fill: #09ABBE;
  }
}
.contact .form__thanks__btn a svg {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
.contact .form__thanks__btn a svg path {
  transition: all 0.3s ease;
}

body.index .kv {
  position: relative;
  overflow: hidden;
}
body.index .kv__inner {
  padding-top: 112px;
}
@media only screen and (max-width: 767px) {
  body.index .kv__inner {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
body.index .kv__content {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #f3f3f3;
  padding: 64px;
  padding-bottom: 0;
  width: 50%;
  width: 682px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  body.index .kv__content {
    width: 55%;
  }
}
@media only screen and (max-width: 767px) {
  body.index .kv__content {
    width: calc(100% - 24px);
    padding: 24px 16px;
    position: static;
    order: 2;
    margin-top: -110px;
  }
}
body.index .kv__content > strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  body.index .kv__content > strong {
    font-size: 18px;
    padding-bottom: 4px;
  }
}
body.index .kv__content h2 {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #0e61a0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  body.index .kv__content h2 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  body.index .kv__content h2 {
    font-size: 26px;
  }
}
body.index .kv__content p {
  margin-top: 24px;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 2;
  font-weight: 500;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  body.index .kv__content p {
    font-size: 16px;
  }
  body.index .kv__content p br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  body.index .kv__content p {
    font-size: 18px;
    letter-spacing: 0.03em;
  }
}
body.index .kv__content a {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  width: 318px;
  height: 62px;
  background: #09abbe;
  justify-content: center;
  border: 1px solid #09abbe;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 768px) {
  body.index .kv__content a:hover {
    background: #fff;
  }
  body.index .kv__content a:hover svg path {
    fill: #09abbe;
  }
  body.index .kv__content a:hover span {
    color: #09abbe;
  }
}
body.index .kv__content a svg {
  width: 21px;
  height: 16px;
}
body.index .kv__content a svg path {
  transition: all 0.3s ease;
}
body.index .kv__content a span {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
}
body.index .kv__img {
  width: calc(100% - 280px);
  height: 680px;
  z-index: -1;
  position: relative;
  margin: 0 0 0 auto;
}
@media only screen and (max-width: 767px) {
  body.index .kv__img {
    width: 100%;
    height: 300px;
    order: 1;
  }
}
body.index .kv__img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.index .strength {
  padding: 88px 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  body.index .strength {
    padding: 48px 0;
  }
}
body.index .strength > img {
  position: absolute;
  right: 0;
  top: 0;
  width: 64.705882%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
body.index .strength h2 {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media only screen and (max-width: 767px) {
  body.index .strength h2 {
    gap: 0px;
  }
}
body.index .strength h2 em,
body.index .strength h2 strong {
  display: block;
}
body.index .strength h2 em {
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 2;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  color: #09abbe;
}
body.index .strength h2 strong {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #0e61a0;
}
@media only screen and (max-width: 767px) {
  body.index .strength h2 strong {
    font-size: 24px;
  }
}
body.index .strength__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 64px;
}
@media only screen and (max-width: 767px) {
  body.index .strength__list {
    margin-top: 32px;
  }
}
body.index .strength__item {
  width: calc(33.333333% - 16px);
}
@media only screen and (max-width: 767px) {
  body.index .strength__item {
    width: 100%;
  }
}
body.index .strength__item__inner {
  background: #f3f3f3;
  padding: 32px 24px;
  position: relative;
  background: linear-gradient(219deg, #09abbe 0%, #09abbe 15%, #bbc5d5 15%, #bbc5d5 85%, #09abbe 85%, #09abbe 100%);
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  body.index .strength__item__inner {
    min-height: 384px;
  }
}
body.index .strength__item__inner:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  background: #fff;
}
body.index .strength__item__inner > * {
  position: relative;
  z-index: 1;
}
body.index .strength__item__inner > em {
  position: absolute;
  left: 10px;
  top: -30px;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.5;
  font-family: "Open Sans", sans-serif;
  color: #09abbe;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
}
body.index .strength__item__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
body.index .strength__item__title h3 {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  color: #333;
}
body.index .strength__item__title h3 b {
  color: #0e61a0;
}
body.index .strength__item__img {
  text-align: center;
}
body.index .strength__item__img img {
  width: 88px;
  height: 88px;
}
@media only screen and (max-width: 767px) {
  body.index .strength__item__img img {
    width: 64px;
    height: 64px;
  }
}
body.index .strength__item__text p {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
  letter-spacing: 0.05em;
}
body.index .strength__point {
  margin-top: 64px;
}
body.index .strength__point__inner {
  background: #fff;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
@media only screen and (max-width: 767px) {
  body.index .strength__point__inner {
    flex-direction: column;
    gap: 24px;
    padding: 20px 16px;
  }
}
body.index .strength__point__title {
  width: 35%;
}
@media only screen and (max-width: 767px) {
  body.index .strength__point__title {
    width: 100%;
  }
}
body.index .strength__point__title h4 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.index .strength__point__title h4 small {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #09abbe;
}
body.index .strength__point__title h4 strong {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #0e61a0;
}
body.index .strength__point__title h4 strong small {
  font-size: 18px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  body.index .strength__point__title h4 strong small {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  body.index .strength__point__title h4 strong small {
    display: block;
    color: #0e61a0;
    margin-top: 4px;
  }
}
body.index .strength__point__text {
  width: 60%;
}
@media only screen and (max-width: 767px) {
  body.index .strength__point__text {
    width: 100%;
  }
}
body.index .strength__point__text p {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
}
body.index .business {
  padding: 88px 0;
  background: rgba(227, 234, 238, 0.5);
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  body.index .business {
    padding: 48px 0;
    margin-top: -2px;
  }
}
body.index .business > svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  display: none;
}
body.index .business__row {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media only screen and (max-width: 767px) {
  body.index .business__row {
    flex-direction: column;
    gap: 32px;
  }
}
body.index .business__image {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  body.index .business__image {
    width: 100%;
    padding-top: 69.767442%;
    position: relative;
  }
}
body.index .business__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 767px) {
  body.index .business__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
}
body.index .business__content {
  width: calc(50% - 32px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media only screen and (max-width: 767px) {
  body.index .business__content {
    width: 100%;
  }
}
body.index .business__content h3 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.index .business__content h3 small {
  font-size: 18px;
  font-weight: bold;
  font-family: "Open Sans", sans-serif;
  color: #09abbe;
}
body.index .business__content h3 strong {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #0e61a0;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  body.index .business__content h3 strong {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  body.index .business__content h3 strong {
    font-size: 24px;
  }
}
body.index .business__content ul {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  body.index .business__content ul {
    gap: 16px;
  }
}
body.index .business__content ul li {
  display: inline-block;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #fff;
  background: #ec643b;
  padding: 0 8px;
}
@media only screen and (max-width: 767px) {
  body.index .business__content ul li {
    font-size: 14px;
  }
}
body.index .business__content p {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
}
body.index .business__content a {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  width: 318px;
  height: 62px;
  background: #09abbe;
  justify-content: center;
  border: 1px solid #09abbe;
  transition: all 0.3s ease;
  position: relative;
}
@media only screen and (min-width: 768px) {
  body.index .business__content a:hover {
    background: #fff;
  }
  body.index .business__content a:hover svg path {
    fill: #09abbe;
  }
  body.index .business__content a:hover span {
    color: #09abbe;
  }
}
@media only screen and (max-width: 767px) {
  body.index .business__content a {
    margin: auto;
  }
}
body.index .business__content a svg {
  width: 32px;
  height: 33px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
body.index .business__content a svg path {
  transition: all 0.3s ease;
}
body.index .business__content a span {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
}
body.index .works {
  padding: 88px 0;
  background-color: #f3f3f3;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  body.index .works {
    padding: 48px 0;
  }
}
body.index .works__scroll-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 0;
}
body.index .works__scroll-text__content {
  white-space: nowrap;
  font-size: 120px;
  font-weight: 900;
  color: rgba(9, 171, 190, 0.1);
  letter-spacing: 0.05em;
  line-height: 1;
  animation: scroll-text;
  animation-fill-mode: both;
  animation-duration: 20s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@media only screen and (max-width: 767px) {
  body.index .works__scroll-text__content {
    font-size: 60px;
    animation-duration: 15s;
  }
}
body.index .works__scroll-text__content-reverse {
  white-space: nowrap;
  font-size: 120px;
  font-weight: 900;
  color: rgba(9, 171, 190, 0.1);
  letter-spacing: 0.05em;
  line-height: 1;
  animation: scroll-text-reverse;
  animation-fill-mode: both;
  animation-duration: 25s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@media only screen and (max-width: 767px) {
  body.index .works__scroll-text__content-reverse {
    font-size: 60px;
    animation-duration: 20s;
  }
}
body.index .works .works__bg-scroll-wrap {
  position: absolute;
  left: 0;
  bottom: 16px;
  width: 200%;
  height: 120px;
  display: flex;
  gap: 100px;
  z-index: 0;
  animation: scroll-bg-wrap 30s linear infinite;
}
@media only screen and (max-width: 767px) {
  body.index .works .works__bg-scroll-wrap {
    height: 50px;
    bottom: 0;
  }
}
body.index .works .works__bg--scroll {
  width: 50%;
  height: 95%;
  -o-object-fit: cover;
     object-fit: cover;
}
@keyframes scroll-bg-wrap {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
body.index .works > * {
  position: relative;
  z-index: 1;
}
body.index .works .inner h2 {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}
body.index .works .inner h2 em {
  font-size: 18px;
  font-weight: bold;
  color: #09abbe;
  font-family: "Open Sans", sans-serif;
}
body.index .works .inner h2 strong {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #0e61a0;
}
@media only screen and (max-width: 767px) {
  body.index .works .inner h2 strong {
    font-size: 24px;
  }
}
body.index .works__data {
  background: #fff;
  margin-top: 32px;
  padding: 64px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
body.index .works__data__title {
  padding-bottom: 32px;
}
body.index .works__data__title h3 {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #333;
  text-align: center;
}
body.index .works__data__title h3 b {
  color: #0e61a0;
}
body.index .works__data__row {
  display: flex;
  justify-content: space-between;
  padding: 0 60px;
}
@media only screen and (max-width: 767px) {
  body.index .works__data__row {
    padding: 0;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
  }
}
body.index .works__data__inner {
  width: 100%;
}
body.index .works__data__item__inner {
  width: 100%;
  position: relative;
}
body.index .works__data__item__inner img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
body.index .works__data__item__title {
  display: flex;
  align-items: baseline;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  body.index .works__data__item__title {
    justify-content: center;
  }
}
body.index .works__data__item__title small {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-right: 4px;
}
body.index .works__data__item__title strong {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-size: 64px;
  color: #0e61a0;
}
body.index .works__data__item__title em {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
body.index .works__description {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
  margin-top: 88px;
}
body.index .works__description h4 {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
@media only screen and (max-width: 767px) {
  body.index .works__description h4 {
    justify-content: flex-start;
    flex-direction: column;
  }
}
body.index .works__description h4 strong {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #0e61a0;
}
body.index .works__description h4 small {
  font-size: 14px;
}
body.index .works__description table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #bbc5d5;
}
@media only screen and (max-width: 767px) {
  body.index .works__description table {
    display: block;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  body.index .works__description table tbody,
  body.index .works__description table tr {
    display: block;
    width: 100%;
  }
}
body.index .works__description table th,
body.index .works__description table td {
  border-bottom: 1px solid #bbc5d5;
  text-align: left;
  padding: 16px 24px;
}
@media only screen and (max-width: 767px) {
  body.index .works__description table th,
  body.index .works__description table td {
    display: block;
    width: 100%;
    border: none;
    padding: 8px;
  }
}
body.index .works__description table th {
  font-size: 16px;
  vertical-align: middle;
  font-weight: bold;
  color: #0e61a0;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  body.index .works__description table th {
    display: block;
    width: 100%;
    padding-bottom: 0;
  }
}
body.index .works__description table td {
  vertical-align: middle;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  body.index .works__description table td {
    display: block;
    width: 100%;
    padding-top: 0;
    border-bottom: 1px solid #bbc5d5;
  }
}
body.index .company {
  padding: 88px 0;
  background-image: url(/images/top/img02.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  body.index .company {
    padding: 48px 0;
  }
}
body.index .company h2 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media only screen and (max-width: 767px) {
  body.index .company h2 {
    gap: 0px;
  }
}
body.index .company h2 em {
  font-size: 18px;
  font-weight: bold;
  color: #09abbe;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
body.index .company h2 strong {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  body.index .company h2 strong {
    font-size: 24px;
  }
}
body.index .company__links {
  margin-top: 32px;
}
@media only screen and (max-width: 767px) {
  body.index .company__links {
    margin-top: 24px;
  }
}
body.index .company__links ul {
  display: flex;
  gap: 24px;
  flex-direction: column;
  max-width: 320px;
}
@media only screen and (max-width: 767px) {
  body.index .company__links ul {
    justify-content: center;
    max-width: 100%;
    align-items: center;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  body.index .company__links ul li {
    width: 100%;
    margin: auto;
  }
}
body.index .company__links ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2;
  color: #fff;
  padding: 16px 24px;
  width: 100%;
  height: 62px;
  border: 1px solid #fff;
  position: relative;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 768px) {
  body.index .company__links ul li a:hover {
    background: #fff;
  }
  body.index .company__links ul li a:hover span {
    color: #0e61a0;
  }
  body.index .company__links ul li a:hover svg path {
    fill: #0e61a0;
  }
}
body.index .company__links ul li a span {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
body.index .company__links ul li a svg {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 18px;
  z-index: 1;
}
body.index .company__links ul li a svg path {
  transition: all 0.3s ease;
  fill: #fff;
}

.privacy-policy-single {
  background-color: #F3F3F3;
  padding-top: 88px;
  padding-bottom: 88px;
}
@media only screen and (max-width: 767px) {
  .privacy-policy-single {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.privacy-policy-single .inner {
  max-width: 940px;
}
.privacy-policy-single h3 {
  padding-bottom: 24px;
}
.privacy-policy-single h3 span {
  font-size: 24px;
  font-weight: 700;
  color: #0E61A0;
  padding-bottom: 8px;
  display: block;
  position: relative;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .privacy-policy-single h3 span {
    line-height: 1.5;
    font-size: 22px;
  }
}
.privacy-policy-single h3 span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 64px;
  height: 2px;
  background: #09ABBE;
}
.privacy-policy-single p {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
  font-weight: 500;
  color: #333;
  margin-bottom: 32px;
}
.privacy-policy-single p:first-child {
  margin-bottom: 48px;
}
.privacy-policy-single p:last-child {
  margin-bottom: 0;
}
.privacy-policy-single ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 48px;
}
.privacy-policy-single ul li {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 2;
}

.section {
  width: 100px;
  height: auto;
}