/*
Theme Name: test
Author: test
Author URI: https://wordpress.org/
Version: 1.0
*/
@charset "UTF-8";
/*! sanitize.css | CC0 Public Domain | github.com/jonathantneal/sanitize.css */
/*
 * Normalization
 */
:root {
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

audio:not([controls]) {
  display: none;
}

details {
  display: block;
}

input[type=number] {
  width: auto;
}
input[type=search] {
  -webkit-appearance: textfield;
}
input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

main {
  display: block;
  overflow: hidden;
}

summary {
  display: block;
}

pre {
  overflow: auto;
}

progress {
  display: inline-block;
}

template {
  display: none;
}

textarea {
  overflow: auto;
}

[hidden] {
  display: none;
}

[unselectable] {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

/*
 * Universal inheritance
 */
*,
::before,
::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

/*
 * Opinionated defaults
 */
*,
::before,
::after {
  border-style: solid;
  border-width: 0;
}

* {
  margin: 0;
  padding: 0;
}

:root {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font: 62.5%/1.5 sans-serif;
  text-rendering: optimizeLegibility;
}

html {
  background-color: #FFFFFF;
}

a {
  text-decoration: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

button,
input,
select,
textarea {
  background-color: transparent;
}

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

button,
[type=button],
[type=date],
[type=datetime],
[type=datetime-local],
[type=email],
[type=month],
[type=number],
[type=password],
[type=reset],
[type=search],
[type=submit],
[type=tel],
[type=text],
[type=time],
[type=url],
[type=week],
select,
textarea {
  min-height: 1.5em;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

nav ol,
nav ul {
  list-style: none;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}
select::-ms-expand {
  display: none;
}
select::-ms-value {
  color: currentColor;
}

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

textarea {
  resize: vertical;
}

::-moz-selection {
  background-color: #B3D4FC;
  text-shadow: none;
}

::selection {
  background-color: #B3D4FC;
  text-shadow: none;
}

@media screen {
  [hidden~=screen] {
    display: inherit;
  }
  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    clip: rect(0 0 0 0) !important;
    position: absolute !important;
  }
}
/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  共通設定


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
html {
  background-color: #f7f7f7;
}

body {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: auto;
  font-size: 1.4rem;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #3d424b;
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
}

ol,
ul {
  list-style: none;
}

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

a {
  color: #3d424b;
}

a[href^="tel:"] {
  cursor: default;
}

button {
  cursor: pointer;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  ヘッダー


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/*
  ヘッダー - wrapper
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  -webkit-transition: background 0.3s 0.5s, -webkit-transform 0.3s;
  transition: background 0.3s 0.5s, -webkit-transform 0.3s;
  transition: transform 0.3s, background 0.3s 0.5s;
  transition: transform 0.3s, background 0.3s 0.5s, -webkit-transform 0.3s;
}
@media (max-width: 750px) {
  .header {
    z-index: 51;
  }
}

.header.is-show {
  background-color: #f7f7f7;
  -webkit-transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, background 0.3s;
  transition: transform 0.3s, background 0.3s, -webkit-transform 0.3s;
}

.header.is-hidden {
  -webkit-transform: translate3d(0, -120%, 0);
          transform: translate3d(0, -120%, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.header.is-bg-none {
  -webkit-transition: background 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, background 0.3s;
  transition: transform 0.3s, background 0.3s, -webkit-transform 0.3s;
}

.header.is-bg {
  background-color: #f7f7f7;
}

.headerIn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 751px) {
  .headerIn {
    position: relative;
    z-index: 10;
    height: 72px;
    padding: 0 2.9% 0 4.1%;
    margin: auto;
  }
}
@media (max-width: 750px) {
  .headerIn {
    height: 60px;
    padding: 0 20px 0 24px;
  }
}

/*
  ヘッダー - ロゴ
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.headerLogo {
  margin-right: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.headerLogo__main {
  display: inline-block;
}
@media (min-width: 751px) {
  .headerLogo__main {
    width: 250px;
  }
}
@media (max-width: 750px) {
  .headerLogo__main {
    width: 200px;
  }
}
.headerLogo__20th {
  display: inline-block;
  position: relative;
  width: 67px;
  margin-left: 6px;
}
@media (max-width: 750px) {
  .headerLogo__20th {
    width: 49px;
  }
}
.headerLogo__20th__2 {
  width: 34px;
}
@media (max-width: 750px) {
  .headerLogo__20th__2 {
    width: 23px;
  }
}
.headerLogo__20th__annimation {
  width: 44px;
  position: absolute;
  right: 9px;
  bottom: -5px;
  z-index: 50;
  -webkit-animation: 5s linear infinite rotation;
          animation: 5s linear infinite rotation;
}
@media (max-width: 750px) {
  .headerLogo__20th__annimation {
    width: 34px;
    right: 6px;
  }
}
.headerLogo__20th__th {
  width: 13px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 60;
}
@media (max-width: 750px) {
  .headerLogo__20th__th {
    width: 10px;
    bottom: -4px;
  }
}
@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@media (min-width: 751px) {
  .headerLogo.--download {
    width: 310px;
  }
}
@media (max-width: 750px) {
  .headerLogo.--download {
    width: 240px;
  }
}

/*
  ヘッダー - ナビゲーション
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (max-width: 750px) {
  .headerNav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    width: 100vw;
    overflow-y: scroll;
    pointer-events: none;
  }
}

@media (max-width: 750px) {
  .headerNav__overlay {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: #dbe1ea;
    opacity: 0.8;
  }
}

@media (max-width: 750px) {
  .headerNav__in {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
    width: 308px;
    padding: 90px 18px 100px 48px;
    min-height: 100vh;
    background: -webkit-linear-gradient(353.6deg, #f0f0f0 34.84%, #e7ebf1 81.3%);
    background: linear-gradient(96.4deg, #f0f0f0 34.84%, #e7ebf1 81.3%);
    margin-left: auto;
  }
}

@media (min-width: 751px) {
  .headerNav__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: 30px;
  }
}
@media (max-width: 750px) {
  .headerNav__list {
    position: relative;
    padding-bottom: 30px;
    margin: 0 6px 46px;
  }
}

@media (max-width: 750px) {
  .headerNav__list::after {
    content: "";
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #dbe1ea;
  }
}

@media (min-width: 751px) {
  .headerNav__item:not(:last-child) {
    margin-right: 24px;
  }
}

@media (max-width: 750px) {
  .headerNav__item:last-child .headerNavSub__list {
    padding-bottom: 0;
    margin-bottom: -12px;
  }
}

@media (max-width: 750px) {
  .headerNav__item:last-child .headerNavSub__item:last-child {
    border-bottom: none;
  }
}

.headerNav__link {
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media (min-width: 751px) {
  .headerNav__link {
    padding: 2px;
  }
}
@media (max-width: 750px) {
  .headerNav__link {
    display: block;
    padding: 14px 0 13px;
    font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-weight: 600;
    font-size: 18px;
  }
}

@media (min-width: 751px) {
  button.headerNav__link {
    margin-top: -1px;
  }
}
@media (max-width: 750px) {
  button.headerNav__link {
    width: 100%;
  }
}

@media (max-width: 750px) {
  .headerNav__link::after {
    content: "";
  }
}

@media (max-width: 750px) {
  .headerNav__drawer-sp {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
  }
  .headerNav__drawer-sp::before, .headerNav__drawer-sp::after {
    content: "";
    position: absolute;
    right: 20px;
    width: 1px;
    height: 13px;
    background: #3d424b;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .headerNav__drawer-sp::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .headerNav__drawer-sp.is-show::before {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .headerNav__drawer-sp::before, .headerNav__drawer-sp::after {
    background: #0171ff;
  }
}

/*
  ヘッダー - サブナビゲーション
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .headerNavSubWrap {
    position: absolute;
    top: 45px;
    left: 0;
    right: 0;
    display: block !important;
    width: 100vw;
    padding-top: 27px;
  }
}
@media (max-width: 750px) {
  .headerNavSubWrap {
    display: none;
  }
}

@media (min-width: 751px) {
  .headerNavSub {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 1366px;
    margin: auto;
  }
}

.headerNavSubBg {
  content: "";
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 9;
  pointer-events: none;
  overflow: hidden;
  background: -webkit-linear-gradient(353.6deg, #f0f0f0 34.84%, #e7ebf1 81.3%);
  background: linear-gradient(96.4deg, #f0f0f0 34.84%, #e7ebf1 81.3%);
}

.headerNavSubBgImg {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto;
  overflow: hidden;
  opacity: 0;
}
@media (min-width: 751px) {
  .headerNavSubBgImg {
    border-radius: 500px;
  }
}

.headerNavSubBgImg.is-show {
  -webkit-transition: width 0.3s, border-radius 0.3s 0.1s, opacity 0.1s;
  transition: width 0.3s, border-radius 0.3s 0.1s, opacity 0.1s;
  opacity: 1;
}

.headerNavSubBgImg.is-hide {
  -webkit-transition: width 0s 0.4s, border-radius 0s 0.4s, opacity 0.2s;
  transition: width 0s 0.4s, border-radius 0s 0.4s, opacity 0.2s;
  opacity: 0;
}

.headerNavSubBgImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.headerNavSubTop {
  position: relative;
  z-index: 10;
}
@media (min-width: 751px) {
  .headerNavSubTop {
    width: 30%;
    min-width: 240px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .headerNavSubTop {
    padding-right: 20px;
  }
}

.headerNavSubTop__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 751px) {
  .headerNavSubTop__link {
    height: 100%;
    padding: 40px 0;
  }
}

.headerNavSubTop__link:hover .c-btn__text {
  color: #fff;
}
.headerNavSubTop__link:hover .c-btn__dot {
  background: #fff;
}
.headerNavSubTop__link:hover .c-btn__overlay {
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media (min-width: 751px) {
  .headerNavSubTop__text {
    margin-bottom: 15px;
    font-size: 18px;
    letter-spacing: 0.05em;
  }
}
@media (max-width: 750px) {
  .headerNavSubTop__text {
    display: block;
    padding: 12px 0;
    background: url(../images/common/icon_arrow_head_wh.svg) no-repeat right 10px center/9px 10px;
  }
}

.headerNavSub__listWrap {
  position: relative;
  z-index: 10;
}
@media (min-width: 751px) {
  .headerNavSub__listWrap {
    width: 70%;
    min-width: 870px;
    padding: 28px 5% 38px;
    min-height: 247px;
  }
}
@media (max-width: 1110px) and (min-width: 750px) {
  .headerNavSub__listWrap {
    min-width: 800px;
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 1024px) {
  .headerNavSub__listWrap {
    min-width: auto;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .headerNavSub__listWrap {
    padding-right: 4%;
    padding-left: 4%;
  }
}
@media (max-width: 750px) {
  .headerNavSub__listWrap {
    padding-bottom: 24px;
  }
}

@media (min-width: 751px) {
  .headerNavSub__listWrap::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 0;
    bottom: 16px;
    width: 1px;
    background: #dbe1ea;
  }
}

@media (min-width: 1025px) {
  .headerNavSub__list {
    margin-right: -18px;
  }
}
@media (min-width: 751px) {
  .headerNavSub__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media (max-width: 1110px) {
  .headerNavSub__list {
    margin-right: -30px;
  }
}
@media (max-width: 750px) {
  .headerNavSub__list {
    margin-right: -24px;
  }
}

@media (min-width: 1025px) {
  .headerNavSub__item {
    width: calc(33.3% - 18px);
    min-width: 236px;
    max-width: 300px;
    margin-right: 18px;
  }
}
@media (max-width: 1110px) {
  .headerNavSub__item {
    margin-right: 10px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .headerNavSub__item {
    width: calc(50% - 24px);
    margin-right: 24px;
  }
}
@media (max-width: 750px) {
  .headerNavSub__item {
    border-bottom: 1px solid #dbe1ea;
    line-height: 1.8;
  }
}

@media (max-width: 1024px) and (min-width: 751px) {
  .headerNavSub__item:nth-child(n+5) {
    margin-top: 24px;
  }
}

.headerNavSub__link {
  display: block;
}

.headerNavSubImgWrap {
  position: relative;
}

.headerNavSubImgWrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: -webkit-linear-gradient(266.11deg, #2f4aaa 0.4%, #29649b 132.82%);
  background: linear-gradient(183.89deg, #2f4aaa 0.4%, #29649b 132.82%);
  opacity: 0.1;
  pointer-events: none;
}

.headerNavSubBox {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 751px) {
  .headerNavSubBox {
    padding: 14px 8px 12px;
    min-height: 60px;
    border-bottom: 1px solid #dbe1ea;
    background-position: right top 21px;
    line-height: 1.4;
  }
}
@media (max-width: 750px) {
  .headerNavSubBox {
    padding: 12px 0;
    background-position: right 10px center;
  }
}

@media (min-width: 751px) {
  .headerNavSub__list.-biz .headerNavSubBox {
    min-height: 66px;
  }
}

/*
  ヘッダー - リンクホバー
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.headerNavSub__link:hover .headerNavSubBox::after {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

.headerNavSubBox__text {
  letter-spacing: 0.1em;
}
@media (min-width: 751px) {
  .headerNavSubBox__text {
    white-space: nowrap;
  }
}

.headerNavSubBox__text.-min {
  font-size: 12px;
  padding: 1px 0;
}

.headerNavSubBox.-outerlink {
  background: none;
  padding-right: 0;
}

/*
  ヘッダー - SP メニュー内ボタン
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.headerNavBtn + .headerNavBtn {
  margin-top: 14px;
}

.headerNavBtn__link {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  overflow: hidden;
  max-width: 240px;
  height: 46px;
  border-radius: 23px;
  margin: auto;
}

.headerNavBtn__link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #0171ff;
  border-radius: 24px;
  opacity: 0;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
}

.headerNavBtn__text {
  position: relative;
  z-index: 2;
  color: #0171ff;
  font-weight: bold;
  letter-spacing: 0.05em;
  -webkit-transition: color 0.1s;
  transition: color 0.1s;
}

.headerNavBtn__link:hover::after {
  opacity: 1;
}
.headerNavBtn__link:hover .headerNavBtn__text {
  color: #fff;
}

/*
  ヘッダー - お問い合わせボタン
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.headerBtn__link {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  letter-spacing: 0.1em;
}
@media (min-width: 751px) {
  .headerBtn__link {
    height: 33px;
    width: 117px;
    padding-top: 2px;
    font-size: 13px;
    border-radius: 20px;
  }
}
@media (max-width: 750px) {
  .headerBtn__link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
}

.headerBtn__link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border: 1px solid #0171ff;
}
@media (min-width: 751px) {
  .headerBtn__link::before {
    border-radius: 20px;
  }
}
@media (max-width: 750px) {
  .headerBtn__link::before {
    border-radius: 50%;
  }
}

.headerBtn__link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: -webkit-linear-gradient(353.6deg, #f0f0f0 34.84%, #e7ebf1 81.3%);
  background: linear-gradient(96.4deg, #f0f0f0 34.84%, #e7ebf1 81.3%);
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media (min-width: 751px) {
  .headerBtn__link::after {
    border-radius: 20px;
  }
}
@media (max-width: 750px) {
  .headerBtn__link::after {
    border-radius: 50%;
  }
}

@media (max-width: 750px) {
  .headerBtn__icon {
    position: relative;
    bottom: 1px;
    z-index: 3;
    width: 18px;
  }
}

.headerBtn__text {
  position: relative;
  z-index: 2;
  color: #0171ff;
  font-size: 11px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-weight: bold;
}

.headerBtn__overlay {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: scale(0);
          transform: scale(0);
  background: #0171ff;
}

/* ホバー */
.headerBtn__link:hover .headerBtn__text {
  color: #fff;
}
.headerBtn__link:hover .headerBtn__overlay {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*
  ヘッダー - ハンバーガーボタン
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.burgerBtn,
.burgerBtn span {
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.burgerBtn {
  position: fixed;
  top: 14px;
  right: 20px;
  z-index: 100;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  font-size: inherit;
  text-align: left;
  color: inherit;
  cursor: pointer;
  width: 32px;
  height: 32px;
  margin-left: 16px;
}

.burgerBtn span {
  position: absolute;
  left: 0;
  width: 32px;
  height: 1px;
  background-color: #3d424b;
  -webkit-transform-origin: left;
          transform-origin: left;
}

.burgerBtn span:nth-of-type(1) {
  top: 5px;
}

.burgerBtn span:nth-of-type(2) {
  top: calc(50% - 1px);
}

.burgerBtn span:nth-of-type(3) {
  bottom: 6px;
}

.burgerBtn.is-show span {
  left: 4px;
}

.burgerBtn.is-show span:nth-of-type(1) {
  top: 3px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.burgerBtn.is-show span:nth-of-type(2) {
  opacity: 0;
}

.burgerBtn.is-show span:nth-of-type(3) {
  bottom: 5px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/*
  ヘッダー - SP ナビゲーション表示
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (max-width: 750px) {
  .headerNav__in {
    -webkit-transform: scale3d(0, 1, 1);
            transform: scale3d(0, 1, 1);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
}

@media (max-width: 750px) {
  .headerNav__overlay {
    opacity: 0;
  }
}

@media (max-width: 750px) {
  .headerNav__list::after {
    opacity: 0;
  }
}

@media (max-width: 750px) {
  .headerNav__item,
  .headerNavBtn {
    opacity: 0;
    -webkit-transform: translateY(18px);
            transform: translateY(18px);
  }
}

/* SPナビゲーション 表示 */
@media (max-width: 750px) {
  .headerNav.is-show {
    pointer-events: auto;
  }
  .headerNav.is-show .headerNav__overlay {
    opacity: 0.8;
    -webkit-transition: opacity 0.6s 0.3s;
    transition: opacity 0.6s 0.3s;
  }
  .headerNav.is-show .headerNav__in {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
    -webkit-transition: 0.6s;
    transition: 0.6s;
  }
  .headerNav.is-show .headerNav__list::after {
    opacity: 1;
    -webkit-transition: opacity 0.6s 0.8s;
    transition: opacity 0.6s 0.8s;
  }
  .headerNav.is-show .headerNav__item,
  .headerNav.is-show .headerNavBtn {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
    transition: opacity 0.6s, -webkit-transform 0.6s;
    transition: transform 0.6s, opacity 0.6s;
    transition: transform 0.6s, opacity 0.6s, -webkit-transform 0.6s;
  }
  .headerNav.is-show .headerNav__item:nth-child(1) {
    -webkit-transition-delay: 0.38s !important;
            transition-delay: 0.38s !important;
  }
  .headerNav.is-show .headerNavBtn:nth-child(1) {
    -webkit-transition-delay: 0.68s !important;
            transition-delay: 0.68s !important;
  }
  .headerNav.is-show .headerNav__item:nth-child(2) {
    -webkit-transition-delay: 0.46s !important;
            transition-delay: 0.46s !important;
  }
  .headerNav.is-show .headerNavBtn:nth-child(2) {
    -webkit-transition-delay: 0.76s !important;
            transition-delay: 0.76s !important;
  }
  .headerNav.is-show .headerNav__item:nth-child(3) {
    -webkit-transition-delay: 0.54s !important;
            transition-delay: 0.54s !important;
  }
  .headerNav.is-show .headerNavBtn:nth-child(3) {
    -webkit-transition-delay: 0.84s !important;
            transition-delay: 0.84s !important;
  }
  .headerNav.is-show .headerNav__item:nth-child(4) {
    -webkit-transition-delay: 0.62s !important;
            transition-delay: 0.62s !important;
  }
  .headerNav.is-show .headerNavBtn:nth-child(4) {
    -webkit-transition-delay: 0.92s !important;
            transition-delay: 0.92s !important;
  }
  .headerNav.is-show .headerNav__item:nth-child(5) {
    -webkit-transition-delay: 0.7s !important;
            transition-delay: 0.7s !important;
  }
  .headerNav.is-show .headerNavBtn:nth-child(5) {
    -webkit-transition-delay: 1s !important;
            transition-delay: 1s !important;
  }
  .headerNav.is-show .headerNav__item:nth-child(6) {
    -webkit-transition-delay: 0.78s !important;
            transition-delay: 0.78s !important;
  }
  .headerNav.is-show .headerNavBtn:nth-child(6) {
    -webkit-transition-delay: 1.08s !important;
            transition-delay: 1.08s !important;
  }
  .headerNav.is-show .headerNav__item:nth-child(7) {
    -webkit-transition-delay: 0.86s !important;
            transition-delay: 0.86s !important;
  }
  .headerNav.is-show .headerNavBtn:nth-child(7) {
    -webkit-transition-delay: 1.16s !important;
            transition-delay: 1.16s !important;
  }
  .headerNav.is-show .headerNav__item:nth-child(8) {
    -webkit-transition-delay: 0.94s !important;
            transition-delay: 0.94s !important;
  }
  .headerNav.is-show .headerNavBtn:nth-child(8) {
    -webkit-transition-delay: 1.24s !important;
            transition-delay: 1.24s !important;
  }
}
/* SPナビゲーション 非表示 */
@media (max-width: 750px) {
  .headerNav.is-close .headerNav__overlay {
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    transition: opacity 0.6s;
  }
  .headerNav.is-close .headerNav__in {
    -webkit-transform: scale3d(0, 1, 1);
            transform: scale3d(0, 1, 1);
    -webkit-transition: 0.6s 0.4s;
    transition: 0.6s 0.4s;
  }
  .headerNav.is-close .headerNav__list::after {
    opacity: 0;
    -webkit-transition: opacity 0.6s;
    transition: opacity 0.6s;
  }
  .headerNav.is-close .headerNav__item,
  .headerNav.is-close .headerNavBtn {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: opacity 0.3s 0s, -webkit-transform 0s 0s;
    transition: opacity 0.3s 0s, -webkit-transform 0s 0s;
    transition: transform 0s 0s, opacity 0.3s 0s;
    transition: transform 0s 0s, opacity 0.3s 0s, -webkit-transform 0s 0s;
  }
}
/*
  ヘッダー - サブナビゲーション バナー
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 1025px) {
  .headerNavSubBnrWrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 48px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .headerNavSubBnrWrap {
    margin-top: 30px;
  }
}
@media (max-width: 750px) {
  .headerNavSubBnrWrap {
    margin-top: 24px;
  }
}

@media (min-width: 1025px) {
  .headerNavSubBnr + .headerNavSubBnr {
    margin-left: 48px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .headerNavSubBnr + .headerNavSubBnr {
    margin-top: 40px;
  }
}
@media (max-width: 750px) {
  .headerNavSubBnr + .headerNavSubBnr {
    margin-top: 22px;
  }
}

.headerNavSubBnr__link {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (min-width: 751px) {
  .headerNavSubBnr__link {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .headerNavSubBnr__link {
    width: 360px;
  }
}
@media (max-width: 750px) {
  .headerNavSubBnr__link {
    position: relative;
    display: block;
  }
}

.headerNavSubBnr__link:hover .c-circleBtn__link .c-circleBtn__icon.-outerlink {
  background-image: url(../images/common/icon_outerlink_white.svg);
}
.headerNavSubBnr__link:hover .c-circleBtn__link .c-circleBtn__icon.-closs::before,
.headerNavSubBnr__link:hover .c-circleBtn__link .c-circleBtn__icon.-closs::after {
  background: #fff;
}
.headerNavSubBnr__link:hover .c-circleBtn__link .c-circleBtn__overlay {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.headerNavSubBnr img {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  width: 138px;
}
@media (min-width: 751px) {
  .headerNavSubBnr img {
    margin-right: 12px;
  }
}

.headerNavSubBnr__txt {
  letter-spacing: 0.1em;
}
@media (min-width: 751px) {
  .headerNavSubBnr__txt {
    margin-right: 18px;
  }
}
@media (max-width: 750px) {
  .headerNavSubBnr__txt {
    margin-top: 12px;
  }
}

@media (min-width: 751px) {
  .headerNavSubBnr__link .c-circleBtn {
    margin-left: auto;
  }
}
@media (max-width: 750px) {
  .headerNavSubBnr__link .c-circleBtn {
    position: absolute;
    top: 26px;
    right: 0;
  }
}

/*
  ヘッダー - サブナビゲーション ホバー表示
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .headerNavSubWrap {
    pointer-events: none;
  }
}

@media (min-width: 751px) {
  .headerNavSubBg {
    height: 0;
    -webkit-transition: height 0.3s;
    transition: height 0.3s;
    -webkit-transition-delay: 0.25s;
            transition-delay: 0.25s;
  }
}

@media (min-width: 751px) {
  .headerNavSubTop,
  .headerNavSub__listWrap {
    opacity: 0;
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transition-duration: 0.4s;
            transition-duration: 0.4s;
  }
}

/* ホバー */
@media (min-width: 751px) {
  .headerNav__item:hover .headerNav__link {
    color: #0171ff;
  }
}

@media (min-width: 751px) {
  .headerNavSubWrap.is-anime,
  .headerNavSubTop.is-anime,
  .headerNavSub__listWrap.is-anime {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    pointer-events: auto;
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
}

@media (min-width: 751px) {
  .headerNavSubBg.is-anime {
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  フッター


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.footer {
  position: relative;
  z-index: 10;
}

.footerRound {
  margin-bottom: -2px;
}
@media (min-width: 751px) {
  .footerRound {
    margin-top: -110px;
  }
}
@media (max-width: 750px) {
  .footerRound {
    margin-top: -42px;
  }
}

.footerRound img {
  width: 100%;
  max-width: none;
}

.footerIn {
  background: #f7f7f7;
}

.footerConts {
  position: relative;
  z-index: 2;
}
@media (min-width: 751px) {
  .footerConts {
    width: 82.4304538799vw;
    max-width: 1126px;
    padding: 100px 0 50px;
    margin: auto;
  }
}
@media (max-width: 750px) {
  .footerConts {
    padding: 90px 0 12px;
  }
}

/*
  フッター - 上部
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.footerTop {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #dbe1ea;
  padding: 0 12px;
}
@media (min-width: 751px) {
  .footerTop {
    padding-bottom: 36px;
  }
}
@media (max-width: 750px) {
  .footerTop {
    padding-bottom: 48px;
    margin: 0 12px;
  }
}

.footerLogo__link {
  display: block;
}
@media (min-width: 751px) {
  .footerLogo__link {
    width: 190px;
  }
}
@media (max-width: 750px) {
  .footerLogo__link {
    width: 118px;
  }
}

.footerLogo img {
  width: 100%;
  max-width: none;
}

/* トップに戻るボタン */
.goTop__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.goTop__txt {
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.03em;
  margin-right: 16px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.goTop__link:hover .goTop__txt {
  color: #0171ff;
}

.goTop__arrow {
  display: block;
  border: 3px solid transparent;
  border-bottom: 7px solid #0171ff;
}

/*
  フッター - 中部
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .footerMid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding: 40px 12px 32px;
    border-bottom: 1px solid #dbe1ea;
  }
}
@media (min-width: 1025px) {
  .footerMid {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 750px) {
  .footerMid {
    padding: 40px 0;
    margin: 0 24px;
  }
}

@media (min-width: 1025px) {
  .footerNav {
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
  }
}
@media (min-width: 751px) {
  .footerNav {
    margin-bottom: 48px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .footerNav {
    width: 33%;
  }
}
@media (max-width: 750px) {
  .footerNav {
    border-bottom: 1px solid #dbe1ea;
  }
}

@media (max-width: 1024px) and (min-width: 751px) {
  .footerNav.-s {
    width: 170px;
    margin-left: auto;
    margin-right: 20px;
  }
}

@media (min-width: 751px) {
  .footerNav__listWrap {
    display: block !important;
  }
}
@media (max-width: 750px) {
  .footerNav__listWrap {
    display: none;
    padding: 16px 0 22px;
  }
}

@media (min-width: 751px) {
  .footerNavTtl {
    margin-bottom: 10px;
  }
}

@media (min-width: 751px) {
  .footerNavTtl + .footerNavTtl {
    margin-top: 28px;
  }
}
@media (max-width: 750px) {
  .footerNavTtl + .footerNavTtl {
    border-top: 1px solid #dbe1ea;
  }
}

@media (max-width: 750px) {
  .footerNavTtl__link {
    display: block;
    padding: 13px 0;
  }
}

@media (max-width: 750px) {
  .footerNavTtl-drawer {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    padding: 13px 0;
  }
  .footerNavTtl-drawer::before, .footerNavTtl-drawer::after {
    content: "";
    position: absolute;
    right: 20px;
    width: 1px;
    height: 13px;
    background: #3d424b;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .footerNavTtl-drawer::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .footerNavTtl-drawer.is-show::before {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .footerNavTtl-drawer::before, .footerNavTtl-drawer::after {
    background: #0171ff;
  }
}

.footerNavTtl__text {
  color: #0087c6;
  letter-spacing: 0.05em;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (max-width: 750px) {
  .footerNavTtl__text {
    font-size: 16px;
  }
}

.footerNavTtl__link:hover .footerNavTtl__text {
  color: #0171ff;
}

@media (min-width: 751px) {
  .footerNav__item:not(:last-child) {
    margin-bottom: 6px;
  }
}
@media (max-width: 750px) {
  .footerNav__item:not(:last-child) {
    margin-bottom: 14px;
  }
}

.footerNav__link {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (min-width: 751px) {
  .footerNav__link {
    display: inline-block;
    font-size: 13px;
  }
}
@media (max-width: 750px) {
  .footerNav__link {
    display: block;
    padding: 2px 0;
  }
}

@media (min-width: 751px) {
  .footerNav__link::before {
    content: "- ";
  }
}

.footerNav__link.-outerlink {
  position: relative;
  padding-left: 16px;
}

.footerNav__link.-outerlink::before {
  content: "";
  position: absolute;
  left: 0;
  display: inline-block;
  width: 12px;
  height: 10px;
  background: url(../images/common/icon_outerlink.svg) no-repeat center/contain;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
@media (min-width: 751px) {
  .footerNav__link.-outerlink::before {
    top: 5px;
  }
}
@media (max-width: 750px) {
  .footerNav__link.-outerlink::before {
    top: 7px;
  }
}

.footerNav__link:hover {
  color: #0171ff;
}
.footerNav__link:hover.-outerlink::before {
  background-image: url(https://wahcell.jp/wp-content/themes/wahcell-1/img/icon_outerlink_blue.svg);
}

/*
  フッター - 下部
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 1025px) {
  .footerBottom {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 751px) {
  .footerBottom {
    padding-top: 24px;
  }
}
@media (max-width: 750px) {
  .footerBottom {
    margin: 0 27px;
  }
}

.footerBottomNav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1024px) {
  .footerBottomNav {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    max-width: 340px;
  }
}

.footerBottomNav__item {
  line-height: 1;
}
@media (max-width: 750px) {
  .footerBottomNav__item {
    margin-bottom: 8px;
  }
}

.footerBottomNav__item:not(:last-child) {
  position: relative;
}
@media (min-width: 751px) {
  .footerBottomNav__item:not(:last-child) {
    padding-right: 18px;
    margin-right: 18px;
  }
}

@media (max-width: 750px) {
  .footerBottomNav__item:nth-child(odd) {
    padding-right: 11px;
    margin-right: 11px;
  }
}

@media (min-width: 751px) {
  .footerBottomNav__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    width: 1px;
    height: 10px;
    background: rgba(162, 168, 180, 0.6);
  }
}

@media (max-width: 750px) {
  .footerBottomNav__item:nth-child(odd)::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    width: 1px;
    height: 10px;
    background: rgba(162, 168, 180, 0.6);
  }
}

.footerBottomNav__link {
  display: inline-block;
  padding: 3px 0;
  color: #a2a8b4;
  font-size: 12px;
}

.footerBottomNav__link:hover {
  color: #3d424b;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.copyright {
  font-size: 10px;
  letter-spacing: 0.1em;
}
@media (max-width: 1024px) {
  .copyright {
    margin-top: 50px;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  背景動画


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.bgLoopMv {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.bgLoopMv::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  background: rgba(255, 255, 255, 0.5);
}

.bgLoopMv.is-contact::after {
  opacity: 1;
}

.bgLoopVideo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: none;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  クッキー オプトイン


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.cookie-opt {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 100;
}

.cookie-opt::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: -webkit-linear-gradient(353.6deg, #f0f0f0 34.84%, #e7ebf1 81.3%);
  background: linear-gradient(96.4deg, #f0f0f0 34.84%, #e7ebf1 81.3%);
  opacity: 0.96;
}

.cookie-opt__in {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
}
@media (min-width: 751px) {
  .cookie-opt__in {
    width: calc(100% - 120px);
    min-height: 96px;
    padding: 14px 0;
  }
}
@media (max-width: 750px) {
  .cookie-opt__in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: calc(100% - 48px);
    padding: 22px 0 24px;
    padding: 42px 0 24px;
  }
}

@media (min-width: 751px) {
  .cookie-opt__txt {
    margin-right: 10%;
  }
}
@media (min-width: 1367px) {
  .cookie-opt__txt {
    margin-right: 70px;
  }
}
@media (max-width: 750px) {
  .cookie-opt__txt {
    max-width: 440px;
    margin-bottom: 18px;
    text-align: justify;
  }
}

.cookie-opt__link {
  color: #0171ff;
}

.cookie-opt__btn {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}

.cookie-opt__btn .c-btn__text {
  font-size: 13px;
}

.cookie-opt__close {
  position: absolute !important;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  width: 30px;
  height: 30px;
}
.cookie-opt__close::before, .cookie-opt__close::after {
  content: "";
  position: absolute;
  right: 15px;
  width: 1px;
  height: 20px;
  background: #3d424b;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.cookie-opt__close::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.cookie-opt__close::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (min-width: 751px) {
  .cookie-opt__close {
    top: 14px;
    right: 14px;
  }
}
@media (max-width: 750px) {
  .cookie-opt__close {
    top: 8px;
    right: 12px;
  }
}

/*
  クッキー オプトイン - 表示切替
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.cookie-opt.is-hide {
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.cookie-opt.is-none {
  display: none;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  下層ページ


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.conts {
  position: relative;
  z-index: 3;
  min-height: 90vh;
}
@media (min-width: 751px) {
  .conts {
    padding-top: 72px;
  }
}
@media (max-width: 750px) {
  .conts {
    padding-top: 60px;
  }
}

.conts::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background: #f7f7f7;
  pointer-events: none;
}
@media (min-width: 751px) {
  .conts::before {
    bottom: 500px;
  }
}
@media (min-width: 1367px) {
  .conts::before {
    bottom: 800px;
  }
}
@media (max-width: 750px) {
  .conts::before {
    bottom: 200px;
  }
}

/*
  下方向に余白を持つ
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .conts.-pb {
    padding-bottom: 210px;
  }
}
@media (max-width: 750px) {
  .conts.-pb {
    padding-bottom: 40px;
  }
}

/*
  第2階層
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.conts.-second-level {
  padding-top: 0;
}

/*
  第3階層
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.conts.-third-level {
  padding-top: 0;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  PCとSPの表示切り替え


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (max-width: 750px) {
  .c-pc {
    display: none !important;
  }
}

@media (min-width: 751px) {
  .c-sp {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .c-notPc {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .c-pcOnly {
    display: none !important;
  }
}

.c-ipad {
  display: none;
}
@media (max-width: 1024px) and (min-width: 751px) {
  .c-ipad {
    display: block !important;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  ボタン


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-btn {
  width: 210px;
  height: 56px;
}

button.c-btn__link {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  font-size: inherit;
  text-align: left;
  color: inherit;
  cursor: pointer;
  width: 100%;
}

button.c-btn__link,
.c-btn__link {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding-top: 2px;
  padding-left: 32px;
  border-radius: 56px;
}

.c-btn__link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border-radius: 56px;
  border: 1px solid #0171ff;
}

.c-btn__text {
  position: relative;
  z-index: 2;
  font-size: 16px;
  color: #0171ff;
  letter-spacing: 0.05em;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.c-btn__dot,
.c-btn__overlay {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.c-btn__dot {
  z-index: 2;
  right: 25px;
  background: #0171ff;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.c-btn__overlay {
  left: -19px;
  width: 400px;
  height: 400px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(0);
          transform: scale(0);
  background: #0171ff;
  pointer-events: none;
}

/*
  ボタン - 中央揃え
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-btn.-center {
  margin-right: auto;
  margin-left: auto;
}

.c-btn.-r {
  margin-left: auto;
}

.c-btn.-b {
  margin-top: auto;
}

/*
  ボタン - サイズ
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-btn.-s {
  width: 117px;
  height: 33px;
}
.c-btn.-s .c-btn__link {
  padding-left: 12px;
  border-radius: 33px;
}
.c-btn.-s .c-btn__text {
  font-size: 11px;
}
.c-btn.-s .c-btn__dot {
  right: 14px;
}
.c-btn.-s .c-btn__overlay {
  left: -11px;
  width: 220px;
  height: 220px;
}

.c-btn.-m {
  width: 184px;
  height: 46px;
}
.c-btn.-m .c-btn__text {
  font-size: 12px;
}

.c-btn.-l {
  width: 256px;
  height: 56px;
}
.c-btn.-l .c-btn__text {
  font-size: 14px;
}

.c-btn.-xl {
  width: 290px;
  height: 56px;
}
.c-btn.-xl .c-btn__text {
  font-size: 16px;
}

@media (min-width: 751px) {
  .c-btn.-liquid {
    width: 15.3733528551vw;
    height: 4.0995607613vw;
  }
}
@media (max-width: 750px) {
  .c-btn.-liquid {
    width: 56vw;
    height: 14.9333333333vw;
  }
}
@media (min-width: 751px) {
  .c-btn.-liquid .c-btn__link {
    padding-top: 0.1464128843vw;
    padding-left: 2.3426061493vw;
    border-radius: 4.0995607613vw;
  }
}
@media (max-width: 750px) {
  .c-btn.-liquid .c-btn__link {
    padding-top: 0.5333333333vw;
    padding-left: 8.5333333333vw;
    border-radius: 14.9333333333vw;
  }
}
@media (min-width: 751px) {
  .c-btn.-liquid .c-btn__text {
    font-size: 1.1713030747vw;
  }
}
@media (max-width: 750px) {
  .c-btn.-liquid .c-btn__text {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 751px) {
  .c-btn.-liquid .c-btn__dot {
    right: 1.8301610542vw;
  }
}
@media (max-width: 750px) {
  .c-btn.-liquid .c-btn__dot {
    right: 6.6666666667vw;
  }
}
@media (min-width: 751px) {
  .c-btn.-liquid .c-btn__overlay {
    left: -1.3909224012vw;
    width: 29.2825768668vw;
    height: 29.2825768668vw;
  }
}
@media (max-width: 750px) {
  .c-btn.-liquid .c-btn__overlay {
    left: -5.0666666667vw;
    width: 106.6666666667vw;
    height: 106.6666666667vw;
  }
}

.c-btn__outerlink {
  position: absolute;
  right: 22px;
  z-index: 3;
  display: block;
  width: 12px;
  height: 10px;
  background: url(https://wahcell.jp/wp-content/themes/wahcell-1/img/icon_outerlink_blue.svg) no-repeat center/contain;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

/*
  ボタン - 英語
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-btn.-en .c-btn__text {
  color: #0171ff;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
}

/*
  ボタン - ドットがない
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-btn.-nodots .c-btn__link {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
}
.c-btn.-nodots .c-btn__overlay {
  left: auto;
}

/*
  ボタン - ダウンロード
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-btn.-download .c-btn__link {
  padding-left: 6px;
}

.c-btn__download {
  position: relative;
  z-index: 2;
  width: 16px;
  height: 13px;
  margin-left: 28px;
  background: url(../images/common/icon_download.svg) no-repeat center/contain;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

/*
  ボタン - ホバー
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-btn__link:hover .c-btn__text {
  color: #fff;
}
.c-btn__link:hover .c-btn__dot {
  background: #fff;
}
.c-btn__link:hover .c-btn__overlay {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.c-btn__link:hover .c-btn__outerlink {
  background-image: url(../images/common/icon_outerlink_white.svg);
}
.c-btn__link:hover .c-btn__download {
  background-image: url(../images/common/icon_download_white.svg);
}

/*
  ボタン - 非活性
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-btn.-disable .c-btn__link {
  background: #dbe1ea;
  pointer-events: none;
}
.c-btn.-disable .c-btn__link::before {
  display: none;
}
.c-btn.-disable .c-btn__text {
  color: #3d424b;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  .c-circle


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-circle {
  position: relative;
  z-index: 4;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 751px) {
  .c-circle {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 750px) {
  .c-circle {
    width: 18px;
    height: 18px;
  }
}

.c-circle::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border-radius: 50%;
  border: 1px solid #0171ff;
}

.c-circle__overlay,
.c-circle__dot {
  position: absolute;
}

.c-circle__overlay {
  border-radius: 50%;
  background: #0171ff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(0.25);
          transform: scale(0.25);
}
@media (min-width: 751px) {
  .c-circle__overlay {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 750px) {
  .c-circle__overlay {
    width: 18px;
    height: 18px;
  }
}

.c-circle__dot {
  border-radius: 50%;
  background: #fff;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 751px) {
  .c-circle__dot {
    width: 6px;
    height: 6px;
  }
}
@media (max-width: 750px) {
  .c-circle__dot {
    width: 4px;
    height: 4px;
  }
}

.c-circle__arrow {
  position: absolute;
  border: 3px solid transparent;
  border-top: 8px solid #0171ff;
  margin-bottom: -6px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.c-circle.-arrow .c-circle__overlay {
  -webkit-transform: scale(0.01);
          transform: scale(0.01);
}

/*
  .c-circle - 外部リンク
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-circle.-outerlink .c-circle__overlay {
  -webkit-transform: scale(0);
          transform: scale(0);
}

.c-circle__outerlink {
  position: relative;
  z-index: 2;
  width: 12px;
  height: 10px;
  background: url(https://wahcell.jp/wp-content/themes/wahcell-1/img/icon_outerlink_blue.svg) no-repeat center/contain;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

/*
  .c-circle - サイズ
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-circle.-s {
  width: 18px;
  height: 18px;
}
.c-circle.-s .c-circle__overlay {
  width: 18px;
  height: 18px;
}
.c-circle.-s .c-circle__dot {
  width: 4px;
  height: 4px;
}

.c-circle.-l {
  width: 24px;
  height: 24px;
}
.c-circle.-l .c-circle__overlay {
  width: 24px;
  height: 24px;
}

/*
  .c-circle - 白色
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-circle.-wh::after {
  border-color: #ffffff;
}

.c-circle.-wh .c-circle__overlay {
  background-color: #fff;
}

.c-circle.-wh .c-circle__dot {
  background-color: #0171ff;
}

/*
  .c-circle - ホバー
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
button:hover .c-circle__overlay,
a:hover .c-circle__overlay {
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
}
button:hover .c-circle__dot,
a:hover .c-circle__dot {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
button:hover .c-circle__arrow,
a:hover .c-circle__arrow {
  border-top-color: #fff;
}
button:hover .c-circle__outerlink,
a:hover .c-circle__outerlink {
  background-image: url(../images/common/icon_outerlink_white.svg);
}

/*
  .c-circle - 右よせ
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-circle.-r {
  margin-left: auto;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  円背景


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/*
  円背景 - 事業紹介
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.bizTop-inflateWrap {
  position: relative;
  z-index: 9;
}
@media (min-width: 751px) {
  .bizTop-inflateWrap {
    top: -15vw;
  }
}
@media (max-width: 750px) {
  .bizTop-inflateWrap {
    top: -20vw;
  }
}

.bizTop-inflate {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
  height: 100%;
}

.bizTop-inflateBg {
  position: relative;
  width: 100vw;
  height: 100vw;
  border-radius: 50%;
  background: -webkit-linear-gradient(353.6deg, #f0f0f0 34.84%, #e7ebf1 81.3%);
  background: linear-gradient(96.4deg, #f0f0f0 34.84%, #e7ebf1 81.3%);
}

/*
  円背景 - 上
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.inflate {
  height: 1px;
}
@media (min-width: 751px) {
  .inflate {
    margin-bottom: 7.3206442167vw;
  }
}

.inflate__in {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
  overflow: hidden;
  pointer-events: none;
}
@media (min-width: 751px) {
  .inflate__in {
    height: 1500px;
  }
}
@media (max-width: 750px) {
  .inflate__in {
    height: 200vh;
  }
}

.inflate__bg {
  width: 100vw;
  border-radius: 50% 50% 0 0;
  background: #f7f7f7;
}
@media (min-width: 751px) {
  .inflate__bg {
    height: 1000px;
  }
}
@media (max-width: 750px) {
  .inflate__bg {
    height: 2000px;
  }
}

/*
  円背景 - 下
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.shrink {
  position: relative;
  z-index: 2;
  height: 200px;
  pointer-events: none;
}
@media (max-width: 750px) {
  .shrink {
    height: 170px;
    margin-top: 50px;
  }
}

.shrink::after {
  content: "";
  position: absolute;
  top: -500px;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.4);
}
@media (min-width: 1367px) {
  .shrink::after {
    top: -800px;
  }
}

.shrink__in {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 3;
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
}

.shrink__bg {
  width: 250vw;
  height: 250vw;
  border-radius: 0 0 50% 50%;
  background: #f7f7f7;
}

/*
  下層ページ - ファーストビュー 円背景
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .inflate-fv {
    margin-bottom: 344px;
  }
}
@media (max-width: 750px) {
  .inflate-fv {
    margin-bottom: 142px;
  }
}

@media (min-width: 751px) {
  .message .shrink__bg {
    background: #fff;
  }
}

.history .shrink__bg {
  background: #fff;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  メニュー リンク背景


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-menuLink {
  overflow: hidden;
}

.c-menuLink > * {
  position: relative;
  z-index: 3;
}

.c-menuLink__in {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.c-menuLink__in.-r {
  margin-left: auto;
}

.c-menuLink__overlay {
  position: absolute;
  z-index: 2;
  width: 1200px;
  height: 1200px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
@media (min-width: 1367px) {
  .c-menuLink__overlay {
    width: 2500px;
    height: 2500px;
  }
}

.c-menuLink__overlay.-s {
  width: 500px;
  height: 500px;
}
@media (min-width: 1367px) {
  .c-menuLink__overlay.-s {
    width: 1500px;
    height: 1500px;
  }
}

.c-menuLink__overlay.-l {
  width: 2000px;
  height: 2000px;
}
@media (min-width: 1367px) {
  .c-menuLink__overlay.-l {
    width: 3000px;
    height: 3000px;
  }
}

/*
  メニュー リンク背景 - ホバー
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-menuLink:hover .c-menuLink__overlay {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-duration: 0.55s;
          transition-duration: 0.55s;
}

/*
  事業紹介 ファーストビュー
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-service-fv {
  position: relative;
  z-index: 2;
}
@media (min-width: 751px) {
  .c-service-fv {
    padding-bottom: 124px;
  }
}
@media (max-width: 750px) {
  .c-service-fv {
    padding-bottom: 60px;
  }
}

.c-service-lead {
  max-width: 1192px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 751px) {
  .c-service-lead {
    width: calc(100% - 40px);
  }
}
@media (max-width: 750px) {
  .c-service-lead {
    width: calc(100% - 48px);
  }
}
@media (min-width: 751px) {
  .c-service-lead {
    width: calc(100vw - 240px);
    min-width: 744px;
  }
}

.c-service-lead__in {
  max-width: 744px;
  margin-left: auto;
}

.c-service-lead__main {
  margin-bottom: 20px;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .c-service-lead__main {
    font-size: 32px;
  }
}
@media (max-width: 750px) {
  .c-service-lead__main {
    font-size: 24px;
  }
}

.c-service-lead__sub {
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 1.8;
  text-align: justify;
}

/*
  事業紹介 ファーストビュー メニュー
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-service-fvMenu {
  border-bottom: 1px solid #dbe1ea;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 751px) {
  .c-service-fvMenu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: 44px;
  }
}
@media (max-width: 750px) {
  .c-service-fvMenu {
    margin-top: 60px;
  }
}

@media (min-width: 751px) {
  .c-service-fvMenu__item {
    width: 50%;
  }
}

.c-service-fvMenu__item:not(:last-child) {
  border-bottom: 1px solid #dbe1ea;
}

@media (min-width: 751px) {
  .c-service-fvMenu__item:nth-child(-n+2) {
    border-top: 1px solid #dbe1ea;
  }
}

@media (min-width: 751px) {
  .c-service-fvMenu__item:nth-child(odd) {
    border-right: 1px solid #dbe1ea;
  }
}

@media (max-width: 750px) {
  .c-service-fvMenu__item:first-child {
    border-top: 1px solid #dbe1ea;
  }
}

.c-service-fvMenu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media (min-width: 751px) {
  .c-service-fvMenu__link {
    height: 83px;
    padding: 0 26px 0 36px;
  }
}
@media (max-width: 750px) {
  .c-service-fvMenu__link {
    padding: 18px 14px 17px;
  }
}

.c-service-fvMenu__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 16px;
}

/* 表示アニメーション */
.c-service-fvMenu__link {
  opacity: 0;
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.6s;
  transition: opacity 0.5s, -webkit-transform 0.6s;
  transition: transform 0.6s, opacity 0.5s;
  transition: transform 0.6s, opacity 0.5s, -webkit-transform 0.6s;
}

.c-service-fvMenu.is-anime .c-service-fvMenu__link {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.c-service-fvMenu.is-anime .c-service-fvMenu__item:nth-child(1) .c-service-fvMenu__link {
  -webkit-transition-delay: 0.2s !important;
          transition-delay: 0.2s !important;
}

.c-service-fvMenu.is-anime .c-service-fvMenu__item:nth-child(2) .c-service-fvMenu__link {
  -webkit-transition-delay: 0.4s !important;
          transition-delay: 0.4s !important;
}

.c-service-fvMenu.is-anime .c-service-fvMenu__item:nth-child(3) .c-service-fvMenu__link {
  -webkit-transition-delay: 0.6s !important;
          transition-delay: 0.6s !important;
}

.c-service-fvMenu.is-anime .c-service-fvMenu__item:nth-child(4) .c-service-fvMenu__link {
  -webkit-transition-delay: 0.8s !important;
          transition-delay: 0.8s !important;
}

.c-service-fvMenu.is-anime .c-service-fvMenu__item:nth-child(5) .c-service-fvMenu__link {
  -webkit-transition-delay: 1s !important;
          transition-delay: 1s !important;
}

.c-service-fvMenu.is-anime .c-service-fvMenu__item:nth-child(6) .c-service-fvMenu__link {
  -webkit-transition-delay: 1.2s !important;
          transition-delay: 1.2s !important;
}

.c-service-fvMenu.is-anime .c-service-fvMenu__item:nth-child(7) .c-service-fvMenu__link {
  -webkit-transition-delay: 1.4s !important;
          transition-delay: 1.4s !important;
}

.c-service-fvMenu.is-anime .c-service-fvMenu__item:nth-child(8) .c-service-fvMenu__link {
  -webkit-transition-delay: 1.6s !important;
          transition-delay: 1.6s !important;
}

.c-service-fvMenu.is-anime .c-service-fvMenu__item:nth-child(9) .c-service-fvMenu__link {
  -webkit-transition-delay: 1.8s !important;
          transition-delay: 1.8s !important;
}

.c-service-fvMenu.is-anime .c-service-fvMenu__item:nth-child(10) .c-service-fvMenu__link {
  -webkit-transition-delay: 2s !important;
          transition-delay: 2s !important;
}

.c-service-fvMenu.is-anime .c-service-fvMenu__item:nth-child(11) .c-service-fvMenu__link {
  -webkit-transition-delay: 2.2s !important;
          transition-delay: 2.2s !important;
}

.c-service-fvMenu.is-anime .c-service-fvMenu__item:nth-child(12) .c-service-fvMenu__link {
  -webkit-transition-delay: 2.4s !important;
          transition-delay: 2.4s !important;
}

.c-service-fvMenu.is-anime .c-service-fvMenu__item:nth-child(13) .c-service-fvMenu__link {
  -webkit-transition-delay: 2.6s !important;
          transition-delay: 2.6s !important;
}

.c-service-fvMenu.is-anime .c-service-fvMenu__item:nth-child(14) .c-service-fvMenu__link {
  -webkit-transition-delay: 2.8s !important;
          transition-delay: 2.8s !important;
}

.c-service-fvMenu.is-anime .c-service-fvMenu__item:nth-child(15) .c-service-fvMenu__link {
  -webkit-transition-delay: 3s !important;
          transition-delay: 3s !important;
}

/*
  事業紹介 - 強み
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-strength__list {
  margin: auto;
}
@media (min-width: 751px) {
  .c-strength__list {
    width: calc(100% - 60px);
    padding-bottom: 140px;
  }
}
@media (max-width: 750px) {
  .c-strength__list {
    width: calc(100% - 48px);
    padding-bottom: 100px;
  }
}

@media (min-width: 751px) {
  .c-strength__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 1025px) {
  .c-strength__item:not(:first-child) {
    margin-top: -70px;
  }
}

@media (max-width: 750px) {
  .c-strength__item:not(:last-child) {
    margin-bottom: 80px;
  }
}

@media (min-width: 1025px) {
  .c-strength__item:nth-child(odd) {
    padding-right: 4.6%;
  }
}

@media (min-width: 751px) {
  .c-strength__item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media (min-width: 1025px) {
  .c-strength__item:nth-child(even) {
    padding-left: 4.6%;
  }
}

.c-strengthIllust {
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 751px) {
  .c-strengthIllust {
    width: 50vw;
    height: 50vw;
  }
}
@media (min-width: 1367px) {
  .c-strengthIllust {
    width: 42.5vw;
    height: 42.5vw;
  }
}
@media (max-width: 750px) {
  .c-strengthIllust {
    width: 99vw;
    height: 99vw;
  }
}

@media (min-width: 751px) {
  .c-strength__item:nth-child(odd) .c-strengthIllust {
    margin-right: 0.5856515373vw;
  }
}
@media (min-width: 1367px) {
  .c-strength__item:nth-child(odd) .c-strengthIllust {
    margin-right: 2.5vw;
  }
}

@media (min-width: 751px) {
  .c-strength__item:nth-child(even) .c-strengthIllust {
    margin-left: 2.4890190337vw;
  }
}
@media (min-width: 1367px) {
  .c-strength__item:nth-child(even) .c-strengthIllust {
    margin-left: 5vw;
  }
}

.c-strengthIllust__bg {
  position: relative;
  border-radius: 50%;
  background: -webkit-radial-gradient(50% 50%, 50% 50%, rgba(117, 159, 182, 0) 42.19%, rgba(117, 159, 182, 0.02) 77.08%, rgba(117, 159, 182, 0.2) 100%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(117, 159, 182, 0) 42.19%, rgba(117, 159, 182, 0.02) 77.08%, rgba(117, 159, 182, 0.2) 100%);
}
@media (min-width: 751px) {
  .c-strengthIllust__bg {
    width: 40vw;
    height: 40vw;
  }
}
@media (min-width: 1367px) {
  .c-strengthIllust__bg {
    width: 34vw;
    height: 34vw;
  }
}
@media (max-width: 750px) {
  .c-strengthIllust__bg {
    width: 82.6666666667vw;
    height: 82.6666666667vw;
  }
}

.c-strengthIllust__line {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: url(../images/common/circle_line_01.png) no-repeat right center/cover;
}

.c-strength__item:nth-child(even) .c-strengthIllust__line {
  background-image: url(../images/common/circle_line_02.png);
}

.c-strengthIllust__illust {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.c-strength__conts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 750px) {
  .c-strength__conts {
    margin-left: -4px;
  }
}

.c-strength__no {
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #0087c6;
}
@media (min-width: 751px) {
  .c-strength__no {
    padding-top: 4px;
    margin-right: 16px;
    font-size: 20px;
  }
}
@media (max-width: 750px) {
  .c-strength__no {
    margin-right: 14px;
    font-size: 20px;
  }
}

.c-strength__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}
@media (min-width: 751px) {
  .c-strength__ttl {
    min-height: 90px;
    font-size: 32px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .c-strength__ttl {
    font-size: 28px;
  }
}
@media (max-width: 750px) {
  .c-strength__ttl {
    font-size: 24px;
  }
}

.c-strength__ttl.-s {
  letter-spacing: -0.05em;
}

.c-strength__ttl.-cross {
  position: relative;
}

.c-strength__ttlCross {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: absolute;
}
.c-strength__ttlCross::before, .c-strength__ttlCross::after {
  content: "";
  position: absolute;
  right: 15px;
  width: 1px;
  height: 20px;
  background: #3d424b;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-strength__ttlCross::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-strength__ttlCross::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (min-width: 1025px) {
  .c-strength__ttlCross {
    top: 45px;
    left: 66px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .c-strength__ttlCross {
    top: 40px;
    left: 60px;
  }
}
@media (max-width: 750px) {
  .c-strength__ttlCross {
    top: 32px;
    left: 48px;
  }
}
.c-strength__ttlCross::before, .c-strength__ttlCross::after {
  background: #a2a8b4;
}
@media (min-width: 751px) {
  .c-strength__ttlCross::before, .c-strength__ttlCross::after {
    height: 35px;
  }
}
@media (max-width: 750px) {
  .c-strength__ttlCross::before, .c-strength__ttlCross::after {
    height: 30px;
  }
}

@media (min-width: 751px) {
  .c-strength__txts {
    width: 336px;
  }
}

.c-strength__txt {
  padding-top: 18px;
  border-top: 1px solid #dbe1ea;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: justify;
}

/*
  要素出現アニメーション
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-strengthIllust__bg {
  opacity: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}

.c-strengthIllust__illust {
  opacity: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}

.c-strengthIllust__line {
  opacity: 0;
  -webkit-transform: scale(0.8) rotateZ(90deg);
          transform: scale(0.8) rotateZ(90deg);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}

.c-strength__conts {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}

.c-strengthIllust.is-anime .c-strengthIllust__bg {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.c-strengthIllust.is-anime .c-strengthIllust__line {
  opacity: 1;
  -webkit-transform: scale(1) rotateZ(0deg);
          transform: scale(1) rotateZ(0deg);
}
.c-strengthIllust.is-anime .c-strengthIllust__illust {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.c-strengthIllust.is-anime .c-strengthIllust__illust.-no1 {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.c-strengthIllust.is-anime .c-strengthIllust__illust.-no2 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.c-strengthIllust.is-anime .c-strengthIllust__illust.-no3 {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

.c-strength__conts.is-anime {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

/*
  イラスト背景回転アニメーション
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-strengthIllust__line {
  -webkit-animation: line_rotate 3s 9s infinite;
          animation: line_rotate 3s 9s infinite;
}

@-webkit-keyframes line_rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

@keyframes line_rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
/*
  セクション - タイトル
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-secTtl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: auto;
  margin-left: auto;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .c-secTtl {
    width: 71.4494875549vw;
    font-size: 24px;
  }
}
@media (max-width: 750px) {
  .c-secTtl {
    width: calc(100% - 48px);
    font-size: 20px;
  }
}

@media (min-width: 751px) {
  .c-secTtl.-l {
    width: 82.4304538799vw;
  }
}

.c-secTtl::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0171ff;
  margin-right: 10px;
}

.c-secTtl.-r {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/*
  セクション - タイトル h3
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .c-boxTtl {
    margin-bottom: 28px;
  }
}
@media (max-width: 750px) {
  .c-boxTtl {
    margin-bottom: 20px;
  }
}

.c-boxTtl__txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .c-boxTtl__txt {
    font-size: 24px;
  }
}
@media (max-width: 750px) {
  .c-boxTtl__txt {
    font-size: 20px;
  }
}

.c-boxTtl__txt::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0171ff;
  margin-right: 15px;
}

/*
  セクション - 円形
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-secRound {
  position: relative;
  opacity: 0;
  -webkit-transform: translate3d(0, 150px, 0) rotate(4deg);
          transform: translate3d(0, 150px, 0) rotate(4deg);
  -webkit-transition: opacity 1.6s, -webkit-transform 1.6s;
  transition: opacity 1.6s, -webkit-transform 1.6s;
  transition: opacity 1.6s, transform 1.6s;
  transition: opacity 1.6s, transform 1.6s, -webkit-transform 1.6s;
}
@media (min-width: 751px) {
  .c-secRound {
    margin-bottom: -13.17715959vw;
  }
}
@media (max-width: 750px) {
  .c-secRound {
    margin-bottom: -14px;
  }
}

.c-secRound.is-anime {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
          transform: translate3d(0, 0, 0) rotate(0deg);
}

/* 逆 */
.c-secRound.-reverse {
  -webkit-transform: translate3d(0, 150px, 0) rotate(-4deg) scale(-1, 1);
          transform: translate3d(0, 150px, 0) rotate(-4deg) scale(-1, 1);
}

.c-secRound.-reverse.is-anime {
  -webkit-transform: translate3d(0, 0, 0) rotate(0deg) scale(-1, 1);
          transform: translate3d(0, 0, 0) rotate(0deg) scale(-1, 1);
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  チェックボックス


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-checkbox-label {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  height: 20px;
}

.c-checkbox {
  display: none;
}

.c-checkbox__mark + span {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 15px;
  padding-left: 10px;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .c-checkbox__mark + span {
    font-size: 12px;
  }
}
.c-checkbox__mark {
  position: relative;
  width: 15px;
  height: 15px;
  border: 2px solid #dbe1ea;
}

.c-checkbox__mark::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 2px;
  width: 7px;
  height: 4px;
  border-left: 1px solid #0171ff;
  border-bottom: 1px solid #0171ff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.c-checkbox:checked + .c-checkbox__mark::after {
  opacity: 1;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  ニュース


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .newsWrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

/* サイドバー */
@media (max-width: 750px) {
  .newsSub {
    max-width: 1192px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 750px) and (min-width: 751px) {
  .newsSub {
    width: calc(100% - 40px);
  }
}
@media (max-width: 750px) and (max-width: 750px) {
  .newsSub {
    width: calc(100% - 48px);
  }
}

@media (max-width: 750px) {
  .newsSwitch {
    overflow-x: scroll;
    margin-bottom: 20px;
  }
}

@media (max-width: 750px) {
  .newsSwitch__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0;
  }
}

@media (min-width: 751px) {
  .newsSwitch__item {
    border-top: 1px solid #dbe1ea;
  }
}

@media (min-width: 751px) {
  .newsSwitch__item:last-child {
    border-bottom: 1px solid #dbe1ea;
  }
}

.newsSwitch__btn {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  font-size: inherit;
  text-align: left;
  color: inherit;
  cursor: pointer;
  display: block;
  color: #a2a8b4;
  width: 100%;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (min-width: 751px) {
  .newsSwitch__btn {
    padding: 12px 8px;
  }
}
@media (max-width: 750px) {
  .newsSwitch__btn {
    padding: 0 12px;
    white-space: nowrap;
  }
}

.newsSwitch__btn.is-show {
  color: #0171ff !important;
}

@media (max-width: 750px) {
  .newsSwitch__item:first-child .newsSwitch__btn {
    padding-left: 0;
  }
}

@media (max-width: 750px) {
  .newsSwitch__item:last-child .newsSwitch__btn {
    padding-right: 0;
  }
}

.newsSwitch__btn:hover {
  color: #3d424b;
}

/* 一覧 */
@media (min-width: 751px) {
  .newsMain {
    width: 100%;
  }
}
@media (max-width: 750px) {
  .newsMain {
    max-width: 1192px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 750px) and (min-width: 751px) {
  .newsMain {
    width: calc(100% - 40px);
  }
}
@media (max-width: 750px) and (max-width: 750px) {
  .newsMain {
    width: calc(100% - 48px);
  }
}

.newsList__item {
  border-top: 1px solid #dbe1ea;
}

.newsList__item:last-child {
  border-bottom: 1px solid #dbe1ea;
}

.newsList__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 751px) {
  .newsList__link {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1.4641288433vw 38px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .newsList__link {
    padding: 20px 38px;
  }
}
@media (max-width: 750px) {
  .newsList__link {
    padding: 18px 14px;
  }
}

.newsList__thumb {
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}
@media (min-width: 751px) {
  .newsList__thumb {
    width: 17.6%;
    margin-right: 22px;
  }
}
@media (max-width: 750px) {
  .newsList__thumb {
    width: 24.3%;
    margin-right: 15px;
  }
}

.newsList__thumb::before {
  content: "";
  display: block;
  padding-top: 66.66%; /* 縦横比を3:2に固定 */
}

.newsList__thumb img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@media (min-width: 751px) {
  .newsListConts {
    width: 80%;
    margin-right: 60px;
    margin-bottom: auto;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .newsListConts {
    margin-right: 32px;
  }
}

.newsListConts__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 751px) {
  .newsListConts__head {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 18px;
  }
}

.newsListConts__cat {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 26px;
  min-width: 116px;
  padding: 0 20px;
  border-radius: 13px;
  border: 1px solid #0171ff;
  letter-spacing: 0.1em;
  color: #0171ff;
  font-size: 12px;
}
@media (max-width: 750px) {
  .newsListConts__cat {
    margin-bottom: 6px;
  }
}

.newsListConts__day {
  font-size: 12px;
  color: #a2a8b4;
}

.newsListConts__ttl {
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media (min-width: 751px) {
  .newsListConts__ttl {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .newsListConts__ttl {
    -webkit-line-clamp: 3;
  }
}
@media (max-width: 750px) {
  .newsListConts__ttl {
    margin-bottom: 8px;
  }
}

.newsList__link:hover .newsListConts__ttl {
  text-decoration: underline;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  お問合せセクション


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.sec-contact {
  position: relative;
  z-index: 10;
  line-height: 1;
  background: rgba(255, 255, 255, 0.4);
}
@media (min-width: 751px) {
  .sec-contact {
	padding-top: 36px;
    padding-bottom: 36px;
  }
}
@media (max-width: 750px) {
  .sec-contact {
	padding-top: 132px;
    padding-bottom: 132px;
  }
}

/*
  お問合せセクション - 上部
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.sec-contactMain {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #b9c1cd;
}
@media (min-width: 751px) {
  .sec-contactMain {
    padding-bottom: 40px;
    margin: 0 36px;
  }
}
@media (max-width: 750px) {
  .sec-contactMain {
    padding-bottom: 28px;
    margin: 0 10px;
  }
}

.sec-contactLink {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.sec-contact__ttl {
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.03em;
}
@media (min-width: 751px) {
  .sec-contact__ttl {
    margin-right: 66px;
    font-size: 100px;
  }
}
@media (max-width: 750px) {
  .sec-contact__ttl {
    margin-right: 24px;
    font-size: 50px;
  }
}

/*
  お問合せセクション - 下部
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .sec-contactSub {
    padding-top: 44px;
  }
}
@media (max-width: 750px) {
  .sec-contactSub {
    padding-top: 36px;
  }
}

.sec-contactSub__in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 750px) {
  .sec-contactSub__in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 750px) {
  .sec-contactTel {
    margin-bottom: 16px;
  }
}

.sec-contactTel__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.sec-contactTel__icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 31px;
  padding-top: 1px;
  border-radius: 15px;
  border: 1px solid #0171ff;
  margin-right: 12px;
  color: #0171ff;
  letter-spacing: 0.03em;
}

.sec-contactTel__num {
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.1em;
}
@media (min-width: 751px) {
  .sec-contactTel__num {
    font-size: 32px;
  }
}
@media (max-width: 750px) {
  .sec-contactTel__num {
    font-size: 28px;
  }
}

.sec-contactSub__separate {
  width: 1px;
  height: 26px;
  margin: 0 40px;
  background: #b9c1cd;
}

.sec-contactHour {
  font-size: 16px;
  letter-spacing: 0.03em;
}
@media (max-width: 750px) {
  .sec-contactHour {
    margin-right: -8px;
  }
}

/*
  お問合せセクション - 円
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.sec-contactCircle {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  overflow: hidden;
}
@media (min-width: 751px) {
  .sec-contactCircle {
    width: 104px;
    height: 104px;
  }
}
@media (max-width: 750px) {
  .sec-contactCircle {
    width: 56px;
    height: 56px;
  }
}

.sec-contactCircle::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border-radius: 50%;
  border: 1px solid #0171ff;
}

.sec-contactCircle__overlay,
.sec-contactCircle__dot {
  position: absolute;
}

.sec-contactCircle__overlay {
  border-radius: 50%;
  background: #0171ff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(0.076);
          transform: scale(0.076);
}
@media (min-width: 751px) {
  .sec-contactCircle__overlay {
    width: 104px;
    height: 104px;
  }
}
@media (max-width: 750px) {
  .sec-contactCircle__overlay {
    width: 56px;
    height: 56px;
  }
}

.sec-contactCircle__dot {
  border-radius: 50%;
  background: #fff;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 751px) {
  .sec-contactCircle__dot {
    width: 8px;
    height: 8px;
  }
}
@media (max-width: 750px) {
  .sec-contactCircle__dot {
    width: 4px;
    height: 4px;
  }
}

a:hover .sec-contactCircle__overlay {
  -webkit-transform: scale(1);
          transform: scale(1);
}
a:hover .sec-contactCircle__dot {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  パンくずリスト


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.breadcrumbs {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10;
  color: #a9b1bd;
}
@media (min-width: 751px) {
  .breadcrumbs {
    top: 72px;
    padding: 0 2.9% 0 4.1%;
    font-size: 12px;
  }
}
@media (max-width: 750px) {
  .breadcrumbs {
    top: 60px;
    padding: 0 20px;
    font-size: 10px;
  }
}

.breadcrumbs__item {
  display: inline;
}

.breadcrumbs__item:not(:last-child)::after {
  content: "ー";
  margin: 0 0.8em;
}

.breadcrumbs__item:last-child {
  color: #3d424b;
}

.breadcrumbs__link {
  padding: 2px;
  color: #a9b1bd;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.breadcrumbs__link:hover {
  color: #3d424b;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  fv


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-fv {
  position: relative;
  background: #f7f7f7;
}
@media (max-width: 750px) {
  .c-fv {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (min-width: 751px) {
  .conts.-third-level .c-fv {
    padding-top: 72px;
  }
}
@media (max-width: 750px) {
  .conts.-third-level .c-fv {
    padding-top: 104px;
    margin-bottom: 90px;
  }
}

.c-fv__bg {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

@media (max-width: 750px) {
  .c-fv__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media (min-width: 751px) {
  .c-fvHeading {
    position: absolute;
    z-index: 3;
    top: 7vw;
    left: 11.8%;
  }
}
@media (max-width: 750px) {
  .c-fvHeading {
    margin: 0 18px;
  }
}

@media (min-width: 751px) {
  .c-fvHeading.-towLine {
    top: 13.616398243vw;
  }
}

.c-fvHeading__ttl {
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #dbe1ea;
  line-height: 1;
}
@media (min-width: 751px) {
  .c-fvHeading__ttl {
    font-size: 5.86vw;
  }
}
@media (max-width: 750px) {
  .c-fvHeading__ttl {
    font-size: 15.3vw;
    line-height: 110%;
  }
  .c-fvHeading__ttl.-sp-row {
    font-size: 9.6vw;
  }
}

@media (min-width: 751px) {
  .c-fvHeading__ttl + .c-fvHeading__ttl {
    margin-top: -0.5856515373vw;
  }
}

@media (max-width: 750px) {
  .c-fvHeading__ttl.-sp-s {
    font-size: 13.3333333333vw;
  }
}

@media (max-width: 750px) {
  .c-fvHeading__ttl.-sp-xs {
    font-size: 12.2666666667vw;
    margin-bottom: 3.2vw;
  }
}

.c-fvHeading__ttlRow {
  overflow: hidden;
}
.c-fvHeading__ttlRow span {
  display: inline-block;
  -webkit-transform: translate3d(0, 110%, 0);
          transform: translate3d(0, 110%, 0);
  line-height: 1.1;
}
.c-fvHeading__ttlRow span.is-none {
  opacity: 0;
}
@media (min-width: 751px) {
  .c-fvHeading__ttlRow {
    display: inline-block;
  }
}
@media (max-width: 750px) {
  .c-fvHeading__ttlRow {
    display: block;
  }
}

@media (max-width: 750px) {
  .c-fvHeading__ttlRow.-inline {
    display: inline-block;
  }
}

.c-fvHeading__txt {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  opacity: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 11px;
}
@media (min-width: 751px) {
  .c-fvHeading__txt {
    font-size: 2.05vw;
  }
}
@media (max-width: 750px) {
  .c-fvHeading__txt {
    margin-top: 10px;
    font-size: 5.15vw;
  }
}
.c-fvHeading__txt::before {
  content: "";
  display: block;
  background: #3d424b;
  height: 2px;
}
@media (min-width: 751px) {
  .c-fvHeading__txt::before {
    width: 29px;
    margin-right: 11px;
  }
}
@media (max-width: 750px) {
  .c-fvHeading__txt::before {
    width: 21px;
    margin-right: 8px;
  }
}

.c-fvHeading__lead {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  opacity: 0;
  margin-top: 41px;
  padding-left: 11px;
  font-size: 1.32vw;
  line-height: 180%;
}
@media (max-width: 750px) {
  .c-fvHeading__lead {
    display: none;
  }
}

.c-fvCircle {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
}
@media (min-width: 751px) {
  .c-fvCircle {
    width: 49.0483162518vw;
    height: 49.0483162518vw;
    margin-right: 5.1244509517vw;
  }
}
@media (max-width: 750px) {
  .c-fvCircle {
    width: 74vw;
    height: 74vw;
    margin-right: 6px;
  }
}

.c-fvCircle__line {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.c-fvCircle__line img,
.c-fvCircle__line svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.c-fvCircle__img {
  position: absolute;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
  z-index: 1;
}
@media (min-width: 751px) {
  .c-fvCircle__img {
    width: 40.9956076135vw;
  }
}
@media (max-width: 750px) {
  .c-fvCircle__img {
    width: 61.3333333333vw;
  }
}

/* company */
@media (max-width: 750px) {
  .c-fv.-company {
    height: 156.2vw;
  }
}

@media (min-width: 751px) {
  .c-fvHeading.-company {
    top: 25%;
  }
}
@media (max-width: 750px) {
  .c-fvHeading.-company {
    position: absolute;
    top: 19%;
    left: 0.3%;
  }
}

@media (min-width: 751px) {
  .c-fvHeading.-company .c-fvHeading__txt {
    margin-top: -10px;
  }
}

@media (min-width: 751px) {
  .c-fvCircle.-company {
    width: 70.3vw;
    height: 69.6vw;
    margin-left: auto;
    margin-right: 0;
  }
}
@media (max-width: 750px) {
  .c-fvCircle.-company {
    bottom: -35.2%;
    right: -8%;
    margin: 0;
    width: 95.7vw;
    height: 95.7vw;
  }
}
.c-fvCircle.-company .c-fvCircle__img {
  width: 62.3%;
  top: 2.5%;
  right: 12.5%;
}
@media (max-width: 750px) {
  .c-fvCircle.-company .c-fvCircle__img {
    left: initial;
  }
}

.c-fvCircle__arrow {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  opacity: 0;
}

/*
  第2階層
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .conts.-second-level .c-fv {
    margin-bottom: -21.9619326501vw;
  }
}
@media (max-width: 750px) {
  .conts.-second-level .c-fv {
    padding-top: 104px;
  }
}
@media (min-width: 751px) {
  .conts.-second-level .c-fvCircle {
    top: -12.298682284vw;
    width: 81.2591508053vw;
    height: 51.2591508053vw;
    margin-right: -10.102489019vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .conts.-second-level .c-fvCircle {
    top: -8.7890625vw;
  }
}
@media (max-width: 750px) {
  .conts.-second-level .c-fvCircle {
    width: 110.9333333333vw;
    height: 50.9333333333vw;
    margin-top: -18.6666666667vw;
    margin-right: -18.1333333333vw;
  }
}
.conts.-second-level .c-fvCircle__arrow {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  opacity: 0;
}
@media (min-width: 751px) {
  .conts.-second-level .c-fvCircle__img {
    width: 43.7774524158vw;
  }
}
@media (max-width: 750px) {
  .conts.-second-level .c-fvCircle__img {
    width: 59.7333333333vw;
  }
}

/*
  ファーストビュー - 画像なし 小
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-fvHeading-xs {
  border-bottom: 1px solid #dbe1ea;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 751px) {
  .c-fvHeading-xs {
    width: 82.4304538799vw;
    padding: 80px 0;
  }
}
@media (max-width: 750px) {
  .c-fvHeading-xs {
    width: calc(100% - 48px);
    padding: 50px 0;
  }
}

.c-fvHeading-xs.-pd {
  border-bottom: 1px solid #a2a8b4;
}
@media (min-width: 751px) {
  .c-fvHeading-xs.-pd {
    padding: 170px 40px 110px;
  }
}
@media (max-width: 750px) {
  .c-fvHeading-xs.-pd {
    padding: 110px 0 70px;
  }
}

@media (min-width: 751px) {
  .c-fvHeading-xs.-contact {
    position: relative;
    padding: 128px 0 100px;
  }
}
@media (max-width: 750px) {
  .c-fvHeading-xs.-contact {
    padding: 96px 0 62px;
    padding: 56px 0 52px;
  }
}

.c-fvHeading-xs__ttl {
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #dbe1ea;
  line-height: 1;
}
@media (min-width: 751px) {
  .c-fvHeading-xs__ttl {
    font-size: 80px;
  }
}
@media (max-width: 750px) {
  .c-fvHeading-xs__ttl {
    font-size: 60px;
  }
}

@media (max-width: 750px) {
  .c-fvHeading-xs__ttl.-s-sp {
    font-size: 46px;
  }
}

.c-fvHeading-xs__ttlRow {
  display: inline-block;
  overflow: hidden;
}

.c-fvHeading-xs__ttlRow span {
  display: inline-block;
  -webkit-transform: translate3d(0, 110%, 0);
          transform: translate3d(0, 110%, 0);
  line-height: 1.1;
}

.c-fvHeading-xs__txt {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  opacity: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 11px;
}
@media (min-width: 751px) {
  .c-fvHeading-xs__txt {
    font-size: 28px;
  }
}
@media (max-width: 750px) {
  .c-fvHeading-xs__txt {
    margin-top: 4px;
    font-size: 20px;
  }
}
@media (min-width: 751px) {
  .c-fvHeading-xs__txt.--row::before {
    margin-top: -42px;
  }
}
@media (max-width: 750px) {
  .c-fvHeading-xs__txt.--row::before {
    margin-top: -30px;
  }
}
.c-fvHeading-xs__txt::before {
  content: "";
  display: block;
  background: #3d424b;
  height: 2px;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}
@media (min-width: 751px) {
  .c-fvHeading-xs__txt::before {
    width: 29px;
    margin-right: 11px;
  }
}
@media (max-width: 750px) {
  .c-fvHeading-xs__txt::before {
    width: 21px;
    margin-right: 8px;
  }
}

.c-fvHeading-xs__lead {
  line-height: 1.8;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  opacity: 0;
}
@media (min-width: 751px) {
  .c-fvHeading-xs__lead {
    position: absolute;
    right: 0;
    bottom: 100px;
    font-size: 16px;
  }
  .c-fvHeading-xs__lead.--no-abs {
    margin-top: 24px;
    position: static;
  }
}
@media (max-width: 1240px) {
  .c-fvHeading-xs__lead {
    position: static;
    margin-top: 48px;
  }
}
@media (max-width: 750px) {
  .c-fvHeading-xs__lead {
    font-size: 14px;
  }
}

.c-fvHeading-xs__lead.-w-fix {
  max-width: 470px;
}

.c-fvHeading-xs__leadTxt {
  font-weight: bold;
}
@media (min-width: 751px) {
  .c-fvHeading-xs__leadTxt {
    line-height: 2;
  }
}

.c-fvHeading-xs__note {
  margin-top: 8px;
  color: #ec3c16;
  font-size: 12px;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  c-slider


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .c-slider__toList {
    position: absolute;
    bottom: 5.1244509517vw;
    left: calc(50% - 105px);
  }
}

.c-slider {
  position: relative;
}
@media (min-width: 751px) {
  .c-slider {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 96px;
  }
}
@media (max-width: 750px) {
  .c-slider {
    margin-bottom: 61px;
  }
}

@media (min-width: 751px) {
  .c-slider__inner {
    position: absolute;
    width: 88.3vw;
    margin-bottom: 5.1244509517vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .c-slider__inner {
    margin-bottom: 74px;
  }
}
@media (max-width: 750px) {
  .c-slider__inner {
    position: relative;
    width: calc(100% - 24px);
    padding-bottom: 88px;
    margin-bottom: 64px;
  }
}

.c-slider__bg {
  position: relative;
  width: 100%;
  margin-left: auto;
  text-align: right;
}
@media (min-width: 1025px) {
  .c-slider__bg {
    top: -1.4641288433vw;
    min-height: 714px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .c-slider__bg {
    min-height: 620px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .c-slider__bg {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-slider__bg img {
  width: 100%;
  max-width: none;
}

.c-slider__list {
  -webkit-box-align: stretch !important;
  -webkit-align-items: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}
.c-slider__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}
@media (min-width: 751px) {
  .c-slider__item {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 750px) {
  .c-slider__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-slider__img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 751px) {
  .c-slider__img {
    width: 53.4%;
  }
}

.c-slider__link {
  width: 100%;
  border-radius: 0 10px 10px 0;
  position: relative;
  z-index: 3;
  display: block;
  overflow: hidden;
}
.c-slider__link::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(268.02deg, #2f4aaa -39.04%, #29649b 90.43%);
  background: linear-gradient(181.98deg, #2f4aaa -39.04%, #29649b 90.43%);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.c-slider__link:hover::before {
  opacity: 0.6;
}

.c-slider__img img {
  width: 100%;
  max-width: none;
}

@media (min-width: 751px) {
  .c-slider__left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 39.5%;
    padding: 60px 0 50px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .c-slider__left {
    padding-top: 56px;
  }
}
@media (max-width: 750px) {
  .c-slider__left {
    height: 100%;
    padding: 29px 24px 0;
  }
}

.c-sliderHeading {
  border-bottom: 1px solid #d3d7dc;
}
@media (min-width: 751px) {
  .c-sliderHeading {
    padding-bottom: 17px;
    margin-bottom: 22px;
  }
}
@media (max-width: 750px) {
  .c-sliderHeading {
    padding-bottom: 20px;
    margin-bottom: 19px;
  }
}

.c-sliderHeading__txt {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
}
@media (min-width: 751px) {
  .c-sliderHeading__txt {
    font-size: 18px;
    margin-bottom: 15px;
  }
}
@media (max-width: 750px) {
  .c-sliderHeading__txt {
    font-size: 16px;
    margin-bottom: 13px;
  }
}

.c-sliderHeading__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .c-sliderHeading__ttl {
    font-size: 32px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .c-sliderHeading__ttl {
    font-size: 28px;
  }
}
@media (max-width: 750px) {
  .c-sliderHeading__ttl {
    font-size: 24px;
  }
}

.c-sliderCat__link {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #0171ff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 2.1;
}
@media (min-width: 751px) {
  .c-sliderCat__link:not(:last-child) {
    margin-right: 16px;
  }
}
@media (max-width: 750px) {
  .c-sliderCat__link:not(:last-child) {
    margin-right: 12px;
  }
}
.c-sliderCat__link:hover {
  color: #a2a8b4;
}

/* ボタンの位置調整 */
.c-slider__btnWrap {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 751px) {
  .c-slider__btnWrap {
    top: 5px;
    right: 0;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .c-slider__btnWrap {
    top: 0;
  }
}
@media (max-width: 750px) {
  .c-slider__btnWrap {
    bottom: 0;
    right: 0;
  }
}

.c-slider__btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  left: initial;
  right: initial;
  margin: 0;
}
@media (min-width: 751px) {
  .c-slider__btn {
    -webkit-transform: scale(0.822);
            transform: scale(0.822);
  }
}
.c-slider__btn svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
@media (min-width: 751px) {
  .c-slider__btn:first-child {
    margin-right: 12px;
  }
}
@media (max-width: 750px) {
  .c-slider__btn:first-child {
    margin-right: 8px;
  }
}
.c-slider__btn::after {
  display: none;
}
.c-slider__btn:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.c-slider__btn:hover .c-slider__svg {
  stroke: #fff;
}
.c-slider__btn:hover .c-slider__overlay {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.c-slider__btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border: 1px solid #0171ff;
  border-radius: 50%;
}

.c-slider__svg {
  position: relative;
  z-index: 2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-slider__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0171ff;
  border-radius: 50%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-slider__num {
  bottom: 80px;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-style: normal;
  width: 18px;
  color: #0171ff;
  position: absolute;
  font-size: 12px;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .c-slider__num {
    right: -60px;
  }
}
@media (max-width: 750px) {
  .c-slider__num {
    right: -12px;
  }
}

.c-sliderPagination {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (min-width: 751px) {
  .c-sliderPagination {
    top: 0;
    right: -60px;
    bottom: 0;
  }
}
@media (max-width: 750px) {
  .c-sliderPagination {
    top: 50.6666666667vw;
    right: -12px;
    bottom: 88px;
  }
}

.c-sliderPagination__inner {
  position: relative;
  width: 18px;
  color: #0171ff;
}
.c-sliderPagination__inner .swiper-pagination {
  width: 54px;
  height: 1px;
  left: 50%;
  -webkit-transform: translate(-53%, -32px) rotate(90deg);
          transform: translate(-53%, -32px) rotate(90deg);
}

.c-slider__pagination__total {
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .c-slider__pagination__total {
    bottom: -11px;
  }
}
@media (max-width: 750px) {
  .c-slider__pagination__total {
    bottom: -9px;
  }
}

/*
  c-slider - ホバー
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-slider__link.is-hover::before {
  opacity: 0.6;
}

.c-sliderHeading.is-hover .c-sliderHeading__ttl span {
  -webkit-animation: underline_animation 0.6s forwards;
          animation: underline_animation 0.6s forwards;
}

@-webkit-keyframes underline_animation {
  0% {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#333), to(#333));
    background-image: -webkit-linear-gradient(#333, #333);
    background-image: linear-gradient(#333, #333);
    background-repeat: no-repeat;
    background-size: 0% 1px;
    background-position: left 0 bottom 0;
  }
  100% {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#333), to(#333));
    background-image: -webkit-linear-gradient(#333, #333);
    background-image: linear-gradient(#333, #333);
    background-repeat: no-repeat;
    background-size: 100% 1px;
    background-position: left 0 bottom 0;
  }
}

@keyframes underline_animation {
  0% {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#333), to(#333));
    background-image: -webkit-linear-gradient(#333, #333);
    background-image: linear-gradient(#333, #333);
    background-repeat: no-repeat;
    background-size: 0% 1px;
    background-position: left 0 bottom 0;
  }
  100% {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#333), to(#333));
    background-image: -webkit-linear-gradient(#333, #333);
    background-image: linear-gradient(#333, #333);
    background-repeat: no-repeat;
    background-size: 100% 1px;
    background-position: left 0 bottom 0;
  }
}
/*
  下層ページ - 下部メニュー
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .c-bizMenu {
    padding-top: 180px;
    padding-bottom: 100px;
  }
}
@media (max-width: 750px) {
  .c-bizMenu {
    padding-bottom: 50px;
  }
}

.c-bizMenu__in {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 751px) {
  .c-bizMenu__in {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: calc(100% - 40px);
    max-width: 1120px;
  }
}
@media (min-width: 1367px) {
  .c-bizMenu__in {
    width: 80vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .c-bizMenu__in {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 750px) {
  .c-bizMenu__in {
    width: calc(100% - 48px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* 親ページへのリンク */
@media (min-width: 751px) {
  .c-bizMenuTop {
    width: 260px;
    padding-top: 20px;
    margin-right: 24px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .c-bizMenuTop {
    width: 260px;
    margin-left: 40px;
    margin-right: 40px;
  }
}
@media (max-width: 750px) {
  .c-bizMenuTop {
    margin-bottom: 16px;
  }
}

.c-bizMenuTop__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 4px;
}
@media (max-width: 750px) {
  .c-bizMenuTop__head {
    padding-right: 10px;
  }
}

.c-bizMenuTop__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 24px;
}

.c-bizMenuTop__en {
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.06em;
  line-height: 0.9;
  color: #dbe1ea;
  margin-left: -4px;
}
@media (min-width: 751px) {
  .c-bizMenuTop__en {
    font-size: 64px;
  }
}
@media (max-width: 750px) {
  .c-bizMenuTop__en {
    font-size: 54px;
  }
}

.c-bizMenuTop__circle {
  margin-top: 7px;
}

/* メニュー */
.c-bizMenuList {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}
@media (min-width: 1025px) {
  .c-bizMenuList {
    width: 326px;
  }
}
@media (max-width: 1024px) {
  .c-bizMenuList {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .c-bizMenuList {
    width: 100%;
    margin-top: 12px;
  }
}

.c-bizMenuList__item {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #dbe1ea;
}
@media (max-width: 1024px) and (min-width: 751px) {
  .c-bizMenuList__item {
    width: 440px;
    margin: auto;
  }
}

.c-bizMenuList__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 751px) {
  .c-bizMenuList__link {
    padding: 20px 35px 20px 23px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .c-bizMenuList__link {
    padding: 16px 25px 16px 16px;
  }
}
@media (max-width: 750px) {
  .c-bizMenuList__link {
    padding: 20px 11px 20px 14px;
  }
}

.c-bizMenuList__txts {
  pointer-events: none;
}

.c-bizMenuList__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 2px;
}

.c-bizMenuList__en {
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  color: #0087c6;
}

.c-bizMenuList__menuLink {
  pointer-events: none;
}

/* 画像 */
.c-bizMenuCircle {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1025px) {
  .c-bizMenuCircle {
    width: 27.0863836018vw;
    height: 27.0863836018vw;
    max-width: 370px;
    max-height: 370px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .c-bizMenuCircle {
    width: 44.921875vw;
    height: 44.921875vw;
  }
}
@media (max-width: 1024px) {
  .c-bizMenuCircle {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 750px) {
  .c-bizMenuCircle {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    width: 57.0666666667vw;
    height: 57.0666666667vw;
    margin: 0 auto 16px;
  }
}

.c-bizMenuCircle__line {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: url(../images/business/biz_menu_circle_line.png) no-repeat right center/cover;
}

.c-bizMenuCircleBox {
  position: relative;
}
@media (min-width: 1025px) {
  .c-bizMenuCircleBox {
    width: 21.0102489019vw;
    height: 21.0102489019vw;
    max-width: 287px;
    max-height: 287px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .c-bizMenuCircleBox {
    width: 34.765625vw;
    height: 34.765625vw;
  }
}
@media (max-width: 750px) {
  .c-bizMenuCircleBox {
    width: 44.8vw;
    height: 44.8vw;
  }
}

.c-bizMenuCircleBox__img {
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
}

.c-bizMenuCircleBox__img:not(:first-child) {
  position: absolute;
}

/*
  下層ページ - 下部メニュー - ラインあり
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .c-bizMenu.-company {
    padding-top: 150px;
  }
}
@media (min-width: 751px) {
  .c-bizMenu.-company .c-bizMenuTop {
    position: relative;
    padding-top: 50px;
  }
}
@media (min-width: 751px) {
  .c-bizMenu.-company .c-bizMenuList {
    position: relative;
    padding-top: 30px;
  }
}
@media (min-width: 1025px) {
  .c-bizMenu.-company .c-bizMenuTop::before,
  .c-bizMenu.-company .c-bizMenuList::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: #a2a8b4;
  }
}
@media (min-width: 751px) {
  .c-bizMenu.-company .c-bizMenuTop::before {
    right: -200px;
  }
}
@media (min-width: 751px) {
  .c-bizMenu.-company .c-bizMenuCircle {
    margin-top: 30px;
  }
}

/*
  下層ページ - 下部メニュー - ラインあり - 2
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-bizMenu.-ir {
  padding-top: 150px;
}
@media (min-width: 751px) {
  .c-bizMenu.-ir .c-bizMenuTop {
    position: relative;
    padding-top: 50px;
  }
}
@media (min-width: 751px) {
  .c-bizMenu.-ir .c-bizMenuList {
    position: relative;
    padding-top: 30px;
  }
}
@media (min-width: 1025px) {
  .c-bizMenu.-ir .c-bizMenuTop::before,
  .c-bizMenu.-ir .c-bizMenuList::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: #a2a8b4;
  }
}
@media (min-width: 751px) {
  .c-bizMenu.-ir .c-bizMenuTop::before {
    right: -200px;
  }
}
@media (min-width: 751px) {
  .c-bizMenu.-ir .c-bizMenuCircle {
    margin-top: 30px;
  }
}

.message .c-bizMenu.-ir::before {
  background: #f7f7f7;
}

/*
  下層ページ - 下部メニュー - ホバーアニメーション
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-bizMenuCircleBox__img.is-anime {
  z-index: 2;
  -webkit-animation: menu_circle_img 1s forwards;
          animation: menu_circle_img 1s forwards;
}

@-webkit-keyframes menu_circle_img {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.94);
            transform: scale(0.94);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes menu_circle_img {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.94);
            transform: scale(0.94);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  ページャー


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-pager {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 751px) {
  .c-pager {
    width: calc(100% - 40px);
  }
}
@media (max-width: 750px) {
  .c-pager {
    width: calc(100% - 48px);
    height: 33px;
    padding-left: 8px;
  }
}

.c-pager a {
  cursor: pointer;
}

.page-numbers {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  line-height: 1;
  font-size: 16px;
}
@media (min-width: 751px) {
  .page-numbers {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 750px) {
  .page-numbers {
    width: 26px;
    height: 26px;
  }
}

@media (min-width: 751px) {
  .page-numbers:not(:last-child) {
    margin-right: 20px;
  }
}
@media (max-width: 750px) {
  .page-numbers:not(:last-child) {
    margin-right: 12px;
  }
}

.page-numbers.current {
  color: #0171ff;
}

@media (max-width: 750px) {
  .page-numbers.dots {
    width: 14px;
    height: 14px;
  }
}

a.page-numbers {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

a.page-numbers:hover {
  color: #a2a8b4;
}

/*
  ページャー - 前後のボタン
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
a.page-numbers.prev,
a.page-numbers.next {
  position: absolute !important;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 750px) {
  a.page-numbers.prev,
  a.page-numbers.next {
    top: 0;
  }
}
a.page-numbers.prev .c-dtlPager__arrow-border,
a.page-numbers.next .c-dtlPager__arrow-border {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border: 1px solid #0171ff;
  border-radius: 50%;
}
a.page-numbers.prev::before,
a.page-numbers.next::before {
  content: "";
  position: absolute;
  z-index: 2;
  border: 3px solid transparent;
  margin-top: 1px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
a.page-numbers.prev::after,
a.page-numbers.next::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  left: -2px;
  bottom: -2px;
  background: #0171ff;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: scale(0);
          transform: scale(0);
}
a.page-numbers.prev:hover::after,
a.page-numbers.next:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

a.page-numbers.prev {
  left: 0;
}
a.page-numbers.prev::before {
  border-right: 7px solid #0171ff;
  margin-left: -5px;
}
a.page-numbers.prev:hover::before {
  border-right-color: #fff;
}

a.page-numbers.next {
  right: 0;
}
a.page-numbers.next::before {
  border-left: 7px solid #0171ff;
  margin-right: -5px;
}
a.page-numbers.next:hover::before {
  border-left-color: #fff;
}

.pagerBorder {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border: 1px solid #0171ff;
  border-radius: 50%;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  c-achievement


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-achievement {
  position: relative;
}
@media (min-width: 751px) {
  .c-achievement {
    padding: 350px 0 280px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .c-achievement {
    padding: 280px 0 220px;
  }
}
@media (max-width: 750px) {
  .c-achievement {
    padding: 180px 0;
    margin-bottom: 21.3333333333vw;
  }
}
.c-achievement::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
  border-radius: 50%;
  background: -webkit-linear-gradient(353.6deg, #f0f0f0 34.84%, #e7ebf1 81.3%);
  background: linear-gradient(96.4deg, #f0f0f0 34.84%, #e7ebf1 81.3%);
}
@media (min-width: 751px) {
  .c-achievement::before {
    width: 170vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .c-achievement::before {
    width: 220vw;
  }
}
@media (max-width: 750px) {
  .c-achievement::before {
    width: 290vw;
  }
}

.c-achievement__body {
  position: relative;
  z-index: 10;
}

.c-achievementHeading {
  position: relative;
  margin: auto;
}
@media (min-width: 751px) {
  .c-achievementHeading {
    width: 68.54vw;
  }
}
@media (max-width: 750px) {
  .c-achievementHeading {
    width: calc(100% - 48px);
    margin-bottom: 63px;
  }
}

.c-achievementHeading__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.05em;
  margin-bottom: 41px;
}
@media (min-width: 751px) {
  .c-achievementHeading__ttl {
    font-size: 42px;
  }
}
@media (max-width: 750px) {
  .c-achievementHeading__ttl {
    font-size: 32px;
  }
}

.c-achievementHeading__txt {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  position: relative;
  line-height: 160%;
}
@media (min-width: 751px) {
  .c-achievementHeading__txt {
    font-size: 18px;
  }
}
@media (max-width: 750px) {
  .c-achievementHeading__txt {
    font-size: 16px;
  }
}
.c-achievementHeading__txt::before {
  position: absolute;
  content: "";
  display: block;
  left: 4px;
  width: 20px;
  height: 2px;
  background-color: #0087c6;
}
@media (min-width: 751px) {
  .c-achievementHeading__txt::before {
    top: -20px;
  }
}
@media (max-width: 750px) {
  .c-achievementHeading__txt::before {
    top: -25px;
  }
}

.c-achievementHeading__img {
  position: absolute;
  z-index: -1;
}
@media (min-width: 751px) {
  .c-achievementHeading__img {
    width: 57.2vw;
    top: -114%;
    left: -24.2%;
  }
}
@media (max-width: 750px) {
  .c-achievementHeading__img {
    top: -56.9%;
    left: -30px;
    max-width: 350px;
  }
}

/* アコーディオン */
.c-achievement__list {
  max-width: 975px;
}
@media (min-width: 751px) {
  .c-achievement__list {
    margin: 117px auto 0;
    width: calc(100% - 60px);
  }
}
@media (max-width: 750px) {
  .c-achievement__list {
    margin: 87px auto 0;
    width: calc(100% - 48px);
  }
}

.c-achievement__itemWrap:not(:first-child) {
  display: none;
}

.c-achievement__itemWrap:first-child {
  border-top: 1px solid #d3d7dc;
}

.c-achievement__itemWrap {
  border-bottom: 1px solid #d3d7dc;
}

.c-achievement__item {
  cursor: pointer;
  -webkit-transition: padding 0.3s, opacity 0.3s;
  transition: padding 0.3s, opacity 0.3s;
}
.c-achievement__item:not(:first-child) {
  border-top: 1px solid #d3d7dc;
}
@media (min-width: 751px) {
  .c-achievement__item {
    padding: 20px 0;
  }
}
@media (max-width: 750px) {
  .c-achievement__item {
    position: relative;
    padding: 17px 20px 38px 15px;
  }
}
@media (min-width: 751px) {
  .c-achievement__item.-active {
    padding-top: 35px;
    background-color: #fff;
  }
}
@media (max-width: 750px) {
  .c-achievement__item.-active {
    padding-top: 40px;
  }
}

.c-achievement__outer {
  position: static;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 751px) {
  .c-achievement__outer {
    padding: 0 30px 0 24px;
  }
}
@media (max-width: 750px) {
  .c-achievement__outer {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.c-achievement__icon {
  position: relative;
  z-index: 4;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-radial-gradient(50% 50%, 50% 50%, rgba(117, 159, 182, 0) 42.19%, rgba(117, 159, 182, 0.02) 77.08%, rgba(117, 159, 182, 0.2) 100%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(117, 159, 182, 0) 42.19%, rgba(117, 159, 182, 0.02) 77.08%, rgba(117, 159, 182, 0.2) 100%);
  border-radius: 50%;
}
@media (min-width: 751px) {
  .c-achievement__icon {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 750px) {
  .c-achievement__icon {
    width: 36px;
    height: 36px;
    margin-right: 12px;
  }
}

@media (max-width: 750px) {
  .c-achievement__icon img {
    width: 21px;
    -webkit-transform: translateY(2px);
            transform: translateY(2px);
  }
}

.c-achievement__ttl {
  position: relative;
  z-index: 4;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.6;
  text-align: justify;
}
@media (min-width: 751px) {
  .c-achievement__ttl {
    font-size: 18px;
    padding: 16px 2% 0;
  }
}
@media (max-width: 750px) {
  .c-achievement__ttl {
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (max-width: 750px) {
  .c-achievement__item.-active .c-achievement__ttl {
    display: block;
  }
}

.c-achievement__inner {
  display: none;
  max-width: 783px;
}
@media (min-width: 751px) {
  .c-achievement__inner {
    margin: 17px auto 22px;
    padding-left: 8px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .c-achievement__inner {
    margin-left: 94px;
    margin-right: 94px;
  }
}
@media (max-width: 750px) {
  .c-achievement__inner {
    margin-bottom: 11px;
  }
}

.c-achievement__txt {
  line-height: 180%;
  letter-spacing: 0.03em;
  text-align: justify;
}
@media (max-width: 750px) {
  .c-achievement__txt {
    padding: 10px 0 0 48px;
  }
}

@media (max-width: 750px) {
  .c-achievementBtnWrap {
    position: absolute;
    right: 13px;
    bottom: 16px;
  }
}

@media (min-width: 751px) {
  .c-achievementBtnWrap .c-menuLink__overlay {
    width: 2500px;
    height: 2500px;
  }
}
@media (max-width: 750px) {
  .c-achievementBtnWrap .c-menuLink__overlay {
    width: 1800px;
    height: 1800px;
  }
}

.c-achievementBtn {
  z-index: 4;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 751px) {
  .c-achievementBtn {
    position: relative;
    border-radius: 50%;
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 750px) {
  .c-achievementBtn {
    width: 12px;
    height: 12px;
  }
}
.c-achievementBtn::before, .c-achievementBtn::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 12px;
  height: 1px;
  background-color: #0171ff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-achievementBtn::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.c-achievementBtn.-active::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  opacity: 0;
}
@media (min-width: 751px) {
  .c-achievementBtn.-active::before {
    background-color: #fff;
  }
}
.c-achievementBtn.-active .c-achievementBtn__overlay {
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media (min-width: 751px) {
  .c-achievementBtn__border {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    border-radius: 50%;
    border: 1px solid #0171ff;
  }
}
@media (max-width: 750px) {
  .c-achievementBtn__border {
    display: none;
  }
}

.c-achievementBtn__overlay {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0171ff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.c-achivementMore {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
}

.c-achivementMore__btn {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  font-size: inherit;
  text-align: left;
  color: inherit;
  cursor: pointer;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  padding-right: 23px;
  color: #0171ff;
  font-size: 18px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.c-achivementMore__btn::before, .c-achivementMore__btn::after {
  content: "";
  position: absolute;
  right: 20px;
  width: 1px;
  height: 13px;
  background: #3d424b;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-achivementMore__btn::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c-achivementMore__btn.is-show::before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.c-achivementMore__btn::before, .c-achivementMore__btn::after {
  right: 5px;
  background: #0171ff;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.c-achivementMore__btn:hover {
  color: #a2a8b4;
}
.c-achivementMore__btn:hover::before, .c-achivementMore__btn:hover::after {
  background: #a2a8b4;
}

/*
  ホバー
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .c-achievement__item:hover .c-achievementBtn::before,
  .c-achievement__item:hover .c-achievementBtn::after {
    background: #fff;
  }
}
.c-achievement__item:hover .c-achievementBtn__overlay {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*
  共通見出し
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-heading {
  position: relative;
  background: #f7f7f7;
}
@media (min-width: 751px) {
  .c-heading {
    padding-top: 90px;
    padding-bottom: 140px;
  }
}
@media (max-width: 750px) {
  .c-heading {
    padding-bottom: 102px;
  }
}

.c-heading__inner {
  margin: auto;
}
@media (min-width: 751px) {
  .c-heading__inner {
    width: 68.5212298682vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .c-heading__inner {
    width: 88vw;
  }
}
@media (max-width: 750px) {
  .c-heading__inner {
    width: calc(100% - 48px);
  }
}

.c-heading__wrap.-consulting {
  max-width: 624px;
}

.c-heading__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .c-heading__ttl {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
@media (max-width: 750px) {
  .c-heading__ttl {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.c-heading__txtWrap {
  border-bottom: 1px solid #d3d7dc;
}
@media (min-width: 751px) {
  .c-heading__txtWrap {
    padding-bottom: 30px;
    margin-bottom: 14px;
  }
}
@media (max-width: 750px) {
  .c-heading__txtWrap {
    padding-bottom: 24px;
    margin-bottom: 27px;
  }
}

.c-heading__txt {
  text-align: justify;
  font-size: 16px;
  line-height: 180%;
}
@media (min-width: 751px) {
  .c-heading__txt {
    letter-spacing: 0.02em;
  }
  .c-heading__txt:not(:last-child) {
    margin-bottom: 15px;
  }
}
@media (max-width: 750px) {
  .c-heading__txt {
    letter-spacing: 0.03em;
  }
  .c-heading__txt:not(:last-child) {
    margin-bottom: 3px;
  }
}

.c-heading__notes {
  font-size: 12px;
}
@media (min-width: 751px) {
  .c-heading__notes {
    margin-top: -6px;
  }
}
@media (max-width: 750px) {
  .c-heading__notes {
    margin-top: 12px;
  }
}

.c-heading__catWrap {
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 0.03em;
  color: #0087c6;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  記事投稿 本文スタイル


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-postMain h2 {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media (min-width: 751px) {
  .c-postMain h2 {
    margin-bottom: 30px;
    font-size: 32px;
  }
}
@media (max-width: 750px) {
  .c-postMain h2 {
    margin-bottom: 20px;
    font-size: 24px;
  }
}

.c-postMain h3 {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media (min-width: 751px) {
  .c-postMain h3 {
    margin-bottom: 30px;
    font-size: 24px;
  }
}
@media (max-width: 750px) {
  .c-postMain h3 {
    margin-bottom: 20px;
    font-size: 18px;
  }
}

.c-postMain p {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media (min-width: 751px) {
  .c-postMain p {
    margin-bottom: 30px;
  }
}
@media (max-width: 750px) {
  .c-postMain p {
    margin-bottom: 20px;
  }
}

.c-postMain a {
  color: #0171ff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.c-postMain a:hover {
  color: #a2a8b4;
}

@media (min-width: 751px) {
  .c-postMain ul {
    margin-bottom: 30px;
  }
}
@media (max-width: 750px) {
  .c-postMain ul {
    margin-bottom: 20px;
  }
}

.c-postMain li {
  position: relative;
  font-size: 16px;
  padding-left: calc(1em + 4px);
}

.c-postMain li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #0171ff;
  font-weight: bold;
}

.c-postMain li:not(:last-child) {
  margin-bottom: 12px;
}

.c-postMain figure {
  text-align: center;
}
@media (min-width: 751px) {
  .c-postMain figure {
    margin-bottom: 64px;
  }
}
@media (max-width: 750px) {
  .c-postMain figure {
    margin: 50px 0;
  }
}

.c-postMain > *:last-child {
  margin-bottom: 0;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  画面固定 コンバージョンボタン


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.floatBtns {
  position: fixed;
  z-index: 50;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-transition: background 0.3s 0.5s, opacity 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s 0.5s, opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, background 0.3s 0.5s, opacity 0.3s;
  transition: transform 0.3s, background 0.3s 0.5s, opacity 0.3s, -webkit-transform 0.3s;
}
@media (min-width: 751px) {
  .floatBtns {
    right: 42px;
    bottom: 24px;
  }
}
@media (max-width: 750px) {
  .floatBtns {
    right: 6px;
    bottom: 16px;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-left: 6px;
    width: calc(100% - 12px);
  }
}

.floatBtn {
  height: 46px;
}
@media (min-width: 751px) {
  .floatBtn {
    width: 240px;
  }
}
@media (max-width: 750px) {
  .floatBtn {
    width: 180px;
    width: 50%;
    max-width: 240px;
  }
}

@media (min-width: 751px) {
  .floatBtn + .floatBtn {
    margin-left: 8px;
  }
}
@media (max-width: 750px) {
  .floatBtn + .floatBtn {
    margin-left: 4px;
  }
}

.floatBtn__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border: none;
}

.floatBtn__link::before {
  display: none;
}

.floatBtn__text {
  font-weight: bold;
}
@media (min-width: 751px) {
  .floatBtn__text {
    font-size: 14px;
  }
}
@media (max-width: 750px) {
  .floatBtn__text {
    font-size: 12px;
  }
}

.floatBtns.is-hide {
  opacity: 0;
  pointer-events: none;
}

/* スクロール時は非表示 */
.floatBtns.is-hidden {
  -webkit-transform: translate3d(0, 80px, 0);
          transform: translate3d(0, 80px, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  画面固定 フローティングバナー


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.floatingBnr {
  -webkit-transition: background 0.3s 0.5s, opacity 0.3s, -webkit-transform 0.3s;
  transition: background 0.3s 0.5s, opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, background 0.3s 0.5s, opacity 0.3s;
  transition: transform 0.3s, background 0.3s 0.5s, opacity 0.3s, -webkit-transform 0.3s;
  width: 280px;
  position: fixed;
  right: 42px;
  bottom: 80px;
  z-index: 10;
}
.floatingBnr.is-hide {
  opacity: 0;
  pointer-events: none;
}
.floatingBnr.is-hidden {
  -webkit-transform: translate3d(0, 250px, 0);
          transform: translate3d(0, 250px, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media (max-width: 750px) {
  .floatingBnr.is-hidden {
    -webkit-transform: translate3d(0, 160px, 0);
            transform: translate3d(0, 160px, 0);
  }
}
.floatingBnr.disNone {
  display: none;
}
@media (max-width: 750px) {
  .floatingBnr {
    width: 363px;
    bottom: 70px;
    right: 6px;
    max-width: 95%;
  }
}
@media (min-width: 751px) {
  .floatingBnr a {
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .floatingBnr a:hover {
    opacity: 0.7;
  }
  .floatingBnr .floatingBnrCloseBtn {
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .floatingBnr .floatingBnrCloseBtn:hover {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.floatingBnrCloseBtn {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 4px;
  right: 4px;
  z-index: 15;
  cursor: pointer;
}
@media (min-width: 751px) {
  .floatingBnrCloseBtn {
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .floatingBnrCloseBtn:hover {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@media (max-width: 750px) {
  .floatingBnrCloseBtn {
    width: 14px;
    height: 14px;
  }
}

/*
  ファーストビュー - アンカーリンク
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-fvAnchor {
  max-width: 340px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 44px 20px rgba(27, 95, 133, 0.1);
          box-shadow: 0px 4px 44px 20px rgba(27, 95, 133, 0.1);
  border-radius: 4px;
}
@media (min-width: 751px) {
  .c-fvAnchor {
    position: absolute;
    bottom: 26vw;
    left: 24px;
    z-index: 4;
    width: 100%;
    padding: 27px 38px;
  }
}
@media (max-width: 1366px) and (min-width: 750px) {
  .c-fvAnchor {
    width: 24.8901903367vw;
    padding: 1.9765739385vw 2.7818448023vw;
  }
}
@media (min-width: 1367px) {
  .c-fvAnchor {
    left: calc(11.8% + 11px);
  }
}
@media (max-width: 750px) {
  .c-fvAnchor {
    width: calc(100% - 48px);
    padding: 25px 38px;
    margin: 28px 24px 70px;
  }
}

.c-fvAnchor__item:not(:last-child) {
  margin-bottom: 14px;
}

.c-fvAnchor__link {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 16px;
}
@media (max-width: 1366px) and (min-width: 750px) {
  .c-fvAnchor__link {
    font-size: 1.1713030747vw;
  }
}

.c-fvAnchor__link::after {
  content: "";
  position: relative;
  top: 3px;
  border: 3px solid transparent;
  border-top: 8px solid #cad1dc;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.c-fvAnchor__link:hover::after {
  border-top-color: #0171ff;
}

/*
  ファーストビュー - アンカーリンク
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-fvAnchor {
  opacity: 0;
  -webkit-transform: translate3d(0, 24px, 0);
          transform: translate3d(0, 24px, 0);
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  正円ボタン


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-circleBtn {
  width: 36px;
  height: 36px;
}

.c-circleBtn__link {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media (min-width: 751px) {
  .c-circleBtn__link {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.c-circleBtn__link::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border: 1px solid #0171ff;
  border-radius: 50%;
}

.c-circleBtn__icon {
  position: absolute;
  z-index: 2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-circleBtn__icon.-outerlink {
  width: 12px;
  height: 10px;
  background: url(https://wahcell.jp/wp-content/themes/wahcell-1/img/icon_outerlink_blue.svg) no-repeat center/contain;
}

.c-circleBtn__icon.-closs {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.c-circleBtn__icon.-closs::before,
.c-circleBtn__icon.-closs::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 29%;
  width: 43%;
  height: 1px;
  background: #0171ff;
  pointer-events: none;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.c-circleBtn__icon.-closs::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-circleBtn__icon.-closs::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.c-circleBtn__overlay {
  width: 100%;
  height: 100%;
  background-color: #0171ff;
  border-radius: 50%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-circleBtn__border {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border: 1px solid #0171ff;
  border-radius: 50%;
}

/*
  正円ボタン - 拡大しない
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-circleBtn.-noexpan .c-circleBtn__link {
  -webkit-transform: scale(1) !important;
          transform: scale(1) !important;
}

/*
  正円ボタン - ホバー
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-circleBtn__link:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.c-circleBtn__link:hover .c-circleBtn__icon.-outerlink {
  background-image: url(../images/common/icon_outerlink_white.svg);
}
.c-circleBtn__link:hover .c-circleBtn__icon.-closs::before,
.c-circleBtn__link:hover .c-circleBtn__icon.-closs::after {
  background: #fff;
}
.c-circleBtn__link:hover .c-circleBtn__overlay {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*
  サービス一覧
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.serviceListWrap {
  position: relative;
  z-index: 2;
}
@media (min-width: 751px) {
  .serviceListWrap {
    margin: 150px 0 210px;
  }
}
@media (max-width: 750px) {
  .serviceListWrap {
    margin: 100px 0 140px;
  }
}

.serviceList {
  margin: auto;
}
@media (min-width: 751px) {
  .serviceList {
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 1367px) {
  .serviceList {
    width: 71.3762811127vw;
    max-width: none;
  }
}
@media (max-width: 750px) {
  .serviceList {
    width: calc(100% - 48px);
  }
}

.serviceList__item {
  border-top: 1px solid #dbe1ea;
}
@media (min-width: 751px) {
  .serviceList__item {
  }
}
@media (max-width: 750px) {
  .serviceList__item {
    padding: 30px 18px 24px;
  }
}

.serviceList__item:last-child {
  border-bottom: 1px solid #dbe1ea;
}

@media (min-width: 751px) {
  .serviceList__conts {
    /* min-height: 416px; */
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.serviceList__thumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}
@media (min-width: 751px) {
  .serviceList__thumb {
    width: 35.3%;
    /* padding-left: 30px; */
    /* padding-right: 40px; */
    border-right: 1px dashed #dbe1ea;
  }
}
@media (max-width: 750px) {
  .serviceList__thumb {
    margin-bottom: 18px;
  }
}

.serviceList__texts {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 751px) {
  .serviceList__texts {
    width: 64.7%;
    padding: 0 54px 0 38px;
  }
}
@media (max-width: 750px) {
  .serviceList__texts {
    padding-bottom: 42px;
  }
}

.serviceList__ttl {
  position: relative;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
}
@media (min-width: 751px) {
  .serviceList__ttl {
    padding-bottom: 16px;
    margin-bottom: 20px;
    font-size: 24px;
  }
}
@media (max-width: 750px) {
  .serviceList__ttl {
    padding-bottom: 12px;
    margin-bottom: 14px;
    font-size: 18px;
  }
}

.serviceList__ttl::before,
.serviceList__ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
}

.serviceList__ttl::before {
  right: 0;
  background: #dbe1ea;
}

.serviceList__ttl::after {
  width: 40px;
  background: #0087c6;
}

.serviceList__text {
  letter-spacing: 0.03em;
  line-height: 1.8;
  text-align: justify;
}
@media (min-width: 751px) {
  .serviceList__text {
    font-size: 16px;
  }
}

.serviceList__btn {
  position: absolute;
  bottom: 0;
}
@media (min-width: 751px) {
  .serviceList__btn {
    right: 54px;
  }
}
@media (max-width: 750px) {
  .serviceList__btn {
    right: 0;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  フォーム


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .contactMain {
    padding-top: 110px;
  }
}
@media (max-width: 750px) {
  .contactMain {
    padding-top: 82px;
  }
}

@media (min-width: 751px) {
  .ir-contactMain {
    padding-bottom: 74px;
  }
}

/*
  フォーム - カレント
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.contactFlow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 751px) {
  .contactFlow {
    margin-bottom: 72px;
  }
}
@media (max-width: 750px) {
  .contactFlow {
    margin-bottom: 62px;
  }
}

.contactFlow__in {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contactFlow__in::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 16px;
  right: 16px;
  height: 1px;
  border-top: 1px dashed #dbe1ea;
}

.contactFlow__item {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.contactFlow__item:not(:last-child) {
  margin-right: 120px;
}

.contactFlow__dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  margin-bottom: 6px;
}

.contactFlow__dots::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dbe1ea;
}

.contactFlow__name {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 16px;
}

/* カレント */
.contactFlow__item.-current .contactFlow__dots {
  background: rgba(1, 113, 255, 0.2);
}
.contactFlow__item.-current .contactFlow__dots::after {
  background: #0171ff;
}
.contactFlow__item.-current .contactFlow__name {
  color: #0171ff;
}

/*
  フォーム - 入力フォーム
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.contactForm {
  max-width: 784px;
  margin: auto;
}
@media (min-width: 751px) {
  .contactForm {
    width: 82.4304538799vw;
  }
}
@media (max-width: 750px) {
  .contactForm {
    width: calc(100% - 48px);
  }
}

.contactForm__item + .contactForm__item {
  margin-top: 46px;
}

.contactFormTtl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 14px;
  line-height: 1.2;
}

.contactFormTtl__text {
  margin-right: 8px;
  font-size: 18px;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
}

.contactForm__require {
  color: #0087c6;
}

.contactForm__input > span {
  display: block;
}

.contactForm__input input[type=text],
.contactForm__input input[type=tel],
.contactForm__input input[type=email],
.contactForm__input textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #3d424b;
  width: 100%;
  padding: 18px 22px;
  border-radius: 4px;
  border: 1px solid #dbe1ea;
  background: #fff;
  font-size: 16px;
  letter-spacing: 0.03em;
}

.contactForm__input input[type=text]::-webkit-input-placeholder, .contactForm__input input[type=tel]::-webkit-input-placeholder, .contactForm__input input[type=email]::-webkit-input-placeholder, .contactForm__input textarea::-webkit-input-placeholder {
  color: #a9b1bd;
}

.contactForm__input input[type=text]::-moz-placeholder, .contactForm__input input[type=tel]::-moz-placeholder, .contactForm__input input[type=email]::-moz-placeholder, .contactForm__input textarea::-moz-placeholder {
  color: #a9b1bd;
}

.contactForm__input input[type=text]:-ms-input-placeholder, .contactForm__input input[type=tel]:-ms-input-placeholder, .contactForm__input input[type=email]:-ms-input-placeholder, .contactForm__input textarea:-ms-input-placeholder {
  color: #a9b1bd;
}

.contactForm__input input[type=text]::-ms-input-placeholder, .contactForm__input input[type=tel]::-ms-input-placeholder, .contactForm__input input[type=email]::-ms-input-placeholder, .contactForm__input textarea::-ms-input-placeholder {
  color: #a9b1bd;
}

.contactForm__input input[type=text]::placeholder,
.contactForm__input input[type=tel]::placeholder,
.contactForm__input input[type=email]::placeholder,
.contactForm__input textarea::placeholder {
  color: #a9b1bd;
}

.contactForm__input textarea {
  display: block;
}

.contactForm__input.-textarea {
  position: relative;
}

/* セレクトボックス */
.contactForm__input select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #3d424b;
  width: 100%;
  padding: 18px 22px;
  border-radius: 4px;
  border: 1px solid #dbe1ea;
  background: #fff;
  font-size: 16px;
  letter-spacing: 0.03em;
  cursor: pointer;
}

/* チェックボックス */
.contactForm input[type=checkbox],
.c-checkbox {
  display: none;
}

.contactForm input[type=checkbox] + span,
.c-checkbox + span {
  position: relative;
  display: block;
  padding: 3px 0 3px 24px;
  padding-left: 24px;
  font-weight: 500;
  cursor: pointer;
}

.contactForm input[type=checkbox] + span::before,
.c-checkbox + span::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 2px solid #a9b1bd;
}

.contactForm input[type=checkbox]:checked + span::before,
.c-checkbox:checked + span::before {
  background: #fff;
}

.contactForm input[type=checkbox]:checked + span::after,
.c-checkbox:checked + span::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 3px;
  width: 14px;
  height: 7px;
  border-left: 2px solid #0171ff;
  border-bottom: 2px solid #0171ff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* ラジオボタン */
.contactForm__input--radio-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (max-width: 750px) {
  .contactForm__input--radio-wrap {
    display: block;
  }
}
.contactForm__input--radio-wrap label {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
@media (max-width: 750px) {
  .contactForm__input--radio-wrap label {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 12px;
  }
  .contactForm__input--radio-wrap label:first-child {
    margin-top: 0;
  }
}

.contactForm input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 17px;
  height: 17px;
  border: 1px solid #DBE1EA;
  background: #fff;
  border-radius: 50%;
}
.contactForm input[type=radio]:checked:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0171FF;
  content: "";
}
.contactForm input[type=radio] + span {
  display: inline-block;
  margin-left: 8px;
}

/* プライバシーポリシー */
@media (min-width: 751px) {
  .contactFormPrivacy {
    margin-top: 64px;
  }
}
@media (max-width: 750px) {
  .contactFormPrivacy {
    margin-top: 40px;
  }
}

.contactFormPrivacy__txt {
  margin-bottom: 26px;
}

.contactFormPrivacy__txt a {
  color: #0171ff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.contactFormPrivacy__txt a:hover {
  color: #a9b1bd;
}

.contactFormPrivacy__check span {
  margin: 0;
  font-size: 16px;
}

.contactFormPrivacy__check > label {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

/*
  フォーム - recaptcha
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.g-recaptcha {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px 0;
}

/*
  フォーム - 送信ボタン
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.contactFormSubmit {
  text-align: center;
}
@media (min-width: 751px) {
  .contactFormSubmit {
    margin-top: 100px;
  }
}
@media (max-width: 750px) {
  .contactFormSubmit {
    margin-top: 60px;
  }
}

.contactFormSubmit input,
.contactFormSubmit button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  font-size: inherit;
  text-align: left;
  color: inherit;
  cursor: pointer;
  display: block;
  width: 290px;
  height: 56px;
  padding-top: 1px;
  border-radius: 56px;
  margin: auto;
  background: #0171ff;
  color: #fff;
  text-align: center;
}
.contactFormSubmit input:disabled,
.contactFormSubmit button:disabled {
  background: #a9b1bd;
}

/*
  フォーム - エラー文
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.wpcf7-spinner {
  margin-top: 12px;
}

.wpcf7-not-valid-tip {
  margin-top: 4px;
  font-size: 14px !important;
}

.wpcf7 form .wpcf7-response-output {
  padding: 0;
  border: none;
  margin-left: 0;
  margin-right: 0;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  color: #dc3232;
}

.contactForm__error {
  margin-top: 10px;
  font-size: 12px;
  color: #dc3232;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  IR グラフ


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
:root {
  --font-default: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "YakuHanJP", "Noto Sans JP",
    "ヒラギノ角ゴ  ProN W3", Meiryo, sans-serif;
  --font-numbers: "Roboto Condensed", sans-serif;
  --color-brand-yellow: #e8a704;
  --color-brand-blue: #1b86c4;
  --color-brand-blue--hover: #1b86c4;
  --color-brand-blue--dark: #003461;
  --color-red: #d80906;
  --color-green: #41c141;
  --color-green--light: #9cc030;
  --color-green--dark: #25ab4a;
  --color-green--ex-dark: #1c8338;
  --color-gray: #d6d6d6;
  --color-gray--light: #f4f4f4;
  --color-gray--dark: #7b7b7b;
  --color-gray--ex-dark: #212121;
  --color-link: #2481c7;
  --color-text: #333;
  --color-selection: rgba(166, 219, 249, 0.57);
  --color-placeholder: #dcdcdc;
  --inner-width: 1024px;
  --outer-padding: 16px;
  --main-width: 780px;
  --green-gradient: linear-gradient(90deg, var(--color-green--light), var(--color-green));
  --green-gradient--over: linear-gradient(90deg, var(--color-green--dark), var(--color-green--ex-dark));
}

.grp_sec {
  position: relative;
  z-index: 3;
}
@media (min-width: 751px) {
  .grp_sec {
    padding-top: 76px;
  }
}
@media (max-width: 750px) {
  .grp_sec {
    padding-top: 44px;
  }
}

.grp_wrap {
  margin: auto;
}
@media (min-width: 1025px) {
  .grp_wrap {
    width: 76.8667642753vw;
    max-width: 1050px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .grp_wrap {
    width: calc(100% - 40px);
  }
}
@media (max-width: 750px) {
  .grp_wrap {
    width: calc(100% - 48px);
  }
}

@media (min-width: 751px) {
  .grp_wrap .grp_box {
    width: calc(50% - 16px);
    margin-bottom: 100px;
  }
}
@media (max-width: 750px) {
  .grp_wrap .grp_box {
    margin-bottom: 88px;
  }
}

@media (min-width: 751px) {
  .grpUnit {
    font-size: 16px;
  }
}

.xj_chart_table tr td {
  line-height: 1.8;
}
@media (min-width: 751px) {
  .xj_chart_table tr td {
    font-size: 15px;
  }
}
@media (max-width: 750px) {
  .xj_chart_table tr td {
    font-size: 12px;
  }
}

.grp_cap_wrap {
  margin: auto;
}
@media (min-width: 1025px) {
  .grp_cap_wrap {
    width: 76.8667642753vw;
    max-width: 1050px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .grp_cap_wrap {
    width: calc(100% - 40px);
  }
}
@media (max-width: 750px) {
  .grp_cap_wrap {
    width: calc(100% - 48px);
  }
}

@media (min-width: 751px) {
  .grp_cap {
    margin-bottom: 52px;
  }
}
@media (max-width: 750px) {
  .grp_cap {
    margin-bottom: 38px;
  }
}

.grp_cap__txt {
  line-height: 1.8;
  text-align: justify;
  letter-spacing: 0.03em;
}
@media (min-width: 751px) {
  .grp_cap__txt {
    font-size: 16px;
  }
}

@media (min-width: 751px) {
  .grp_cap__txt + .grp_cap__txt {
    margin-top: 1.8em;
  }
}
@media (max-width: 750px) {
  .grp_cap__txt + .grp_cap__txt {
    margin-top: 1.4em;
  }
}

.grp_notice {
  background: #fff;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .grp_notice {
    padding: 25px 33px;
  }
}
@media (max-width: 750px) {
  .grp_notice {
    padding: 16px;
  }
}

.grp_notice__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #0087c6;
}
@media (min-width: 751px) {
  .grp_notice__ttl {
    margin-bottom: 10px;
  }
}
@media (max-width: 750px) {
  .grp_notice__ttl {
    margin-bottom: 6px;
  }
}

.grp_notice_txt {
  text-align: justify;
}

.ir-newsList__item {
  border-top: 1px solid #dbe1ea;
}

.ir-newsList__item:last-child {
  border-bottom: 1px solid #dbe1ea;
}

@media (min-width: 751px) {
  .ir-newsList__link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 21px;
  }
}
@media (max-width: 750px) {
  .ir-newsList__link {
    display: block;
    padding: 18px 14px 16px;
  }
}

.ir-newsList__thumb {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}
@media (min-width: 751px) {
  .ir-newsList__thumb {
    width: 17.6%;
    margin-right: 22px;
  }
}
@media (max-width: 750px) {
  .ir-newsList__thumb {
    width: 24.3%;
    margin-right: 15px;
  }
}

@media (min-width: 1025px) {
  .ir-newsListConts {
    margin-right: 60px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .ir-newsListConts {
    margin-right: 30px;
  }
}

.ir-newsListConts__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 751px) {
  .ir-newsListConts__head {
    margin-bottom: 18px;
  }
}
@media (max-width: 750px) {
  .ir-newsListConts__head {
    margin-bottom: 6px;
  }
}

.ir-newsListConts__cat {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 26px;
  min-width: 116px;
  padding: 0 20px;
  border-radius: 13px;
  border: 1px solid #0171ff;
  margin-right: 16px;
  letter-spacing: 0.1em;
  color: #0171ff;
  font-size: 12px;
}
@media (max-width: 750px) {
  .ir-newsListConts__cat {
    margin-bottom: 6px;
  }
}

.ir-newsListConts__day {
  font-size: 12px;
  color: #a2a8b4;
}

.ir-newsListConts__ttl {
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: justify;
}
@media (max-width: 750px) {
  .ir-newsListConts__ttl {
    margin-bottom: 12px;
  }
}

.ir-newsListIcon {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: auto;
  width: 62px;
  height: 62px;
}

.ir-newsListIcon.-pdf {
  padding-top: 5px;
}

.ir-newsListIconImgWrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.ir-newsListIconImg {
  position: relative;
  z-index: 4;
  width: 20px;
  height: 24px;
  background: url(../images/common/icon_outerlink_l_blue.svg) no-repeat center/contain;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.ir-newsListIcon.-pdf .ir-newsListIconImg {
  width: 22px;
  height: 26px;
  background-image: url(../images/common/icon_pdf_blue.svg);
}

.ir-newsListIcon__volume {
  position: relative;
  z-index: 4;
  margin-top: 8px;
  font-size: 12px;
  color: #a2a8b4;
  letter-spacing: 0.05em;
  text-align: center;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.ir-newsListIcon__circle {
  position: absolute;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0171ff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: scale(0);
          transform: scale(0);
}

/* ホバー */
.ir-newsList__link:hover .ir-newsListConts__ttl {
  text-decoration: underline;
}
.ir-newsList__link:hover .ir-newsListIcon__circle {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.ir-newsList__link:hover .ir-newsListIconImg {
  background-image: url(../images/common/icon_outerlink_l_white.svg);
}
.ir-newsList__link:hover .ir-newsListIcon.-pdf .ir-newsListIconImg {
  background-image: url(../images/common/icon_pdf_white.svg);
}

/* 年指定セレクトボックス */
.yearSelect {
  position: relative;
  border: 1px solid #dbe1ea;
  border-radius: 4px;
  background: #fff;
}
@media (min-width: 751px) {
  .yearSelect {
    margin-bottom: 30px;
  }
}
@media (max-width: 750px) {
  .yearSelect {
    max-width: 326px;
    margin-bottom: 24px;
  }
}

.yearSelect::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-block;
  border: 3px solid transparent;
  border-top: 8px solid #0171ff;
}

.yearSelect #xj-select-year_s {
  width: 100%;
  padding: 10px 13px;
  margin-bottom: 0;
  cursor: pointer;
  font-size: 12px;
  outline: none;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  c-office-link-banner


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-office-link-banner {
  text-align: center;
  width: 100%;
  display: block;
}
.c-office-link-banner__link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.c-office-link-banner__link:hover {
  opacity: 0.7;
}
.c-office-link-banner__img {
  display: inline-block;
}
@media (min-width: 751px) {
  .c-office-link-banner__img {
    max-width: 1126px;
    width: 100%;
  }
}
@media (max-width: 750px) {
  .c-office-link-banner__img {
    max-width: 327px;
    width: 100%;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  トップページ


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/*
  トップページ - 共通パーツ
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .top .wrapper {
    padding-top: 72px;
  }
}
@media (max-width: 750px) {
  .top .wrapper {
    padding-top: 60px;
  }
}

.top-enHead__first {
  color: #dbe1ea;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 0.9;
  letter-spacing: -0.06em;
}
@media (min-width: 751px) {
  .top-enHead__first {
    font-size: 110px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .top-enHead__first {
    font-size: 90px;
  }
}
@media (max-width: 750px) {
  .top-enHead__first {
    font-size: 60px;
  }
}

.top-enHead__first::after {
  content: "";
  position: relative;
  display: inline-block;
  background: #dbe1ea;
}
@media (min-width: 751px) {
  .top-enHead__first::after {
    bottom: 36px;
    left: 12px;
    width: 108px;
    height: 3px;
  }
}
@media (max-width: 750px) {
  .top-enHead__first::after {
    bottom: 14px;
    left: 2px;
    width: 50px;
    height: 2px;
  }
}

.top-enHead__second {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 751px) {
  .top-enHead__second {
    padding-left: 34px;
  }
}
@media (max-width: 750px) {
  .top-enHead__second {
    padding-left: 10px;
  }
}

.top-enHead__first-num,
.top-enHead__second-num {
  position: relative;
  color: #dbe1ea;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
}
@media (min-width: 751px) {
  .top-enHead__first-num,
  .top-enHead__second-num {
    top: 11px;
    font-size: 18px;
  }
}
@media (max-width: 750px) {
  .top-enHead__first-num,
  .top-enHead__second-num {
    top: 2px;
    font-size: 12px;
  }
}

.top-enHead__second-txt {
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: #dbe1ea;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media (min-width: 751px) {
  .top-enHead__second-txt {
    font-size: 110px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .top-enHead__second-txt {
    font-size: 90px;
  }
}
@media (max-width: 750px) {
  .top-enHead__second-txt {
    font-size: 60px;
  }
}

.top-enHead__first.-oneline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.top-enHead__first.-oneline::after {
  bottom: auto;
}
@media (min-width: 751px) {
  .top-enHead__first.-oneline::after {
    top: 52px;
  }
}
@media (max-width: 750px) {
  .top-enHead__first.-oneline::after {
    top: 28px;
  }
}

@media (max-width: 750px) {
  .top-enHead__first.-oneline .top-enHead__first-num {
    top: 6px;
  }
}

.top-secHead__sub {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 18px;
}
@media (min-width: 751px) {
  .top-secHead__sub {
    margin-bottom: 14px;
  }
}
@media (max-width: 750px) {
  .top-secHead__sub {
    padding-left: 4px;
    margin-bottom: 8px;
  }
}

.top-secHead__sub::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid #0171ff;
  margin-right: 10px;
}

@media (min-width: 751px) {
  .top-secHead__mid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-right: 4vw;
    margin-bottom: 42px;
  }
}
@media (max-width: 750px) {
  .top-secHead__mid {
    padding-left: 4px;
  }
}

@media (min-width: 751px) {
  .top-secHead__mid.-noflex {
    display: block;
  }
}

.top-secHead__main {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
}
@media (min-width: 751px) {
  .top-secHead__main {
    margin-left: -3px;
    font-size: 42px;
    line-height: 1.3;
    letter-spacing: 0.05em;
  }
}
@media (max-width: 750px) {
  .top-secHead__main {
    margin-bottom: 16px;
    font-size: 28px;
  }
}

.top-secHead__txt {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
}
@media (min-width: 751px) {
  .top-secHead__txt {
    margin-top: 20px;
  }
}

.top-secHead__btn {
  position: relative;
  z-index: 2;
}

/*
  トップページ - ファーストビュー
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.fv {
  position: relative;
}
@media (min-width: 751px) {
  .fv {
    padding: 90px 2.7818448023vw 24px 9.5168374817vw;
  }
}
@media (max-width: 750px) {
  .fv {
    padding: 82px 24px 62px;
  }
}

@media (min-width: 751px) {
  .fvIn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (min-width: 751px) {
  .fvCopy {
    margin-bottom: 44px;
  }
}
@media (max-width: 1200px) and (min-width: 768px) {
  .fvCopy {
    margin-bottom: 60px;
  }
}

@media (min-width: 751px) {
  .fvCopyMain {
    margin-bottom: 6px;
  }
}
@media (max-width: 1200px) and (min-width: 768px) {
  .fvCopyMain {
    width: 43.5578330893vw;
  }
}

@media (max-width: 1200px) and (min-width: 768px) {
  .fvCopySub {
    width: 18.9604685212vw;
  }
}

.fvLeadWrap {
  max-width: 1192px;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 751px) {
  .fvLeadWrap {
    width: calc(100% - 40px);
  }
}
@media (max-width: 750px) {
  .fvLeadWrap {
    width: calc(100% - 48px);
  }
}

.fvLead {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .fvLead {
    font-size: 17px;
    margin-left: auto;
  }
}
@media (max-width: 1200px) and (min-width: 768px) {
  .fvLead {
    font-size: 15px;
  }
}

.fvScrollWrap {
  position: absolute;
  z-index: 2;
  -webkit-transform: translate3d(0, 50%, 0);
          transform: translate3d(0, 50%, 0);
}
@media (min-width: 751px) {
  .fvScrollWrap {
    bottom: 0;
  }
}
@media (max-width: 750px) {
  .fvScrollWrap {
    bottom: -250px;
  }
}

.fvScroll {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 751px) {
  .fvScroll {
    width: 148px;
    height: 148px;
  }
}
@media (max-width: 750px) {
  .fvScroll {
    width: 112px;
    height: 112px;
  }
}

.fvScroll__circle {
  position: absolute;
}

@-webkit-keyframes scroll_rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes scroll_rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.fvScroll.is-show .fvScroll__circle {
  -webkit-animation: scroll_rotate 4s 0.5s cubic-bezier(0.63, 0, 0.32, 1) infinite;
          animation: scroll_rotate 4s 0.5s cubic-bezier(0.63, 0, 0.32, 1) infinite;
}

.fvScroll__text {
  color: #0171ff;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*
  トップページ - 背景動画
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.bgMvWrap {
  height: 100vh;
}

.bgMv {
  position: relative;
  z-index: 1;
  margin: auto;
  overflow: hidden;
}
@media (min-width: 751px) {
  .bgMv {
    border-radius: 10px 10px 0 0;
  }
}
@media (max-width: 750px) {
  .bgMv {
    border-radius: 7px 7px 0 0;
  }
}

.bgMv::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  background: rgba(255, 255, 255, 0.5);
}

.bgMv.is-show::after {
  opacity: 1;
}

@media (min-width: 1920px) {
  .bgMv__in {
    width: 100%;
    height: 100%;
  }
}

.firefox .bgVideo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 1920px) {
  .bgVideo {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/*
  トップページ - コンセプト
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.top-pickup-news {
  position: relative;
  z-index: 10;
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.6s, -webkit-transform 0.7s;
  transition: opacity 0.6s, -webkit-transform 0.7s;
  transition: transform 0.7s, opacity 0.6s;
  transition: transform 0.7s, opacity 0.6s, -webkit-transform 0.7s;
  padding: 40px 0;
  background: rgba(255, 255, 255, 0.9);
}
.top-pickup-news.is-show {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
@media (max-width: 750px) {
  .top-pickup-news {
    text-align: left;
    padding: 20px 12px;
  }
}
.top-pickup-news__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 82.4304538799vw;
  margin: 0 auto;
}
@media (max-width: 750px) {
  .top-pickup-news__inner {
    display: block;
    width: 100%;
  }
}
.top-pickup-news__left {
  text-align: right;
}
@media (max-width: 750px) {
  .top-pickup-news__left {
    text-align: left;
  }
}
.top-pickup-news__right {
  margin-left: 100px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.top-pickup-news__right > .newsList .newsListConts {
  width: 100%;
}
@media (max-width: 750px) {
  .top-pickup-news__right {
    margin-top: 40px;
    margin-left: 0;
  }
}
.top-pickup-news__title {
  font-size: min(8.2vw, 120px);
  color: #dbe1ea;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: -0.06em;
}
@media (max-width: 750px) {
  .top-pickup-news__title {
    font-size: 35px;
  }
}
.top-pickup-news__title-sub {
  margin-top: 4px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}
@media (max-width: 750px) {
  .top-pickup-news__title-sub {
    margin-top: 5px;
    font-size: 14px;
  }
}
.top-pickup-news__title-sub span:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid #0171ff;
  margin-right: 10px;
}

/*
  トップページ - コンセプト
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.top-concept {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 10vh;
  padding-top: 3%;
  padding-bottom: 40vh;
  -webkit-transition: 1s;
  transition: 1s;
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), color-stop(25%, rgba(255, 255, 255, 0.4)), color-stop(75%, rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0)));
  background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 25%, rgba(255, 255, 255, 0.4) 75%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.4) 25%, rgba(255, 255, 255, 0.4) 75%, rgba(255, 255, 255, 0) 100%);
}

.top-concept__ttl {
  text-align: center;
}
@media (min-width: 751px) {
  .top-concept__ttl {
    margin-bottom: 34px;
  }
}
@media (max-width: 750px) {
  .top-concept__ttl {
    width: 244px;
    margin-bottom: 24px;
    margin-left: 3px;
  }
}

.top-concept__txt {
  text-align: center;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-weight: bold;
  line-height: 2;
}
@media (min-width: 751px) {
  .top-concept__txt {
    margin-bottom: 34px;
    font-size: 20px;
  }
}
@media (max-width: 750px) {
  .top-concept__txt {
    margin-bottom: 44px;
    font-size: 16px;
  }
}

/* 表示アニメーション */
.top-concept__ttl {
  overflow: hidden;
}

.top-concept__txtIn,
.top-concept__btn {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.6s, -webkit-transform 0.7s;
  transition: opacity 0.6s, -webkit-transform 0.7s;
  transition: transform 0.7s, opacity 0.6s;
  transition: transform 0.7s, opacity 0.6s, -webkit-transform 0.7s;
}

.top-concept__txtIn {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.top-concept__btn {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.top-concept__ttl img {
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.top-concept__in.is-show .top-concept__ttl img {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.top-concept__in.is-show .top-concept__txtIn,
.top-concept__in.is-show .top-concept__btn {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

/*
  トップページ - 事業紹介
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.top-biz {
  position: relative;
  z-index: 10;
}
@media (min-width: 751px) {
  .top-biz {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 750px) {
  .top-biz {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.top-bizIn {
  position: relative;
  z-index: 10;
}

.top-bizEn {
  border-bottom: 1px solid #dbe1ea;
}
@media (min-width: 751px) {
  .top-bizEn {
    padding: 0 0 36px 5.5636896047vw;
    margin: 0 24px 46px;
  }
}
@media (max-width: 750px) {
  .top-bizEn {
    padding-bottom: 28px;
    margin: 0 12px 30px;
  }
}

.top-bizEn span {
  color: #dbe1ea;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.top-bizEn__first {
  color: #000000;;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 0.9;
  letter-spacing: -0.06em;
}
@media (min-width: 751px) {
  .top-bizEn__first {
    font-size: 50px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .top-bizEn__first {
    font-size: 110px;
  }
}
@media (max-width: 750px) {
  .top-bizEn__first {
    font-size: 60px;
  }

  .top-concept {
    padding-bottom: 15vh;
  }
}

.top-bizEn__first::after {
  content: "";
  position: relative;
  display: inline-block;
  background: #dbe1ea;
}
@media (min-width: 751px) {
  .top-bizEn__first::after {
    bottom: 36px;
    left: 12px;
    width: 108px;
    height: 4px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .top-bizEn__first::after {
    bottom: 26px;
  }
}
@media (max-width: 750px) {
  .top-bizEn__first::after {
    bottom: 14px;
    left: 10px;
    width: 50px;
    height: 2px;
  }
}

.top-bizEn__second {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #dbe1ea;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media (min-width: 751px) {
  .top-bizEn__second {
    padding-left: 34px;
  }
}
@media (max-width: 750px) {
  .top-bizEn__second {
    padding-left: 10px;
  }
}

.top-bizEn__first-num,
.top-bizEn__second-num {
  position: relative;
}
@media (min-width: 751px) {
  .top-bizEn__first-num,
  .top-bizEn__second-num {
    top: 11px;
    font-size: 18px;
  }
}
@media (max-width: 750px) {
  .top-bizEn__first-num,
  .top-bizEn__second-num {
    top: 2px;
    font-size: 12px;
  }
}

.top-bizEn__second-txt {
  line-height: 0.9;
  letter-spacing: -0.06em;
}
@media (min-width: 751px) {
  .top-bizEn__second-txt {
    font-size: 150px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .top-bizEn__second-txt {
    font-size: 110px;
  }
}
@media (max-width: 750px) {
  .top-bizEn__second-txt {
    font-size: 60px;
  }
}

.top-bizHead {
  position: relative;
  z-index: 11;
}
@media (min-width: 751px) {
  .top-bizHead {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: 11.420204978vw;
  }
}
@media (max-width: 750px) {
  .top-bizHead {
    max-width: 1192px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 6px;
  }
}
@media (max-width: 750px) and (min-width: 751px) {
  .top-bizHead {
    width: calc(100% - 40px);
  }
}
@media (max-width: 750px) and (max-width: 750px) {
  .top-bizHead {
    width: calc(100% - 48px);
  }
}

.top-bizHead__lead {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .top-bizHead__lead {
    margin-left: 54px;
  }
}
@media (max-width: 750px) {
  .top-bizHead__lead {
    margin-bottom: 26px;
  }
}

/* 図形 */
.top-bizConts {
  position: relative;
}
@media (min-width: 1025px) {
  .top-bizConts {
    margin-top: -4.6852122987vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .top-bizConts {
    margin-top: 1.5625vw;
  }
}

.top-bizChartCircle {
  position: absolute;
  border-radius: 50%;
}
@media (min-width: 751px) {
  .top-bizChartCircle {
    width: 21.9619326501vw;
    height: 21.9619326501vw;
  }
}
@media (max-width: 750px) {
  .top-bizChartCircle {
    width: 36.5333333333vw;
    height: 36.5333333333vw;
  }
}

@media (min-width: 751px) {
  .top-bizChartCircle.-no1 {
    top: 13.2503660322vw;
    left: 38.9458272328vw;
  }
}
@media (max-width: 750px) {
  .top-bizChartCircle.-no1 {
    top: 20vw;
    left: 31.7333333333vw;
  }
}

@media (min-width: 751px) {
  .top-bizChartCircle.-no2 {
    top: 26.5739385066vw;
    left: 56.4421669107vw;
  }
}
@media (max-width: 750px) {
  .top-bizChartCircle.-no2 {
    top: 42.1333333333vw;
    left: 60.8vw;
  }
}

@media (min-width: 751px) {
  .top-bizChartCircle.-no3 {
    top: 47.5109809663vw;
    left: 49.9267935578vw;
  }
}
@media (max-width: 750px) {
  .top-bizChartCircle.-no3 {
    top: 76.8vw;
    left: 49.8666666667vw;
  }
}

@media (min-width: 751px) {
  .top-bizChartCircle.-no4 {
    top: 47.5109809663vw;
    left: 28.0380673499vw;
  }
}
@media (max-width: 750px) {
  .top-bizChartCircle.-no4 {
    top: 76.8vw;
    left: 13.3333333333vw;
  }
}

@media (min-width: 751px) {
  .top-bizChartCircle.-no5 {
    top: 26.5739385066vw;
    left: 21.5226939971vw;
  }
}
@media (max-width: 750px) {
  .top-bizChartCircle.-no5 {
    top: 42.1333333333vw;
    left: 2.9333333333vw;
  }
}

.top-bizChartCircle__conts {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 50%;
  overflow: hidden;
}
@media (min-width: 751px) {
  .top-bizChartCircle__conts {
    width: 21.9619326501vw;
    height: 21.9619326501vw;
  }
}

@media (min-width: 751px) {
  .top-bizChartCircle__txts {
    padding-top: 4.0995607613vw;
    margin-bottom: 3.074670571vw;
  }
}
@media (max-width: 750px) {
  .top-bizChartCircle__txts {
    padding-top: 4vw;
    margin-bottom: 2.4vw;
  }
}

.top-bizChartCircle__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
}
@media (min-width: 751px) {
  .top-bizChartCircle__ttl {
    font-size: 1.317715959vw;
  }
}
@media (max-width: 750px) {
  .top-bizChartCircle__ttl {
    margin-bottom: 1.3333333333vw;
    font-size: 3.2vw;
    line-height: 1.1;
  }
}

.top-bizChartCircle__en {
  color: #0087c6;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media (min-width: 751px) {
  .top-bizChartCircle__en {
    font-size: 0.7320644217vw;
  }
}
@media (max-width: 750px) {
  .top-bizChartCircle__en {
    font-size: 2.1333333333vw;
    line-height: 1;
  }
}

.top-bizChartPentagon {
  position: absolute;
  -webkit-transition: -webkit-clip-path 0.3s;
  transition: -webkit-clip-path 0.3s;
  transition: clip-path 0.3s;
  transition: clip-path 0.3s, -webkit-clip-path 0.3s;
}
@media (min-width: 751px) {
  .top-bizChartPentagon {
    top: 23.4992679356vw;
    left: 30.5270863836vw;
    width: 38.7994143485vw;
    height: 37.0424597365vw;
    padding: 3.3674963397vw 3.513909224vw;
    -webkit-clip-path: polygon(50% 6%, 93% 39%, 77% 92%, 23% 92%, 7% 39%);
            clip-path: polygon(50% 6%, 93% 39%, 77% 92%, 23% 92%, 7% 39%);
  }
}
@media (max-width: 750px) {
  .top-bizChartPentagon {
    top: 32.08vw;
    left: 12.4vw;
    width: 75.5733333333vw;
    height: 72.8vw;
    padding: 8.72vw 8.4vw;
    -webkit-clip-path: polygon(50% 9%, 92% 40%, 76% 91%, 24% 91%, 8% 40%);
            clip-path: polygon(50% 9%, 92% 40%, 76% 91%, 24% 91%, 8% 40%);
  }
}

.top-bizChartPentagon__conts {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 50%;
  overflow: hidden;
}

@media (min-width: 751px) {
  .top-bizChartPentagon__txts {
    padding-top: 4.831625183vw;
    margin-bottom: 1.317715959vw;
  }
}
@media (max-width: 750px) {
  .top-bizChartPentagon__txts {
    padding-top: 3.7333333333vw;
    margin-bottom: 3.2vw;
  }
}

.top-bizChartPentagon__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
}
@media (min-width: 751px) {
  .top-bizChartPentagon__ttl {
    font-size: 1.6105417277vw;
  }
}
@media (max-width: 750px) {
  .top-bizChartPentagon__ttl {
    font-size: 3.7333333333vw;
  }
}

.top-bizChartPentagon__en {
  color: #0087c6;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media (min-width: 751px) {
  .top-bizChartPentagon__en {
    font-size: 1.0248901903vw;
  }
}
@media (max-width: 750px) {
  .top-bizChartPentagon__en {
    font-size: 2.6666666667vw;
  }
}

/* ホバー時 */
.top-bizChartCircle__bg,
.top-bizChartPentagon__bg {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.top-bizChartCircle:hover .top-bizChartCircle__bg,
.top-bizChartPentagon:hover .top-bizChartPentagon__bg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media (min-width: 751px) {
  .top-bizChartPentagon:hover {
    -webkit-clip-path: polygon(50% 1%, 98% 39%, 79% 97%, 20% 97%, 2% 38%);
            clip-path: polygon(50% 1%, 98% 39%, 79% 97%, 20% 97%, 2% 38%);
  }
}
@media (max-width: 750px) {
  .top-bizChartPentagon:hover {
    -webkit-clip-path: polygon(50% 4%, 96% 39%, 79% 95%, 21% 95%, 4% 39%);
            clip-path: polygon(50% 4%, 96% 39%, 79% 95%, 21% 95%, 4% 39%);
  }
}

/* モーダル */
.top-bizModal {
  position: absolute;
  z-index: 10000;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (min-width: 751px) {
  .top-bizModal {
    top: 12.6647144949vw;
    left: 18.5944363104vw;
    width: 65.1537335286vw;
    height: 65.1537335286vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .top-bizModal {
    top: 0;
    left: 3vw;
    width: 94vw;
    height: 94vw;
  }
}
@media (max-width: 750px) {
  .top-bizModal {
    top: -13.3333333333vw;
    left: -50vw;
    width: 200vw;
    height: 200vw;
  }
}

.top-bizModal__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: top 0.3s, left 0.3s, -webkit-transform 0.3s;
  transition: top 0.3s, left 0.3s, -webkit-transform 0.3s;
  transition: top 0.3s, left 0.3s, transform 0.3s;
  transition: top 0.3s, left 0.3s, transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: scale(0);
          transform: scale(0);
  z-index: 2;
  border-radius: 50%;
  background: -webkit-radial-gradient(103% 21%, 79% 80%, rgba(255, 255, 255, 0.76) 14%, rgba(145, 125, 125, 0.095) 666%, rgba(255, 255, 255, 0.76) 100%);
  background: radial-gradient(79% 80% at 103% 21%, rgba(255, 255, 255, 0.76) 14%, rgba(145, 125, 125, 0.095) 666%, rgba(255, 255, 255, 0.76) 100%);
  -webkit-box-shadow: 0px 4px 44px 20px rgba(27, 95, 133, 0.1);
          box-shadow: 0px 4px 44px 20px rgba(27, 95, 133, 0.1);
  background: #f7f7f7;
}

@media (min-width: 751px) {
  .top-bizModal__bg-no01 {
    top: -23vw;
    left: 0;
  }
}
@media (max-width: 750px) {
  .top-bizModal__bg-no01 {
    top: -48vw;
    left: 0;
  }
}

@media (min-width: 751px) {
  .top-bizModal__bg-no02 {
    top: -7.3206442167vw;
    left: 16.2518301611vw;
  }
}
@media (max-width: 750px) {
  .top-bizModal__bg-no02 {
    top: -26vw;
    left: 29.2vw;
  }
}

@media (min-width: 751px) {
  .top-bizModal__bg-no03 {
    top: 14.6412884334vw;
    left: 9.5168374817vw;
  }
}
@media (max-width: 750px) {
  .top-bizModal__bg-no03 {
    top: 9.7vw;
    left: 17.8vw;
  }
}

@media (min-width: 751px) {
  .top-bizModal__bg-no04 {
    top: 14.6412884334vw;
    left: -12.1522693997vw;
  }
}
@media (max-width: 750px) {
  .top-bizModal__bg-no04 {
    top: 9.7vw;
    left: -18.8vw;
  }
}

@media (min-width: 751px) {
  .top-bizModal__bg-no05 {
    top: -7.3206442167vw;
    left: -18.7408491947vw;
  }
}
@media (max-width: 750px) {
  .top-bizModal__bg-no05 {
    top: -26vw;
    left: -29vw;
  }
}

@media (min-width: 751px) {
  .top-bizModal__bg-no06 {
    top: -4vw;
    left: 0;
  }
}
@media (max-width: 750px) {
  .top-bizModal__bg-no06 {
    top: -15vw;
    left: 0;
  }
}

.top-bizModal__conts {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
@media (min-width: 751px) {
  .top-bizModal__conts {
    width: 100%;
  }
}
@media (max-width: 750px) {
  .top-bizModal__conts {
    width: 100vw;
    padding: 0 24px;
    margin: auto;
  }
}

@media (min-width: 751px) {
  .top-bizModal__txts {
    margin-bottom: 15px;
  }
}

.top-bizModal__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  color: #434d5c;
  text-align: center;
  line-height: 1;
}
@media (min-width: 751px) {
  .top-bizModal__ttl {
    margin-bottom: 0.5856515373vw;
    font-size: 1.4641288433vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .top-bizModal__ttl {
    font-size: 1.953125vw;
  }
}
@media (max-width: 750px) {
  .top-bizModal__ttl {
    margin-bottom: 1.6vw;
    font-size: 5.3333333333vw;
  }
}

.top-bizModal__en {
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #0087c6;
  text-align: center;
}
@media (min-width: 751px) {
  .top-bizModal__en {
    font-size: 0.878477306vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .top-bizModal__en {
    font-size: 1.171875vw;
  }
}
@media (max-width: 750px) {
  .top-bizModal__en {
    font-size: 3.2vw;
  }
}

.top-bizModal__icon {
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 751px) {
  .top-bizModal__icon {
    width: 8.4187408492vw;
    margin-bottom: 1.317715959vw;
  }
}
@media (max-width: 750px) {
  .top-bizModal__icon {
    width: 20vw;
    margin-bottom: 2.6666666667vw;
  }
}

.top-bizModal__icon img {
  width: 100%;
  max-width: none;
}

.top-bizModal__lead {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  letter-spacing: -0.05em;
}
@media (min-width: 751px) {
  .top-bizModal__lead {
    margin-bottom: 1.0248901903vw;
    font-size: 1.9033674963vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .top-bizModal__lead {
    margin-bottom: 1.3671875vw;
    font-size: 2.5390625vw;
  }
}
@media (max-width: 750px) {
  .top-bizModal__lead {
    margin-bottom: 2.6666666667vw;
    font-size: 4.8vw;
  }
}

.top-bizModal__txt {
  margin-right: auto;
  margin-left: auto;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .top-bizModal__txt {
    width: 40.5563689605vw;
    margin-bottom: 1.4641288433vw;
    font-size: 1.0248901903vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .top-bizModal__txt {
    min-width: 554px;
    margin-bottom: 1.953125vw;
    font-size: 14px;
  }
}
@media (max-width: 750px) {
  .top-bizModal__txt {
    margin-bottom: 4.2666666667vw;
    font-size: 3.7333333333vw;
  }
}

.top-bizModalMenu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 751px) {
  .top-bizModalMenu {
    width: 40.5563689605vw;
    margin-bottom: 1.8301610542vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .top-bizModalMenu {
    min-width: 554px;
  }
}
@media (max-width: 750px) {
  .top-bizModalMenu {
    margin-bottom: 8.5333333333vw;
  }
}

.top-bizModalMenu__item {
  border-bottom: 1px solid #dbe1ea;
}
@media (min-width: 751px) {
  .top-bizModalMenu__item {
    width: 33.33%;
  }
}
@media (max-width: 750px) {
  .top-bizModalMenu__item {
    width: 50%;
  }
}

@media (min-width: 751px) {
  .top-bizModalMenu__item:nth-child(-n+3) {
    border-top: 1px solid #dbe1ea;
  }
}

@media (max-width: 750px) {
  .top-bizModalMenu__item:nth-child(-n+2) {
    border-top: 1px solid #dbe1ea;
  }
}

@media (min-width: 751px) {
  .top-bizModalMenu__item:not(:nth-child(3n)) {
    border-right: 1px solid #dbe1ea;
  }
}

@media (max-width: 750px) {
  .top-bizModalMenu__item:not(:nth-child(2n)) {
    border-right: 1px solid #dbe1ea;
  }
}

.top-bizModalMenu__item:last-child {
  border-right: none !important;
}

.top-bizModalMenu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 751px) {
  .top-bizModalMenu__link {
    padding: 23px 8px 22px 10px;
  }
}
@media (max-width: 750px) {
  .top-bizModalMenu__link {
    height: 13.3333333333vw;
    padding: 0.2666666667vw 3.7333333333vw 0 2.6666666667vw;
  }
}

.top-bizModalMenu__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.09em;
}
@media (min-width: 751px) {
  .top-bizModalMenu__ttl {
    font-size: 1.0248901903vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .top-bizModalMenu__ttl {
    font-size: 1.5625vw;
  }
}
@media (max-width: 750px) {
  .top-bizModalMenu__ttl {
    font-size: 3.7333333333vw;
  }
}

.top-bizModalMenu__point {
  margin-left: auto;
}

.top-bizModal__overlay {
  width: 50px;
  height: 50px;
}

.top-bizModal__overlay.is-show {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
}

.top-bizModal__close {
  padding-right: 24px;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #0171ff;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.top-bizModal__close::before, .top-bizModal__close::after {
  content: "";
  position: absolute;
  right: 20px;
  width: 1px;
  height: 13px;
  background: #3d424b;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.top-bizModal__close::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.top-bizModal__close.is-show::before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media (min-width: 751px) {
  .top-bizModal__close {
    margin-top: 3.953147877vw;
    margin-bottom: -3.953147877vw;
  }
}
@media (max-width: 750px) {
  .top-bizModal__close {
    margin-top: 12vw;
    margin-bottom: -3.2942898975vw;
  }
}
.top-bizModal__close::before, .top-bizModal__close::after {
  right: 10px;
  height: 16px;
  background: #0171ff;
}
.top-bizModal__close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.top-bizModal__close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* モーダル 表示時*/
.top-bizModal.is-show {
  opacity: 1;
  pointer-events: auto;
}
.top-bizModal.is-show .top-bizModal__bg {
  top: 0;
  left: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.top-bizModal.is-show .top-bizModal__conts {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

/* 表示アニメーション */
.top-bizChart {
  opacity: 0;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
}

.top-bizChartCircle__conts,
.top-bizChartPentagon__conts {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.6s;
  transition: opacity 0.5s, -webkit-transform 0.6s;
  transition: transform 0.6s, opacity 0.5s;
  transition: transform 0.6s, opacity 0.5s, -webkit-transform 0.6s;
}

.top-bizChartCircle:nth-child(1) .top-bizChartCircle__conts {
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

.top-bizChartCircle:nth-child(2) .top-bizChartCircle__conts {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

.top-bizChartCircle:nth-child(3) .top-bizChartCircle__conts {
  -webkit-transition-delay: 1.7s;
          transition-delay: 1.7s;
}

.top-bizChartCircle:nth-child(4) .top-bizChartCircle__conts {
  -webkit-transition-delay: 1.9s;
          transition-delay: 1.9s;
}

.top-bizChartCircle:nth-child(5) .top-bizChartCircle__conts {
  -webkit-transition-delay: 2.1s;
          transition-delay: 2.1s;
}

.top-bizChartPentagon__conts {
  -webkit-transition-delay: 2.3s;
          transition-delay: 2.3s;
}

.top-bizChart.is-anime,
.top-bizChart.is-anime .top-bizChartCircle__conts,
.top-bizChart.is-anime .top-bizChartPentagon__conts {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

/* フリーランスの方へ */
@media (min-width: 751px) {
  .top-freelanceBtn {
    margin: 24px 0 0 17px;
  }
}
@media (max-width: 750px) {
  .top-freelanceBtn {
    margin: 24px 0 0 20px;
  }
}

.top-freelanceBtn__link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 0;
}

.top-freelanceBtn__txt {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
}
@media (min-width: 751px) {
  .top-freelanceBtn__txt {
    margin-right: 11px;
    font-size: 16px;
  }
}
@media (max-width: 750px) {
  .top-freelanceBtn__txt {
    margin-right: 16px;
  }
}

.top-freelanceModal {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1000;
  overflow-y: scroll;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.top-freelanceModalIn {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
}
@media (min-width: 751px) {
  .top-freelanceModalIn {
    padding: 110px 0;
  }
}
@media (max-width: 750px) {
  .top-freelanceModalIn {
    padding: 26px 0;
  }
}

.top-freelanceModalBg {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #000000;
  opacity: 0.5;
}

.top-freelanceModalConts {
  position: relative;
  background: #fff;
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}
@media (min-width: 751px) {
  .top-freelanceModalConts {
    width: 82.4304538799vw;
    padding: 48px 0 58px;
  }
}
@media (max-width: 750px) {
  .top-freelanceModalConts {
    width: calc(100% - 48px);
    padding: 64px 0 50px;
  }
}

.top-freelanceModalClose {
  position: absolute;
}
@media (min-width: 751px) {
  .top-freelanceModalClose {
    top: 40px;
    right: 44px;
  }
}
@media (max-width: 750px) {
  .top-freelanceModalClose {
    top: 20px;
    right: 20px;
  }
}

.top-freelanceModalTtl {
  text-align: center;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
}
@media (min-width: 751px) {
  .top-freelanceModalTtl {
    margin-bottom: 90px;
    font-size: 24px;
  }
}
@media (max-width: 750px) {
  .top-freelanceModalTtl {
    margin-bottom: 20px;
    font-size: 20px;
  }
}

.top-freelanceModalListWrap {
  margin-top: 0;
  margin-bottom: 0;
}

.top-freelanceModalList__conts {
  min-height: auto;
}

.top-freelanceModalList__ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 751px) {
  .top-freelanceModalList__ttl {
    font-size: 20px;
  }
}
@media (max-width: 750px) {
  .top-freelanceModalList__ttl {
    font-size: 16px;
  }
}

@media (min-width: 751px) {
  .top-freelanceModalList__item {
    padding: 20px 0;
  }
}
@media (max-width: 750px) {
  .top-freelanceModalList__item {
    padding: 30px 0 20px;
  }
}

@media (max-width: 750px) {
  .top-freelanceModalList__thumb {
    margin-bottom: 32px;
  }
}

.top-freelanceModalList__thumb img {
  width: 100%;
  max-width: 243px;
}

@media (min-width: 751px) {
  .top-freelanceModalList__texts {
    padding-top: 22px;
    padding-bottom: 16px;
  }
}
@media (max-width: 750px) {
  .top-freelanceModalList__texts {
    padding-bottom: 0;
  }
}

.top-freelanceModalList__text {
  font-size: 14px;
}
@media (max-width: 750px) {
  .top-freelanceModalList__text {
    margin-bottom: 10px;
  }
}

.top-freelanceModalList__btn {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}
@media (max-width: 750px) {
  .top-freelanceModalList__btn {
    margin-left: auto;
  }
}

/* モーダル表示 */
.top-freelanceModal.is-show {
  opacity: 1;
  pointer-events: auto;
}
.top-freelanceModal.is-show .top-freelanceModalConts {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
  -webkit-transition: opacity 0.3s 0.2s, -webkit-transform 0.3s 0.2s;
  transition: opacity 0.3s 0.2s, -webkit-transform 0.3s 0.2s;
  transition: transform 0.3s 0.2s, opacity 0.3s 0.2s;
  transition: transform 0.3s 0.2s, opacity 0.3s 0.2s, -webkit-transform 0.3s 0.2s;
}

/*
  トップページ - IR
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.top-ir {
  position: relative;
  z-index: 10;
  background: #f7f7f7;
}
@media (min-width: 751px) {
  .top-ir {
    padding: 0 0 120px;
  }
}
@media (max-width: 750px) {
  .top-ir {
    padding: 50px 0 90px;
  }
}

.top-enHead-ir {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (min-width: 1025px) {
  .top-enHead-ir {
    margin-right: 15.3733528551vw;
  }
}
@media (max-width: 1024px) {
  .top-enHead-ir {
    margin-right: 10vw;
    margin-bottom: 36px;
  }
}
@media (max-width: 750px) {
  .top-enHead-ir {
    margin-right: 2.6666666667vw;
  }
}

@media (min-width: 751px) {
  .top-irHead {
    margin: -52px 0 75px 15.3733528551vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .top-irHead {
    margin-top: 0;
  }
}
@media (max-width: 750px) {
  .top-irHead {
    margin-left: 5.3333333333vw;
    margin-bottom: 86px;
  }
}

.top-irMenu {
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 751px) {
  .top-irMenu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 82.4304538799vw;
  }
}
@media (max-width: 750px) {
  .top-irMenu {
    width: calc(100% - 48px);
  }
}

.top-irMenu__item {
  border-bottom: 1px solid #dbe1ea;
}
@media (min-width: 751px) {
  .top-irMenu__item {
    width: 50%;
  }
}

@media (min-width: 751px) {
  .top-irMenu__item:nth-child(-n+2) {
    border-top: 1px solid #dbe1ea;
  }
}

@media (min-width: 751px) {
  .top-irMenu__item:nth-child(odd) {
    border-right: 1px solid #dbe1ea;
  }
}

@media (max-width: 750px) {
  .top-irMenu__item:first-child {
    border-top: 1px solid #dbe1ea;
  }
}

.top-irMenu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media (min-width: 751px) {
  .top-irMenu__link {
    height: 120px;
    padding: 0 44px 0 65px;
  }
}
@media (max-width: 750px) {
  .top-irMenu__link {
    padding: 18px 14px 17px;
  }
}

.top-irMenu__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 18px;
}

/* 表示アニメーション */
.top-irMenu__link {
  opacity: 0;
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.6s;
  transition: opacity 0.5s, -webkit-transform 0.6s;
  transition: transform 0.6s, opacity 0.5s;
  transition: transform 0.6s, opacity 0.5s, -webkit-transform 0.6s;
}

.top-irMenu.is-anime .top-irMenu__link {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.top-irMenu.is-anime .top-irMenu__item:nth-child(1) .top-irMenu__link {
  -webkit-transition-delay: 0.2s !important;
          transition-delay: 0.2s !important;
}

.top-irMenu.is-anime .top-irMenu__item:nth-child(2) .top-irMenu__link {
  -webkit-transition-delay: 0.4s !important;
          transition-delay: 0.4s !important;
}

.top-irMenu.is-anime .top-irMenu__item:nth-child(3) .top-irMenu__link {
  -webkit-transition-delay: 0.6s !important;
          transition-delay: 0.6s !important;
}

.top-irMenu.is-anime .top-irMenu__item:nth-child(4) .top-irMenu__link {
  -webkit-transition-delay: 0.8s !important;
          transition-delay: 0.8s !important;
}

.top-irMenu.is-anime .top-irMenu__item:nth-child(5) .top-irMenu__link {
  -webkit-transition-delay: 1s !important;
          transition-delay: 1s !important;
}

.top-irMenu.is-anime .top-irMenu__item:nth-child(6) .top-irMenu__link {
  -webkit-transition-delay: 1.2s !important;
          transition-delay: 1.2s !important;
}

.top-irMenu.is-anime .top-irMenu__item:nth-child(7) .top-irMenu__link {
  -webkit-transition-delay: 1.4s !important;
          transition-delay: 1.4s !important;
}

.top-irMenu.is-anime .top-irMenu__item:nth-child(8) .top-irMenu__link {
  -webkit-transition-delay: 1.6s !important;
          transition-delay: 1.6s !important;
}

.top-irMenu.is-anime .top-irMenu__item:nth-child(9) .top-irMenu__link {
  -webkit-transition-delay: 1.8s !important;
          transition-delay: 1.8s !important;
}

.top-irMenu.is-anime .top-irMenu__item:nth-child(10) .top-irMenu__link {
  -webkit-transition-delay: 2s !important;
          transition-delay: 2s !important;
}

.top-irMenu.is-anime .top-irMenu__item:nth-child(11) .top-irMenu__link {
  -webkit-transition-delay: 2.2s !important;
          transition-delay: 2.2s !important;
}

.top-irMenu.is-anime .top-irMenu__item:nth-child(12) .top-irMenu__link {
  -webkit-transition-delay: 2.4s !important;
          transition-delay: 2.4s !important;
}

.top-irMenu.is-anime .top-irMenu__item:nth-child(13) .top-irMenu__link {
  -webkit-transition-delay: 2.6s !important;
          transition-delay: 2.6s !important;
}

.top-irMenu.is-anime .top-irMenu__item:nth-child(14) .top-irMenu__link {
  -webkit-transition-delay: 2.8s !important;
          transition-delay: 2.8s !important;
}

.top-irMenu.is-anime .top-irMenu__item:nth-child(15) .top-irMenu__link {
  -webkit-transition-delay: 3s !important;
          transition-delay: 3s !important;
}

/*
  トップページ - 採用情報
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.top-recruit {
  position: relative;
  z-index: 10;
  background: #f7f7f7;
}

.top-recruit__in {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 750px) {
  .top-recruit__in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-recruit__imgs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 751px) {
  .top-recruit__ellipse {
    position: absolute;
  }
}
@media (max-width: 750px) {
  .top-recruit__ellipse {
    position: relative;
    height: 186.6666666667vw;
  }
}

.top-recruit__ellipse img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-recruitBnrWrap {
  position: absolute;
}
@media (min-width: 751px) {
  .top-recruitBnrWrap {
    top: 22vw;
    right: 8.78477306vw;
    z-index: 2;
    width: 41.9472913616vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .top-recruitBnrWrap {
    right: 2.9282576867vw;
  }
}
@media (max-width: 750px) {
  .top-recruitBnrWrap {
    top: calc(17vw + 235px + 30px);
    left: 24px;
    width: calc(100% - 48px);
  }
}

@media (min-width: 751px) {
  .top-recruitBnr + .top-recruitBnr {
    margin-top: 14px;
  }
}
@media (max-width: 750px) {
  .top-recruitBnr + .top-recruitBnr {
    margin-top: 8px;
  }
}

.top-recruitBnr a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.top-recruitBnr a:hover {
  opacity: 0.8;
}

@media (min-width: 751px) {
  .top-recruit__eye {
    position: relative;
  }
}
@media (max-width: 750px) {
  .top-recruit__eye {
    position: absolute;
  }
}

.top-recruitConts {
  position: absolute;
  z-index: 2;
}
@media (min-width: 751px) {
  .top-recruitConts {
    top: 21vw;
    left: 8.1991215227vw;
  }
}
@media (max-width: 750px) {
  .top-recruitConts {
    top: 21.3333333333vw;
    left: 28px;
  }
}

@media (min-width: 751px) {
  .top-enHead-recruit {
    margin-left: -36px;
    margin-bottom: 34px;
  }
}
@media (max-width: 750px) {
  .top-enHead-recruit {
    margin-left: -18px;
    margin-bottom: 30px;
  }
}

@media (max-width: 750px) {
  .top-recruitHead__mid {
    margin-bottom: 32px;
  }
}

/*
  トップページ - ニュース
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.top-news {
  position: relative;
  z-index: 10;
  background: #f7f7f7;
}
@media (min-width: 751px) {
  .top-news {
    padding: 70px 0 90px;
  }
}
@media (max-width: 750px) {
  .top-news {
    padding: 90px 0 124px;
  }
}

@media (min-width: 751px) {
  .top-newsIn {
    margin-left: 9vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .top-newsIn {
    margin-left: 4vw;
  }
}

/* ヘッダー */
.top-newsHead {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (min-width: 751px) {
  .top-newsHead {
    margin-right: 5.4904831625vw;
    margin-bottom: 100px;
  }
}
@media (max-width: 750px) {
  .top-newsHead {
    margin-bottom: 56px;
  }
}

@media (min-width: 751px) {
  .top-enHead-news {
    margin-bottom: 12px;
  }
}
@media (max-width: 750px) {
  .top-enHead-news {
    margin-bottom: 8px;
  }
}

@media (min-width: 751px) {
  .top-secHead-news {
    margin-right: 104px;
  }
}
@media (max-width: 750px) {
  .top-secHead-news {
    margin-right: 46px;
  }
}

.top-secHead-news .top-secHead__sub {
  margin-bottom: 0;
}

/* サイドバー */
@media (min-width: 751px) {
  .top-newsSub {
    margin-right: 6.2957540264vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .top-newsSub {
    margin-right: 32px;
  }
}

@media (min-width: 751px) {
  .top-newsSwitch {
    padding: 0 5px;
    margin-bottom: 50px;
  }
}

/* ボタン */
@media (max-width: 750px) {
  .top-newsBtn {
    margin-left: auto;
  }
}

/* 一覧 */
.top-newsList {
  display: none;
}
@media (max-width: 750px) {
  .top-newsList {
    margin-bottom: 40px;
  }
}

.top-newsList.is-show {
  display: block;
}

.top-newsList__menuLink {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

/* ニュース一覧 表示アニメーション */
.top-newsList.is-anime .zoomOut-anime > * {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.top-newsList.is-anime .slideUp-anime {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.top-newsList__item:nth-child(1) .zoomOut-anime,
.top-newsList__item:nth-child(1) .slideUp-anime {
  -webkit-transition-delay: 0.25s !important;
          transition-delay: 0.25s !important;
}

.top-newsList__item:nth-child(2) .zoomOut-anime,
.top-newsList__item:nth-child(2) .slideUp-anime {
  -webkit-transition-delay: 0.5s !important;
          transition-delay: 0.5s !important;
}

.top-newsList__item:nth-child(3) .zoomOut-anime,
.top-newsList__item:nth-child(3) .slideUp-anime {
  -webkit-transition-delay: 0.75s !important;
          transition-delay: 0.75s !important;
}

.top-newsList__item:nth-child(4) .zoomOut-anime,
.top-newsList__item:nth-child(4) .slideUp-anime {
  -webkit-transition-delay: 1s !important;
          transition-delay: 1s !important;
}

.top-newsList__item:nth-child(5) .zoomOut-anime,
.top-newsList__item:nth-child(5) .slideUp-anime {
  -webkit-transition-delay: 1.25s !important;
          transition-delay: 1.25s !important;
}

/*
  トップページ - イベント・セミナー
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.top-event {
  position: relative;
  z-index: 10;
}
@media (min-width: 751px) {
  .top-event {
    padding: 0px;
  }
}

.top-eventIn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
}
@media (min-width: 1025px) {
  .top-eventIn {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: calc(100% - 40px);
    max-width: 1100px;
  }
}
@media (max-width: 1024px) {
  .top-eventIn {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .top-eventIn {
    width: 80vw;
  }
}
@media (max-width: 750px) {
  .top-eventIn {
    position: relative;
    max-width: 500px;
    padding-bottom: 75px;
    margin-bottom: 75px;
    background: #f7f7f7;
  }
}

.top-event__wave {
  position: absolute;
}
@media (min-width: 751px) {
  .top-event__wave {
    max-width: 1230px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .top-event__wave {
    left: -20vw;
    bottom: -10vw;
    width: 130vw;
  }
}
@media (max-width: 750px) and (min-width: 550px) {
  .top-event__wave {
    left: -40vw;
    bottom: -52px;
    width: 160vw;
  }
}
@media (max-width: 549px) {
  .top-event__wave {
    left: -50vw;
    bottom: -75px;
    width: 220vw;
  }
}

.top-eventConts {
  position: relative;
  z-index: 2;
}
@media (max-width: 750px) {
  .top-eventConts {
    max-width: 460px;
    margin-bottom: 25px;
  }
}

@media (min-width: 751px) {
  .top-eventHead {
    margin-left: 94px;
  }
}
@media (max-width: 750px) {
  .top-eventHead {
    margin-right: 20px;
    margin-left: 20px;
  }
}
@media (min-width: 751px) {
  .top-eventHead .top-secHead__sub {
    margin-bottom: 40px;
  }
}
.top-eventHead .top-secHead__txt {
  line-height: 1.8;
}
@media (min-width: 751px) {
  .top-eventHead .top-secHead__txt {
    width: 410px;
  }
}
@media (max-width: 750px) {
  .top-eventHead .top-secHead__mid {
    margin-bottom: 30px;
  }
}
@media (min-width: 751px) {
  .top-eventHead .top-eventHead__mid {
    margin-bottom: 22px;
  }
}

@media (min-width: 751px) {
  .top-enHead-event {
    margin-bottom: 18px;
  }
}
@media (max-width: 750px) {
  .top-enHead-event {
    margin-bottom: 32px;
  }
}

.top-event__img {
  position: relative;
  z-index: 2;
  border-radius: 50%;
}
@media (min-width: 1025px) {
  .top-event__img {
    width: 40vw;
    height: 40vw;
    max-width: 414px;
    max-height: 414px;
    margin-right: 4.39238653vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .top-event__img {
    width: 300px;
    margin-top: -32px;
  }
}
@media (max-width: 1024px) {
  .top-event__img {
    margin-left: auto;
    margin-right: 24px;
  }
}
@media (max-width: 750px) {
  .top-event__img {
    width: 210px;
  }
}

/*
  トップページ - 2つ目のセクション
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.top-sec-second,
.top-sec-secondIn {
  position: relative;
  z-index: 10;
}

@media (min-width: 751px) {
  .top-sec-second {
    margin-top: 0px;
  }
}
@media (max-width: 750px) {
  .top-sec-second {
    padding-top: 0px;
    margin-top: 0px;
  }
}

.top-sec-secondIn {
  overflow: hidden;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  事業紹介


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/*
  事業紹介 - 共通
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
body.business .main > section {
  position: relative;
  z-index: 2;
}
@media (min-width: 751px) {
  body.business .main > section {
    margin-bottom: 200px;
  }
}
@media (max-width: 750px) {
  body.business .main > section {
    margin-bottom: 140px;
  }
}

@media (min-width: 751px) {
  .inflate-biz {
    margin-bottom: 300px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .inflate-biz {
    margin-bottom: 200px;
  }
}
@media (max-width: 750px) {
  .inflate-biz {
    margin-bottom: 100px;
  }
}

.bizTtl {
  margin: auto;
}
@media (min-width: 751px) {
  .bizTtl {
    width: 82.4304538799vw;
    max-width: 1126px;
  }
}
@media (min-width: 1367px) {
  .bizTtl {
    width: 76vw;
    max-width: none;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .bizTtl {
    width: calc(100% - 48px);
  }
}
@media (max-width: 750px) {
  .bizTtl {
    width: calc(100% - 40px);
  }
}

@media (min-width: 751px) {
  .sec-bizService .bizTtl {
    margin-bottom: 24px;
  }
}
@media (max-width: 750px) {
  .sec-bizService .bizTtl {
    margin-bottom: 60px;
  }
}

.sec-bizService .bizTtl__txt {
  margin-left: auto;
}

.bizTtl__txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #a2a8b4;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .bizTtl__txt {
    width: 37.7745241581vw;
    padding-top: 28px;
    font-size: 24px;
  }
}
@media (max-width: 750px) {
  .bizTtl__txt {
    width: 198px;
    padding-top: 16px;
    font-size: 20px;
  }
}

.bizTtl__txt::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0171ff;
  margin-right: 10px;
}

.bizTtl.-r .bizTtl__txt {
  margin-left: auto;
}

.shrink-biz {
  z-index: -1;
}

.shrink-biz::after {
  display: none;
}

.ds-link-bnr {
  margin-top: 30px;
}
@media (min-width: 751px) {
  .ds-link-bnr__link {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .ds-link-bnr__link:hover {
    opacity: 0.7;
  }
}
.ds-link-bnr__caption {
  margin-top: 8px;
  font-size: 16px;
}
@media (max-width: 750px) {
  .ds-link-bnr__caption {
    font-size: 14px;
  }
}

/*
  事業紹介 - ファーストビュー
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.biz-fv {
  position: relative;
}
@media (min-width: 751px) {
  .biz-fv {
    margin-top: 220px;
    margin-bottom: 180px;
  }
}
@media (max-width: 750px) {
  .biz-fv {
    margin-top: 164px;
    margin-bottom: 150px;
  }
}

.biz-fv__body {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
@media (min-width: 751px) {
  .biz-fv__body {
    padding-top: 190px;
  }
}
@media (max-width: 750px) {
  .biz-fv__body {
    padding-top: 120px;
  }
}

@media (min-width: 751px) {
  .biz-fv .secondLevelTopHeading {
    top: -74px;
  }
}

.biz-fvAnchor {
  position: relative;
  inset: auto;
}
@media (min-width: 751px) {
  .biz-fvAnchor {
    margin-top: -128px;
  }
}
@media (min-width: 1367px) {
  .biz-fvAnchor {
    margin-left: 6.8814055637vw;
  }
}
@media (max-width: 1366px) and (min-width: 750px) {
  .biz-fvAnchor {
    width: 340px;
    padding: 27px 38px;
    margin-left: 26px;
  }
}

@media (max-width: 1366px) and (min-width: 750px) {
  .biz-fvAnchor__link {
    font-size: 16px;
  }
}

@media (min-width: 1025px) {
  .biz-service-lead {
    min-width: 920px;
    margin-top: -45px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .biz-service-lead {
    margin-top: 80px;
  }
}
@media (max-width: 750px) {
  .biz-service-lead {
    position: relative;
    z-index: 2;
  }
}

.biz-service-lead__in {
  max-width: 570px;
}

@media (max-width: 750px) {
  .biz-service-lead__main {
    letter-spacing: -0.05em;
  }
}

/* 図形 */
.bizConts {
  position: relative;
}
@media (min-width: 751px) {
  .bizConts {
    width: 75.5490483163vw;
    padding-bottom: 200px;
    margin-top: -11.5666178624vw;
    margin-left: 2.196193265vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .bizConts {
    margin-top: -3.90625vw;
  }
}
@media (max-width: 750px) {
  .bizConts {
    margin-top: -14.9333333333vw;
  }
}

.bizChart__bg img {
  width: 100%;
}

.bizChartCircle {
  position: absolute;
  border-radius: 50%;
}
@media (min-width: 751px) {
  .bizChartCircle {
    width: 19.6193265007vw;
    height: 19.6193265007vw;
  }
}
@media (max-width: 750px) {
  .bizChartCircle {
    width: 36.5333333333vw;
    height: 36.5333333333vw;
  }
}

@media (min-width: 751px) {
  .bizChartCircle.-no1 {
    top: 12.5915080527vw;
    left: 28.1112737921vw;
  }
}
@media (max-width: 750px) {
  .bizChartCircle.-no1 {
    top: 20vw;
    left: 31.7333333333vw;
  }
}

@media (min-width: 751px) {
  .bizChartCircle.-no2 {
    top: 24.4509516837vw;
    left: 43.7774524158vw;
  }
}
@media (max-width: 750px) {
  .bizChartCircle.-no2 {
    top: 42.1333333333vw;
    left: 60.8vw;
  }
}

@media (min-width: 751px) {
  .bizChartCircle.-no3 {
    top: 43.1918008785vw;
    left: 37.9209370425vw;
  }
}
@media (max-width: 750px) {
  .bizChartCircle.-no3 {
    top: 76.8vw;
    left: 49.8666666667vw;
  }
}

@media (min-width: 751px) {
  .bizChartCircle.-no4 {
    top: 43.1918008785vw;
    left: 18.3016105417vw;
  }
}
@media (max-width: 750px) {
  .bizChartCircle.-no4 {
    top: 76.8vw;
    left: 13.3333333333vw;
  }
}

@media (min-width: 751px) {
  .bizChartCircle.-no5 {
    top: 24.4509516837vw;
    left: 12.4450951684vw;
  }
}
@media (max-width: 750px) {
  .bizChartCircle.-no5 {
    top: 42.1333333333vw;
    left: 2.9333333333vw;
  }
}

.bizChartCircle__conts {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 50%;
  overflow: hidden;
}
@media (min-width: 751px) {
  .bizChartCircle__conts {
    width: 19.6193265007vw;
    height: 19.6193265007vw;
  }
}

.bizChartCircle__txts {
  text-align: center;
}
@media (min-width: 751px) {
  .bizChartCircle__txts {
    padding-top: 4.0995607613vw;
    margin-bottom: 3.074670571vw;
  }
}
@media (max-width: 750px) {
  .bizChartCircle__txts {
    padding-top: 5.3333333333vw;
    margin-bottom: 2.4vw;
  }
}

.bizChartCircle__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media (min-width: 751px) {
  .bizChartCircle__ttl {
    font-size: 1.0980966325vw;
  }
}
@media (max-width: 750px) {
  .bizChartCircle__ttl {
    font-size: 3.4666666667vw;
    line-height: 1.1;
  }
}

.bizChartCircle__en {
  color: #0087c6;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media (min-width: 751px) {
  .bizChartCircle__en {
    font-size: 0.7320644217vw;
  }
}
@media (max-width: 750px) {
  .bizChartCircle__en {
    font-size: 2.1333333333vw;
    line-height: 1;
  }
}

.bizChartPentagon {
  position: absolute;
  -webkit-transition: -webkit-clip-path 0.3s;
  transition: -webkit-clip-path 0.3s;
  transition: clip-path 0.3s;
  transition: clip-path 0.3s, -webkit-clip-path 0.3s;
}
@media (min-width: 751px) {
  .bizChartPentagon {
    top: 20.4978038067vw;
    left: 19.4729136164vw;
    width: 36.7496339678vw;
    height: 35.4319180088vw;
    padding: 2.635431918vw;
    -webkit-clip-path: polygon(50% 6%, 93% 39%, 77% 92%, 23% 92%, 7% 39%);
            clip-path: polygon(50% 6%, 93% 39%, 77% 92%, 23% 92%, 7% 39%);
  }
}
@media (max-width: 750px) {
  .bizChartPentagon {
    top: 32.08vw;
    left: 12.4vw;
    width: 75.5733333333vw;
    height: 72.8vw;
    padding: 8.72vw 8.4vw;
    -webkit-clip-path: polygon(50% 9%, 92% 40%, 76% 91%, 24% 91%, 8% 40%);
            clip-path: polygon(50% 9%, 92% 40%, 76% 91%, 24% 91%, 8% 40%);
  }
}

.bizChartPentagon__conts {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 50%;
  overflow: hidden;
}

.bizChartPentagon__txts {
  text-align: center;
}
@media (min-width: 751px) {
  .bizChartPentagon__txts {
    padding-top: 4.831625183vw;
    margin-bottom: 1.317715959vw;
  }
}
@media (max-width: 750px) {
  .bizChartPentagon__txts {
    padding-top: 9.0666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}

.bizChartPentagon__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
}
@media (min-width: 751px) {
  .bizChartPentagon__ttl {
    font-size: 1.4641288433vw;
  }
}
@media (max-width: 750px) {
  .bizChartPentagon__ttl {
    font-size: 4vw;
    line-height: 1;
  }
}

.bizChartPentagon__en {
  color: #0087c6;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media (min-width: 751px) {
  .bizChartPentagon__en {
    font-size: 0.878477306vw;
  }
}
@media (max-width: 750px) {
  .bizChartPentagon__en {
    font-size: 2.6666666667vw;
  }
}

/* ホバー時 */
.bizChartCircle__bg,
.bizChartPentagon__bg {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.bizChartCircle:hover .bizChartCircle__bg,
.bizChartPentagon:hover .bizChartPentagon__bg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media (min-width: 751px) {
  .bizChartPentagon:hover {
    -webkit-clip-path: polygon(50% 1%, 98% 39%, 79% 97%, 20% 97%, 2% 38%);
            clip-path: polygon(50% 1%, 98% 39%, 79% 97%, 20% 97%, 2% 38%);
  }
}
@media (max-width: 750px) {
  .bizChartPentagon:hover {
    -webkit-clip-path: polygon(50% 4%, 96% 39%, 79% 95%, 21% 95%, 4% 39%);
            clip-path: polygon(50% 4%, 96% 39%, 79% 95%, 21% 95%, 4% 39%);
  }
}

/* 表示アニメーション */
.bizChart {
  opacity: 0;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
}

.bizChartCircle__conts,
.bizChartPentagon__conts {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.6s;
  transition: opacity 0.5s, -webkit-transform 0.6s;
  transition: transform 0.6s, opacity 0.5s;
  transition: transform 0.6s, opacity 0.5s, -webkit-transform 0.6s;
}

.bizChartCircle:nth-child(1) .bizChartCircle__conts {
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}

.bizChartCircle:nth-child(2) .bizChartCircle__conts {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

.bizChartCircle:nth-child(3) .bizChartCircle__conts {
  -webkit-transition-delay: 1.7s;
          transition-delay: 1.7s;
}

.bizChartCircle:nth-child(4) .bizChartCircle__conts {
  -webkit-transition-delay: 1.9s;
          transition-delay: 1.9s;
}

.bizChartCircle:nth-child(5) .bizChartCircle__conts {
  -webkit-transition-delay: 2.1s;
          transition-delay: 2.1s;
}

.bizChartPentagon__conts {
  -webkit-transition-delay: 2.3s;
          transition-delay: 2.3s;
}

.bizChart.is-anime,
.bizChart.is-anime .bizChartCircle__conts,
.bizChart.is-anime .bizChartPentagon__conts {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

/*
  事業紹介 - 提供価値
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .sec-bizValue .inflate-biz__in {
    height: 1000px;
  }
}
@media (max-width: 750px) {
  .sec-bizValue .inflate-biz__in {
    height: 500px;
  }
}

.bizValue__body {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding-bottom: 10px;
  margin-top: 32px;
}

.bizValueSliderWrap {
  position: relative;
}
@media (min-width: 751px) {
  .bizValueSliderWrap {
    padding-bottom: 300px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .bizValueSliderWrap {
    margin: 120px 0;
  }
}
@media (max-width: 750px) {
  .bizValueSliderWrap {
    padding-top: 30px;
    margin-bottom: 21.3333333333vw;
  }
}

.bizValueSlider {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #f7f7f7;
}

.bizValueSlider__list {
  position: relative;
  height: 100vh;
}
@media (max-width: 750px) {
  .bizValueSlider__list {
    background: #f7f7f7;
  }
}

.bizValueSlider__item {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 751px) {
  .bizValueSlider__item {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 82.4304538799vw;
    margin: auto;
  }
}
@media (min-width: 1367px) {
  .bizValueSlider__item {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 78vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .bizValueSlider__item {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: calc(100% - 48px);
  }
}
@media (max-width: 750px) {
  .bizValueSlider__item {
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-top: 42px;
    padding-bottom: 32px;
  }
}

@media (min-width: 1025px) {
  .bizValueSliderTxts {
    position: absolute;
    bottom: 13%;
    left: 0;
    z-index: 2;
  }
}
@media (min-width: 1367px) {
  .bizValueSliderTxts {
    bottom: auto;
    padding-top: 6vw;
    padding-bottom: 0;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .bizValueSliderTxts {
    position: absolute;
    width: 45%;
    padding-top: 20px;
  }
}
@media (max-width: 750px) {
  .bizValueSliderTxts {
    margin: -60px 24px 0;
    margin: 0 24px;
  }
}

.bizValueSliderTxts__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
@media (min-width: 751px) {
  .bizValueSliderTxts__ttl {
    margin-bottom: 28px;
    font-size: 42px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .bizValueSliderTxts__ttl {
    font-size: 32px;
  }
}
@media (max-width: 750px) {
  .bizValueSliderTxts__ttl {
    margin-bottom: 8px;
    font-size: 26px;
  }
}

.bizValueSliderTxts__txt {
  letter-spacing: 0.03em;
  line-height: 1.8;
  text-align: justify;
  font-size: 16px;
}
@media (min-width: 1025px) {
  .bizValueSliderTxts__txt {
    min-width: 414px;
    width: 30.3074670571vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .bizValueSliderTxts__txt {
    font-size: 16px;
  }
}

.bizValueSliderImgs {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}
@media (min-width: 751px) {
  .bizValueSliderImgs {
    width: 58.1259150805vw;
    margin-left: auto;
    margin-right: -4.5vw;
  }
}
@media (min-width: 1367px) {
  .bizValueSliderImgs {
    width: 49.7803806735vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .bizValueSliderImgs {
    width: 60%;
    margin-right: -32px;
  }
}
@media (max-width: 750px) {
  .bizValueSliderImgs {
    width: 80vw;
    margin-left: auto;
    margin-right: -10px;
  }
}

.bizValueSliderImgs__round {
  position: absolute;
}

.bizValueSliderImgs__img {
  position: absolute;
}
@media (min-width: 751px) {
  .bizValueSliderImgs__img {
    width: 65.2%;
  }
}
@media (max-width: 750px) {
  .bizValueSliderImgs__img {
    width: 53.3333333333vw;
  }
}

/*
  事業紹介 - 提供価値 - アニメーション
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/* アニメーション準備 */
.bizValueSlider__item {
  opacity: 0;
  z-index: 1;
}

.bizValueSlider__item:not(:first-child) {
  position: absolute;
}

.bizValueSliderImgs__img {
  -webkit-transform: scale(0.84);
          transform: scale(0.84);
  opacity: 0;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: transform 0.8s, opacity 0.8s;
  transition: transform 0.8s, opacity 0.8s, -webkit-transform 0.8s;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

/* 固定中 */
.bizValueSliderWrap.is-fixed .bizValueSlider__list {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

/* 表示アニメーション */
.bizValueSlider__item.is-show {
  opacity: 1;
  z-index: 10;
}
.bizValueSlider__item.is-show .c-txtCut > span {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.bizValueSlider__item.is-show .bizValueSliderTxts__txt {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.bizValueSlider__item.is-show .bizValueSliderImgs__img,
.bizValueSlider__item.is-show .bizValueSliderImgs__round,
.bizValueSlider__item.is-show .bizValueSliderImgs__wave {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

/* 完了 */
.bizValueSliderWrap.is-end .bizValueSlider__list {
  margin-top: auto;
}

/* SVG */
.bizProgressWrap {
  position: absolute;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media (min-width: 1025px) {
  .bizProgressWrap {
    bottom: calc(15% + 300px);
    left: 9vw;
  }
}
@media (min-width: 1367px) {
  .bizProgressWrap {
    top: calc(50% - 200px);
    bottom: auto;
    left: 11vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .bizProgressWrap {
    top: calc(50% - 250px);
    left: 24px;
  }
}
@media (max-width: 750px) {
  .bizProgressWrap {
    top: calc(80vw - 36px);
    left: 24px;
  }
}

.bizProgressLine {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border-radius: 50%;
  border: 1px solid #dbe1ea;
}

.bizProgress {
  position: relative;
  z-index: 3;
}

.bizCircle {
  fill: transparent;
  stroke: #0171ff;
  stroke-width: 2;
}

.bizProgressNum {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  color: #0171ff;
  letter-spacing: 0.1em;
}

/* スライダー始まる前 */
@media (min-width: 751px) {
  .bizValueSlider.is-no-start .bizCircle {
    -webkit-animation: is-no-start 0.6s forwards;
            animation: is-no-start 0.6s forwards;
  }
}
@media (max-width: 750px) {
  .bizValueSlider.is-no-start .bizCircle {
    -webkit-animation: is-no-start-sp 0.6s forwards;
            animation: is-no-start-sp 0.6s forwards;
  }
}

/* スライダー1 上から */
@media (min-width: 751px) {
  .bizValueSlider.slide-01-from-above .bizCircle {
    -webkit-animation: slide-01-from-above 0.6s forwards;
            animation: slide-01-from-above 0.6s forwards;
  }
}
@media (max-width: 750px) {
  .bizValueSlider.slide-01-from-above .bizCircle {
    -webkit-animation: slide-01-from-above-sp 0.6s forwards;
            animation: slide-01-from-above-sp 0.6s forwards;
  }
}

/* スライダー1 下から */
@media (min-width: 751px) {
  .bizValueSlider.slide-01-from-below .bizCircle {
    -webkit-animation: slide-01-from-below 0.6s forwards;
            animation: slide-01-from-below 0.6s forwards;
  }
}
@media (max-width: 750px) {
  .bizValueSlider.slide-01-from-below .bizCircle {
    -webkit-animation: slide-01-from-below-sp 0.6s forwards;
            animation: slide-01-from-below-sp 0.6s forwards;
  }
}

/* スライダー2 上から */
@media (min-width: 751px) {
  .bizValueSlider.slide-02-from-above .bizCircle {
    -webkit-animation: slide-02-from-above 0.6s forwards;
            animation: slide-02-from-above 0.6s forwards;
  }
}
@media (max-width: 750px) {
  .bizValueSlider.slide-02-from-above .bizCircle {
    -webkit-animation: slide-02-from-above-sp 0.6s forwards;
            animation: slide-02-from-above-sp 0.6s forwards;
  }
}

/* スライダー2 下から */
@media (min-width: 751px) {
  .bizValueSlider.slide-02-from-below .bizCircle {
    -webkit-animation: slide-02-from-below 0.6s forwards;
            animation: slide-02-from-below 0.6s forwards;
  }
}
@media (max-width: 750px) {
  .bizValueSlider.slide-02-from-below .bizCircle {
    -webkit-animation: slide-02-from-below-sp 0.6s forwards;
            animation: slide-02-from-below-sp 0.6s forwards;
  }
}

/* スライダー3 上から */
@media (min-width: 751px) {
  .bizValueSlider.slide-03-from-above .bizCircle {
    -webkit-animation: slide-03-from-above 0.6s forwards;
            animation: slide-03-from-above 0.6s forwards;
  }
}
@media (max-width: 750px) {
  .bizValueSlider.slide-03-from-above .bizCircle {
    -webkit-animation: slide-03-from-above-sp 0.6s forwards;
            animation: slide-03-from-above-sp 0.6s forwards;
  }
}

@-webkit-keyframes is-no-start {
  0% {
    stroke-dasharray: 75 226;
  }
  99.9%, to {
    stroke-dasharray: 0 226;
  }
}

@keyframes is-no-start {
  0% {
    stroke-dasharray: 75 226;
  }
  99.9%, to {
    stroke-dasharray: 0 226;
  }
}
@-webkit-keyframes slide-01-from-above {
  0% {
    stroke-dasharray: 0 226;
  }
  99.9%, to {
    stroke-dasharray: 75 226;
  }
}
@keyframes slide-01-from-above {
  0% {
    stroke-dasharray: 0 226;
  }
  99.9%, to {
    stroke-dasharray: 75 226;
  }
}
@-webkit-keyframes slide-01-from-below {
  0% {
    stroke-dasharray: 150 226;
  }
  99.9%, to {
    stroke-dasharray: 75 226;
  }
}
@keyframes slide-01-from-below {
  0% {
    stroke-dasharray: 150 226;
  }
  99.9%, to {
    stroke-dasharray: 75 226;
  }
}
@-webkit-keyframes slide-02-from-above {
  0% {
    stroke-dasharray: 75 226;
  }
  99.9%, to {
    stroke-dasharray: 150 226;
  }
}
@keyframes slide-02-from-above {
  0% {
    stroke-dasharray: 75 226;
  }
  99.9%, to {
    stroke-dasharray: 150 226;
  }
}
@-webkit-keyframes slide-02-from-below {
  0% {
    stroke-dasharray: 226 226;
  }
  99.9%, to {
    stroke-dasharray: 150 226;
  }
}
@keyframes slide-02-from-below {
  0% {
    stroke-dasharray: 226 226;
  }
  99.9%, to {
    stroke-dasharray: 150 226;
  }
}
@-webkit-keyframes slide-03-from-above {
  0% {
    stroke-dasharray: 150 226;
  }
  99.9%, to {
    stroke-dasharray: 226 226;
  }
}
@keyframes slide-03-from-above {
  0% {
    stroke-dasharray: 150 226;
  }
  99.9%, to {
    stroke-dasharray: 226 226;
  }
}
@-webkit-keyframes is-no-start-sp {
  0% {
    stroke-dasharray: 59 176;
  }
  99.9%, to {
    stroke-dasharray: 0 176;
  }
}
@keyframes is-no-start-sp {
  0% {
    stroke-dasharray: 59 176;
  }
  99.9%, to {
    stroke-dasharray: 0 176;
  }
}
@-webkit-keyframes slide-01-from-above-sp {
  0% {
    stroke-dasharray: 0 176;
  }
  99.9%, to {
    stroke-dasharray: 59 176;
  }
}
@keyframes slide-01-from-above-sp {
  0% {
    stroke-dasharray: 0 176;
  }
  99.9%, to {
    stroke-dasharray: 59 176;
  }
}
@-webkit-keyframes slide-01-from-below-sp {
  0% {
    stroke-dasharray: 117 176;
  }
  99.9%, to {
    stroke-dasharray: 59 176;
  }
}
@keyframes slide-01-from-below-sp {
  0% {
    stroke-dasharray: 117 176;
  }
  99.9%, to {
    stroke-dasharray: 59 176;
  }
}
@-webkit-keyframes slide-02-from-above-sp {
  0% {
    stroke-dasharray: 59 176;
  }
  99.9%, to {
    stroke-dasharray: 117 176;
  }
}
@keyframes slide-02-from-above-sp {
  0% {
    stroke-dasharray: 59 176;
  }
  99.9%, to {
    stroke-dasharray: 117 176;
  }
}
@-webkit-keyframes slide-02-from-below-sp {
  0% {
    stroke-dasharray: 176 176;
  }
  99.9%, to {
    stroke-dasharray: 117 176;
  }
}
@keyframes slide-02-from-below-sp {
  0% {
    stroke-dasharray: 176 176;
  }
  99.9%, to {
    stroke-dasharray: 117 176;
  }
}
@-webkit-keyframes slide-03-from-above-sp {
  0% {
    stroke-dasharray: 117 176;
  }
  99.9%, to {
    stroke-dasharray: 176 176;
  }
}
@keyframes slide-03-from-above-sp {
  0% {
    stroke-dasharray: 117 176;
  }
  99.9%, to {
    stroke-dasharray: 176 176;
  }
}
/*
  事業紹介 - サービス紹介
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.bizService__body {
  position: relative;
}

@media (min-width: 751px) {
  .bizService__body::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3000px;
    background: #f7f7f7;
  }
}

@media (min-width: 751px) {
  .bizServiceSec {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: 82.4304538799vw;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .bizServiceSec {
    width: calc(100% - 40px);
    margin: 60px 0;
  }
}
@media (max-width: 750px) {
  .bizServiceSec {
    padding-bottom: 72px;
    background: #f7f7f7;
  }
}

@media (min-width: 751px) {
  .bizServiceSec.-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.bizServiceSecCircle {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 751px) {
  .bizServiceSecCircle {
    width: 40.5563689605vw;
    height: 40.5563689605vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .bizServiceSecCircle {
    width: 45.703125vw;
    height: 45.703125vw;
  }
}
@media (max-width: 750px) {
  .bizServiceSecCircle {
    width: 85.3333333333vw;
    height: 85.3333333333vw;
    margin-right: auto;
    margin-left: auto;
    margin: 0 auto 16px;
  }
}

.bizServiceSecCircle__line {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.bizServiceSecCircle__line img,
.bizServiceSecCircle__line svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.bizServiceSecCircle__img {
  position: absolute;
  z-index: 1;
}
@media (min-width: 751px) {
  .bizServiceSecCircle__img {
    width: 30.0146412884vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .bizServiceSecCircle__img {
    width: 33.59375vw;
  }
}
@media (max-width: 750px) {
  .bizServiceSecCircle__img {
    width: 62.9333333333vw;
  }
}

/* テキスト */
.bizServiceSecConts {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 751px) {
  .bizServiceSecConts {
    padding-bottom: 5.1244509517vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .bizServiceSecConts {
    width: 44%;
  }
}
@media (max-width: 750px) {
  .bizServiceSecConts {
    width: calc(100% - 48px);
  }
}

@media (min-width: 751px) {
  .bizServiceSecConts__txts {
    margin-bottom: 4.0995607613vw;
  }
}
@media (max-width: 750px) {
  .bizServiceSecConts__txts {
    margin-bottom: 22px;
  }
}

.bizServiceSecContsHead {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
@media (min-width: 751px) {
  .bizServiceSecContsHead {
    margin-bottom: 24px;
  }
}
@media (max-width: 750px) {
  .bizServiceSecContsHead {
    margin-bottom: 16px;
  }
}

@media (max-width: 750px) {
  .bizServiceSecContsHead__icon {
    margin-right: 12px;
  }
}

@media (min-width: 751px) {
  .bizServiceSecContsHead__icon.-consul {
    width: 68px;
    margin-right: 12px;
  }
}
@media (max-width: 750px) {
  .bizServiceSecContsHead__icon.-consul {
    width: 48px;
  }
}

@media (min-width: 751px) {
  .bizServiceSecContsHead__icon.-pmo {
    width: 50px;
    margin-left: 10px;
    margin-right: 18px;
  }
}
@media (max-width: 750px) {
  .bizServiceSecContsHead__icon.-pmo {
    width: 40px;
  }
}

@media (min-width: 751px) {
  .bizServiceSecContsHead__icon.-tech {
    width: 54px;
    margin-right: 20px;
  }
}
@media (max-width: 750px) {
  .bizServiceSecContsHead__icon.-tech {
    width: 48px;
  }
}

@media (min-width: 751px) {
  .bizServiceSecContsHead__icon.-pro {
    width: 58px;
    margin-right: 20px;
  }
}
@media (max-width: 750px) {
  .bizServiceSecContsHead__icon.-pro {
    width: 47px;
  }
}

@media (min-width: 751px) {
  .bizServiceSecContsHead__icon.-rec {
    width: 65px;
    margin-right: 12px;
  }
}
@media (max-width: 750px) {
  .bizServiceSecContsHead__icon.-rec {
    width: 47px;
  }
}

@media (min-width: 751px) {
  .bizServiceSecContsHead__icon.-web {
    width: 60px;
    margin-right: 20px;
  }
}
@media (max-width: 750px) {
  .bizServiceSecContsHead__icon.-web {
    width: 45px;
  }
}

.bizServiceSecContsHead__icon.-partner {
  margin-right: 20px;
}

.bizServiceSecContsHead__ttl {
  margin-bottom: 2px;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  letter-spacing: -0.05em;
}
@media (min-width: 751px) {
  .bizServiceSecContsHead__ttl {
    font-size: 32px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .bizServiceSecContsHead__ttl {
    font-size: 28px;
  }
}
@media (max-width: 750px) {
  .bizServiceSecContsHead__ttl {
    font-size: 24px;
  }
}

.bizServiceSecContsHead__en {
  padding-left: 0.25em;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.02em;
  color: #0087c6;
}
@media (max-width: 750px) {
  .bizServiceSecContsHead__en {
    font-size: 12px;
  }
}

.bizServiceSecConts__txt {
  line-height: 1.8;
  text-align: justify;
  font-size: 16px;
}
@media (min-width: 751px) {
  .bizServiceSecConts__txt {
    width: 31.3323572474vw;
    max-width: 428px;
  }
}

.bizServiceSecConts__btnTitle {
  font-size: 24px;
  font-weight: bold;
}

.bizServiceSecConts__btnContent {
  margin-top: 16px;
}

.bizServiceSecConts__btnContent.-col2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 750px) {
  .bizServiceSecConts__btnContent.-col2 {
    display: block;
  }
}

.bizServiceSecConts__btnWrap {
  margin-top: 16px;
}

.bizServiceSecConts__btnUpperText {
  color: #0171ff;
  font-weight: bold;
  font-size: 20px;
  position: relative;
  margin-bottom: 8px;
  padding-left: 29px;
}
@media (max-width: 750px) {
  .bizServiceSecConts__btnUpperText {
    font-size: 16px;
  }
}
.bizServiceSecConts__btnUpperText::before {
  content: "";
  height: 1px;
  width: 21px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #0171ff;
}
.bizServiceSecConts__btnUpperText + .c-btn__link {
  margin-top: 8px;
}

/*
  事業紹介 - サービス紹介 - アニメーション
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.bizServiceSecCircle__line {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  opacity: 0;
  -webkit-transition: 0.6s 0.6s;
  transition: 0.6s 0.6s;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

.bizServiceSecCircle__img {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

/* アニメーション後 */
.bizServiceSecCircle.is-anime .bizServiceSecCircle__line,
.bizServiceSecCircle.is-anime .bizServiceSecCircle__img {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

/*
  事業紹介 - コンサルティング メニュー
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.bizServiceMenuWrap {
  position: relative;
  z-index: 2;
}
@media (max-width: 750px) {
  .bizServiceMenuWrap {
    padding-top: 46px;
    background: #f7f7f7;
  }
}

.bizServiceMenu {
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 751px) {
  .bizServiceMenu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 68.4480234261vw;
    min-width: 700px;
    margin-top: 60px;
  }
}
@media (max-width: 750px) {
  .bizServiceMenu {
    width: calc(100% - 48px);
    max-width: 500px;
  }
}

.bizServiceMenu__item {
  border-bottom: 1px solid #dbe1ea;
}
@media (min-width: 751px) {
  .bizServiceMenu__item {
    width: calc(50% - 15px);
  }
}

@media (min-width: 751px) {
  .bizServiceMenu__item:nth-child(-n+2) {
    border-top: 1px solid #dbe1ea;
  }
}

@media (min-width: 751px) {
  .bizServiceMenu__item:nth-child(odd) {
    margin-right: 30px;
  }
}

@media (max-width: 750px) {
  .bizServiceMenu__item:first-child {
    border-top: 1px solid #dbe1ea;
  }
}

.bizServiceMenu__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media (min-width: 751px) {
  .bizServiceMenu__link {
    height: 68px;
    padding: 0 26px;
  }
}
@media (max-width: 750px) {
  .bizServiceMenu__link {
    padding: 18px 14px 17px;
  }
}

.bizServiceMenu__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 16px;
}

/* 表示アニメーション */
.bizServiceMenu__link {
  opacity: 0;
  -webkit-transform: translateY(12px);
          transform: translateY(12px);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.6s;
  transition: opacity 0.5s, -webkit-transform 0.6s;
  transition: transform 0.6s, opacity 0.5s;
  transition: transform 0.6s, opacity 0.5s, -webkit-transform 0.6s;
}

.bizServiceMenu.is-anime .bizServiceMenu__link {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.bizServiceMenu.is-anime .bizServiceMenu__item:nth-child(1) .bizServiceMenu__link {
  -webkit-transition-delay: 0.2s !important;
          transition-delay: 0.2s !important;
}

.bizServiceMenu.is-anime .bizServiceMenu__item:nth-child(2) .bizServiceMenu__link {
  -webkit-transition-delay: 0.4s !important;
          transition-delay: 0.4s !important;
}

.bizServiceMenu.is-anime .bizServiceMenu__item:nth-child(3) .bizServiceMenu__link {
  -webkit-transition-delay: 0.6s !important;
          transition-delay: 0.6s !important;
}

.bizServiceMenu.is-anime .bizServiceMenu__item:nth-child(4) .bizServiceMenu__link {
  -webkit-transition-delay: 0.8s !important;
          transition-delay: 0.8s !important;
}

.bizServiceMenu.is-anime .bizServiceMenu__item:nth-child(5) .bizServiceMenu__link {
  -webkit-transition-delay: 1s !important;
          transition-delay: 1s !important;
}

.bizServiceMenu.is-anime .bizServiceMenu__item:nth-child(6) .bizServiceMenu__link {
  -webkit-transition-delay: 1.2s !important;
          transition-delay: 1.2s !important;
}

.bizServiceMenu.is-anime .bizServiceMenu__item:nth-child(7) .bizServiceMenu__link {
  -webkit-transition-delay: 1.4s !important;
          transition-delay: 1.4s !important;
}

.bizServiceMenu.is-anime .bizServiceMenu__item:nth-child(8) .bizServiceMenu__link {
  -webkit-transition-delay: 1.6s !important;
          transition-delay: 1.6s !important;
}

.bizServiceMenu.is-anime .bizServiceMenu__item:nth-child(9) .bizServiceMenu__link {
  -webkit-transition-delay: 1.8s !important;
          transition-delay: 1.8s !important;
}

.bizServiceMenu.is-anime .bizServiceMenu__item:nth-child(10) .bizServiceMenu__link {
  -webkit-transition-delay: 2s !important;
          transition-delay: 2s !important;
}

.bizServiceMenu.is-anime .bizServiceMenu__item:nth-child(11) .bizServiceMenu__link {
  -webkit-transition-delay: 2.2s !important;
          transition-delay: 2.2s !important;
}

.bizServiceMenu.is-anime .bizServiceMenu__item:nth-child(12) .bizServiceMenu__link {
  -webkit-transition-delay: 2.4s !important;
          transition-delay: 2.4s !important;
}

.bizServiceMenu.is-anime .bizServiceMenu__item:nth-child(13) .bizServiceMenu__link {
  -webkit-transition-delay: 2.6s !important;
          transition-delay: 2.6s !important;
}

.bizServiceMenu.is-anime .bizServiceMenu__item:nth-child(14) .bizServiceMenu__link {
  -webkit-transition-delay: 2.8s !important;
          transition-delay: 2.8s !important;
}

.bizServiceMenu.is-anime .bizServiceMenu__item:nth-child(15) .bizServiceMenu__link {
  -webkit-transition-delay: 3s !important;
          transition-delay: 3s !important;
}

/*
  事業紹介 - サービス紹介 - リンク
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .bizServiceLinksWrap {
    padding: 0 24px 24px;
    margin-top: 120px;
  }
}
@media (max-width: 750px) {
  .bizServiceLinksWrap {
    padding: 120px 24px 24px;
    background: #f7f7f7;
    overflow-x: scroll;
  }
}

.bizServiceLinks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0 5%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 751px) {
  .bizServiceLinks {
    width: 62.9575402635vw;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 750px) {
  .bizServiceLinks {
    padding-right: 24px;
  }
}

.bizServiceLinks__item {
  overflow: hidden;
  width: 30%;
  min-width: 242px;
}

.bizServiceLinks__txts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #dbe1ea;
}
@media (min-width: 751px) {
  .bizServiceLinks__txts {
    padding: 20px 0;
  }
}
@media (max-width: 750px) {
  .bizServiceLinks__txts {
    padding: 16px 0;
  }
}

.bizServiceLinks__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  line-height: 1.6;
}
@media (min-width: 751px) {
  .bizServiceLinks__ttl {
    font-size: 18px;
  }
}
@media (max-width: 750px) {
  .bizServiceLinks__ttl {
    font-size: 16px;
  }
}

.bizServiceLinks__img {
  position: relative;
  z-index: 3;
  display: block;
  overflow: hidden;
}
.bizServiceLinks__img::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(268.02deg, #2f4aaa -39.04%, #29649b 90.43%);
  background: linear-gradient(181.98deg, #2f4aaa -39.04%, #29649b 90.43%);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.bizServiceLinks__img:hover::before {
  opacity: 0.6;
}

/* ホバー */
.bizServiceLinks__link:hover .c-circleBtn__icon.-outerlink {
  background-image: url(../images/common/icon_outerlink_white.svg);
}
.bizServiceLinks__link:hover .c-circleBtn__overlay {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*
  事業紹介 - サービス動画
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.sec-bizMovie {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 751px) {
  .sec-bizMovie {
    margin-top: 114px;
    margin-bottom: 300px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .sec-bizMovie {
    margin-bottom: 240px;
  }
}
@media (max-width: 750px) {
  .sec-bizMovie {
    margin-top: 150px;
    margin-bottom: 140px;
    background: #f7f7f7;
  }
}

@media (max-width: 750px) {
  .sec-bizMovie::before {
    content: "";
    position: absolute;
    top: -150px;
    right: 0;
    left: 0;
    height: 150px;
    background: #f7f7f7;
  }
}

.bizMovieBg img {
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1366px) {
  .bizMovieBg {
    height: 650px;
  }
}
@media (max-width: 750px) {
  .bizMovieBg {
    height: auto;
  }
}

.bizMovie__in {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 751px) {
  .bizMovie__in {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 1367px) {
  .bizMovie__in {
    width: 70.7174231332vw;
  }
}
@media (max-width: 1366px) {
  .bizMovie__in {
    max-width: 966px;
  }
}
@media (max-width: 750px) {
  .bizMovie__in {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 24px;
  }
}

@media (min-width: 751px) {
  .bizMovieConts {
    padding-left: 3.6603221083vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .bizMovieConts {
    padding-left: 5vw;
  }
}
@media (max-width: 750px) {
  .bizMovieConts {
    margin-bottom: 36px;
  }
}

.bizMovieConts__ttl {
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #dbe1ea;
  line-height: 1;
  font-size: 90px;
}
@media (max-width: 1024px) and (min-width: 751px) {
  .bizMovieConts__ttl {
    font-size: 70px;
  }
}

.bizMovieConts__ttlRow {
  overflow: hidden;
}
@media (min-width: 751px) {
  .bizMovieConts__ttlRow {
    display: inline-block;
  }
}
@media (max-width: 750px) {
  .bizMovieConts__ttlRow {
    display: block;
  }
}

.bizMovieConts__ttlRow span {
  display: inline-block;
  -webkit-transform: translate3d(0, 110%, 0);
          transform: translate3d(0, 110%, 0);
  line-height: 1.1;
}

.bizMovieConts__txt {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  opacity: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 11px;
}
@media (min-width: 751px) {
  .bizMovieConts__txt {
    font-size: 24px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .bizMovieConts__txt {
    font-size: 18px;
  }
}
@media (max-width: 750px) {
  .bizMovieConts__txt {
    margin-top: 10px;
    font-size: 20px;
  }
}
.bizMovieConts__txt::before {
  content: "";
  display: block;
  background: #3d424b;
  height: 2px;
}
@media (min-width: 751px) {
  .bizMovieConts__txt::before {
    width: 29px;
    margin-right: 11px;
  }
}
@media (max-width: 750px) {
  .bizMovieConts__txt::before {
    width: 21px;
    margin-right: 8px;
  }
}

@media (min-width: 751px) {
  .bizMovieConts__btn {
    margin-top: 40px;
  }
}
@media (max-width: 750px) {
  .bizMovieConts__btn {
    margin-top: 48px;
  }
}

@media (min-width: 751px) {
  .bizMovieImg {
    width: 55.7%;
  }
}

/* アニメーション */
.bizMovie__in.is-anime .bizMovieConts__ttlRow span {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

/*
  円背景 - 事業紹介
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.bizMovie-inflateWrap {
  position: relative;
  z-index: 9;
}
@media (min-width: 751px) {
  .bizMovie-inflateWrap {
    top: -15vw;
  }
}
@media (max-width: 750px) {
  .bizMovie-inflateWrap {
    top: -20vw;
  }
}

.bizMovie-inflate {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
  height: 100%;
}

.bizMovie-inflateBg {
  position: relative;
  width: 100vw;
  height: 100vw;
  border-radius: 50%;
  background: -webkit-linear-gradient(353.6deg, #f0f0f0 34.84%, #e7ebf1 81.3%);
  background: linear-gradient(96.4deg, #f0f0f0 34.84%, #e7ebf1 81.3%);
}

/*
  事業紹介 - 実績紹介
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.biz-achievement {
  padding-bottom: 0;
}
@media (min-width: 751px) {
  .biz-achievement {
    padding-top: 350px;
    margin-bottom: 36.6032210835vw;
  }
}
@media (max-width: 750px) {
  .biz-achievement {
    padding: 180px 0 0;
    padding-top: 220px;
    margin-bottom: 64vw;
  }
}

.biz-achievement::before {
  background: none;
}

.biz-achievement::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.4);
}
@media (min-width: 751px) {
  .biz-achievement::after {
    bottom: -36.6032210835vw;
    height: 1000px;
  }
}
@media (max-width: 750px) {
  .biz-achievement::after {
    bottom: -64vw;
    height: 1000px;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  コンサルティング


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/*
  コンサルティング - サービス一覧
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .consul-service {
    padding-bottom: 200px;
  }
}
@media (max-width: 750px) {
  .consul-service {
    padding-bottom: 110px;
  }
}

.consul-service__list {
  position: relative;
  z-index: 2;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 751px) {
  .consul-service__list {
    width: calc(100% - 40px);
    margin-top: 120px;
  }
}
@media (max-width: 1366px) {
  .consul-service__list {
    max-width: 975px;
  }
}
@media (min-width: 1367px) {
  .consul-service__list {
    width: 60vw;
  }
}
@media (max-width: 750px) {
  .consul-service__list {
    width: calc(100% - 48px);
    margin-top: 76px;
  }
}

.consul-service__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #dbe1ea;
}
@media (min-width: 751px) {
  .consul-service__item {
    padding: 34px 0;
  }
}
@media (max-width: 750px) {
  .consul-service__item {
    min-height: 390px;
    padding: 16px 0;
  }
}

.consul-service__item:first-child {
  border-top: 1px solid #dbe1ea;
}

.consul-service__sub {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  border-right: 1px dashed #dbe1ea;
}
@media (min-width: 751px) {
  .consul-service__sub {
    width: 35%;
    padding: 0 4% 0 5.5%;
  }
}
@media (max-width: 750px) {
  .consul-service__sub {
    width: 30.5810397554%;
    padding: 1.2% 4.8% 0 0;
  }
}

.consul-service__conts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 751px) {
  .consul-service__conts {
    width: 65%;
    padding: 5% 0 0 3.9%;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .consul-service__conts {
    padding-top: 1.5%;
  }
}
@media (max-width: 750px) {
  .consul-service__conts {
    padding: 1.2% 0 1.2% 5%;
  }
}

.consul-service__ttl {
  position: relative;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .consul-service__ttl {
    padding-bottom: 20px;
    margin-bottom: 18px;
    font-size: 24px;
  }
}
@media (max-width: 750px) {
  .consul-service__ttl {
    padding-bottom: 14px;
    margin-bottom: 14px;
    font-size: 20px;
  }
}

.consul-service__ttl::before,
.consul-service__ttl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
}

.consul-service__ttl::after {
  width: 40px;
  background: #0087c6;
}

.consul-service__ttl::before {
  width: 100%;
  background: #dbe1ea;
}

.consul-service__txt {
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .consul-service__txt {
    margin-bottom: 24px;
  }
}
@media (max-width: 750px) {
  .consul-service__txt {
    margin-bottom: 16px;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  company


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.company__body {
  position: relative;
  z-index: 3;
}
@media (min-width: 751px) {
  .company__body {
    margin-top: 220px;
  }
}
@media (max-width: 750px) {
  .company__body {
    margin-top: 164px;
  }
}

.company__inner {
  position: relative;
  overflow: hidden;
}
@media (min-width: 751px) {
  .company__inner {
    padding-top: 208px;
  }
}
@media (max-width: 750px) {
  .company__inner {
    padding-top: 52px;
  }
}

/*
  company - 見出し
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.secondLevelTopHeading {
  position: absolute;
  z-index: 2;
}
@media (min-width: 751px) {
  .secondLevelTopHeading {
    top: 60px;
    width: 94.4363103953vw;
    left: 3.074670571vw;
  }
}
@media (max-width: 750px) {
  .secondLevelTopHeading {
    top: 12px;
    width: 100vw;
  }
}

.secondLevelTopHeading__en {
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #dbe1ea;
  letter-spacing: -0.06em;
  line-height: 1.1;
  overflow: hidden;
}
@media (min-width: 751px) {
  .secondLevelTopHeading__en {
    font-size: 150px;
  }
  .secondLevelTopHeading__en.sp-small {
    font-size: 100px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .secondLevelTopHeading__en {
    font-size: 120px;
  }
}
@media (max-width: 750px) {
  .secondLevelTopHeading__en {
    font-size: 72px;
  }
  .secondLevelTopHeading__en.sp-small {
    font-size: 45px;
  }
}

.secondLevelTopHeading__en + .secondLevelTopHeading__en {
  padding-left: 0.4em;
  margin-top: -0.2em;
}

.secondLevelTopHeading__en span {
  display: inline-block;
  -webkit-transform: translate3d(0, 110%, 0);
          transform: translate3d(0, 110%, 0);
  line-height: 1.1;
}

.secondLevelTopHeading__jp {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 130%;
  letter-spacing: 0.05em;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  opacity: 0;
}
@media (min-width: 751px) {
  .secondLevelTopHeading__jp {
    padding-left: 27px;
    margin-left: 70px;
    font-size: 32px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .secondLevelTopHeading__jp {
    font-size: 24px;
  }
}
@media (max-width: 750px) {
  .secondLevelTopHeading__jp {
    padding-left: 18px;
    margin-top: 8px;
    margin-left: 36px;
    font-size: 19px;
  }
}
.secondLevelTopHeading__jp::before {
  position: absolute;
  content: "";
  border: 2px solid #0087c6;
  border-radius: 50%;
  left: 0;
}
@media (min-width: 751px) {
  .secondLevelTopHeading__jp::before {
    width: 13px;
    height: 13px;
  }
}
@media (max-width: 750px) {
  .secondLevelTopHeading__jp::before {
    width: 7px;
    height: 7px;
    border-width: 1px;
  }
}

.company-fvScroll {
  margin-left: auto;
}
@media (min-width: 751px) {
  .company-fvScroll {
    margin-bottom: 72px;
    margin-right: 3.513909224vw;
  }
}
@media (max-width: 750px) {
  .company-fvScroll {
    width: 92px;
    height: 92px;
    margin-right: 24px;
  }
}

/*
  company - バナー
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (max-width: 750px) {
  .companyBnr {
    margin: 52px 24px;
  }
}

.companyBnr__list {
  display: grid;
  gap: 23px;
  margin: auto;
}
@media (min-width: 751px) {
  .companyBnr__list {
    width: calc(100% - 76px);
    max-width: 1290px;
  }
}
@media (min-width: 901px) {
  .companyBnr__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 901px) {
  .companyBnr__item.-large {
    grid-area: 1/1/2/3;
  }
}

.companyBnr__link {
  position: relative;
  z-index: 2;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.companyBnr__link::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(268.02deg, #2f4aaa -39.04%, #29649b 90.43%);
  background: linear-gradient(181.98deg, #2f4aaa -39.04%, #29649b 90.43%);
  opacity: 0.3;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.companyBnr__link:hover::before {
  opacity: 0.7;
}

.companyBnrHeading {
  position: absolute;
  z-index: 3;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #ffffff;
}
@media (min-width: 751px) {
  .companyBnrHeading {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 750px) {
  .companyBnrHeading {
    font-size: 20px;
  }
}
.companyBnrHeading span {
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
}
@media (max-width: 750px) {
  .companyBnrHeading span {
    display: block;
    font-size: 12px;
    line-height: 1;
  }
}
@media (max-width: 750px) {
  .companyBnrHeading {
    top: 50%;
    left: 10%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.companyBnr__circle {
  position: absolute;
  z-index: 3;
}
@media (max-width: 750px) {
  .companyBnr__circle {
    right: 5.3%;
    bottom: 10.2%;
  }
}

@media (max-width: 750px) {
  .companyBnr__item .companyBnrHeading span {
    margin-top: 8px;
  }
}

@media (min-width: 751px) {
  .companyBnr__item.-large .companyBnrHeading {
    top: 45.8%;
    left: 7%;
    font-size: 32px;
  }
}

@media (min-width: 751px) {
  .companyBnr__item.-large .companyBnrHeading span {
    font-size: 20px;
    margin-left: 30px;
  }
}

@media (min-width: 751px) {
  .companyBnr__item.-large .companyBnr__circle {
    right: 2.8%;
    bottom: 9.2%;
  }
}

@media (min-width: 751px) {
  .companyBnr__item.-small .companyBnrHeading {
    top: 42%;
    left: 13.1%;
    font-size: 24px;
  }
}

@media (min-width: 751px) {
  .companyBnr__item.-small .companyBnrHeading span {
    font-size: 16px;
    margin-left: 20px;
  }
}

@media (min-width: 751px) {
  .companyBnr__item.-small .companyBnr__circle {
    right: 5.3%;
    bottom: 10.2%;
  }
}

.company__list {
  display: grid;
  max-width: 1126px;
  border-top: 1px solid #dbe1ea;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .company__list {
    width: calc(100% - 240px);
    max-width: 1130px;
    margin-top: 115px;
    margin-bottom: 16.1054172767vw;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 750px) {
  .company__list {
    margin: 0 24px;
  }
}

.company__item {
  border-bottom: 1px solid #dbe1ea;
}

@media (min-width: 751px) {
  .company__item:nth-child(odd) {
    border-right: 1px solid #dbe1ea;
  }
}

.company__link {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 751px) {
  .company__link {
    padding: 46px 7.4% 47px 9.9%;
    font-size: 18px;
  }
}
@media (max-width: 750px) {
  .company__link {
    padding: 22px 24px 21px;
    font-size: 16px;
  }
}

/*
  company - 円背景
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.company .shrink {
  z-index: -1;
}

.company__inner .shrink {
  z-index: -1;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  実績紹介 一覧


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.caseList-conts {
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 751px) {
  .caseList-conts {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 82.4304538799vw;
    padding-top: 70px;
    margin-bottom: 150px;
  }
}
@media (max-width: 750px) {
  .caseList-conts {
    width: calc(100% - 48px);
    margin-bottom: 90px;
  }
}

/*
  実績紹介 - 絞り込み
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .caseList-side {
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    width: 184px;
    margin-right: 7.6%;
  }
}
@media (max-width: 750px) {
  .caseList-side {
    padding-top: 32px;
    margin-bottom: 70px;
  }
}

.caseList-side__refine {
  border-bottom: 1px solid #dbe1ea;
}
@media (min-width: 751px) {
  .caseList-side__refine {
    padding-bottom: 34px;
    margin-bottom: 36px;
  }
}
@media (max-width: 750px) {
  .caseList-side__refine {
    padding: 0 26px 38px;
    margin-bottom: 35px;
  }
}

@media (min-width: 751px) {
  .caseList-side__list {
    margin-bottom: 30px;
  }
}
@media (max-width: 750px) {
  .caseList-side__list {
    margin-bottom: 26px;
  }
}

@media (min-width: 751px) {
  .caseList-side__item:not(:last-child) {
    margin-bottom: 18px;
  }
}
@media (max-width: 750px) {
  .caseList-side__item:not(:last-child) {
    margin-bottom: 22px;
  }
}

.caseList-side__btn {
  margin: auto;
}

.caseList-side__moreWrap {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  display: inline-block !important;
  padding-right: 14px;
}
.caseList-side__moreWrap::before, .caseList-side__moreWrap::after {
  content: "";
  position: absolute;
  right: 20px;
  width: 1px;
  height: 13px;
  background: #3d424b;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.caseList-side__moreWrap::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.caseList-side__moreWrap.is-show::before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.caseList-side__moreWrap::before, .caseList-side__moreWrap::after {
  top: 6px;
  right: 4px;
  height: 9px;
  background: #0171ff;
}

.caseList-side__more {
  color: #0171ff;
}
@media (min-width: 751px) {
  .caseList-side__more {
    font-size: 12px;
  }
}

/*
  実績紹介 - 一覧
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .caseList-main {
    width: 100%;
  }
}

@media (min-width: 751px) {
  .caseList-main__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 100%;
  }
}

@media (min-width: 1025px) {
  .caseList-main__item {
    width: 47.4%;
  }
}

@media (min-width: 1025px) {
  .caseList-main__item:nth-child(odd) {
    margin-right: 5.2%;
  }
}

@media (min-width: 1025px) {
  .caseList-main__item:nth-last-child(n+3) {
    margin-bottom: 50px;
  }
}

@media (max-width: 1024px) and (min-width: 751px) {
  .caseList-main__item:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media (max-width: 750px) {
  .caseList-main__item:not(:last-child) {
    margin-bottom: 60px;
  }
}

.caseList-main__img {
  position: relative;
  z-index: 3;
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 751px) {
  .caseList-main__img {
    margin-bottom: 28px;
  }
}
@media (max-width: 750px) {
  .caseList-main__img {
    margin-bottom: 22px;
  }
}

.caseList-main__img::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(268.02deg, #2f4aaa -39.04%, #29649b 90.43%);
  background: linear-gradient(181.98deg, #2f4aaa -39.04%, #29649b 90.43%);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.caseList-main__img::after {
  content: "";
  display: block;
  padding-top: 53.7%;
}

.caseList-main__link img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.caseList-mainCompany {
  margin-bottom: 8px;
}

.caseList-mainCompany__txt {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.caseList-mainTtl {
  padding-bottom: 17px;
  border-bottom: 1px solid #dbe1ea;
  margin-bottom: 18px;
}

.caseList-mainTtl__txt {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
}
@media (min-width: 751px) {
  .caseList-mainTtl__txt {
    font-size: 24px;
  }
}
@media (max-width: 750px) {
  .caseList-mainTtl__txt {
    font-size: 20px;
  }
}

.caseList-main__tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.caseList-main__tag:not(:last-child) {
  margin-right: 18px;
}
@media (max-width: 750px) {
  .caseList-main__tag:not(:last-child) {
    margin-bottom: 4px;
  }
}

.caseList-main__tagLink {
  padding: 4px 0;
  color: #0171ff;
  font-size: 12px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.caseList-main__tagLink:hover {
  color: #a2a8b4;
}

/* ホバー */
.caseList-main__link:hover .caseList-main__img::before {
  opacity: 0.6;
}
.caseList-main__link:hover .caseList-mainTtl__txt {
  -webkit-animation: underline_animation 0.6s forwards;
          animation: underline_animation 0.6s forwards;
}

@keyframes underline_animation {
  0% {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#333), to(#333));
    background-image: -webkit-linear-gradient(#333, #333);
    background-image: linear-gradient(#333, #333);
    background-repeat: no-repeat;
    background-size: 0% 1px;
    background-position: left 0 bottom 0;
  }
  100% {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#333), to(#333));
    background-image: -webkit-linear-gradient(#333, #333);
    background-image: linear-gradient(#333, #333);
    background-repeat: no-repeat;
    background-size: 100% 1px;
    background-position: left 0 bottom 0;
  }
}
/*
  実績紹介 - 絞り込み モーダル実装
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.caseModal {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10000;
  overflow-y: scroll;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.caseModal__bg {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.caseModal.is-show {
  opacity: 1;
  pointer-events: auto;
}

.caseModal__conts {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 751px) {
  .caseModal__conts {
    padding: 100px 0;
  }
}
@media (max-width: 750px) {
  .caseModal__conts {
    padding: 86px 0;
  }
}

.caseModal__contsIn {
  position: relative;
  background: #fff;
}
@media (min-width: 751px) {
  .caseModal__contsIn {
    width: 82.4304538799vw;
    padding: 48px 0 58px;
  }
}
@media (max-width: 750px) {
  .caseModal__contsIn {
    width: calc(100% - 48px);
    padding: 50px 0;
  }
}

.caseModal__list {
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 751px) {
  .caseModal__list {
    width: 83%;
    margin-bottom: 56px;
  }
}
@media (max-width: 750px) {
  .caseModal__list {
    width: calc(100% - 54px);
    margin-bottom: 34px;
  }
}

.caseModal__dl {
  border-bottom: 1px solid #dbe1ea;
}
@media (min-width: 751px) {
  .caseModal__dl {
    padding: 34px 0;
  }
}
@media (max-width: 750px) {
  .caseModal__dl {
    padding: 17px 0 28px;
  }
}

@media (min-width: 751px) {
  .caseModal__dl:first-child {
    padding-top: 0;
  }
}

.caseModal__dt {
  font-size: 16px;
  color: #0087c6;
  letter-spacing: 0.03em;
}
@media (min-width: 751px) {
  .caseModal__dt {
    margin-bottom: 28px;
  }
}
@media (max-width: 750px) {
  .caseModal__dt {
    margin-bottom: 18px;
  }
}

@media (min-width: 751px) {
  .caseModal__dd {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

.caseModalCheck.-wide {
  width: 100%;
}

@media (min-width: 751px) {
  .caseModalCheck:not(:first-child) {
    margin-top: 30px;
  }
}

@media (min-width: 751px) {
  .caseModalCheck:not(:last-child) {
    margin-right: 60px;
  }
}
@media (max-width: 750px) {
  .caseModalCheck:not(:last-child) {
    margin-bottom: 24px;
  }
}

@media (min-width: 751px) {
  .caseList-side__mark + .caseList-side__txt {
    padding-left: 7px;
  }
}

@media (min-width: 751px) {
  .caseList-side__mark {
    width: 10px;
    height: 10px;
  }
}

@media (min-width: 751px) {
  .caseList-side__mark::after {
    top: 1px;
    left: 1px;
    width: 5px;
    height: 3px;
  }
}

.caseModalClose {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  border: 1px solid #0171ff;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
@media (min-width: 751px) {
  .caseModalClose {
    top: 46px;
    right: 84px;
  }
}
@media (max-width: 750px) {
  .caseModalClose {
    top: 15px;
    right: 15px;
  }
}

.caseModalClose__cross {
  position: absolute !important;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.caseModalClose__cross::before, .caseModalClose__cross::after {
  content: "";
  position: absolute;
  right: 20px;
  width: 1px;
  height: 13px;
  background: #3d424b;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.caseModalClose__cross::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.caseModalClose__cross.is-show::before {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.caseModalClose__cross::before, .caseModalClose__cross::after {
  right: 15px;
  background: #0171ff;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.caseModalClose__cross::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.caseModalClose__cross::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.caseModalClose:hover {
  border-color: #a2a8b4;
}
.caseModalClose:hover .caseModalClose__cross::before,
.caseModalClose:hover .caseModalClose__cross::after {
  background: #a2a8b4;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  実績紹介 詳細


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/*
  実績紹介 詳細 - ファーストビュー
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.caseDetail-fv {
  position: relative;
}

.caseDetail-fv__bg {
  position: absolute;
}
@media (min-width: 751px) {
  .caseDetail-fv__bg {
    margin-top: -50px;
  }
}
@media (max-width: 750px) {
  .caseDetail-fv__bg {
    margin-top: 40px;
  }
}

.caseDetail-fv__conts {
  position: relative;
  z-index: 2;
}
@media (min-width: 751px) {
  .caseDetail-fv__conts {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 122px 0 136px;
  }
}
@media (max-width: 750px) {
  .caseDetail-fv__conts {
    padding: 65px 0 85px;
  }
}

.caseDetail-fv__img {
  overflow: hidden;
}
@media (min-width: 751px) {
  .caseDetail-fv__img {
    width: 51%;
    border-radius: 0 10px 10px 0;
  }
}
@media (max-width: 750px) {
  .caseDetail-fv__img {
    border-radius: 0 6px 6px 0;
    margin-right: 6.4%;
    margin-bottom: 24px;
  }
}

.caseDetail-fv__img img {
  width: 100%;
}

.caseDetail-fv__txts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 751px) {
  .caseDetail-fv__txts {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 49%;
  }
}
@media (max-width: 750px) {
  .caseDetail-fv__txts {
    width: calc(100% - 48px);
    margin: auto;
  }
}

@media (min-width: 751px) {
  .caseDetail-fv__txts > * {
    width: 35vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .caseDetail-fv__txts > * {
    width: 40vw;
  }
}

.caseDetail-fv__company {
  margin-bottom: 16px;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
}
@media (min-width: 751px) {
  .caseDetail-fv__company {
    font-size: 18px;
  }
}
@media (max-width: 750px) {
  .caseDetail-fv__company {
    font-size: 16px;
  }
}

.caseDetail-fv__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  border-bottom: 1px solid #dbe1ea;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media (min-width: 751px) {
  .caseDetail-fv__ttl {
    padding-bottom: 25px;
    margin-bottom: 28px;
    font-size: 32px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .caseDetail-fv__ttl {
    font-size: 26px;
  }
}
@media (max-width: 750px) {
  .caseDetail-fv__ttl {
    padding-bottom: 17px;
    margin-bottom: 18px;
    font-size: 24px;
  }
}

.caseDetail-fv__tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.caseDetail-fv__tag:not(:last-child) {
  margin-right: 18px;
}
@media (max-width: 750px) {
  .caseDetail-fv__tag:not(:last-child) {
    margin-bottom: 4px;
  }
}

.caseDetail-fv__tagLink {
  padding: 4px 0;
  color: #0171ff;
  font-size: 12px;
}

/*
  実績紹介 詳細 - プロジェクト概要
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.caseDetail-conts {
  position: relative;
  z-index: 2;
}
@media (min-width: 751px) {
  .caseDetail-conts {
    margin-bottom: 80px;
    margin-bottom: 80px;
  }
}
@media (max-width: 750px) {
  .caseDetail-conts {
    margin-bottom: 120px;
  }
}

.caseDetail-conts__in {
  background: #fff;
}
@media (min-width: 751px) {
  .caseDetail-conts__in {
    padding: 32px 0 120px;
  }
}
@media (max-width: 750px) {
  .caseDetail-conts__in {
    padding: 32px 0 20px;
  }
}

.caseDetail-conts__round.-reverse {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.caseDetail-overview {
  border-radius: 4px;
  margin: auto;
  background: #f7f7f7;
}
@media (min-width: 751px) {
  .caseDetail-overview {
    width: 68.0819912152vw;
    padding: 32px 40px 29px;
    margin-bottom: 60px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .caseDetail-overview {
    width: 82vw;
  }
}
@media (max-width: 750px) {
  .caseDetail-overview {
    width: calc(100% - 48px);
    padding: 20px;
    margin-bottom: 40px;
  }
}

.caseDetail-overview__ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 16px;
}
@media (min-width: 751px) {
  .caseDetail-overview__ttl {
    margin-bottom: 10px;
  }
}
@media (max-width: 750px) {
  .caseDetail-overview__ttl {
    margin-bottom: 8px;
  }
}

.caseDetail-overview__ttl::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 8px;
  background: #0087c6;
}

.caseDetail-overview__txt {
  letter-spacing: 0.03em;
  line-height: 1.8;
  text-align: justify;
}
@media (min-width: 751px) {
  .caseDetail-overview__txt {
    font-size: 16px;
  }
}

.caseDetail-shrink-none + .shrink .shrink__in {
  opacity: 0;
}

/*
  実績紹介 詳細 - 本文
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.caseDetail-main {
  border-top: 1px solid #dbe1ea;
  margin: auto;
}
@media (min-width: 751px) {
  .caseDetail-main {
    width: 68.0819912152vw;
    padding: 60px 0 110px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .caseDetail-main {
    width: 82vw;
  }
}
@media (max-width: 750px) {
  .caseDetail-main {
    width: calc(100% - 48px);
    padding: 40px 0 80px;
  }
}

/*
  実績紹介 詳細 - 前後の記事への矢印
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-dtlPager {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
}
@media (min-width: 751px) {
  .c-dtlPager {
    width: 68.0819912152vw;
  }
}
@media (max-width: 750px) {
  .c-dtlPager {
    width: calc(100% - 48px);
    padding-top: 82px;
  }
}

.c-dtlPager__btn {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 750px) {
  .c-dtlPager__btn {
    top: 0;
  }
}

/* ホバー */
.c-dtlPager__btn:hover .c-dtlPager__arrow::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.c-dtlPager__btn.-prev:hover .c-dtlPager__arrow::before {
  border-right-color: #fff;
}

.c-dtlPager__btn.-next:hover .c-dtlPager__arrow::before {
  border-left-color: #fff;
}

/* ホバーここまで */
.c-dtlPager__btn.-prev {
  left: 0;
}

.c-dtlPager__btn.-next {
  right: 0;
}

.c-dtlPager__btn a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 86px;
  height: 34px;
  padding-top: 1px;
  font-size: 16px;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #0171ff;
  letter-spacing: 0.05em;
}

.c-dtlPager__btn.-prev a {
  padding-left: 42px;
}

.c-dtlPager__btn.-next a {
  padding-right: 42px;
}

.c-dtlPager__arrow {
  position: absolute !important;
  pointer-events: none;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 750px) {
  .c-dtlPager__arrow {
    top: 0;
  }
}
.c-dtlPager__arrow .c-dtlPager__arrow-border {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border: 1px solid #0171ff;
  border-radius: 50%;
}
.c-dtlPager__arrow::before {
  content: "";
  position: absolute;
  z-index: 2;
  border: 3px solid transparent;
  margin-top: 1px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.c-dtlPager__arrow::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  left: -2px;
  bottom: -2px;
  background: #0171ff;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: scale(0);
          transform: scale(0);
}
.c-dtlPager__arrow:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.c-dtlPager__btn.-prev .c-dtlPager__arrow {
  left: 0 !important;
}
.c-dtlPager__btn.-prev .c-dtlPager__arrow::before {
  border-right: 7px solid #0171ff;
  margin-left: -5px;
}
.c-dtlPager__btn.-prev .c-dtlPager__arrow:hover::before {
  border-right-color: #fff;
}

.c-dtlPager__btn.-next .c-dtlPager__arrow {
  right: 0 !important;
}
.c-dtlPager__btn.-next .c-dtlPager__arrow::before {
  border-left: 7px solid #0171ff;
  margin-right: -5px;
}
.c-dtlPager__btn.-next .c-dtlPager__arrow:hover::before {
  border-left-color: #fff;
}

/*
  実績紹介 詳細 - 関連記事
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.caseDetail-relation {
  margin: auto;
}
@media (min-width: 751px) {
  .caseDetail-relation {
    width: 82.2840409956vw;
    padding-bottom: 21.9619326501vw;
  }
}
@media (max-width: 750px) {
  .caseDetail-relation {
    width: calc(100% - 48px);
    padding-bottom: 21.3333333333vw;
  }
}

.caseDetail-relation__head {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  line-height: 1;
  border-left: 2px solid #0087c6;
}
@media (min-width: 751px) {
  .caseDetail-relation__head {
    padding-left: 18px;
    margin-bottom: 64px;
    font-size: 24px;
  }
}
@media (max-width: 750px) {
  .caseDetail-relation__head {
    padding-left: 15px;
    margin-bottom: 54px;
    font-size: 18px;
  }
}

.caseDetail-relation__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

@media (min-width: 1025px) {
  .caseDetail-relation__item {
    width: 32%;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .caseDetail-relation__item {
    width: 48.5%;
  }
}

@media (min-width: 1025px) {
  .caseDetail-relation__item:not(:last-child) {
    margin-right: 2%;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .caseDetail-relation__item:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media (max-width: 750px) {
  .caseDetail-relation__item:not(:last-child) {
    margin-bottom: 60px;
  }
}

@media (max-width: 1024px) and (min-width: 751px) {
  .caseDetail-relation__item:first-child {
    margin-right: 3%;
  }
}

.caseDetail-relation__img {
  position: relative;
  z-index: 3;
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 751px) {
  .caseDetail-relation__img {
    margin-bottom: 28px;
  }
}
@media (max-width: 750px) {
  .caseDetail-relation__img {
    margin-bottom: 22px;
  }
}

.caseDetail-relation__img::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(268.02deg, #2f4aaa -39.04%, #29649b 90.43%);
  background: linear-gradient(181.98deg, #2f4aaa -39.04%, #29649b 90.43%);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.caseDetail-relation__img::after {
  content: "";
  display: block;
  padding-top: 53.7%;
}

.caseDetail-relation__img img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.caseDetail-relation__company {
  margin-bottom: 8px;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.caseDetail-relationTtl {
  padding-bottom: 17px;
  border-bottom: 1px solid #dbe1ea;
  margin-bottom: 18px;
}

.caseDetail-relationTtl__txt {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
}
@media (min-width: 751px) {
  .caseDetail-relationTtl__txt {
    font-size: 24px;
  }
}
@media (max-width: 750px) {
  .caseDetail-relationTtl__txt {
    font-size: 20px;
  }
}

.caseDetail-relation__tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.caseDetail-relation__tag:not(:last-child) {
  margin-right: 18px;
}
@media (max-width: 750px) {
  .caseDetail-relation__tag:not(:last-child) {
    margin-bottom: 4px;
  }
}

.caseDetail-relation__tagLink {
  padding: 4px 0;
  color: #0171ff;
  font-size: 12px;
}

/* ホバー */
.caseDetail-relation__link:hover .caseDetail-relation__img::before {
  opacity: 0.6;
}
.caseDetail-relation__link:hover .caseDetail-relationTtl__txt {
  -webkit-animation: underline_animation 0.6s forwards;
          animation: underline_animation 0.6s forwards;
}

@keyframes underline_animation {
  0% {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#333), to(#333));
    background-image: -webkit-linear-gradient(#333, #333);
    background-image: linear-gradient(#333, #333);
    background-repeat: no-repeat;
    background-size: 0% 1px;
    background-position: left 0 bottom 0;
  }
  100% {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#333), to(#333));
    background-image: -webkit-linear-gradient(#333, #333);
    background-image: linear-gradient(#333, #333);
    background-repeat: no-repeat;
    background-size: 100% 1px;
    background-position: left 0 bottom 0;
  }
}
/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  ニュース 一覧


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.archive-newsWrap {
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 751px) {
  .archive-newsWrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 82.4304538799vw;
    padding-top: 100px;
    margin-bottom: 150px;
  }
}
@media (max-width: 750px) {
  .archive-newsWrap {
    padding-top: 60px;
    margin-bottom: 90px;
  }
}

/*
  ニュース 一覧 - サイドバー
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .archive-newsSub {
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    width: 170px;
    margin-right: 8.9%;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .archive-newsSub {
    margin-right: 32px;
  }
}

/*
  ニュース 一覧 - リスト
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.archive-newsListConts {
  width: 66.6%;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  ニュース 詳細


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.newsDetail-head {
  border-bottom: 1px solid #d3d7dc;
  margin: auto;
  margin-bottom: 30px;
}
@media (min-width: 751px) {
  .newsDetail-head {
    padding: 120px 0 50px;
  }
}
@media (min-width: 1025px) {
  .newsDetail-head {
    width: 68.0819912152vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .newsDetail-head {
    width: 82vw;
  }
}
@media (max-width: 750px) {
  .newsDetail-head {
    width: calc(100% - 48px);
    padding: 70px 0 32px;
  }
}

.newsDetail-ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
}
@media (min-width: 1025px) {
  .newsDetail-ttl {
    font-size: 32px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .newsDetail-ttl {
    font-size: 28px;
  }
}
@media (max-width: 750px) {
  .newsDetail-ttl {
    font-size: 24px;
  }
}

/*
  ニュース 詳細 - 本文
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .newsDetail-conts {
    margin-bottom: 100px;
  }
}
@media (max-width: 750px) {
  .newsDetail-conts {
    margin-bottom: 80px;
  }
}

.newsDetail-conts__in {
  margin: auto;
}
@media (min-width: 751px) {
  .newsDetail-conts__in {
    width: 82.3572474378vw;
    padding-bottom: 90px;
    border-bottom: 1px solid #dbe1ea;
  }
}
@media (max-width: 750px) {
  .newsDetail-conts__in {
    position: relative;
    padding-bottom: 60px;
  }
}

@media (max-width: 750px) {
  .newsDetail-conts__in::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    height: 1px;
    background: #dbe1ea;
  }
}

.newsDetail-conts__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto 70px;
}
@media (min-width: 751px) {
  .newsDetail-conts__head {
    width: 68.0819912152vw;
    margin-bottom: 70px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .newsDetail-conts__head {
    width: 82vw;
  }
}
@media (max-width: 750px) {
  .newsDetail-conts__head {
    width: calc(100% - 48px);
  }
}

.newsDetail-thumb {
  margin: auto;
  text-align: center;
}
@media (min-width: 751px) {
  .newsDetail-thumb {
    margin-bottom: 45px;
  }
}
@media (min-width: 1025px) {
  .newsDetail-thumb {
    width: 57.3938506589vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .newsDetail-thumb {
    width: 82vw;
  }
}
@media (max-width: 750px) {
  .newsDetail-thumb {
    width: calc(100% - 48px);
    margin-bottom: 32px;
  }
}

.newsDetail-thumb img {
  width: 100%;
}

.newsDetail-main {
  margin: auto;
  padding-bottom: 100px;
}
@media (min-width: 751px) {
  .newsDetail-main {
    padding-bottom: 100px;
  }
}
@media (min-width: 1025px) {
  .newsDetail-main {
    width: 57.3938506589vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .newsDetail-main {
    width: 82vw;
  }
}
@media (max-width: 750px) {
  .newsDetail-main {
    width: calc(100% - 48px);
  }
}

/*
  ニュース 詳細 - その他の記事
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .newsDetail-other {
    padding-bottom: 21.9619326501vw;
  }
}
@media (max-width: 750px) {
  .newsDetail-other {
    width: calc(100% - 48px);
    padding-bottom: 21.3333333333vw;
    margin: auto;
  }
}

.newsDetail-other__head {
  margin-bottom: 44px;
  text-align: center;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.detail-newsList {
  margin: auto;
}
@media (min-width: 1025px) {
  .detail-newsList {
    width: 68.0819912152vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .detail-newsList {
    width: 82.3572474378vw;
  }
}

/* 表示アニメーション */
.detail-newsList.is-anime .zoomOut-anime > * {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.detail-newsList.is-anime .slideUp-anime {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.top-newsList__item:nth-child(1) .zoomOut-anime,
.top-newsList__item:nth-child(1) .slideUp-anime {
  -webkit-transition-delay: 0.25s !important;
          transition-delay: 0.25s !important;
}

.top-newsList__item:nth-child(2) .zoomOut-anime,
.top-newsList__item:nth-child(2) .slideUp-anime {
  -webkit-transition-delay: 0.5s !important;
          transition-delay: 0.5s !important;
}

.top-newsList__item:nth-child(3) .zoomOut-anime,
.top-newsList__item:nth-child(3) .slideUp-anime {
  -webkit-transition-delay: 0.75s !important;
          transition-delay: 0.75s !important;
}

.top-newsList__item:nth-child(4) .zoomOut-anime,
.top-newsList__item:nth-child(4) .slideUp-anime {
  -webkit-transition-delay: 1s !important;
          transition-delay: 1s !important;
}

.top-newsList__item:nth-child(5) .zoomOut-anime,
.top-newsList__item:nth-child(5) .slideUp-anime {
  -webkit-transition-delay: 1.25s !important;
          transition-delay: 1.25s !important;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  about


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.about__inner .c-bizMenu {
  padding-bottom: 0;
}

@media (max-width: 750px) {
  .about__body {
    margin-bottom: 130px;
  }
}

.aboutInfo {
  max-width: 936px;
  margin: auto;
}
@media (min-width: 751px) {
  .aboutInfo {
    width: calc(100% - 80px);
  }
}
@media (max-width: 750px) {
  .aboutInfo {
    width: calc(100% - 40px);
  }
}

.aboutInfo__list {
  border-top: 1px solid #dbe1ea;
}

@media (min-width: 751px) {
  .aboutInfo__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 30px 0 30px 40px;
  }
}
@media (max-width: 750px) {
  .aboutInfo__item {
    padding: 20px 2%;
  }
}
.aboutInfo__item:not(:last-child) {
  border-bottom: 1px solid #dbe1ea;
}

.aboutInfo__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
}
@media (min-width: 751px) {
  .aboutInfo__ttl {
    width: 20%;
    margin-right: 9%;
    font-size: 18px;
  }
}
@media (max-width: 750px) {
  .aboutInfo__ttl {
    font-size: 16px;
    margin-bottom: 8px;
  }
}

.aboutInfo__txtWrap {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 180%;
  letter-spacing: 0.03em;
}
@media (min-width: 751px) {
  .aboutInfo__txtWrap {
    font-size: 16px;
  }
}

.aboutInfo__txt:not(:last-child) {
  margin-bottom: 13px;
}

@media (min-width: 751px) {
  .aboutInfo__txt.-img {
    margin-top: 16px;
  }
}
@media (max-width: 750px) {
  .aboutInfo__txt.-img {
    margin-top: 22px;
  }
}

.aboutInfo__txt span {
  display: block;
}

.aboutInfo__btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.aboutInfo__btn:hover {
  color: #a9b1bd;
}
.aboutInfo__btn:hover span::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.aboutInfo__btn:hover span::before {
  border-left-color: #fff;
}

.aboutInfo__btn > span {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 11px;
}
@media (max-width: 750px) {
  .aboutInfo__btn > span {
    top: 0;
  }
}
.aboutInfo__btn > span .c-dtlPager__arrow-border {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border: 1px solid #0171ff;
  border-radius: 50%;
}
.aboutInfo__btn > span::before {
  content: "";
  position: absolute;
  z-index: 2;
  border: 3px solid transparent;
  margin-top: 1px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.aboutInfo__btn > span::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  left: -2px;
  bottom: -2px;
  background: #0171ff;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: scale(0);
          transform: scale(0);
}
.aboutInfo__btn > span:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.aboutInfo__btn > span::before {
  border-left: 7px solid #0171ff;
  margin-right: -5px;
}
.aboutInfo__btn > span:hover::before {
  border-left-color: #fff;
}

.aboutInfo__btn-border {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border-radius: 50%;
  border: 1px solid #0171ff;
}

.aboutInfo__link {
  color: #0171ff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.aboutInfo__link::after {
  content: "";
  display: inline-block;
  background-image: url("https://wahcell.jp/wp-content/themes/wahcell-1/img/icon_outerlink_blue.svg");
  background-size: cover;
  width: 12px;
  height: 10px;
  margin-left: 10px;
  margin-top: 7px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.aboutInfo__link:hover {
  color: #a2a8b4;
}
.aboutInfo__link:hover::after {
  background-image: url("../images/common/icon_outerlink_gray.svg");
}

.aboutCertified {
  position: relative;
}
@media (min-width: 751px) {
  .aboutCertified {
    margin-top: 100px;
  }
}
@media (max-width: 750px) {
  .aboutCertified {
    margin-top: 50px;
  }
}

.aboutCertified__inner {
  max-width: 936px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .aboutCertified__inner {
    width: calc(100% - 80px);
  }
}
@media (max-width: 750px) {
  .aboutCertified__inner {
    width: calc(100% - 40px);
  }
}

.aboutCertified__heading {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 751px) {
  .aboutCertified__heading {
    font-size: 24px;
    margin-bottom: 109px;
  }
}
@media (max-width: 750px) {
  .aboutCertified__heading {
    font-size: 20px;
    margin-left: 27px;
    margin-bottom: 48px;
  }
}
.aboutCertified__heading::before {
  position: absolute;
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: #0087c6;
  border-radius: 50%;
  left: -20px;
}

@media (min-width: 751px) {
  .aboutCertified__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-right: 2%;
    padding-left: 2.6%;
  }
}
@media (max-width: 750px) {
  .aboutCertified__item {
    padding: 0 2%;
  }
}
.aboutCertified__item:not(:last-child) {
  border-bottom: 1px solid #dbe1ea;
}
@media (min-width: 751px) {
  .aboutCertified__item:not(:last-child) {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 750px) {
  .aboutCertified__item:not(:last-child) {
    padding-bottom: 32px;
    margin-bottom: 32px;
  }
}

.aboutCertified__img {
  width: 175px;
}
@media (min-width: 751px) {
  .aboutCertified__img {
    margin-right: 80px;
  }
}
@media (max-width: 750px) {
  .aboutCertified__img {
    margin: 0 auto 24px;
  }
}

.aboutCertified__txtBox:not(:last-child) {
  border-bottom: 1px solid #dbe1ea;
}
@media (min-width: 751px) {
  .aboutCertified__txtBox:not(:last-child) {
    padding-bottom: 26px;
    margin-bottom: 26px;
  }
}
@media (max-width: 750px) {
  .aboutCertified__txtBox:not(:last-child) {
    padding-bottom: 20px;
    margin-bottom: 21px;
  }
}

.aboutCertified__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  color: #0087c6;
  margin-bottom: 6px;
}
@media (min-width: 751px) {
  .aboutCertified__ttl {
    font-size: 18px;
  }
}
@media (max-width: 750px) {
  .aboutCertified__ttl {
    font-size: 16px;
  }
}

.aboutCertified__txt {
  line-height: 180%;
  letter-spacing: 0.03em;
}
@media (min-width: 751px) {
  .aboutCertified__txt {
    font-size: 16px;
  }
}

.aboutCertified__info {
  margin-top: 12px;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 0.03em;
  color: #a2a8b4;
}

.aboutHistory {
  position: relative;
}
@media (min-width: 751px) {
  .aboutHistory {
    margin: 205px auto 150px;
  }
}
@media (max-width: 750px) {
  .aboutHistory {
    margin: 100px auto 160px;
  }
}

.aboutHistory__inner {
  max-width: 936px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .aboutHistory__inner {
    width: calc(100% - 80px);
  }
}
@media (max-width: 750px) {
  .aboutHistory__inner {
    width: calc(100% - 40px);
  }
}

.aboutHistory__heading {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  position: relative;
  font-size: 24px;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 751px) {
  .aboutHistory__heading {
    margin-bottom: 109px;
  }
}
@media (max-width: 750px) {
  .aboutHistory__heading {
    margin-left: 27px;
    margin-bottom: 56px;
  }
}
.aboutHistory__heading::before {
  position: absolute;
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  background: #0087c6;
  border-radius: 50%;
  left: -20px;
}

.aboutHistory__img {
  max-width: 866px;
  margin: 0 auto;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  Message


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .message .c-bizMenu {
    padding-top: 0 !important;
  }
}

@media (max-width: 1024px) and (min-width: 751px) {
  .message .c-bizMenu {
    position: relative;
  }
}

@media (max-width: 1024px) and (min-width: 751px) {
  .message .c-bizMenu::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 500px;
    background: #fff;
  }
}

.message .fvScroll {
  position: relative;
  z-index: 2;
}

.messageRep {
  position: relative;
}
@media (min-width: 751px) {
  .messageRep {
    margin-top: -5.3vw;
  }
}
@media (max-width: 750px) {
  .messageRep {
    margin-top: -10.1333333333vw;
    margin-bottom: 97px;
  }
}

.messageRep__inner {
  position: relative;
  background-color: #fff;
}
@media (min-width: 751px) {
  .messageRep__inner {
    margin-bottom: -50px;
    padding-bottom: 200px;
  }
}
@media (max-width: 750px) {
  .messageRep__inner {
    padding-top: 18px;
    padding-bottom: 33px;
  }
}

@media (min-width: 751px) {
  .messageRep .c-bizMenu {
    background-color: #fff;
  }
}

.messageRep__list {
  max-width: 1065px;
  width: calc(100% - 48px);
  margin: 0 auto;
  padding-bottom: 59px;
}

@media (min-width: 751px) {
  .messageRep__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .messageRep__item:not(:last-child) {
    margin-bottom: 134px;
  }
}
@media (max-width: 750px) {
  .messageRep__item:not(:last-child) {
    margin-bottom: 60px;
  }
}

@media (min-width: 751px) {
  .messageRep__img.-head {
    position: absolute;
    top: -70px;
    left: 0;
    width: 44%;
  }
}
@media (max-width: 750px) {
  .messageRep__img.-head {
    width: calc(100% + 24px);
    -webkit-transform: translateX(-24px);
            transform: translateX(-24px);
  }
}

@media (min-width: 751px) {
  .messageRep__img.-foot {
    max-width: 343px;
    width: 32.3%;
    margin-top: 8.7%;
  }
}
@media (max-width: 750px) {
  .messageRep__img.-foot {
    width: calc(100% - 71px);
    margin-left: auto;
    margin-top: 60px;
  }
}

@media (min-width: 751px) {
  .messageRep__txtArea {
    position: relative;
    z-index: 1;
  }
}

@media (min-width: 751px) {
  .messageRep__txtArea.-head {
    max-width: 752px;
    width: 71%;
    padding-top: 170px;
    margin-left: auto;
  }
}
@media (max-width: 750px) {
  .messageRep__txtArea.-head {
    margin-bottom: 59px;
  }
}

@media (min-width: 751px) {
  .messageRep__txtArea.-foot {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 615px;
    margin-right: 5%;
  }
}

.messageRep__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #dbe1ea;
}
@media (min-width: 751px) {
  .messageRep__ttl {
    font-size: 32px;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }
}
@media (max-width: 750px) {
  .messageRep__ttl {
    font-size: 24px;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}

.messageRep__txtWrap {
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0.03em;
  text-align: justify;
}

@media (min-width: 751px) {
  .messageRep__txt:not(:last-child) {
    margin-bottom: 29px;
  }
}
@media (max-width: 750px) {
  .messageRep__txt:not(:last-child) {
    margin-bottom: 19px;
  }
}

.messageRep__txt span {
  display: block;
  line-height: 160%;
  margin-top: 40px;
}
@media (min-width: 751px) {
  .messageRep__txt span {
    font-size: 18px;
  }
}
@media (max-width: 750px) {
  .messageRep__txt span {
    font-size: 16px;
  }
}
@media (min-width: 751px) {
  .messageRep__txt span:last-child {
    font-size: 16px;
  }
}
@media (max-width: 750px) {
  .messageRep__txt span:last-child {
    font-size: 14px;
  }
}

.messageRep__txt.-name span {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
}

.messageRep__position {
  font-size: 18px;
}
@media (min-width: 751px) {
  .messageRep__position {
    margin-bottom: 6px;
  }
}
@media (max-width: 750px) {
  .messageRep__position {
    margin-bottom: 4px;
  }
}

.messageRep__name {
  margin: 0 !important;
  font-size: 16px;
}

@media (min-width: 751px) {
  .messageRep__foot {
    display: none;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  member


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.member__body {
  position: relative;
  z-index: 21;
}

.memberTab {
  width: calc(100% - 48px);
  position: relative;
  z-index: 2;
}
@media (min-width: 751px) {
  .memberTab {
    margin: -89px auto 140px;
  }
}
@media (max-width: 750px) {
  .memberTab {
    margin: 37px auto 45px;
  }
}

.memberTab__list {
  max-width: 660px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

.memberTab__item {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  width: 50%;
  border-right: 1px solid #a2a8b4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 751px) {
  .memberTab__item {
    font-size: 18px;
  }
}
@media (max-width: 750px) {
  .memberTab__item {
    font-size: 16px;
  }
}
.memberTab__item:first-child {
  border-left: 1px solid #a2a8b4;
}

.memberTab__item a {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.memberTab__item:hover,
.memberTab__item:hover a {
  color: #0171ff;
}

.memberTab__item.-active {
  position: relative;
  color: #0171ff !important;
}
.memberTab__item.-active::before {
  position: absolute;
  content: "";
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 10px;
  height: 10px;
  background-image: url("../images/member/menu_active.svg");
  background-size: cover;
}

.memberAnchor {
  display: none;
  width: calc(100% - 48px);
  position: relative;
}
@media (min-width: 1151px) {
  .memberAnchor {
    margin: -51px auto 133px;
    z-index: 2;
  }
}
@media (max-width: 1150px) {
  .memberAnchor {
    z-index: 1;
    background-color: #fff;
    margin: 0 auto 70px;
    padding: 20px;
  }
}

.memberAnchorHeading {
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 1151px) {
  .memberAnchorHeading {
    display: none;
  }
}
.memberAnchorHeading:hover .memberAnchorHeading__btn {
  background: #0171ff;
}
.memberAnchorHeading:hover .memberAnchorHeading__btn::before, .memberAnchorHeading:hover .memberAnchorHeading__btn::after {
  background-color: #fff;
}

.memberAnchorHeading.-active .memberAnchorHeading__btn {
  background: #0171ff;
}
.memberAnchorHeading.-active .memberAnchorHeading__btn::before, .memberAnchorHeading.-active .memberAnchorHeading__btn::after {
  background-color: #fff;
}
.memberAnchorHeading.-active .memberAnchorHeading__btn::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  opacity: 0;
}

.memberAnchorHeading__txt {
  line-height: 130%;
  letter-spacing: 0.05em;
  color: #0171ff;
}

.memberAnchorHeading__btn {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.memberAnchorHeading__btn::before, .memberAnchorHeading__btn::after {
  position: absolute;
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background-color: #0171ff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.memberAnchorHeading__btn::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.memberAnchorHeading__btn-border {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border: 1px solid #0171ff;
  border-radius: 50%;
}

@media (min-width: 1151px) {
  .memberAnchor__listWrap {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 1150px) {
  .memberAnchor__listWrap {
    display: none;
    border-top: 1px solid #a2a8b4;
    margin-top: 19px;
    padding-top: 22px;
  }
}

@media (min-width: 1151px) {
  .memberAnchor__list {
    position: relative;
    display: inline-grid;
    padding: 0 15px;
  }
  .memberAnchor__list::before, .memberAnchor__list::after {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #a2a8b4;
  }
  .memberAnchor__list::after {
    right: 0;
  }
}

@media (min-width: 1151px) {
  .memberAnchor__list.-head {
    margin-bottom: 25px;
    grid-template-columns: repeat(6, auto);
  }
}
@media (max-width: 1150px) {
  .memberAnchor__list.-head {
    margin-bottom: 26px;
  }
}

@media (min-width: 1151px) {
  .memberAnchor__list.-foot {
    grid-template-columns: repeat(5, auto);
  }
}

@media (min-width: 1151px) {
  .memberAnchor__item {
    position: relative;
    display: inline-block;
  }
  .memberAnchor__item:not(:first-child) {
    padding-left: 30px;
  }
  .memberAnchor__item:not(:first-child)::before {
    position: absolute;
    content: "・";
    display: block;
    left: 8px;
  }
  .memberAnchor__item.-beforeLine {
    padding-left: 30px;
  }
  .memberAnchor__item.-beforeLine::before {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: 16px;
    width: 1px;
    height: 100%;
    background-color: #a2a8b4;
  }
}
@media (max-width: 1150px) {
  .memberAnchor__item:not(:last-child) {
    margin-bottom: 26px;
  }
}

.memberAnchor__link {
  cursor: pointer;
  letter-spacing: 0.03em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.memberAnchor__link:hover {
  color: #0171ff;
}
@media (max-width: 1150px) {
  .memberAnchor__link {
    display: block;
    padding-left: 23px;
  }
}

.memberTabArea {
  width: calc(100% - 48px);
}
@media (min-width: 751px) {
  .memberTabArea {
    margin: 0 auto 253px;
  }
}
@media (max-width: 750px) {
  .memberTabArea {
    margin: 0 auto 125px;
  }
}

.memberTabArea__wrap {
  display: none;
}
@media (max-width: 750px) {
  .memberTabArea__wrap:first-child {
    margin-top: 131px;
  }
}
.memberTabArea__wrap.-show {
  display: block;
}
.memberTabArea__wrap.-showed {
  display: block;
}

.memberTabArea__listWrap.-large {
  max-width: 1127px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .memberTabArea__listWrap.-large {
    padding-top: 30px;
  }
  .memberTabArea__listWrap.-large:not(:last-child) {
    margin-bottom: 98px;
  }
}
@media (max-width: 750px) {
  .memberTabArea__listWrap.-large {
    padding-top: 15px;
  }
  .memberTabArea__listWrap.-large:not(:last-child) {
    margin-bottom: 70px;
  }
}

.memberTabArea__heading {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.05em;
}
.memberTabArea__heading + .memberTabArea__list {
  margin-top: 27px;
}
@media (min-width: 751px) {
  .memberTabArea__heading {
    font-size: 24px;
    padding-left: 24px;
    padding-bottom: 69px;
    border-bottom: 1px solid #dbe1ea;
  }
}
@media (max-width: 750px) {
  .memberTabArea__heading {
    font-size: 20px;
    padding-left: 22px;
    margin-bottom: 48px;
  }
}
.memberTabArea__heading::before {
  position: absolute;
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #0087c6;
  top: 12px;
  left: 0;
}

.memberTabArea__listHeading {
  margin-top: 45px;
  padding-left: 14.5px;
  font-size: 20px;
  line-height: 1.8;
  font-weight: bold;
}
.memberTabArea__listHeading + .memberTabArea__list {
  margin-top: 27px;
}

.memberTabArea__list {
  margin: 0 auto;
  display: grid;
  grid-template-rows: auto;
}
@media (min-width: 1025px) {
  .memberTabArea__list.-large {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 26px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .memberTabArea__list.-large {
    grid-template-columns: repeat(3, 1fr);
    max-width: 934px;
    gap: 60px 50px;
  }
}
@media (min-width: 751px) {
  .memberTabArea__list.-small {
    grid-template-columns: repeat(3, 1fr);
    max-width: 934px;
    gap: 60px 50px;
  }
}

.memberTabArea__item {
  cursor: pointer;
}
@media (max-width: 750px) {
  .memberTabArea__item {
    padding: 0 24px;
  }
  .memberTabArea__item:not(:last-child) {
    margin-bottom: 40px;
  }
}

.memberTabArea__img {
  text-align: center;
}
@media (max-width: 750px) {
  .memberTabArea__img {
    position: relative;
  }
}

.memberTabArea__txtArea {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
  border-bottom: 1px solid #a9b1bd;
}
@media (min-width: 751px) {
  .memberTabArea__txtArea {
    padding: 23px 16px 27px;
  }
  .memberTabArea__txtArea.--line-2 {
    min-height: 118px;
  }
  .memberTabArea__txtArea.--line-4 {
    min-height: 149px;
  }
}
@media (max-width: 750px) {
  .memberTabArea__txtArea {
    padding: 23px 16px 25px;
  }
}

.memberTabArea__txtArea.-active {
  background-color: #fff;
}
.memberTabArea__txtArea.-active .memberTabArea__btn::before, .memberTabArea__txtArea.-active .memberTabArea__btn::after {
  background-color: #fff;
}
.memberTabArea__txtArea.-active .memberTabArea__btn::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.memberTabArea__txtArea.-active .memberTabArea__btn .c-circleBtn__overlay {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.memberTabArea__item:hover .memberTabArea__btn::before, .memberTabArea__item:hover .memberTabArea__btn::after {
  background-color: #fff;
}
.memberTabArea__item:hover .c-circleBtn__overlay {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.memberTabArea__cat {
  position: relative;
  z-index: 3;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: 0.05em;
  color: #0087c6;
  margin-bottom: 7px;
}

.memberTabArea__ttl {
  position: relative;
  z-index: 3;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 160%;
}

.memberTabArea__btnWrap {
  position: absolute;
  right: 16px;
  top: 38px;
}

.memberTabArea__btn {
  position: relative;
  z-index: 3;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.memberTabArea__btn::before, .memberTabArea__btn::after {
  position: absolute;
  z-index: 2;
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background-color: #0171ff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.memberTabArea__btn::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.memberTabArea__txt {
  position: relative;
  z-index: 3;
  display: none;
  margin-top: 27px;
  line-height: 180%;
  text-align: justify;
  letter-spacing: 0.03em;
}

.memberTabArea__txtArea .c-menuLink__overlay {
  width: 1500px;
  height: 1500px;
}

.memberTabArea__mgmtList {
  max-width: 934px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 750px) {
  .memberTabArea__mgmtList {
    width: 100%;
    padding: 0 25px;
  }
}

.memberTabArea__mgmtItem {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  padding: 43px 0;
  border-bottom: 1px solid #a9b1bd;
}
.memberTabArea__mgmtItem:first-child {
  padding-top: 0;
}
@media (max-width: 750px) {
  .memberTabArea__mgmtItem {
    display: block;
    width: 100%;
    padding: 40px 0 32px;
  }
}

.memberTabArea__mgmtItem__img {
  min-width: 278px;
}

.memberTabArea__mgmtItem__img img {
  width: clamp(100%, 278px, 278px);
}

@media (max-width: 750px) {
  .memberTabArea__mgmtItem__txt {
    margin-top: 24px;
  }
}

.memberTabArea__mgmtItem__nameArea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 750px) {
  .memberTabArea__mgmtItem__nameArea {
    display: block;
  }
}

.memberTabArea__mgmtItem__position {
  font-size: 12px;
  color: #0087c6;
  display: block;
}

.memberTabArea__mgmtItem__name {
  font-size: 18px;
  color: #3d424b;
  font-weight: bold;
  display: block;
}
@media (max-width: 750px) {
  .memberTabArea__mgmtItem__name {
    margin-top: 8px;
  }
}

.memberTabArea__mgmtItem__explanation {
  margin-top: 16px;
  line-height: 1.8;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  access


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.access__inner {
  background: #f7f7f7;
}
.access__inner .c-bizMenu {
  padding-bottom: 0;
}

.accessAnchor {
  position: relative;
  z-index: 2;
}
@media (min-width: 751px) {
  .accessAnchor {
    max-width: 611px;
    margin: 17px auto 0;
    text-align: center;
  }
}
@media (max-width: 750px) {
  .accessAnchor {
    width: calc(100% - 48px);
    background-color: #fff;
    margin: 80px auto 0;
    padding: 20px;
  }
}

.accessAnchorHeading {
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 751px) {
  .accessAnchorHeading {
    display: none;
  }
}
.accessAnchorHeading:hover .accessAnchorHeading__btn {
  background: #0171ff;
}
.accessAnchorHeading:hover .accessAnchorHeading__btn::before, .accessAnchorHeading:hover .accessAnchorHeading__btn::after {
  background-color: #fff;
}

.accessAnchorHeading.-active .accessAnchorHeading__btn {
  background: #0171ff;
}
.accessAnchorHeading.-active .accessAnchorHeading__btn::before, .accessAnchorHeading.-active .accessAnchorHeading__btn::after {
  background-color: #fff;
}
.accessAnchorHeading.-active .accessAnchorHeading__btn::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  opacity: 0;
}

.accessAnchorHeading__txt {
  line-height: 130%;
  letter-spacing: 0.05em;
  color: #0171ff;
}

.accessAnchorHeading__btn {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.accessAnchorHeading__btn::before, .accessAnchorHeading__btn::after {
  position: absolute;
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background-color: #0171ff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.accessAnchorHeading__btn::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.accessAnchorHeading__btn-border {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border: 1px solid #0171ff;
  border-radius: 50%;
}

@media (max-width: 750px) {
  .accessAnchor__listWrap {
    display: none;
    border-top: 1px solid #a2a8b4;
    margin-top: 19px;
    padding-top: 22px;
  }
}

@media (min-width: 751px) {
  .accessAnchor__list {
    position: relative;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .accessAnchor__list:not(:last-child) {
    margin-bottom: 24px;
  }
  .accessAnchor__list::before, .accessAnchor__list::after {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #a2a8b4;
  }
  .accessAnchor__list::before {
    left: 0;
  }
  .accessAnchor__list::after {
    right: 0;
  }
}
@media (max-width: 750px) {
  .accessAnchor__list:not(:last-child) {
    margin-bottom: 26px;
  }
}

@media (min-width: 751px) {
  .accessAnchor__item {
    position: relative;
  }
  .accessAnchor__item::after {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: #a2a8b4;
  }
}
@media (max-width: 750px) {
  .accessAnchor__item:not(:last-child) {
    margin-bottom: 26px;
  }
}

.accessAnchor__link {
  cursor: pointer;
  padding: 0 15px;
  letter-spacing: 0.03em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  white-space: nowrap;
}
.accessAnchor__link:hover {
  color: #0171ff;
}
@media (min-width: 751px) {
  .accessAnchor__link {
    padding: 0 15px;
  }
}
@media (max-width: 750px) {
  .accessAnchor__link {
    display: block;
    padding-left: 23px;
  }
}

.accessOffice {
  position: relative;
  z-index: 2;
}
@media (min-width: 751px) {
  .accessOffice {
    margin-top: 141px;
    margin-bottom: 261px;
  }
}
@media (max-width: 750px) {
  .accessOffice {
    margin-top: 68px;
    padding-bottom: 200px;
  }
}

.accessOffice__list {
  max-width: 1127px;
  width: calc(100% - 48px);
  margin: 0 auto;
}

.accessOffice__item {
  position: relative;
  border-top: 1px solid #a2a8b4;
}
@media (min-width: 751px) {
  .accessOffice__item {
    padding-top: 30px;
  }
}
@media (max-width: 750px) {
  .accessOffice__item {
    padding-top: 15px;
  }
}
@media (min-width: 751px) {
  .accessOffice__item:first-child {
    margin-bottom: 86px;
  }
}
@media (max-width: 750px) {
  .accessOffice__item:not(:last-child) {
    margin-bottom: 73px;
  }
}
@media (min-width: 751px) {
  .accessOffice__item.-bg:not(:last-child) {
    margin-bottom: 356px;
  }
}

@media (max-width: 750px) {
  .accessOffice__item.-no1 .c-strength__item {
    width: 100vw;
    margin-left: -24px;
  }
}

.accessOfficeMapWrap {
  position: relative;
}

.accessOfficeMap {
  position: absolute;
  opacity: 0;
  -webkit-transform: scale3d(0.85, 0.85, 0.85);
          transform: scale3d(0.85, 0.85, 0.85);
  -webkit-transition: opacity 0.9s 0.5s, -webkit-transform 0.9s 0.5s;
  transition: opacity 0.9s 0.5s, -webkit-transform 0.9s 0.5s;
  transition: opacity 0.9s 0.5s, transform 0.9s 0.5s;
  transition: opacity 0.9s 0.5s, transform 0.9s 0.5s, -webkit-transform 0.9s 0.5s;
}
@media (min-width: 751px) {
  .accessOfficeMap {
    width: 97.6%;
    left: 1.8%;
  }
}
@media (max-width: 750px) {
  .accessOfficeMap {
    width: 88.5%;
  }
}

.c-strengthIllust.is-anime .accessOfficeMap {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

.accessOfficeMapLinks {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.accessOfficeMapLink {
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 751px) {
  .accessOfficeMapLink {
    width: 14.4144144144%;
    height: 7.1428571429%;
  }
}
@media (max-width: 750px) {
  .accessOfficeMapLink {
    width: 18.0722891566%;
    height: 9.1428571429%;
  }
}

@media (min-width: 751px) {
  .accessOfficeMapLink:nth-child(1) {
    top: 12.7329192547%;
    left: 75.6756756757%;
  }
}
@media (max-width: 750px) {
  .accessOfficeMapLink:nth-child(1) {
    top: 11.4285714286%;
    left: 78.9156626506%;
  }
}

@media (min-width: 751px) {
  .accessOfficeMapLink:nth-child(2) {
    top: 62.4223602484%;
    left: 75.6756756757%;
    width: 24.024024024%;
  }
}
@media (max-width: 750px) {
  .accessOfficeMapLink:nth-child(2) {
    top: 61.7142857143%;
    left: 78.9156626506%;
    height: 16%;
  }
}

@media (min-width: 751px) {
  .accessOfficeMapLink:nth-child(3) {
    top: 75.1552795031%;
    left: 75.6756756757%;
    width: 16.8168168168%;
  }
}
@media (max-width: 750px) {
  .accessOfficeMapLink:nth-child(3) {
    top: 80%;
    left: 78.9156626506%;
    width: 21.0843373494%;
  }
}

@media (min-width: 751px) {
  .accessOfficeMapLink:nth-child(4) {
    top: 57.4534161491%;
  }
}
@media (max-width: 750px) {
  .accessOfficeMapLink:nth-child(4) {
    top: 56%;
  }
}

@media (min-width: 751px) {
  .accessOfficeMapLink:nth-child(5) {
    top: 71.1180124224%;
  }
}
@media (max-width: 750px) {
  .accessOfficeMapLink:nth-child(5) {
    top: 69.7142857143%;
  }
}

@media (min-width: 751px) {
  .accessOfficeMapLink:nth-child(6) {
    top: 78.5714285714%;
    width: 16.8168168168%;
  }
}
@media (max-width: 750px) {
  .accessOfficeMapLink:nth-child(6) {
    top: 78.8571428571%;
    width: 21.0843373494%;
  }
}

@media (min-width: 751px) {
  .accessOfficeMapLink:nth-child(7) {
    top: 91.9254658385%;
  }
}
@media (max-width: 750px) {
  .accessOfficeMapLink:nth-child(7) {
    top: 91.4285714286%;
  }
}

.accessOffice__inner {
  max-width: 1127px;
  width: calc(100% - 48px);
  margin: 0 auto;
  border-top: 1px solid #a2a8b4;
  padding: 30px 0 180px;
}

.accessOffice__heading {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .accessOffice__heading {
    font-size: 24px;
    padding-left: 24px;
    margin-bottom: 92px;
  }
}
@media (max-width: 750px) {
  .accessOffice__heading {
    font-size: 20px;
    padding-left: 22px;
    margin-bottom: 48px;
  }
}
.accessOffice__heading::before {
  position: absolute;
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #0087c6;
  top: 12px;
  left: 0;
}

.accessOffice__item .c-strength__item {
  padding: 0;
}
@media (min-width: 751px) {
  .accessOffice__item .c-strength__item {
    margin-top: -120px;
  }
}
@media (max-width: 750px) {
  .accessOffice__item .c-strength__item {
    margin-top: 42px;
  }
}

@media (min-width: 751px) {
  .accessOffice__item .c-strengthIllust {
    margin-left: 0 !important;
  }
}
@media (max-width: 750px) {
  .accessOffice__item .c-strengthIllust {
    width: 100%;
    height: 100%;
  }
}

.accessOffice__item .c-strengthIllust__bg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 750px) {
  .accessOffice__item .c-strengthIllust__bg {
    width: 76vw;
    height: 76vw;
  }
}

.accessOffice__item .c-strengthIllust__illust {
  height: 58.8%;
  top: initial;
  right: initial;
  bottom: initial;
  left: initial;
}
@media (min-width: 751px) {
  .accessOffice__item .c-strengthIllust__illust {
    width: 117.9%;
  }
}
@media (max-width: 750px) {
  .accessOffice__item .c-strengthIllust__illust {
    width: 120%;
  }
}

.accessOffice__bg {
  position: absolute;
  z-index: -1;
  top: 75px;
  left: -15%;
  width: 1865px;
  height: 995px;
}
@media (max-width: 750px) {
  .accessOffice__bg {
    top: 6.9%;
    left: -41%;
    width: 674px;
  }
}

@media (min-width: 751px) {
  .accessOfficeInfo__head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (min-width: 751px) {
  .accessOfficeInfo__img {
    max-width: 501px;
    width: 44.5%;
  }
}
@media (max-width: 750px) {
  .accessOfficeInfo__img {
    margin-bottom: 46px;
  }
}

@media (min-width: 751px) {
  .accessOfficeInfo__list {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 573px;
    margin-left: 5%;
    padding-top: 31px;
  }
}

.accessOfficeInfo__item {
  border-bottom: 1px solid #a2a8b4;
}
@media (min-width: 751px) {
  .accessOfficeInfo__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 25px 0 25px 20px;
  }
}
@media (max-width: 750px) {
  .accessOfficeInfo__item {
    padding: 11px 0;
  }
}
.accessOfficeInfo__item:first-child {
  border-top: 1px solid #a2a8b4;
}

.accessOfficeInfo__ttl {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #0087c6;
}
@media (min-width: 751px) {
  .accessOfficeInfo__ttl {
    width: 70px;
    margin-right: 4.4%;
    padding-top: 7px;
  }
}
@media (max-width: 750px) {
  .accessOfficeInfo__ttl {
    margin-bottom: 12px;
  }
}

.accessOfficeInfo__txt {
  letter-spacing: 0.03em;
  line-height: 180%;
}
@media (min-width: 751px) {
  .accessOfficeInfo__txt {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 16px;
  }
}

@media (min-width: 751px) {
  .accessOfficeInfoMap {
    margin-top: 73px;
  }
}
@media (max-width: 750px) {
  .accessOfficeInfoMap {
    margin-top: 41px;
  }
}

.accessOfficeInfoMap__img {
  display: block;
  position: relative;
}
@media (min-width: 751px) {
  .accessOfficeInfoMap__img {
    width: calc(100% + 120px);
    margin-bottom: 17px;
    height: 337px;
  }
}
@media (max-width: 750px) {
  .accessOfficeInfoMap__img {
    width: calc(100% + 48px);
    -webkit-transform: translateX(-24px);
            transform: translateX(-24px);
    margin-bottom: 15px;
    height: 53.4vw;
  }
}
.accessOfficeInfoMap__img iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

.accessOfficeInfoMap__linkWrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.accessOfficeInfoMap__link {
  font-size: 16px;
  letter-spacing: 0.03em;
  color: #0171ff;
  text-align: right;
  margin-right: 27px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.accessOfficeInfoMap__link::after {
  content: "";
  position: absolute;
  display: inline-block;
  background-image: url("https://wahcell.jp/wp-content/themes/wahcell-1/img/icon_outerlink_blue.svg");
  background-size: cover;
  width: 12px;
  height: 10px;
  margin-left: 12px;
  margin-top: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.accessOfficeInfoMap__link:hover {
  color: #a2a8b4;
}
.accessOfficeInfoMap__link:hover::after {
  background-image: url("../images/common/icon_outerlink_gray.svg");
}

.access .c-strengthIllust__line {
  -webkit-animation: none;
          animation: none;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  テクノロジーソリューション


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/*
  テクノロジーソリューション - ファーストビュー
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
body.tec-solution .c-fvHeading {
  top: 13.616398243vw;
}

/*
  テクノロジーソリューション - サービス一覧
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .tecService {
    padding-bottom: 188px;
  }
}
@media (max-width: 750px) {
  .tecService {
    padding-bottom: 90px;
  }
}

.tecServiceTable {
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .tecServiceTable {
    margin-top: 152px;
  }
}
@media (max-width: 1220px) {
  .tecServiceTable {
    overflow-x: scroll;
  }
  .tecServiceTable::-webkit-scrollbar {
    height: 2px;
  }
  .tecServiceTable::-webkit-scrollbar-track {
    background: #dbe1ea;
  }
  .tecServiceTable::-webkit-scrollbar-thumb {
    background: #a2a8b4;
  }
}
@media (max-width: 750px) {
  .tecServiceTable {
    margin-top: 72px;
  }
}

.tecServiceTableIn {
  margin: auto;
}
@media (min-width: 751px) {
  .tecServiceTableIn {
    width: 1280px;
    padding-left: 80px;
    padding-right: 40px;
  }
}
@media (max-width: 750px) {
  .tecServiceTableIn {
    padding-left: 40px;
  }
}

/*
  テクノロジーソリューション - サービス表 - フロー
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.tecServiceTableHead {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../images/tec-solution/tec_service_arrow.png) no-repeat left bottom/contain;
}
@media (min-width: 751px) {
  .tecServiceTableHead {
    width: 1160px;
    height: 75px;
    padding: 0 20px 0 4px;
  }
}
@media (max-width: 750px) {
  .tecServiceTableHead {
    width: 830px;
    height: 52px;
    padding: 0 28px 0 0;
  }
}

.tecServiceTableHead__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 25%;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  color: #fff;
}
@media (min-width: 751px) {
  .tecServiceTableHead__item {
    font-size: 18px;
  }
}

.tecServiceTableConts {
  background: #fff;
}
@media (min-width: 751px) {
  .tecServiceTableConts {
    width: 1120px;
  }
}
@media (max-width: 750px) {
  .tecServiceTableConts {
    width: 782px;
  }
}

/*
  テクノロジーソリューション - サービス表 - スケジュール
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.tecServiceTableChart {
  position: relative;
  margin-bottom: 9px;
}
@media (min-width: 751px) {
  .tecServiceTableChart {
    padding-bottom: 36px;
  }
}
@media (max-width: 750px) {
  .tecServiceTableChart {
    padding-top: 4px;
    padding-bottom: 12px;
  }
}

.tecServiceTableChart::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 9px;
  right: 9px;
  height: 1px;
  background: #dbe1ea;
}

@media (min-width: 751px) {
  .tecServiceTableChartRow {
    padding-top: 28px;
  }
}
@media (max-width: 750px) {
  .tecServiceTableChartRow {
    padding-top: 10px;
  }
}

.tecServiceTableChartRowTexts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.tecServiceTableChartRowTexts__item {
  text-align: center;
  line-height: 1.2;
}
@media (min-width: 751px) {
  .tecServiceTableChartRowTexts__item {
    margin-bottom: 8px;
  }
}
@media (max-width: 750px) {
  .tecServiceTableChartRowTexts__item {
    margin-bottom: 3px;
  }
}

.tecServiceTableChartRowTexts__ttl {
  margin-bottom: 3px;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
}
@media (min-width: 751px) {
  .tecServiceTableChartRowTexts__ttl {
    font-size: 18px;
  }
}

.tecServiceTableChartRowTexts__sch {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  color: #0087c6;
}
@media (min-width: 751px) {
  .tecServiceTableChartRowTexts__sch {
    font-size: 16px;
  }
}
@media (max-width: 750px) {
  .tecServiceTableChartRowTexts__sch {
    font-size: 12px;
  }
}

.tecServiceTableChartRowLine {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 751px) {
  .tecServiceTableChartRowLine {
    height: 18px;
  }
}
@media (max-width: 750px) {
  .tecServiceTableChartRowLine {
    height: 10px;
  }
}

.tecServiceTableChartRowLine.-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  -webkit-transform: translate3d(50%, 0, 0);
          transform: translate3d(50%, 0, 0);
}
@media (min-width: 751px) {
  .tecServiceTableChartRowLine.-arrow::after {
    border: 6px solid transparent;
    border-left: 9px solid #a9b1bd;
  }
}
@media (max-width: 750px) {
  .tecServiceTableChartRowLine.-arrow::after {
    border: 3px solid transparent;
    border-left: 6px solid #a9b1bd;
  }
}

.tecServiceTableChartRowLine::before {
  content: "";
  display: block;
  width: 100%;
  background: #a9b1bd;
}
@media (min-width: 751px) {
  .tecServiceTableChartRowLine::before {
    height: 2px;
  }
}
@media (max-width: 750px) {
  .tecServiceTableChartRowLine::before {
    height: 1px;
  }
}

.tecServiceTableChartRowLine__circle {
  position: absolute;
  border-radius: 50%;
  background: #fff;
}
@media (min-width: 751px) {
  .tecServiceTableChartRowLine__circle {
    width: 18px;
    height: 18px;
    border: 5px solid #0171ff;
  }
}
@media (max-width: 750px) {
  .tecServiceTableChartRowLine__circle {
    width: 10px;
    height: 10px;
    border: 2px solid #0171ff;
  }
}

/* スケジュール - 1列目 */
@media (min-width: 751px) {
  .tecServiceTableChartRow.-no1 .tecServiceTableChartRowTexts__item:nth-child(1) {
    width: 274px;
  }
}
@media (max-width: 750px) {
  .tecServiceTableChartRow.-no1 .tecServiceTableChartRowTexts__item:nth-child(1) {
    width: 218px;
  }
}
@media (min-width: 751px) {
  .tecServiceTableChartRow.-no1 .tecServiceTableChartRowTexts__item:nth-child(2) {
    width: 310px;
  }
}
@media (max-width: 750px) {
  .tecServiceTableChartRow.-no1 .tecServiceTableChartRowTexts__item:nth-child(2) {
    width: 190px;
  }
}
@media (min-width: 751px) {
  .tecServiceTableChartRow.-no1 .tecServiceTableChartRowLine {
    width: 875px;
  }
}
@media (max-width: 750px) {
  .tecServiceTableChartRow.-no1 .tecServiceTableChartRowLine {
    width: 610px;
  }
}
@media (min-width: 751px) {
  .tecServiceTableChartRow.-no1 .tecServiceTableChartRowLine__circle:nth-child(2) {
    left: 298px;
  }
}
@media (max-width: 750px) {
  .tecServiceTableChartRow.-no1 .tecServiceTableChartRowLine__circle:nth-child(2) {
    left: 208px;
  }
}
.tecServiceTableChartRow.-no1 .tecServiceTableChartRowLine__circle:nth-child(3) {
  right: 0;
}

/* スケジュール - 2列目 */
.tecServiceTableChartRow.-no2 {
  margin-left: auto;
}
@media (min-width: 751px) {
  .tecServiceTableChartRow.-no2 {
    width: 620px;
  }
}
@media (max-width: 750px) {
  .tecServiceTableChartRow.-no2 {
    width: 428px;
  }
}
@media (min-width: 751px) {
  .tecServiceTableChartRow.-no2 .tecServiceTableChartRowTexts__item:nth-child(1) {
    width: 375px;
  }
}
@media (max-width: 750px) {
  .tecServiceTableChartRow.-no2 .tecServiceTableChartRowTexts__item:nth-child(1) {
    width: 285px;
  }
}

/* スケジュール - 3列目 */
.tecServiceTableChartRow.-no3 {
  margin-left: auto;
}
@media (min-width: 751px) {
  .tecServiceTableChartRow.-no3 {
    width: 326px;
  }
}
@media (max-width: 750px) {
  .tecServiceTableChartRow.-no3 {
    width: 224px;
  }
}
.tecServiceTableChartRow.-no3 .tecServiceTableChartRowTexts__item:nth-child(1) {
  width: 100%;
  padding-left: 25px;
}

/*
  テクノロジーソリューション - サービス表 - 詳細
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.tecServiceTableList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 751px) {
  .tecServiceTableList {
    padding: 0 9px 13px;
  }
}
@media (max-width: 750px) {
  .tecServiceTableList {
    padding: 0 6px 10px;
  }
}

.tecServiceTableCard {
  width: 25%;
}
@media (min-width: 751px) {
  .tecServiceTableCard {
    padding: 36px 25px;
  }
}
@media (max-width: 750px) {
  .tecServiceTableCard {
    padding: 4px 11px;
  }
}

.tecServiceTableCard:not(:last-child) {
  border-right: 1px solid #dbe1ea;
}

.tecServiceTableCardHead {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 751px) {
  .tecServiceTableCardHead {
    margin-bottom: 38px;
  }
}
@media (max-width: 750px) {
  .tecServiceTableCardHead {
    margin-bottom: 14px;
  }
}

@media (min-width: 751px) {
  .tecServiceTableCardHead__icon {
    width: 31px;
    margin-bottom: 6px;
  }
}
@media (max-width: 750px) {
  .tecServiceTableCardHead__icon {
    width: 18px;
    margin-bottom: 4px;
  }
}

.tecServiceTableCardHead__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .tecServiceTableCardHead__ttl {
    font-size: 24px;
  }
}

.tecServiceTableCardHead__sch {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  color: #0087c6;
}
@media (min-width: 751px) {
  .tecServiceTableCardHead__sch {
    font-size: 16px;
  }
}
@media (max-width: 750px) {
  .tecServiceTableCardHead__sch {
    font-size: 12px;
  }
}

.tecServiceTableCardBodyItem:not(:last-child) {
  border-bottom: 1px dashed #dbe1ea;
}
@media (min-width: 751px) {
  .tecServiceTableCardBodyItem:not(:last-child) {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
@media (max-width: 750px) {
  .tecServiceTableCardBodyItem:not(:last-child) {
    padding-bottom: 7px;
    margin-bottom: 7px;
  }
}

.tecServiceTableCardBodyItem__ttl {
  margin-bottom: 5px;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  color: #0087c6;
}
@media (min-width: 751px) {
  .tecServiceTableCardBodyItem__ttl {
    font-size: 16px;
  }
}
@media (max-width: 750px) {
  .tecServiceTableCardBodyItem__ttl {
    font-size: 11px;
  }
}

.tecServiceTableCardBodyItem__txt {
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .tecServiceTableCardBodyItem__txt {
    line-height: 1.3;
    font-size: 12px;
  }
}
@media (max-width: 750px) {
  .tecServiceTableCardBodyItem__txt {
    line-height: 1.5;
    font-size: 9px;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  プロ人材活用サービス


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.sec-serviceFlow {
  padding-bottom: 120px;
}

.serviceFlowList {
  max-width: 1100px;
  margin: 80px auto 0;
}
@media (min-width: 751px) {
  .serviceFlowList {
    width: calc(100% - 40px);
  }
}
@media (max-width: 750px) {
  .serviceFlowList {
    max-width: 500px;
  }
}

.serviceFlowItem {
  position: relative;
}
@media (min-width: 751px) {
  .serviceFlowItem {
    width: 33.6749633968vw;
    width: 460px;
    padding: 118px 0 0 128px;
  }
}
@media (min-width: 1367px) {
  .serviceFlowItem {
    max-width: 460px;
  }
}
@media (max-width: 750px) {
  .serviceFlowItem {
    padding: 86px 0 0 42px;
    margin-right: 24px;
  }
}

@media (max-width: 750px) {
  .serviceFlowItem:not(:last-child) {
    margin-bottom: 24px;
  }
}

.serviceFlowItem__circle {
  position: absolute;
  top: 0;
  pointer-events: none;
}
@media (min-width: 751px) {
  .serviceFlowItem__circle {
    left: 0;
    width: 288px;
    height: 288px;
  }
}
@media (max-width: 750px) {
  .serviceFlowItem__circle {
    left: -52px;
    width: 220px;
    height: 220px;
  }
}

.serviceFlowItemHead {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 22px;
  border-bottom: 1px solid #d3d7dc;
  margin-bottom: 18px;
  text-align: center;
  line-height: 1;
}

.serviceFlowItemHeadNo {
  margin-right: 14px;
}

.serviceFlowItemHeadNo__txt {
  margin-bottom: 6px;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #0087c6;
}

.serviceFlowItemHeadNo__num {
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  letter-spacing: 0.05em;
  color: #0087c6;
}

.serviceFlowItemHead__ttl {
  padding-bottom: 2px;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.serviceFlowItem__txt {
  line-height: 1.8;
  letter-spacing: 0.03em;
  font-size: 16px;
  text-align: justify;
}

.serviceFlowItem__txt a {
  color: #0171ff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.serviceFlowItem__txt a:hover {
  color: #a9b1bd;
}

/* 反転 */
@media (min-width: 751px) {
  .serviceFlowItem:nth-child(even) {
    padding: 118px 128px 0 0;
  }
}
@media (max-width: 750px) {
  .serviceFlowItem:nth-child(even) {
    padding: 86px 42px 0 0;
    margin-left: 24px;
    margin-right: 0;
  }
}
.serviceFlowItem:nth-child(even) .serviceFlowItem__circle {
  right: 0;
  left: auto;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media (max-width: 750px) {
  .serviceFlowItem:nth-child(even) .serviceFlowItem__circle {
    right: -52px;
  }
}
.serviceFlowItem:nth-child(even) .serviceFlowItemHead {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.serviceFlowItem:nth-child(even) .serviceFlowItemHeadNo {
  margin-right: 0;
  margin-left: 14px;
}

@media (min-width: 751px) {
  .serviceFlowItem:nth-child(2) {
    margin-left: auto;
    margin-top: -7.3206442167vw;
    margin-right: 10.2489019034vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .serviceFlowItem:nth-child(2) {
    margin-top: 0;
    margin-right: 3.6603221083vw;
  }
}
@media (min-width: 1367px) {
  .serviceFlowItem:nth-child(2) {
    margin-top: -100px;
    margin-right: 140px;
  }
}

@media (min-width: 751px) {
  .serviceFlowItem:nth-child(3) {
    margin-top: -6.588579795vw;
    margin-left: 10.980966325vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .serviceFlowItem:nth-child(3) {
    margin-top: 0;
    margin-left: 4.39238653vw;
  }
}
@media (min-width: 1367px) {
  .serviceFlowItem:nth-child(3) {
    margin-top: -90px;
    margin-left: 150px;
  }
}

@media (min-width: 751px) {
  .serviceFlowItem:nth-child(4) {
    margin-left: auto;
    margin-top: -7.3206442167vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .serviceFlowItem:nth-child(4) {
    margin-top: 0;
  }
}
@media (min-width: 1367px) {
  .serviceFlowItem:nth-child(4) {
    margin-top: -100px;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  サービス紹介動画


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.sec-movie {
  position: relative;
  z-index: 2;
  margin: auto;
}
@media (min-width: 751px) {
  .sec-movie {
    width: 82.4304538799vw;
    padding-top: 34px;
    padding-bottom: 17.5695461201vw;
  }
}
@media (max-width: 750px) {
  .sec-movie {
    padding-top: 22px;
    padding-bottom: 16vw;
    margin-top: 48px;
  }
}

.sec-movie::before {
  content: "";
  position: absolute;
  top: 0;
  height: 1px;
  background: #a2a8b4;
}
@media (min-width: 751px) {
  .sec-movie::before {
    right: 0;
    left: 0;
  }
}
@media (max-width: 750px) {
  .sec-movie::before {
    right: 24px;
    left: 24px;
  }
}

.movie-cm {
  margin: auto;
}
@media (min-width: 751px) {
  .movie-cm {
    width: 57.3938506589vw;
    margin-top: 60px;
  }
}
@media (max-width: 750px) {
  .movie-cm {
    width: calc(100% - 48px);
    margin-top: 32px;
  }
}

.movie-cm__in {
  position: relative;
  text-align: center;
  width: 100%;
}
.movie-cm__in::before {
  content: "";
  display: block;
  padding-top: 56.1%;
}

.movie-cm__in iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.movie-cm__notice {
  margin-top: 18px;
  letter-spacing: 0.03em;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  History


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.history__wrap {
  position: relative;
}
@media (min-width: 751px) {
  .history__wrap {
    margin-bottom: 20.4978038067vw;
  }
}
@media (max-width: 750px) {
  .history__wrap {
    margin-bottom: 26.6666666667vw;
  }
}

.history__body {
  position: relative;
}

.history__body::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background-color: #fff;
}
@media (min-width: 751px) {
  .history__body::before {
    bottom: 300px;
  }
}
@media (max-width: 750px) {
  .history__body::before {
    bottom: 100px;
  }
}

.history__inner {
  max-width: 898px;
  margin: 0 auto;
  width: calc(100% - 48px);
  padding-top: 57px;
}

.history__list {
  position: relative;
}
.history__list::before {
  content: "";
  position: absolute;
  top: 10px;
  width: 1px;
  background-image: -webkit-linear-gradient(bottom, #a2a8b4, #a2a8b4 2px, transparent 2px, transparent 2px);
  background-image: linear-gradient(to top, #a2a8b4, #a2a8b4 2px, transparent 2px, transparent 2px);
  background-size: 1px 3px;
  background-position: left bottom;
  background-repeat: repeat-y;
}
@media (min-width: 751px) {
  .history__list::before {
    bottom: 14px;
  }
}
@media (max-width: 750px) {
  .history__list::before {
    bottom: 40px;
  }
}

.history__item {
  line-height: 1.4;
}
@media (min-width: 751px) {
  .history__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .history__item:not(:last-child) {
    padding-bottom: 53px;
  }
}
@media (max-width: 750px) {
  .history__item:not(:last-child) {
    padding-bottom: 32px;
  }
}

.history__item.-img {
  padding-bottom: 8px;
}

.history__date {
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0.03em;
  color: #0087c6;
  padding-left: 22px;
}
@media (min-width: 751px) {
  .history__date {
    width: 96px;
    margin-right: 6.5%;
  }
}
.history__date::before {
  position: absolute;
  content: "";
  top: 8px;
  left: -4.5px;
  display: block;
  width: 9px;
  height: 9px;
  background-color: #0087c6;
  border-radius: 50%;
}

.history__txtWrap {
  padding-top: 1px;
  position: relative;
}
.history__txtWrap.-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (max-width: 750px) {
  .history__txtWrap.-flex {
    display: block;
  }
}
.history__txtWrap.-flex .history__txt {
  display: block;
  width: 100%;
}
.history__txtWrap.-flex .history__img + .history__img {
  margin-left: 20px;
}
@media (max-width: 750px) {
  .history__txtWrap.-flex .history__img + .history__img {
    margin: 20px 0 0;
  }
}
@media (max-width: 750px) {
  .history__txtWrap {
    padding-left: 22px;
  }
}

.history__txt {
  line-height: 180%;
  letter-spacing: 0.03em;
}
.history__txt a {
  text-decoration: underline;
  color: #0087c6;
}
.history__txt.-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

@media (min-width: 751px) {
  .history__img {
    width: 146px;
    margin-top: 6px;
  }
}

.history__item.-img:last-child .history__date::after,
.history__item.-img:last-child .history__txtWrap::after {
  position: absolute;
  content: "";
  top: 17px;
  left: -2px;
  display: block;
  width: 4px;
  height: 100%;
  background-color: #fff;
}
@media (min-width: 751px) {
  .history__item.-img:last-child .history__txtWrap::after {
    display: none;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  Partner


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.partner__wrap {
  position: relative;
}
@media (min-width: 751px) {
  .partner__wrap {
    margin-bottom: 20.4978038067vw;
  }
}
@media (max-width: 750px) {
  .partner__wrap {
    margin-bottom: 26.6666666667vw;
  }
}

.partner__sec:not(:last-child) {
  margin-bottom: 142px;
}

.partner__secBody {
  position: relative;
}
@media (min-width: 751px) {
  .partner__secBody {
    margin-top: -207px;
  }
}

.partner__secInner {
  max-width: 975px;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 48px);
}

.partner__list {
  border-top: 1px solid #dbe1ea;
  border-bottom: 1px solid #dbe1ea;
}

.partner__item {
  position: relative;
}
@media (min-width: 751px) {
  .partner__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 387px;
    padding: 35px 35px 90px 27px;
    padding: 35px 35px 35px 27px;
  }
}
@media (max-width: 750px) {
  .partner__item {
    padding: 35px 25px;
  }
}
.partner__item:not(:last-child) {
  border-bottom: 1px solid #dbe1ea;
}
@media (min-width: 751px) {
  .partner__item::before {
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 344px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 1px;
    height: calc(100% - 70px);
    background-image: -webkit-linear-gradient(bottom, #a2a8b4, #a2a8b4 2px, transparent 2px, transparent 2px);
    background-image: linear-gradient(to top, #a2a8b4, #a2a8b4 2px, transparent 2px, transparent 2px);
    background-size: 1px 6px;
    background-position: left bottom;
    background-repeat: repeat-y;
  }
}

.partnerHeading {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.partnerHeading.-reverse {
  text-align: right;
}
@media (min-width: 751px) {
  .partnerHeading {
    font-size: 24px;
    padding-bottom: 69px;
  }
}
@media (max-width: 750px) {
  .partnerHeading {
    font-size: 20px;
    padding-bottom: 69px;
  }
}

.partnerHeading__txt {
  position: relative;
  display: inline-block;
}
@media (min-width: 751px) {
  .partnerHeading__txt {
    padding-left: 24px;
  }
}
@media (max-width: 750px) {
  .partnerHeading__txt {
    padding-left: 22px;
  }
}
.partnerHeading__txt::before {
  position: absolute;
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #0087c6;
  top: 12px;
  left: 0;
}

@media (min-width: 751px) {
  .partner__img {
    width: 274px;
    margin-right: 43px;
  }
}
@media (max-width: 750px) {
  .partner__img {
    margin-bottom: 32px;
  }
}

@media (min-width: 751px) {
  .partner__txtarea {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 576px;
    padding-left: 38px;
    padding-bottom: 35px;
  }
}
@media (max-width: 750px) {
  .partner__txtarea {
    margin-bottom: 32px;
  }
}

.partner__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  position: relative;
  line-height: 130%;
  letter-spacing: 0.05em;
  margin-bottom: 17px;
  padding-bottom: 22px;
  border-bottom: 1px solid #d3d7dc;
}
@media (min-width: 751px) {
  .partner__ttl {
    font-size: 24px;
  }
}
@media (max-width: 750px) {
  .partner__ttl {
    font-size: 20px;
  }
}
.partner__ttl::before {
  position: absolute;
  content: "";
  display: block;
  width: 41px;
  height: 1px;
  bottom: -1px;
  left: 0;
  background-color: #0087c6;
}

.partner__txt {
  line-height: 180%;
  letter-spacing: 0.03em;
}
@media (min-width: 751px) {
  .partner__txt {
    font-size: 16px;
  }
}

@media (min-width: 751px) {
  .partner__link {
    position: absolute;
    right: 54px;
    bottom: 35px;
  }
}
@media (max-width: 750px) {
  .partner__link {
    margin-left: auto;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  office


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.office__wrap {
  margin-bottom: 13vw;
}
@media (max-width: 900px) {
  .office__wrap {
    padding-top: 100px;
  }
}

.office__sec {
  position: relative;
  z-index: 2;
  max-width: 1366px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 901px) {
  .office__sec {
    overflow: hidden;
  }
  .office__sec:first-child {
    padding-bottom: 290px;
  }
  .office__sec:last-child {
    padding-bottom: 140px;
  }
}
@media (max-width: 900px) {
  .office__sec {
    margin-bottom: 50px;
    padding-bottom: 100px;
  }
}

.officeHeading {
  max-width: 1126px;
  width: calc(100% - 48px);
  border-top: 1px solid #a2a8b4;
  padding-top: 35px;
}
@media (min-width: 901px) {
  .officeHeading {
    margin: 0 auto 197px;
  }
}
@media (max-width: 900px) {
  .officeHeading {
    margin: 0 auto 72px;
  }
}

.officeHeading__txt {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.05em;
}
@media (min-width: 901px) {
  .officeHeading__txt {
    font-size: 24px;
    padding-left: 24px;
  }
}
@media (max-width: 900px) {
  .officeHeading__txt {
    font-size: 20px;
    padding-left: 22px;
  }
}
.officeHeading__txt::before {
  position: absolute;
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #0087c6;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.officeSlider__item {
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 900px) {
  .officeSlider__img {
    margin-bottom: 8px;
  }
}

@media (min-width: 901px) {
  .officeSlider__item.swiper-slide-active {
    -webkit-transform: scale(1.5) translateY(-16%);
            transform: scale(1.5) translateY(-16%);
  }
  .officeSlider__item.swiper-slide-active .officeSlider__txt {
    -webkit-transform: scale(0.67);
            transform: scale(0.67);
  }
}
.officeSlider__item.swiper-slide-active .officeSlider__txt {
  opacity: 1;
}

.officeSlider__txt {
  opacity: 0;
  letter-spacing: 0.03em;
}
@media (min-width: 901px) {
  .officeSlider__txt {
    position: absolute;
    bottom: -34px;
    width: 100%;
    text-align: center;
    white-space: nowrap;
  }
  .officeSlider__txt.-line {
    bottom: -50px;
  }
}

.officeSlider__listWrap .c-slider__btnWrap {
  right: 8.5%;
}
@media (min-width: 901px) {
  .officeSlider__listWrap .c-slider__btnWrap {
    top: 147px;
    bottom: initial;
  }
}
@media (max-width: 900px) {
  .officeSlider__listWrap .c-slider__btnWrap {
    bottom: 20px;
  }
}

.office-concept-area {
  position: relative;
  background: #f7f7f7;
}
.office-concept-area .bg img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .office-concept-area .bg.--img {
    -webkit-transform: scale(3);
            transform: scale(3);
  }
}
.office-concept-area .head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  max-width: 1128px;
  width: 100%;
  margin: -130px auto 0;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .office-concept-area .head {
    max-width: none;
    width: auto;
    margin: -130px 60px 0;
  }
}
@media screen and (max-width: 1200px) and (max-width: 750px) {
  .office-concept-area .head {
    display: block;
    margin: -23px 24px 0;
  }
}
.office-concept-area .head .left .title {
  color: #DBE1EA;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: 90%; /* 45px */
  letter-spacing: -3px;
  text-transform: capitalize;
}
.office-concept-area .head .left .row {
  display: block;
  position: relative;
}
@media screen and (max-width: 750px) {
  .office-concept-area .head .left .row {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.office-concept-area .head .left .row:nth-child(1)::before {
  content: "";
  display: block;
  position: absolute;
  top: 24px;
  right: 0;
  width: 60px;
  height: 3px;
  margin: auto;
  background: #DBE1EA;
}
@media screen and (max-width: 750px) {
  .office-concept-area .head .left .row:nth-child(1)::before {
    right: -80px;
  }
}
.office-concept-area .head .left .row:nth-child(2) {
  margin-left: 24px;
}
.office-concept-area .head .left .sub {
  display: block;
  position: relative;
  margin-top: 25px;
  padding-left: 17px;
  color: var(--web-black, #3D424B);
  font-size: 16px;
  font-style: normal;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  line-height: 180%; /* 28.8px */
}
@media screen and (max-width: 750px) {
  .office-concept-area .head .left .sub {
    margin-top: 15px;
  }
}
.office-concept-area .head .left .sub::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 100%;
  border: 1px solid #0087C6;
  margin: auto;
}
.office-concept-area .head .right {
  margin: 43px 0 0 159px;
}
@media screen and (max-width: 1200px) {
  .office-concept-area .head .right {
    margin: 43px 0 0 60px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 750px) {
  .office-concept-area .head .right {
    margin: 60px 0 0;
  }
}
.office-concept-area .head .right .title {
  color: #0087C6;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 80px;
  font-style: normal;
  font-weight: 200;
  line-height: 90%; /* 72px */
  text-transform: capitalize;
}
@media screen and (max-width: 750px) {
  .office-concept-area .head .right .title {
    font-size: 40px;
    text-transform: capitalize;
  }
}
.office-concept-area .head .right .text {
  margin-top: 47px;
  color: #3D424B;
  font-size: 16px;
  font-style: normal;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.48px;
}
@media screen and (max-width: 750px) {
  .office-concept-area .head .right .text {
    margin-top: 25px;
  }
}
.office-concept-area .head .right .text + .text {
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .office-concept-area .head .right .text + .text {
    margin-top: 24px;
  }
}
.office-concept-area .head .right .text .link {
  text-decoration: underline;
  color: #0087c6;
}
.office-concept-area .img-item {
  position: relative;
  width: 100%;
  margin-top: 82px;
}
.office-concept-area .video {
  position: absolute;
  top: 82px;
  right: 0;
  left: 0;
  max-width: 784px;
  width: 100%;
  height: 441px;
  margin: auto;
  background: rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 1441px) {
  .office-concept-area .video {
    top: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 1200px) {
  .office-concept-area .video {
    top: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 1200px) and (max-width: 900px) {
  .office-concept-area .video {
    max-width: none;
    width: auto;
    height: auto;
    margin: 0 24px;
  }
}
.office-concept-area .video iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
.office-concept-area .detail {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  max-width: 1100px;
  width: 100%;
  margin: 86px auto 0;
}
@media screen and (max-width: 1200px) {
  .office-concept-area .detail {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 1200px) and (max-width: 970px) {
  .office-concept-area .detail {
    display: block;
    max-width: none;
    width: auto;
    margin: 180px 24px 0;
  }
}
.office-concept-area .detail .title {
  color: var(--web-black, #3D424B);
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-size: 40px;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  line-height: 130%; /* 52px */
  letter-spacing: 2px;
}
@media screen and (max-width: 900px) {
  .office-concept-area .detail .title {
    font-size: 28px;
    letter-spacing: 1.4px;
  }
}
.office-concept-area .detail .row {
  display: block;
}
.office-concept-area .detail .left {
  max-width: 478px;
  width: 100%;
}
@media screen and (max-width: 970px) {
  .office-concept-area .detail .left {
    max-width: none;
    width: auto;
  }
}
.office-concept-area .detail .left .text {
  margin-top: 34px;
  color: #3D424B;
  font-size: 16px;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.48px;
}
@media screen and (max-width: 750px) {
  .office-concept-area .detail .left .text {
    margin-top: 20px;
  }
}
.office-concept-area .detail .right {
  position: relative;
  max-width: 526px;
  width: 100%;
  height: 469px;
  margin-left: 95px;
  opacity: 0;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.office-concept-area .detail .right.is-anime {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
@media screen and (max-width: 970px) {
  .office-concept-area .detail .right {
    display: block;
    max-width: none;
    width: auto;
    margin: 180px 24px 0;
  }
}
@media screen and (max-width: 1200px) {
  .office-concept-area .detail .right {
    max-width: 327px;
    height: 291px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 970px) {
  .office-concept-area .detail .right {
    margin: 65px auto 0;
  }
}
.office-concept-area .detail .link {
  position: absolute;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 292px;
  height: 292px;
  border-radius: 100%;
}
@media screen and (max-width: 1200px) {
  .office-concept-area .detail .link {
    width: 181px;
    height: 181px;
  }
}
.office-concept-area .detail .link:hover span {
  color: #0171FF;
}
.office-concept-area .detail .link:hover path {
  fill: #0171FF;
}
.office-concept-area .detail .link:hover .bg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.office-concept-area .detail .link.--01 {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}
.office-concept-area .detail .link.--02 {
  left: 0;
  bottom: 0;
}
.office-concept-area .detail .link.--03 {
  right: 0;
  bottom: 0;
}
.office-concept-area .detail .link .bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  border-radius: 50%;
  background: -webkit-radial-gradient(50% 50%, 50% 50%, rgba(117, 159, 182, 0) 42.19%, rgba(117, 159, 182, 0.02) 77.08%, rgba(117, 159, 182, 0.2) 100%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(117, 159, 182, 0) 42.19%, rgba(117, 159, 182, 0.02) 77.08%, rgba(117, 159, 182, 0.2) 100%);
}
.office-concept-area .detail .link span {
  display: block;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.office-concept-area .detail .link .text {
  color: #3D424B;
  text-align: center;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 54px */
}
.office-concept-area .detail .link .text .large {
  display: inline;
  font-size: 47px;
}
@media screen and (max-width: 1200px) {
  .office-concept-area .detail .link .text .large {
    font-size: 37px;
  }
}
@media screen and (max-width: 1200px) {
  .office-concept-area .detail .link .text {
    font-size: 20px;
  }
}
.office-concept-area .detail .link .sub {
  color: var(--web-black, #3D424B);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%; /* 28.8px */
}
@media screen and (max-width: 1200px) {
  .office-concept-area .detail .link .sub {
    font-size: 14px;
  }
}
.office-concept-area .detail .link .arrow {
  margin-top: 13px;
}
@media screen and (max-width: 1200px) {
  .office-concept-area .detail .link .arrow {
    margin-top: 7px;
  }
}
.office-concept-area .detail .link .arrow svg {
  display: block;
  margin: auto;
}
.office-concept-area .detail .link .arrow path {
  -webkit-transition: fill 0.2s;
  transition: fill 0.2s;
}

.section-concept-area {
  position: relative;
  margin-top: 158px;
}
.section-concept-area + .section-concept-area {
  margin-top: 180px;
}
.section-concept-area.--reverse .bg {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.section-concept-area.--reverse .head {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding-top: 100px;
}
@media screen and (max-width: 970px) {
  .section-concept-area.--reverse .head {
    padding-top: 0;
  }
}
.section-concept-area.--reverse .head .right {
  margin: 0;
}
@media screen and (max-width: 970px) {
  .section-concept-area.--reverse .head .right {
    margin: 30px auto 0;
  }
}
.section-concept-area.--reverse .head .left {
  margin-left: 155px;
}
@media screen and (max-width: 1300px) {
  .section-concept-area.--reverse .head .left {
    margin-left: 35px;
  }
}
@media screen and (max-width: 1300px) and (max-width: 1200px) {
  .section-concept-area.--reverse .head .left {
    margin-left: 55px;
  }
}
@media screen and (max-width: 1300px) and (max-width: 1200px) and (max-width: 970px) {
  .section-concept-area.--reverse .head .left {
    margin: 0;
  }
}
.section-concept-area.--reverse .office-slider-contents {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin: 100px 0 0 25px;
}
@media screen and (max-width: 970px) {
  .section-concept-area.--reverse .office-slider-contents {
    margin: 80px 0 0;
  }
}
.section-concept-area.--reverse .office-slider-contents .right {
  margin: 0;
}
@media screen and (max-width: 970px) {
  .section-concept-area.--reverse .office-slider-contents .right {
    margin: 37px 25px 0;
  }
}
.section-concept-area.--reverse .office-slider-contents .left {
  margin-left: 72px;
}
@media screen and (max-width: 970px) {
  .section-concept-area.--reverse .office-slider-contents .left {
    margin: 0 0 0 auto;
  }
}
.section-concept-area.--reverse .office-slider-contents .left .inner {
  border-radius: 10px 0px 0px 10px;
}
@media screen and (min-width: 1441px) {
  .section-concept-area.--reverse .office-slider-contents .left .inner {
    border-radius: 10px;
  }
}
.section-concept-area.--reverse .swiper-next-btn {
  right: 40px;
}
@media screen and (max-width: 970px) {
  .section-concept-area.--reverse .swiper-next-btn {
    right: 20px;
  }
}
.section-concept-area.--reverse .swiper-pagination {
  padding-right: 40px;
}
@media screen and (max-width: 970px) {
  .section-concept-area.--reverse .swiper-pagination {
    padding-right: 20px;
  }
}
.section-concept-area .bg {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (max-width: 750px) {
  .section-concept-area .bg {
    position: relative;
  }
}
.section-concept-area .bg img {
  width: 100%;
}
.section-concept-area .pc-show {
  display: block;
}
@media screen and (max-width: 750px) {
  .section-concept-area .pc-show {
    display: none;
  }
}
.section-concept-area .sp-show {
  display: none;
}
@media screen and (max-width: 750px) {
  .section-concept-area .sp-show {
    display: block;
  }
}
.section-concept-area .head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1230px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 1300px) {
  .section-concept-area .head {
    max-width: none;
    width: auto;
    margin: 0 24px;
  }
}
@media screen and (max-width: 1300px) and (max-width: 1200px) {
  .section-concept-area .head {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 1300px) and (max-width: 1200px) and (max-width: 970px) {
  .section-concept-area .head {
    display: block;
  }
}
.section-concept-area .head .left {
  max-width: 525px;
  width: 100%;
}
@media screen and (max-width: 970px) {
  .section-concept-area .head .left {
    max-width: none;
    width: auto;
  }
}
.section-concept-area .head .right {
  margin-left: 155px;
}
@media screen and (max-width: 1300px) {
  .section-concept-area .head .right {
    margin-left: 35px;
  }
}
@media screen and (max-width: 1300px) and (max-width: 1200px) {
  .section-concept-area .head .right {
    margin-left: 55px;
  }
}
@media screen and (max-width: 1300px) and (max-width: 1200px) and (max-width: 970px) {
  .section-concept-area .head .right {
    margin: 30px auto 0;
  }
}
.section-concept-area .head .title {
  position: relative;
}
.section-concept-area .head .num {
  position: absolute;
  top: 8px;
  left: 0;
  color: #0087C6;
  text-align: center;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 24px;
  font-weight: 300;
}
@media screen and (max-width: 900px) {
  .section-concept-area .head .num {
    font-size: 16px;
  }
}
.section-concept-area .head .row {
  display: block;
  color: #3D424B;
  padding-left: 45px;
}
@media screen and (max-width: 900px) {
  .section-concept-area .head .row {
    padding-left: 27px;
  }
}
.section-concept-area .head .row.--en {
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 60px;
  font-weight: 300;
  line-height: 100%; /* 108px */
}
@media screen and (max-width: 900px) {
  .section-concept-area .head .row.--en {
    -webkit-font-feature-settings: "palt" on;
            font-feature-settings: "palt" on;
    font-size: 45px;
    letter-spacing: 1.4px;
  }
}
.section-concept-area .head .row.--jp {
  font-size: 24px;
  font-weight: 600;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  line-height: 180%; /* 43.2px */
}
@media screen and (max-width: 900px) {
  .section-concept-area .head .row.--jp {
    margin-top: 5px;
    font-size: 20px;
  }
}
.section-concept-area .head .text {
  margin: 45px 0 0;
  padding-left: 45px;
  color: #3D424B;
  font-size: 16px;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.48px;
}
@media screen and (max-width: 900px) {
  .section-concept-area .head .text {
    margin: 20px 0 0;
    padding-left: 27px;
  }
}
.section-concept-area .head .right {
  position: relative;
  width: 550px;
  height: 550px;
}
@media screen and (max-width: 1200px) {
  .section-concept-area .head .right {
    width: 320px;
    height: 320px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 970px) {
  .section-concept-area .head .right {
    width: 550px;
    height: 550px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 970px) and (max-width: 750px) {
  .section-concept-area .head .right {
    width: 320px;
    height: 320px;
  }
}
.section-concept-area .head .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 550px;
  height: 550px;
}
@media screen and (max-width: 1200px) {
  .section-concept-area .head .bg {
    width: 327px;
    height: 327px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 970px) {
  .section-concept-area .head .bg {
    width: 550px;
    height: 550px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 970px) and (max-width: 750px) {
  .section-concept-area .head .bg {
    width: 327px;
    height: 327px;
  }
}
.section-concept-area .head .bg img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.section-concept-area .head .img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 410px;
  height: 410px;
  border-radius: 100%;
  margin: auto;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .section-concept-area .head .img {
    width: 235px;
    height: 235px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 970px) {
  .section-concept-area .head .img {
    width: 410px;
    height: 410px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 970px) and (max-width: 750px) {
  .section-concept-area .head .img {
    width: 235px;
    height: 235px;
  }
}
.section-concept-area .head .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-concept-area .gallery {
  margin-top: 180px;
}
@media screen and (max-width: 750px) {
  .section-concept-area .gallery {
    margin-top: 121px;
  }
}
.section-concept-area .gallery .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 20px;
}
@media screen and (max-width: 970px) {
  .section-concept-area .gallery .row {
    display: block;
  }
}
.section-concept-area .gallery .row + .row {
  margin-top: 20px;
}
@media screen and (max-width: 970px) {
  .section-concept-area .gallery .row + .row {
    margin-top: 40px;
  }
}
.section-concept-area .gallery .row img {
  pointer-events: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-concept-area .gallery .item {
  position: relative;
  width: 100%;
}
.section-concept-area .gallery .item-wrap {
  display: none;
}
@media screen and (max-width: 970px) {
  .section-concept-area .gallery .item-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 10px;
  }
  .section-concept-area .gallery .item-wrap .item.--img {
    display: block;
  }
}
.section-concept-area .gallery .item.--img {
  max-width: 361px;
  height: 241px;
  background: rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 970px) {
  .section-concept-area .gallery .item.--img {
    display: none;
    max-width: none;
  }
}
@media screen and (max-width: 970px) and (max-width: 750px) {
  .section-concept-area .gallery .item.--img {
    height: 254px;
  }
}
@media screen and (max-width: 970px) and (max-width: 750px) and (max-width: 600px) {
  .section-concept-area .gallery .item.--img {
    max-width: 62.1333333333vw;
    height: 41.0666666667vw;
  }
}
.section-concept-area .gallery .item.--img.--min {
  max-width: 223px;
  height: 241px;
}
@media screen and (max-width: 970px) {
  .section-concept-area .gallery .item.--img.--min {
    max-width: none;
  }
}
@media screen and (max-width: 970px) and (max-width: 750px) {
  .section-concept-area .gallery .item.--img.--min {
    height: 254px;
  }
}
@media screen and (max-width: 970px) and (max-width: 750px) and (max-width: 600px) {
  .section-concept-area .gallery .item.--img.--min {
    max-width: 35.2vw;
    height: 41.0666666667vw;
  }
}
.section-concept-area .gallery .item.--balloon {
  max-width: 361px;
  width: 100%;
  height: 218px;
  padding: 30px;
  border-radius: 10px;
  background: rgba(219, 225, 234, 0.6);
}
@media screen and (max-width: 970px) {
  .section-concept-area .gallery .item.--balloon {
    height: auto;
    margin: 20px auto 0;
  }
}
@media screen and (max-width: 970px) and (max-width: 750px) {
  .section-concept-area .gallery .item.--balloon {
    max-width: none;
    width: auto;
    margin: 20px 24px 0;
  }
}
.section-concept-area .gallery .item.--balloon.--reverse .arrow {
  right: 0;
  left: auto;
  -webkit-transform: scale(-1);
          transform: scale(-1);
}
.section-concept-area .gallery .item.--balloon .title {
  color: #0087C6;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 600px) {
  .section-concept-area .gallery .item.--balloon .title {
    font-size: 12px;
  }
}
.section-concept-area .gallery .item.--balloon .text {
  margin-top: 11px;
  color: #3D424B;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 600px) {
  .section-concept-area .gallery .item.--balloon .text {
    margin-top: 5px;
    font-size: 12px;
    letter-spacing: 0.36px;
  }
}
.section-concept-area .gallery .item .arrow {
  position: absolute;
  bottom: -24px;
  left: 0;
}
@media screen and (max-width: 600px) {
  .section-concept-area .gallery .item .arrow svg {
    display: block;
    width: 33px;
  }
}

.office-slider-contents {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 100px 25px 0 0;
}
@media screen and (min-width: 1441px) {
  .office-slider-contents {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 970px) {
  .office-slider-contents {
    display: block;
    margin: 50px 0 0;
  }
}
.office-slider-contents + .office-slider-contents {
  margin-top: 80px;
}
.office-slider-contents .left {
  position: relative;
  max-width: 637px;
  height: 400px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .office-slider-contents .left {
    max-width: 351px;
    height: 218px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 970px) {
  .office-slider-contents .left {
    max-width: 637px;
    height: 400px;
  }
}
@media screen and (max-width: 1200px) and (max-width: 970px) and (max-width: 750px) {
  .office-slider-contents .left {
    max-width: 93.6vw;
    height: 58.1333333333vw;
  }
}
.office-slider-contents .left .inner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 0px 10px 10px 0px;
}
@media screen and (min-width: 1441px) {
  .office-slider-contents .left .inner {
    border-radius: 10px;
  }
}
.office-slider-contents .left .img {
  width: 100%;
  height: 100%;
}
.office-slider-contents .left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.office-slider-contents .right {
  max-width: 527px;
  width: 100%;
  margin-left: 72px;
}
@media screen and (max-width: 970px) {
  .office-slider-contents .right {
    max-width: none;
    width: auto;
    margin: 37px 25px 0;
  }
}
.office-slider-contents .right .sub {
  color: #0087C6;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 400;
}
@media screen and (max-width: 750px) {
  .office-slider-contents .right .sub {
    font-size: 16px;
  }
}
.office-slider-contents .right .title {
  margin-top: 15px;
  color: #3D424B;
  font-size: 24px;
  font-weight: 600;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  line-height: 180%; /* 43.2px */
}
@media screen and (max-width: 750px) {
  .office-slider-contents .right .title {
    font-size: 20px;
  }
}
.office-slider-contents .right .text {
  margin-top: 20px;
  color: #3D424B;
  font-size: 16px;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.48px;
}
@media screen and (max-width: 750px) {
  .office-slider-contents .right .text {
    margin-top: 15px;
  }
}
.office-slider-contents .right .link {
  display: block;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  color: #0087C6;
}
.office-slider-contents .right .link:hover {
  opacity: 0.7;
}
.office-slider-contents .office-slider-item {
  width: 100%;
  height: 100%;
}
.office-slider-contents .swiper-pagination-bullet {
  background: #DBE1EA;
  opacity: 1;
}
.office-slider-contents .swiper-pagination-bullet-active {
  background: #0087C6;
}
.office-slider-contents .swiper-next-btn {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  z-index: 1;
  -webkit-transform: rotate(180deg) scale(-1, 1);
          transform: rotate(180deg) scale(-1, 1);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.office-slider-contents .swiper-next-btn:hover path {
  stroke: #0171FF;
}
.office-slider-contents .swiper-next-btn.is-active rect.--back {
  -webkit-animation: svg-anime 21s linear forwards;
          animation: svg-anime 21s linear forwards;
}
.office-slider-contents .swiper-next-btn rect.--front,
.office-slider-contents .swiper-next-btn path {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@-webkit-keyframes svg-anime {
  0% {
    stroke: #0171FF;
    stroke-dasharray: 1000px;
    stroke-dashoffset: 1000px;
  }
  100% {
    stroke: #0171FF;
    stroke-dashoffset: 0;
  }
}
@keyframes svg-anime {
  0% {
    stroke: #0171FF;
    stroke-dasharray: 1000px;
    stroke-dashoffset: 1000px;
  }
  100% {
    stroke: #0171FF;
    stroke-dashoffset: 0;
  }
}
.office-slider-contents .swiper-pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 14px 0 0 auto;
}

.banner-area {
  position: relative;
  z-index: 2;
  margin-top: 272px;
}
@media screen and (max-width: 750px) {
  .banner-area {
    margin: 72px 0 100px;
  }
}
.banner-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.banner-area .inner-block {
  max-width: 1200px;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .banner-area .inner-block {
    max-width: none;
    width: auto;
  }
}
.banner-area .main-title {
  color: #3D424B;
  text-align: center;
  font-size: 16px;
  line-height: 180%;
  text-align: center;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
}
.banner-area .main-title br {
  display: none;
}
@media screen and (max-width: 750px) {
  .banner-area .main-title {
    font-size: 18px;
    letter-spacing: 1.6px;
  }
  .banner-area .main-title br {
    display: block;
  }
}
.banner-area .link-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 65px;
  gap: 0 20px;
}
@media screen and (max-width: 1250px) {
  .banner-area .link-list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 1250px) and (max-width: 900px) {
  .banner-area .link-list {
    display: block;
    margin-top: 40px;
    gap: 0;
  }
}
.banner-area .link-list .link {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  max-width: 552px;
  height: 210px;
  border-radius: 10px;
}
.banner-area .link-list .link:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (max-width: 1250px) {
  .banner-area .link-list .link {
    max-width: 406px;
    height: 154px;
  }
}
@media screen and (max-width: 1250px) and (max-width: 900px) {
  .banner-area .link-list .link {
    display: block;
    margin: auto;
  }
  .banner-area .link-list .link + .link {
    margin: 13px auto 0;
  }
}
@media screen and (max-width: 1250px) and (max-width: 900px) and (max-width: 600px) {
  .banner-area .link-list .link {
    max-width: 335px;
    height: 123px;
  }
}

.cafe-area {
  margin-top: 233px;
}
@media (max-width: 750px) {
  .cafe-area {
    margin-top: 100px;
  }
}
.cafe-area .inner-block {
  position: relative;
}
@media (min-width: 751px) {
  .cafe-area .inner-block {
    padding: 350px 0 280px;
  }
}
@media (max-width: 1024px) {
  .cafe-area .inner-block {
    padding: 280px 0 220px;
  }
}
@media (max-width: 1024px) and (max-width: 750px) {
  .cafe-area .inner-block {
    padding: 180px 0 160px;
    margin-bottom: 10.6666666667vw;
  }
}
.cafe-area .inner-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
  border-radius: 50%;
  background: -webkit-linear-gradient(353.6deg, #f0f0f0 34.84%, #e7ebf1 81.3%);
  background: linear-gradient(96.4deg, #f0f0f0 34.84%, #e7ebf1 81.3%);
}
@media (min-width: 751px) {
  .cafe-area .inner-block::before {
    width: 200vw;
  }
}
@media (max-width: 1024px) {
  .cafe-area .inner-block::before {
    width: 260vw;
  }
}
@media (max-width: 1024px) and (max-width: 750px) {
  .cafe-area .inner-block::before {
    width: 320vw;
  }
}
.cafe-area .carousel {
  margin-top: 150px;
}
@media (max-width: 750px) {
  .cafe-area .carousel {
    margin-top: 0;
  }
}
.cafe-area .carousel .swiper-wrapper {
  pointer-events: none;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.cafe-area .carousel .swiper-slide {
  position: relative;
  max-width: 644px;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 750px) {
  .cafe-area .carousel .swiper-slide {
    max-width: 351px;
    height: 218px;
  }
}
.cafe-area .carousel .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cafe-area .office-slider-contents {
  margin: 0;
}
.cafe-area .office-slider-contents + .office-slider-contents {
  margin-top: 100px;
}
@media (max-width: 750px) {
  .cafe-area .office-slider-contents + .office-slider-contents {
    margin-top: 60px;
  }
}
@media (max-width: 970px) {
  .cafe-area .office-slider-contents .left {
    margin: auto;
  }
}
@media (max-width: 970px) and (max-width: 750px) {
  .cafe-area .office-slider-contents .left {
    max-width: 81.8666666667vw;
    height: 50.6666666667vw;
  }
}
@media (max-width: 970px) {
  .cafe-area .office-slider-contents .left .inner {
    border-radius: 10px;
  }
  .cafe-area .office-slider-contents .right .title {
    margin-top: 10px;
  }
}
.cafe-area .slider-list {
  position: relative;
  max-width: 1286px;
  width: 100%;
  margin: 153px auto 0;
  padding: 100px 40px 100px;
  background: #fff;
  border-radius: 20px;
}
@media (max-width: 1350px) {
  .cafe-area .slider-list {
    max-width: none;
    width: auto;
    margin: 153px 24px 0;
  }
}
@media (max-width: 1350px) and (max-width: 750px) {
  .cafe-area .slider-list {
    margin: 109px 24px 0;
    padding: 69px 20px 40px;
  }
}
@media (max-width: 750px) {
  .cafe-area .right {
    margin: 38px auto 0;
  }
  .cafe-area .right .text {
    margin-top: 10px;
  }
}
.cafe-area .main-title {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: -35px auto 0;
  color: #0087C6;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 180%;
}
@media (max-width: 750px) {
  .cafe-area .main-title {
    margin: -28px auto 0;
    font-size: 32px;
  }
}
.cafe-area .detail-text {
  position: relative;
  max-width: 1286px;
  width: 100%;
  margin: 80px auto 0;
  padding-right: 100px;
  color: #3D424B;
}
@media (max-width: 900px) {
  .cafe-area .detail-text {
    max-width: none;
    width: auto;
    margin: 40px 24px 0;
    padding-right: 0;
  }
}
.cafe-area .detail-text .inner {
  max-width: 537px;
  width: 100%;
  margin-left: auto;
}
@media (max-width: 900px) {
  .cafe-area .detail-text .inner {
    max-width: none;
    width: auto;
  }
}
.cafe-area .detail-text .title {
  font-size: 24px;
  line-height: 180%;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
}
.cafe-area .detail-text .title + .text {
  margin-top: 20px;
}
@media (max-width: 750px) {
  .cafe-area .detail-text .title + .text {
    margin-top: 15px;
  }
}
@media (max-width: 750px) {
  .cafe-area .detail-text .title {
    font-size: 20px;
  }
}
.cafe-area .detail-text .text {
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0.48px;
}
@media (max-width: 750px) {
  .cafe-area .detail-text .text {
    font-size: 16px;
  }
}
.cafe-area .detail-text .text + .text {
  margin-top: 15px;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  お問い合わせ


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.companyBnr.-contact {
  background: #f7f7f7;
}
@media (min-width: 751px) {
  .companyBnr.-contact {
    margin-bottom: 150px;
  }
}
@media (max-width: 750px) {
  .companyBnr.-contact {
    padding: 0 24px 120px;
    margin: 0;
  }
}

@media (min-width: 751px) {
  .recruitConts.-contact {
    margin-bottom: 23.4260614934vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .recruitConts.-contact {
    margin-bottom: 300px;
  }
}
@media (max-width: 750px) {
  .recruitConts.-contact {
    padding-top: 0;
    margin-bottom: 100px;
  }
}

.shrink.-contact {
  z-index: -1;
}

@media (max-width: 750px) {
  .shrink.-contact .inflate__in {
    height: 1000px;
  }
}

/*
  フォームではリンクを非表示にする
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.is-hide.headerNav, .is-hide.headerBtn, .is-hide.burgerBtn, .is-hide.sec-contact .sec-contactMain, .is-hide.sec-contact .sec-contactSub {
  opacity: 0;
  pointer-events: none;
}
.is-hide.sec-contact {
  padding: 0;
}
.is-hide.footerMid {
  display: none !important;
}
@media (min-width: 1025px) {
  .is-hide.footerBottomNav {
    opacity: 0;
    pointer-events: none;
  }
}
@media (max-width: 1024px) {
  .is-hide.footerBottomNav {
    display: none !important;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  開催予定セミナー 一覧


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.archive-seminarWrap {
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 1025px) {
  .archive-seminarWrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 751px) {
  .archive-seminarWrap {
    width: 82.4304538799vw;
    padding-top: 100px;
    margin-bottom: 150px;
  }
}
@media (max-width: 750px) {
  .archive-seminarWrap {
    padding-top: 60px;
    margin-bottom: 90px;
  }
}

@media (min-width: 1025px) {
  .archive-seminarList__menuLink {
    margin-top: auto;
    margin-left: 16px;
  }
}

/*
  開催予定セミナー 一覧 - サイドバー
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 1025px) {
  .archive-seminarSub {
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    width: 170px;
    margin-right: 20px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .archive-seminarSub {
    margin-right: 32px;
  }
}

/*
  開催予定セミナー 一覧 - リスト
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 1025px) {
  .archive-seminarListConts {
    width: 66.6%;
  }
}

.c-fv-xs.-no-border .c-fvHeading-xs {
  border-bottom: none;
}

.memberTab.-seminar {
  margin: 0 auto;
}
@media (min-width: 751px) {
  .memberTab.-seminar {
    padding-top: 100px;
  }
}
@media (max-width: 750px) {
  .memberTab.-seminar {
    padding-top: 40px;
    padding-bottom: 12px;
    overflow-x: scroll;
  }
}
.memberTab.-seminar .memberTab__list {
  border: none;
}
@media (min-width: 751px) {
  .memberTab.-seminar .memberTab__list {
    max-width: 820px;
  }
}
.memberTab.-seminar .memberTab__item {
  white-space: nowrap;
}
@media (max-width: 750px) {
  .memberTab.-seminar .memberTab__item {
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    width: 150px;
  }
}
.memberTab.-seminar .memberTab__item a,
.memberTab.-seminar .memberTab__item button {
  display: block;
  width: 100%;
}
.memberTab.-seminar .memberTab__item.-active::before {
  display: none;
}
.memberTab.-seminar .memberTab__item.-active a,
.memberTab.-seminar .memberTab__item.-active button {
  position: relative;
  color: #0171ff !important;
}
.memberTab.-seminar .memberTab__item.-active a::before,
.memberTab.-seminar .memberTab__item.-active button::before {
  position: absolute;
  content: "";
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 10px;
  height: 10px;
  background-image: url("../images/member/menu_active.svg");
  background-size: cover;
}

/* サイドバー */
@media (max-width: 750px) {
  .seminarSub {
    max-width: 1192px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 750px) and (min-width: 751px) {
  .seminarSub {
    width: calc(100% - 40px);
  }
}
@media (max-width: 750px) and (max-width: 750px) {
  .seminarSub {
    width: calc(100% - 48px);
  }
}

@media (max-width: 1024px) {
  .seminarSwitch {
    margin-bottom: 20px;
  }
}
@media (max-width: 750px) {
  .seminarSwitch {
    overflow-x: scroll;
  }
}

@media (max-width: 1024px) {
  .seminarSwitch__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0;
  }
}

@media (min-width: 1025px) {
  .seminarSwitch__item {
    border-top: 1px solid #dbe1ea;
  }
}

@media (min-width: 1025px) {
  .seminarSwitch__item:last-child {
    border-bottom: 1px solid #dbe1ea;
  }
}

.seminarSwitch__btn {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
  font-size: inherit;
  text-align: left;
  color: inherit;
  cursor: pointer;
  display: block;
  color: #a2a8b4;
  width: 100%;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (min-width: 1025px) {
  .seminarSwitch__btn {
    padding: 12px 8px;
  }
}
@media (max-width: 1024px) {
  .seminarSwitch__btn {
    padding: 0 16px;
    white-space: nowrap;
  }
}

.seminarSwitch__btn.is-show {
  color: #0171ff !important;
}

@media (max-width: 1024px) {
  .seminarSwitch__item:first-child .seminarSwitch__btn {
    padding-left: 0;
  }
}

@media (max-width: 1024px) {
  .seminarSwitch__item:last-child .seminarSwitch__btn {
    padding-right: 0;
  }
}

.seminarSwitch__btn:hover {
  color: #3d424b;
}

/* 一覧 */
@media (min-width: 751px) {
  .seminarMain {
    width: 100%;
  }
}
@media (max-width: 750px) {
  .seminarMain {
    max-width: 1192px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 750px) and (min-width: 751px) {
  .seminarMain {
    width: calc(100% - 40px);
  }
}
@media (max-width: 750px) and (max-width: 750px) {
  .seminarMain {
    width: calc(100% - 48px);
  }
}

@media (max-width: 750px) {
  .seminarList {
    margin-top: 60px;
  }
}

@media (min-width: 751px) {
  .seminarList .c-menuLink__overlay {
    width: 2500px;
    height: 2500px;
  }
}

.seminarList__item {
  position: relative;
  border-top: 1px solid #dbe1ea;
}

.seminarList__item:last-child {
  border-bottom: 1px solid #dbe1ea;
}

.seminarList__item-none {
  text-align: center;
}
@media (min-width: 751px) {
  .seminarList__item-none {
    font-size: 18px;
  }
}
@media (max-width: 750px) {
  .seminarList__item-none {
    margin-bottom: 56px;
  }
}

.seminarList__link {
  position: relative;
  z-index: 2;
  -webkit-transition: background 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.3s, -webkit-box-shadow 0.3s;
  transition: background 0.3s, box-shadow 0.3s;
  transition: background 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
@media (min-width: 751px) {
  .seminarList__link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 35px 5.888%;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .seminarList__link {
    padding: 20px 38px;
  }
}
@media (max-width: 750px) {
  .seminarList__link {
    display: block;
    padding: 24px 22px;
  }
}

.seminarList__thumb {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}
@media (min-width: 751px) {
  .seminarList__thumb {
    width: 210px;
    margin-right: 5.4%;
  }
}
@media (min-width: 1367px) {
  .seminarList__thumb {
    margin-right: 44px;
  }
}
@media (max-width: 750px) {
  .seminarList__thumb {
    margin-bottom: 16px;
  }
}

.seminarList__img {
  position: relative;
  width: 100%;
}

.seminarList__img:before {
  content: "";
  display: block;
  padding-top: 66.66%; /* 縦横比を3:2に固定 */
}

.seminarList__img img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.seminarList__status {
  padding: 4px 0;
  text-align: center;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.seminarList__status.-accept {
  background: #0087c6;
}

.seminarList__status.-end {
  background: #a9b1bd;
}

@media (max-width: 1024px) and (min-width: 751px) {
  .seminarListConts {
    margin-right: 32px;
  }
}

.seminarListConts__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 751px) {
  .seminarListConts__head {
    margin-bottom: 10px;
  }
}
@media (max-width: 750px) {
  .seminarListConts__head {
    margin-bottom: 4px;
  }
}

.seminarListConts__cat {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 23px;
  padding: 0 10px;
  border-radius: 13px;
  border: 1px solid #0087c6;
  letter-spacing: 0.1em;
  color: #0087c6;
  font-size: 12px;
}
@media (max-width: 750px) {
  .seminarListConts__cat {
    margin-bottom: 6px;
  }
}

.seminarListConts__cat + .seminarListConts__cat {
  margin-left: 10px;
}

.seminarListConts__ttl {
  border-bottom: 1px solid #a9b1bd;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media (min-width: 751px) {
  .seminarListConts__ttl {
    padding-bottom: 8px;
    margin-bottom: 15px;
  }
}
@media (max-width: 750px) {
  .seminarListConts__ttl {
    padding-bottom: 10px;
    margin-bottom: 18px;
  }
}

.seminarListConts__txt {
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.seminarListConts__txt dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.seminarListConts__txt dt {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
}

/*
  開催予定セミナー 詳細
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.seminarDetail-head {
  border-bottom: 1px solid #d3d7dc;
  margin: auto;
  margin-bottom: 12px;
}
@media (min-width: 751px) {
  .seminarDetail-head {
    padding: 120px 0 30px;
  }
}
@media (min-width: 1025px) {
  .seminarDetail-head {
    width: 68.0819912152vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .seminarDetail-head {
    width: 86vw;
  }
}
@media (max-width: 750px) {
  .seminarDetail-head {
    width: calc(100% - 48px);
    padding: 70px 0 32px;
  }
}

.seminarDetail-ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
}
@media (min-width: 1025px) {
  .seminarDetail-ttl {
    font-size: 32px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .seminarDetail-ttl {
    font-size: 28px;
  }
}
@media (max-width: 750px) {
  .seminarDetail-ttl {
    font-size: 24px;
  }
}

.seminarDetail-thumb {
  max-width: 838px;
  margin: auto;
}

/*
  過去のセミナー 詳細 - 概要
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.seminarDetail-sec {
  padding-top: 12px;
  padding-bottom: 40px;
  border-top: 1px solid #dbe1ea;
  margin: auto;
}
@media (min-width: 751px) {
  .seminarDetail-sec {
    min-height: 270px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .seminarDetail-sec {
    width: 82vw;
  }
}
@media (max-width: 750px) {
  .seminarDetail-sec {
    width: calc(100% - 48px);
  }
}

.seminarDetail-sec__ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 28px;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 16px;
}

.seminarDetail-sec__ttl::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0171ff;
  margin-right: 28px;
}

.seminarDetail-sec__txt {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

/*
  過去のセミナー 詳細 - 本文
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.seminarDetail-sch {
  margin-bottom: 14px;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .seminarDetail-sch {
    font-size: 24px;
  }
}
@media (max-width: 750px) {
  .seminarDetail-sch {
    font-size: 18px;
  }
}

.seminarDetail-day {
  margin-right: 1em;
}

@media (min-width: 751px) {
  .seminarDetail-conts {
    margin-bottom: 240px;
  }
}
@media (max-width: 750px) {
  .seminarDetail-conts {
    margin-bottom: 100px;
  }
}

.seminarDetail-conts__in {
  margin: auto;
}
@media (min-width: 751px) {
  .seminarDetail-conts__in {
    width: 68.0819912152vw;
    margin-bottom: 160px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .seminarDetail-conts__in {
    width: 86vw;
  }
}
@media (max-width: 750px) {
  .seminarDetail-conts__in {
    position: relative;
    padding-bottom: 60px;
  }
}

.seminarDetail-conts__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto 70px;
}
@media (min-width: 751px) {
  .seminarDetail-conts__head {
    margin-bottom: 70px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .seminarDetail-conts__head {
    width: 82vw;
  }
}
@media (max-width: 750px) {
  .seminarDetail-conts__head {
    width: calc(100% - 48px);
  }
}

.seminarDetail-thumb {
  margin: auto;
  text-align: center;
}
@media (min-width: 751px) {
  .seminarDetail-thumb {
    margin-bottom: 55px;
  }
}
@media (min-width: 1025px) {
  .seminarDetail-thumb {
    width: 57.3938506589vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .seminarDetail-thumb {
    width: 82vw;
  }
}
@media (max-width: 750px) {
  .seminarDetail-thumb {
    width: calc(100% - 48px);
    margin-bottom: 32px;
  }
}

.seminarDetail-thumb img {
  width: 100%;
}

/*
  過去のセミナー 詳細 - 情報
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.seminarDetail-info {
  margin: auto;
  background: #fff;
}
@media (min-width: 751px) {
  .seminarDetail-info {
    padding-bottom: 68px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .seminarDetail-info {
    width: 82vw;
  }
}
@media (max-width: 750px) {
  .seminarDetail-info {
    width: calc(100% - 48px);
    padding-top: 6px;
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
}

@media (min-width: 751px) {
  .seminarDetail-info__list {
    width: 74.4%;
    margin-bottom: 60px;
    margin-left: 8%;
  }
}
@media (max-width: 750px) {
  .seminarDetail-info__list {
    margin: 0 20px 40px;
  }
}

.seminarDetail-info__item {
  border-bottom: 1px solid #d3d7dc;
}
@media (min-width: 751px) {
  .seminarDetail-info__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 32px 16px;
  }
}
@media (max-width: 750px) {
  .seminarDetail-info__item {
    padding: 20px 12px;
  }
}

.seminarDetail-info__head {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  width: 30%;
}
@media (min-width: 751px) {
  .seminarDetail-info__head {
    font-size: 18px;
  }
}
@media (max-width: 750px) {
  .seminarDetail-info__head {
    margin-bottom: 6px;
    font-size: 16px;
  }
}

.seminarDetail-info__body {
  letter-spacing: 0.03em;
}
@media (min-width: 751px) {
  .seminarDetail-info__body {
    font-size: 16px;
  }
}

/*
  関連記事
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.seminarDetail-posts {
  margin: auto;
}
@media (min-width: 751px) {
  .seminarDetail-posts {
    width: 68.0819912152vw;
    margin-bottom: 100px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .seminarDetail-posts {
    width: 86vw;
  }
}
@media (max-width: 750px) {
  .seminarDetail-posts {
    position: relative;
    max-width: 1192px;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 60px;
  }
}
@media (max-width: 750px) and (min-width: 751px) {
  .seminarDetail-posts {
    width: calc(100% - 40px);
  }
}
@media (max-width: 750px) and (max-width: 750px) {
  .seminarDetail-posts {
    width: calc(100% - 48px);
  }
}

@media (min-width: 751px) {
  .seminarDetail-posts + .c-dtlPager {
    margin-top: 200px;
  }
}
@media (max-width: 750px) {
  .seminarDetail-posts + .c-dtlPager {
    margin-top: 80px;
  }
}

.seminarDetail-posts__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
}
@media (min-width: 751px) {
  .seminarDetail-posts__ttl {
    margin-bottom: 54px;
  }
}

@media (max-width: 750px) {
  .seminarDetail-posts__ttl + .seminarList {
    margin-top: 36px;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  過去のセミナー 詳細


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.reportDetail-head {
  border-bottom: 1px solid #d3d7dc;
  margin: auto;
  margin-bottom: 30px;
}
@media (min-width: 751px) {
  .reportDetail-head {
    padding: 120px 0 50px;
  }
}
@media (min-width: 1025px) {
  .reportDetail-head {
    width: 68.0819912152vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .reportDetail-head {
    width: 82vw;
  }
}
@media (max-width: 750px) {
  .reportDetail-head {
    width: calc(100% - 48px);
    padding: 70px 0 32px;
  }
}

.reportDetail-ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
}
@media (min-width: 1025px) {
  .reportDetail-ttl {
    font-size: 32px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .reportDetail-ttl {
    font-size: 28px;
  }
}
@media (max-width: 750px) {
  .reportDetail-ttl {
    font-size: 24px;
  }
}

/*
  過去のセミナー 詳細 - 概要
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.reportDetail-overviewWrap {
  border-bottom: 1px solid #dbe1ea;
  margin: auto;
}
@media (min-width: 751px) {
  .reportDetail-overviewWrap {
    width: 68.0819912152vw;
    padding-bottom: 60px;
    margin-bottom: 70px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .reportDetail-overviewWrap {
    width: 82vw;
  }
}
@media (max-width: 750px) {
  .reportDetail-overviewWrap {
    width: calc(100% - 48px);
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
}

.reportDetail-overview {
  border-radius: 4px;
  background: #fff;
}
@media (min-width: 751px) {
  .reportDetail-overview {
    padding: 34px 42px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .reportDetail-overview {
    width: 82vw;
  }
}
@media (max-width: 750px) {
  .reportDetail-overview {
    padding: 22px 24px;
  }
}

.reportDetail-overview__ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 16px;
}

.reportDetail-overview__ttl::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0171ff;
  margin-right: 10px;
}

.reportDetail-overview__txt {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

/*
  過去のセミナー 詳細 - 本文
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .reportDetail-conts {
    margin-bottom: 240px;
  }
}
@media (max-width: 750px) {
  .reportDetail-conts {
    margin-bottom: 100px;
  }
}

.reportDetail-conts__in {
  margin: auto;
}
@media (min-width: 751px) {
  .reportDetail-conts__in {
    width: 82.3572474378vw;
    padding-bottom: 90px;
    border-bottom: 1px solid #dbe1ea;
  }
}
@media (max-width: 750px) {
  .reportDetail-conts__in {
    position: relative;
    padding-bottom: 60px;
  }
}

@media (max-width: 750px) {
  .reportDetail-conts__in::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    height: 1px;
    background: #dbe1ea;
  }
}

.reportDetail-conts__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto 70px;
}
@media (min-width: 751px) {
  .reportDetail-conts__head {
    width: 68.0819912152vw;
    margin-bottom: 70px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .reportDetail-conts__head {
    width: 82vw;
  }
}
@media (max-width: 750px) {
  .reportDetail-conts__head {
    width: calc(100% - 48px);
  }
}

.reportDetail-thumb {
  margin: auto;
  text-align: center;
}
@media (min-width: 751px) {
  .reportDetail-thumb {
    margin-bottom: 45px;
  }
}
@media (min-width: 1025px) {
  .reportDetail-thumb {
    width: 57.3938506589vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .reportDetail-thumb {
    width: 82vw;
  }
}
@media (max-width: 750px) {
  .reportDetail-thumb {
    width: calc(100% - 48px);
    margin-bottom: 32px;
  }
}

.reportDetail-thumb img {
  width: 100%;
}

.reportDetail-main {
  margin: auto;
  padding-bottom: 120px;
}
@media (min-width: 1025px) {
  .reportDetail-main {
    width: 57.3938506589vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .reportDetail-main {
    width: 82vw;
  }
}
@media (max-width: 750px) {
  .reportDetail-main {
    width: calc(100% - 48px);
  }
}

.reportDetail-main figure {
  max-width: 550px;
  margin: auto;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  csr


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (max-width: 750px) {
  .csr .c-fvHeading__ttl {
    font-size: 12vw;
  }
}

@media (min-width: 751px) {
  .csr__wrap {
    margin-bottom: 20.4978038067vw;
  }
}
@media (max-width: 750px) {
  .csr__wrap {
    margin-bottom: 42.6666666667vw;
  }
}

.csr__sec {
  position: relative;
  z-index: 2;
  max-width: 950px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .csr__sec {
    width: calc(100% - 48px);
    padding: 231px 0 123px;
  }
}
@media (max-width: 750px) {
  .csr__sec {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 751px) {
  .csr__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 750px) {
  .csr__inner {
    position: absolute;
    width: calc(100% - 48px);
    margin: auto;
  }
}

@media (min-width: 751px) {
  .csr__right {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 536px;
    margin-right: 5%;
  }
}
@media (max-width: 750px) {
  .csr__right {
    margin-bottom: 24px;
  }
}

@media (min-width: 751px) {
  .csr__img {
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    width: 300px;
  }
}
@media (max-width: 750px) {
  .csr__img {
    max-width: 460px;
    margin: auto;
  }
}

.csr__heading {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #dbe1ea;
  margin-bottom: 30px;
}
@media (min-width: 751px) {
  .csr__heading {
    font-size: 32px;
    padding-bottom: 30px;
  }
}
@media (max-width: 750px) {
  .csr__heading {
    font-size: 20px;
    padding-bottom: 24px;
  }
}

.csr__txtarea {
  margin-bottom: 31px;
}

.csr__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}
@media (min-width: 751px) {
  .csr__ttl {
    font-size: 24px;
  }
}
@media (max-width: 750px) {
  .csr__ttl {
    font-size: 18px;
  }
}
@media (max-width: 750px) {
  .csr__ttl br {
    display: none;
  }
}

.csr__txt {
  line-height: 180%;
  letter-spacing: 0.03em;
}
@media (min-width: 751px) {
  .csr__txt {
    font-size: 16px;
  }
}

.csrSec__btn .c-circleBtn__icon {
  right: 28px;
}
.csrSec__btn:hover .c-circleBtn__icon.-outerlink {
  background-image: url(../images/common/icon_outerlink_white.svg);
}

@media (min-width: 751px) {
  .csr__bg {
    position: absolute;
    -webkit-transform: rotate(170deg);
            transform: rotate(170deg);
    z-index: -1;
    width: 1865px;
    left: -47%;
    top: 5%;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  privacypolicy


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .privacypolicy__body {
    padding-top: 125px;
    margin-bottom: 300px;
  }
}
@media (max-width: 750px) {
  .privacypolicy__body {
    padding-top: 56px;
    margin-bottom: 37.3333333333vw;
  }
}

.privacypolicy__inner {
  max-width: 1126px;
  width: calc(100% - 48px);
  margin: 0 auto;
}

.privacypolicyHeading-en {
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 110%;
  color: #dbe1ea;
}
@media (min-width: 751px) {
  .privacypolicyHeading-en {
    font-size: 80px;
  }
}
@media (max-width: 750px) {
  .privacypolicyHeading-en {
    font-size: 44px;
  }
}

.privacypolicyHeading-jp {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
}
@media (min-width: 751px) {
  .privacypolicyHeading-jp {
    font-size: 28px;
    margin-top: -18px;
  }
}
@media (max-width: 750px) {
  .privacypolicyHeading-jp {
    font-size: 18px;
  }
}
.privacypolicyHeading-jp::before {
  content: "";
  display: block;
  background: #3d424b;
  height: 2px;
  border-radius: 15px;
  margin-left: 3px;
}
@media (min-width: 751px) {
  .privacypolicyHeading-jp::before {
    width: 30px;
    margin-right: 12px;
  }
}
@media (max-width: 750px) {
  .privacypolicyHeading-jp::before {
    width: 20px;
    margin-right: 8px;
  }
}

.privacypolicy__sec {
  border-top: 1px solid #dbe1ea;
}
@media (min-width: 751px) {
  .privacypolicy__sec {
    margin-top: 109px;
    padding-top: 119px;
  }
}
@media (max-width: 750px) {
  .privacypolicy__sec {
    margin-top: 60px;
    padding-top: 60px;
  }
}

@media (min-width: 751px) {
  .privacypolicy__subInner {
    padding-left: 96px;
  }
}
@media (max-width: 750px) {
  .privacypolicy__subInner {
    padding-left: 20px;
  }
}

.privacypolicy__list {
  max-width: 936px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .privacypolicy__list {
    width: calc(100% - 20px);
  }
}

@media (min-width: 751px) {
  .privacypolicy__item:not(:last-child) {
    margin-bottom: 124px;
  }
}
@media (max-width: 750px) {
  .privacypolicy__item:not(:last-child) {
    margin-bottom: 64px;
  }
}

.privacypolicy__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .privacypolicy__ttl {
    font-size: 32px;
    margin-bottom: 45px;
    padding-left: 25px;
  }
}
@media (max-width: 750px) {
  .privacypolicy__ttl {
    font-size: 20px;
    margin-bottom: 24px;
    padding-left: 15px;
  }
}
.privacypolicy__ttl::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3px;
  border-radius: 10px;
  background-color: #0087c6;
}
@media (min-width: 751px) {
  .privacypolicy__ttl::before {
    height: 30px;
  }
}
@media (max-width: 750px) {
  .privacypolicy__ttl::before {
    height: 20px;
  }
}

@media (min-width: 751px) {
  .privacypolicy__subItem:not(:last-child) {
    margin-bottom: 64px;
  }
}
@media (max-width: 750px) {
  .privacypolicy__subItem:not(:last-child) {
    margin-bottom: 24px;
  }
}

.privacypolicy__subHeading {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  position: relative;
  padding-left: 21px;
  font-size: 18px;
}
@media (min-width: 751px) {
  .privacypolicy__subHeading {
    margin-bottom: 20px;
  }
}
@media (max-width: 750px) {
  .privacypolicy__subHeading {
    margin-bottom: 16px;
  }
}
.privacypolicy__subHeading::before {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  display: block;
  background: #0087c6;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

@media (min-width: 751px) {
  .privacypolicy__subTxtRow:not(:last-child) {
    margin-bottom: 46px;
  }
}
@media (max-width: 750px) {
  .privacypolicy__subTxtRow:not(:last-child) {
    margin-bottom: 24px;
  }
}

.privacypolicy__subTxtRow.-wh {
  background-color: #fff;
}
@media (min-width: 751px) {
  .privacypolicy__subTxtRow.-wh {
    padding: 30px;
  }
}
@media (max-width: 750px) {
  .privacypolicy__subTxtRow.-wh {
    padding: 15px;
  }
}
.privacypolicy__subTxtRow.-wh:first-child {
  margin-top: 30px;
}
.privacypolicy__subTxtRow.-wh:not(:last-child) {
  margin-bottom: 25px;
}

@media (min-width: 751px) {
  .privacypolicy__subTxtRow.-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.privacypolicy__subTtl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
  margin-bottom: 9px;
}

.privacypolicy__subTxt {
  line-height: 180%;
  letter-spacing: 0.03em;
  text-align: justify;
}
.privacypolicy__subTxt:not(:last-child) {
  margin-bottom: 25px;
}
.privacypolicy__subTxt a {
  color: #0171ff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.privacypolicy__subTxt a:hover {
  color: #a9b1bd;
}

@media (min-width: 751px) {
  .privacypolicy__subHeading + .privacypolicy__subInner {
    margin-top: 30px;
  }
}

.privacypolicy__subTxt.-data {
  text-align: right;
  margin-top: -9px;
}

.privacypolicy__txt {
  line-height: 180%;
  letter-spacing: 0.06em;
}

@media (min-width: 751px) {
  .privacypolicy__txt.-mb {
    margin-bottom: 84px;
  }
}
@media (max-width: 750px) {
  .privacypolicy__txt.-mb {
    margin-bottom: 40px;
  }
}

@media (min-width: 751px) {
  .privacypolicyTable {
    margin-top: 43px;
  }
}
@media (max-width: 750px) {
  .privacypolicyTable {
    margin-top: -24px;
  }
}

@media (min-width: 751px) {
  .privacypolicyTable__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.privacypolicyTable__item {
  height: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.privacypolicyTable__txt {
  padding: 20px 0;
  border-bottom: 1px solid #dbe1ea;
  letter-spacing: 0.03em;
}

.privacypolicyTable__txt.-heading {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #0087c6;
}

@media (min-width: 751px) {
  .privacypolicyTable__txt.-line {
    height: 83px;
  }
}

.privacypolicy__subImg {
  width: 75px;
}
@media (min-width: 751px) {
  .privacypolicy__subImg {
    margin-right: 30px;
  }
}
@media (max-width: 750px) {
  .privacypolicy__subImg {
    margin-bottom: 16px;
  }
}

.privacypolicy__subImg a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.privacypolicy__subImg a:hover {
  opacity: 0.8;
}

@media (min-width: 751px) {
  .privacypolicy__subTxtRow.-wh .privacypolicy__subTxtWrap {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  採用情報


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.recruitHead {
  position: absolute;
  z-index: 2;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media (min-width: 751px) {
  .recruitHead {
    top: 220px;
    right: 8.78477306vw;
    max-width: 560px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .recruitHead {
    top: 270px;
    left: 20vw;
  }
}
@media (max-width: 750px) {
  .recruitHead {
    width: calc(100% - 48px);
    max-width: 400px;
    top: 280px;
    right: 24px;
  }
}

@media (max-width: 1024px) and (min-width: 751px) {
  .recruit__inner {
    padding-top: 80px;
  }
}

@media (min-width: 751px) {
  .recruitConts {
    margin-bottom: 240px;
  }
}
@media (max-width: 750px) {
  .recruitConts {
    padding-top: 300px;
    margin-bottom: 140px;
    background: #f7f7f7;
  }
}

.recruitConts__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 751px) {
  .recruitConts__item {
    position: relative;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: calc(100% - 40px);
    margin: auto;
  }
}
@media (min-width: 1367px) {
  .recruitConts__item {
    width: 59.5900439239vw;
  }
}
@media (max-width: 1366px) {
  .recruitConts__item {
    max-width: 814px;
  }
}
@media (max-width: 750px) {
  .recruitConts__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

@media (min-width: 751px) {
  .recruitConts__item:not(:last-child) {
    margin-bottom: 24px;
  }
}
@media (max-width: 750px) {
  .recruitConts__item:not(:last-child) {
    margin-bottom: 60px;
  }
}

@media (min-width: 751px) {
  .recruitContsTxts {
    position: absolute;
    left: 0;
    z-index: 2;
    padding-left: 2vw;
  }
}
@media (max-width: 750px) {
  .recruitContsTxts {
    width: calc(100% - 48px);
    max-width: 540px;
    margin: auto;
  }
}

.recruitContsTxts__ttl {
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #dbe1ea;
  line-height: 1;
}
@media (min-width: 751px) {
  .recruitContsTxts__ttl {
    margin-bottom: 12px;
    font-size: 80px;
  }
}
@media (max-width: 750px) {
  .recruitContsTxts__ttl {
    font-size: 60px;
  }
}

@media (min-width: 751px) {
  .recruitContsTxts__ttlRow:nth-child(2) {
    margin-left: 42px;
  }
}
@media (max-width: 750px) {
  .recruitContsTxts__ttlRow:nth-child(2) {
    margin-left: 28px;
  }
}

.recruitContsTxts__lead {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  opacity: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 11px;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
}
@media (min-width: 751px) {
  .recruitContsTxts__lead {
    font-size: 24px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .recruitContsTxts__lead {
    font-size: 18px;
  }
}
@media (max-width: 750px) {
  .recruitContsTxts__lead {
    margin-top: 10px;
    font-size: 20px;
  }
}
.recruitContsTxts__lead::before {
  content: "";
  display: block;
  background: #3d424b;
  height: 2px;
}
@media (min-width: 751px) {
  .recruitContsTxts__lead::before {
    width: 29px;
    margin-right: 11px;
  }
}
@media (max-width: 750px) {
  .recruitContsTxts__lead::before {
    width: 21px;
    margin-right: 8px;
  }
}

.recruitContsImgs {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
}
@media (min-width: 751px) {
  .recruitContsImgs {
    width: 61.5%;
    margin-right: -2vw;
  }
}
@media (max-width: 750px) {
  .recruitContsImgs {
    width: 85.3333333333vw;
    margin-right: auto;
  }
}

.recruitContsImgs__img {
  position: absolute;
}

@media (min-width: 751px) {
  .recruitContsTxts__btn {
    margin-top: 50px;
  }
}
@media (max-width: 750px) {
  .recruitContsTxts__btn {
    margin-top: 30px;
  }
}

/*
  採用情報 - 反転
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.recruitConts__item.-reverse .recruitContsTxts {
  right: 0;
  left: auto;
}
@media (min-width: 751px) {
  .recruitConts__item.-reverse .recruitContsTxts {
    padding-right: 2vw;
    padding-left: 0;
  }
}
@media (min-width: 751px) {
  .recruitConts__item.-reverse .recruitContsImgs {
    margin-right: auto;
    margin-left: -2vw;
  }
}

/*
  採用情報 - 図形アニメーション
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.recruitContsImgs__img {
  -webkit-transform: scale(0.84);
          transform: scale(0.84);
  opacity: 0;
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: transform 0.8s, opacity 0.8s;
  transition: transform 0.8s, opacity 0.8s, -webkit-transform 0.8s;
}
@media (min-width: 751px) {
  .recruitContsImgs__img {
    -webkit-transition-delay: 0.5s;
            transition-delay: 0.5s;
  }
}

.recruitContsImgs__line {
  -webkit-transform: scale(0.94);
          transform: scale(0.94);
  opacity: 0;
  -webkit-transition: opacity 1.6s, -webkit-transform 1.6s;
  transition: opacity 1.6s, -webkit-transform 1.6s;
  transition: transform 1.6s, opacity 1.6s;
  transition: transform 1.6s, opacity 1.6s, -webkit-transform 1.6s;
}
@media (min-width: 751px) {
  .recruitContsImgs__line {
    -webkit-transition-delay: 1s;
            transition-delay: 1s;
  }
}
@media (max-width: 750px) {
  .recruitContsImgs__line {
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
}

.recruitContsImgs.is-anime .recruitContsImgs__line,
.recruitContsImgs.is-anime .recruitContsImgs__img {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  Sitepolicy


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .sitepolicy__body {
    padding-top: 136px;
    padding-bottom: 10vw;
  }
}
@media (max-width: 750px) {
  .sitepolicy__body {
    padding-top: 56px;
    padding-bottom: 37.3333333333vw;
  }
}

.sitepolicy__inner {
  max-width: 1126px;
  width: calc(100% - 48px);
  margin: 0 auto;
}

.sitepolicyHeading-en {
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 110%;
  color: #dbe1ea;
}
@media (min-width: 751px) {
  .sitepolicyHeading-en {
    font-size: 80px;
  }
}
@media (max-width: 750px) {
  .sitepolicyHeading-en {
    font-size: 40px;
  }
}

.sitepolicyHeading-jp {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
}
@media (min-width: 751px) {
  .sitepolicyHeading-jp {
    font-size: 28px;
    margin-top: -18px;
  }
}
@media (max-width: 750px) {
  .sitepolicyHeading-jp {
    font-size: 20px;
    margin-top: -12px;
  }
}
.sitepolicyHeading-jp::before {
  content: "";
  display: block;
  background: #3d424b;
  height: 2px;
  border-radius: 15px;
  margin-left: 3px;
}
@media (min-width: 751px) {
  .sitepolicyHeading-jp::before {
    width: 30px;
    margin-right: 12px;
  }
}
@media (max-width: 750px) {
  .sitepolicyHeading-jp::before {
    width: 20px;
    margin-right: 8px;
  }
}

.sitepolicy__sec {
  border-top: 1px solid #dbe1ea;
}
@media (min-width: 751px) {
  .sitepolicy__sec {
    margin-top: 109px;
    padding-top: 119px;
  }
}
@media (max-width: 750px) {
  .sitepolicy__sec {
    margin-top: 60px;
    padding-top: 60px;
  }
}

.sitepolicy__list {
  max-width: 932px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .sitepolicy__list {
    margin-bottom: 10vw;
  }
}

@media (min-width: 751px) {
  .sitepolicy__item:not(:last-child) {
    margin-bottom: 123px;
  }
}
@media (max-width: 750px) {
  .sitepolicy__item:not(:last-child) {
    margin-bottom: 60px;
  }
}

.sitepolicy__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .sitepolicy__ttl {
    font-size: 32px;
    margin-bottom: 51px;
    padding-left: 25px;
  }
}
@media (max-width: 750px) {
  .sitepolicy__ttl {
    font-size: 20px;
    margin-bottom: 24px;
    padding-left: 15px;
  }
}
.sitepolicy__ttl::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3px;
  border-radius: 10px;
  background-color: #0087c6;
}
@media (min-width: 751px) {
  .sitepolicy__ttl::before {
    height: 30px;
  }
}
@media (max-width: 750px) {
  .sitepolicy__ttl::before {
    height: 20px;
  }
}

.sitepolicy__txt {
  line-height: 180%;
  letter-spacing: 0.06em;
}

/*
  反社会的勢力に対する基本方針
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .antisocial .sitepolicy__ttl {
    margin-bottom: 30px;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  cookiepolicy


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .cookiepolicy__body {
    padding-top: 136px;
    padding-bottom: 10vw;
  }
}
@media (max-width: 750px) {
  .cookiepolicy__body {
    padding-top: 56px;
    padding-bottom: 37.3333333333vw;
  }
}

.cookiepolicy__inner {
  max-width: 1126px;
  width: calc(100% - 48px);
  margin: 0 auto;
}

.cookiepolicyHeading-en {
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 110%;
  color: #dbe1ea;
}
@media (min-width: 751px) {
  .cookiepolicyHeading-en {
    font-size: 80px;
  }
}
@media (max-width: 750px) {
  .cookiepolicyHeading-en {
    font-size: 40px;
  }
}

.cookiepolicyHeading-jp {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
}
@media (min-width: 751px) {
  .cookiepolicyHeading-jp {
    font-size: 28px;
    margin-top: -18px;
  }
}
@media (max-width: 750px) {
  .cookiepolicyHeading-jp {
    font-size: 20px;
    margin-top: -12px;
  }
}
.cookiepolicyHeading-jp::before {
  content: "";
  display: block;
  background: #3d424b;
  height: 2px;
  border-radius: 15px;
  margin-left: 3px;
}
@media (min-width: 751px) {
  .cookiepolicyHeading-jp::before {
    width: 30px;
    margin-right: 12px;
  }
}
@media (max-width: 750px) {
  .cookiepolicyHeading-jp::before {
    width: 20px;
    margin-right: 8px;
  }
}

.cookiepolicy__sec {
  border-top: 1px solid #dbe1ea;
}
@media (min-width: 751px) {
  .cookiepolicy__sec {
    margin-top: 102px;
    padding-top: 103px;
  }
}
@media (max-width: 750px) {
  .cookiepolicy__sec {
    margin-top: 60px;
    padding-top: 60px;
  }
}

.cookiepolicy__list {
  max-width: 932px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .cookiepolicy__list {
    padding-bottom: 106px;
  }
}

@media (min-width: 751px) {
  .cookiepolicy__item:not(:last-child) {
    margin-bottom: 83px;
  }
}
@media (max-width: 750px) {
  .cookiepolicy__item:not(:last-child) {
    margin-bottom: 40px;
  }
}

.cookiepolicy__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .cookiepolicy__ttl {
    font-size: 32px;
    margin-bottom: 49px;
    padding-left: 25px;
  }
}
@media (max-width: 750px) {
  .cookiepolicy__ttl {
    font-size: 20px;
    margin-bottom: 24px;
    padding-left: 15px;
  }
}
.cookiepolicy__ttl::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3px;
  border-radius: 10px;
  background-color: #0087c6;
}
@media (min-width: 751px) {
  .cookiepolicy__ttl::before {
    height: 30px;
  }
}
@media (max-width: 750px) {
  .cookiepolicy__ttl::before {
    height: 20px;
  }
}

.cookiepolicy__txt {
  line-height: 180%;
  letter-spacing: 0.06em;
}

@media (min-width: 751px) {
  .cookiepolicy__subList {
    margin-top: 60px;
  }
}
@media (max-width: 750px) {
  .cookiepolicy__subList {
    margin-top: 30px;
  }
}

@media (min-width: 751px) {
  .cookiepolicy__subItem:not(:last-child) {
    margin-bottom: 65px;
  }
}
@media (max-width: 750px) {
  .cookiepolicy__subItem:not(:last-child) {
    margin-bottom: 30px;
  }
}

.cookiepolicy__subHeading {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  position: relative;
  padding-left: 21px;
  font-size: 18px;
  margin-bottom: 14px;
}
.cookiepolicy__subHeading::before {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  display: block;
  background: #0087c6;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

@media (min-width: 751px) {
  .cookiepolicy__subInner {
    padding-left: 96px;
  }
}
@media (max-width: 750px) {
  .cookiepolicy__subInner {
    padding-left: 20px;
  }
}

@media (min-width: 751px) {
  .cookiepolicy__subTxtArea {
    padding-left: 92px;
    margin-top: 35px;
  }
}
@media (max-width: 750px) {
  .cookiepolicy__subTxtArea {
    padding-left: 20px;
    margin-top: 16px;
  }
}

.cookiepolicy__subTtl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 14px;
}

@media (min-width: 751px) {
  .cookiepolicy__subTxtWrap:not(:last-child) {
    margin-bottom: 35px;
  }
}

.cookiepolicy__subTxt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 180%;
  letter-spacing: 0.03em;
}

.cookiepolicy__subTxt.-close {
  margin-top: 64px;
}

.cookiepolicy__subTxt span {
  letter-spacing: 0.1em;
}

.cookiepolicy__linkWrap {
  margin: 22px 0;
}

.cookiepolicy__linkWrap + .cookiepolicy__linkWrap {
  margin-top: -18px;
}

.cookiepolicy__subTxtArea .cookiepolicy__linkWrap {
  padding-left: 24px;
}

.cookiepolicy__link {
  color: #0171ff;
  letter-spacing: 0.03em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cookiepolicy__link:hover {
  color: #a2a8b4;
}
.cookiepolicy__link:not(:last-child) {
  margin-bottom: 5px;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  Sitepolicy


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .sitepolicy__body {
    padding-top: 136px;
    padding-bottom: 10vw;
  }
}
@media (max-width: 750px) {
  .sitepolicy__body {
    padding-top: 56px;
    padding-bottom: 37.3333333333vw;
  }
}

.sitepolicy__inner {
  max-width: 1126px;
  width: calc(100% - 48px);
  margin: 0 auto;
}

.sitepolicyHeading-en {
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 110%;
  color: #dbe1ea;
}
@media (min-width: 751px) {
  .sitepolicyHeading-en {
    font-size: 80px;
  }
}
@media (max-width: 750px) {
  .sitepolicyHeading-en {
    font-size: 40px;
  }
}

.sitepolicyHeading-jp {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
}
@media (min-width: 751px) {
  .sitepolicyHeading-jp {
    font-size: 28px;
    margin-top: -18px;
  }
}
@media (max-width: 750px) {
  .sitepolicyHeading-jp {
    font-size: 20px;
    margin-top: -12px;
  }
}
.sitepolicyHeading-jp::before {
  content: "";
  display: block;
  background: #3d424b;
  height: 2px;
  border-radius: 15px;
  margin-left: 3px;
}
@media (min-width: 751px) {
  .sitepolicyHeading-jp::before {
    width: 30px;
    margin-right: 12px;
  }
}
@media (max-width: 750px) {
  .sitepolicyHeading-jp::before {
    width: 20px;
    margin-right: 8px;
  }
}

.sitepolicy__sec {
  border-top: 1px solid #dbe1ea;
}
@media (min-width: 751px) {
  .sitepolicy__sec {
    margin-top: 109px;
    padding-top: 119px;
  }
}
@media (max-width: 750px) {
  .sitepolicy__sec {
    margin-top: 60px;
    padding-top: 60px;
  }
}

.sitepolicy__list {
  max-width: 932px;
  margin: 0 auto;
}
@media (min-width: 751px) {
  .sitepolicy__list {
    margin-bottom: 10vw;
  }
}

@media (min-width: 751px) {
  .sitepolicy__item:not(:last-child) {
    margin-bottom: 123px;
  }
}
@media (max-width: 750px) {
  .sitepolicy__item:not(:last-child) {
    margin-bottom: 60px;
  }
}

.sitepolicy__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  position: relative;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .sitepolicy__ttl {
    font-size: 32px;
    margin-bottom: 51px;
    padding-left: 25px;
  }
}
@media (max-width: 750px) {
  .sitepolicy__ttl {
    font-size: 20px;
    margin-bottom: 24px;
    padding-left: 15px;
  }
}
.sitepolicy__ttl::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3px;
  border-radius: 10px;
  background-color: #0087c6;
}
@media (min-width: 751px) {
  .sitepolicy__ttl::before {
    height: 30px;
  }
}
@media (max-width: 750px) {
  .sitepolicy__ttl::before {
    height: 20px;
  }
}

.sitepolicy__txt {
  line-height: 180%;
  letter-spacing: 0.06em;
}

/*
  反社会的勢力に対する基本方針
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .antisocial .sitepolicy__ttl {
    margin-bottom: 30px;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  event


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.event__body {
  margin-bottom: 15vw;
}

@media (max-width: 750px) {
  .event__body .c-fvHeading__ttlRow:first-child {
    margin-left: -4px;
  }
}
@media (max-width: 750px) {
  .event__body .c-fvHeading__ttlRow:nth-child(3) {
    margin-top: -10px;
    margin-bottom: 10px;
  }
}

.eventHeading-jp {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  margin-top: -7px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
}
@media (min-width: 751px) {
  .eventHeading-jp {
    font-size: 28px;
  }
}
@media (max-width: 750px) {
  .eventHeading-jp {
    font-size: 20px;
  }
}
.eventHeading-jp::before {
  content: "";
  display: block;
  background: #3d424b;
  height: 2px;
  border-radius: 15px;
  margin-left: 3px;
}
@media (min-width: 751px) {
  .eventHeading-jp::before {
    width: 30px;
    margin-right: 12px;
  }
}
@media (max-width: 750px) {
  .eventHeading-jp::before {
    width: 20px;
    margin-right: 8px;
  }
}

.memberTab.-event {
  margin: 0 auto;
}
@media (min-width: 751px) {
  .memberTab.-event {
    padding-top: 100px;
    margin-top: 80px;
  }
}
@media (max-width: 750px) {
  .memberTab.-event {
    padding-top: 40px;
    padding-bottom: 12px;
    margin-bottom: 60px;
    overflow-x: scroll;
  }
}
.memberTab.-event .memberTab__list {
  border: none;
}
@media (min-width: 751px) {
  .memberTab.-event .memberTab__list {
    max-width: 820px;
  }
}
@media (max-width: 750px) {
  .memberTab.-event .memberTab__list {
    width: 450px;
  }
}
.memberTab.-event .memberTab__item {
  white-space: nowrap;
}
@media (max-width: 750px) {
  .memberTab.-event .memberTab__item {
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    width: 150px;
  }
}
.memberTab.-event .memberTab__item a,
.memberTab.-event .memberTab__item button {
  display: block;
  width: 100%;
}
.memberTab.-event .memberTab__item.-active::before {
  display: none;
}
.memberTab.-event .memberTab__item.-active a,
.memberTab.-event .memberTab__item.-active button {
  position: relative;
  color: #0171ff !important;
}
.memberTab.-event .memberTab__item.-active a::before,
.memberTab.-event .memberTab__item.-active button::before {
  position: absolute;
  content: "";
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 10px;
  height: 10px;
  background-image: url("../images/member/menu_active.svg");
  background-size: cover;
}

.eventTab__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  border-left: 1px solid #a2a8b4;
  border-right: 1px solid #a2a8b4;
}

@media (min-width: 751px) {
  .event__list {
    width: 82.4304538799vw;
    margin: 128px auto 280px;
  }
}
@media (max-width: 750px) {
  .event__list {
    width: calc(100% - 48px);
    margin: 0 auto 100px;
  }
}

.event__item {
  position: relative;
  border-top: 1px solid #a2a8b4;
}
@media (min-width: 751px) {
  .event__item {
    padding-top: 32px;
  }
  .event__item:not(:last-child) {
    margin-bottom: 130px;
  }
}
@media (max-width: 750px) {
  .event__item {
    padding-top: 24px;
  }
  .event__item:not(:last-child) {
    margin-bottom: 100px;
  }
}

.event__item .seminarList__item {
  max-width: 935px;
  margin: 0 auto;
}
.event__item .seminarList__item:first-child::before {
  display: none;
}

.event__headingWrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 751px) {
  .event__headingWrap {
    margin-bottom: 80px;
  }
}
@media (max-width: 750px) {
  .event__headingWrap {
    margin-bottom: 0px;
  }
}

.event__heading {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  position: relative;
  line-height: 130%;
  letter-spacing: 0.05em;
  padding-left: 21px;
}
@media (min-width: 751px) {
  .event__heading {
    font-size: 24px;
  }
}
@media (max-width: 750px) {
  .event__heading {
    font-size: 20px;
  }
}
.event__heading::before {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  display: block;
  background: #0087c6;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.event__btn {
  width: 240px;
  height: 55px;
}
@media (max-width: 750px) {
  .event__btn {
    margin-top: 24px;
  }
}

.eventVoice {
  background-color: #f7f7f7;
}
@media (min-width: 751px) {
  .eventVoice {
    margin-bottom: 195px;
  }
}
@media (max-width: 750px) {
  .eventVoice {
    margin-bottom: 100px;
  }
}

.eventVoice__inner {
  max-width: 975px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.eventVoice__headingWrap {
  margin-bottom: 143px;
}

@media (min-width: 751px) {
  .eventVoice .c-secRound {
    margin-bottom: -16.2vw;
  }
}

.eventVoice__card {
  position: relative;
  max-width: 880px;
  margin-left: auto;
  background-color: #fff;
}
@media (min-width: 751px) {
  .eventVoice__card {
    width: 91%;
    padding: 65px 0;
  }
}
@media (max-width: 750px) {
  .eventVoice__card {
    padding: 80px 20px 30px;
  }
}
.eventVoice__card:not(:last-child) {
  margin-bottom: 100px;
}

.eventVoiceImg {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: -47px;
  padding: 0 !important;
}
@media (min-width: 751px) {
  .eventVoiceImg {
    max-width: 203px;
    max-height: 203px;
    width: 16.9vw;
    height: 16.9vw;
  }
}
@media (max-width: 750px) {
  .eventVoiceImg {
    width: 100px;
    height: 100px;
    left: -10px;
  }
}
@media (min-width: 1025px) {
  .eventVoiceImg {
    left: -95px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .eventVoiceImg {
    left: -8%;
  }
}
.eventVoiceImg div {
  top: initial !important;
  right: initial !important;
  bottom: initial !important;
  left: initial !important;
}

.eventVoiceImg__line1 {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition-delay: 0.1s !important;
          transition-delay: 0.1s !important;
}

.eventVoiceImg__line2 {
  position: absolute;
  width: 95%;
  height: 95%;
  -webkit-transition-delay: 0.2s !important;
          transition-delay: 0.2s !important;
}

.eventVoiceImg__circle {
  position: absolute;
  width: 83.3%;
  height: 83.3%;
  -webkit-transition-delay: 0.3s !important;
          transition-delay: 0.3s !important;
}

@media (min-width: 751px) {
  .eventVoice__cardInner {
    margin-left: 16%;
  }
}

.eventVoice__item:not(:last-child) {
  margin-bottom: 28px;
}

.eventVoice__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  margin-bottom: 15px;
}
.eventVoice__ttl span {
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #0087c6;
  display: block;
  margin-right: 10px;
}

.eventVoice__txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 180%;
  letter-spacing: 0.03em;
}
.eventVoice__txt span {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 2%;
}
.eventVoice__txt::before {
  content: "";
  display: inline-block;
  background: #a2a8b4;
  height: 1px;
  margin-top: 8px;
}
@media (min-width: 751px) {
  .eventVoice__txt::before {
    width: 65px;
    margin-right: 18px;
  }
}
@media (max-width: 750px) {
  .eventVoice__txt::before {
    width: 30px;
  }
}

.recruitConts.-eventReport {
  padding: 0;
}
@media (min-width: 751px) {
  .recruitConts.-eventReport {
    margin-bottom: 148px;
  }
}
@media (max-width: 750px) {
  .recruitConts.-eventReport {
    margin-bottom: 70px;
  }
}

@media (max-width: 750px) {
  .event__body .bizMovieConts__ttl {
    font-size: 70px;
  }
}

/*
  事業紹介 - サービス紹介 - アニメーション
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.eventReportCircle__line {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  opacity: 0;
  -webkit-transition: 0.6s 0.6s;
  transition: 0.6s 0.6s;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

.eventReportCircle__img {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}

/* アニメーション後 */
.eventReportCircle.is-anime .eventReportCircle__line,
.eventReportCircle.is-anime .eventReportCircle__img {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  資料ダウンロード


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .sec-download {
    padding-top: 60px;
  }
}
@media (max-width: 750px) {
  .sec-download {
    padding-top: 24px;
  }
}

@media (min-width: 751px) {
  .downloadList {
    width: 82.4304538799vw;
    max-width: 976px;
    margin: auto;
  }
}
@media (min-width: 1367px) {
  .downloadList {
    width: 71.4494875549vw;
    max-width: none;
  }
}
@media (max-width: 750px) {
  .downloadList {
    margin: 0 24px;
  }
}

.downloadItem {
  border-bottom: 1px solid #dbe1ea;
}
@media (min-width: 751px) {
  .downloadItem {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding: 46px 0;
  }
}
@media (max-width: 750px) {
  .downloadItem {
    padding: 60px 0 88px;
  }
}

@media (min-width: 751px) {
  .downloadItem__thumb {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    width: 29.2825768668vw;
    margin-right: 4.39238653vw;
    margin-left: -24px;
  }
}
@media (max-width: 750px) {
  .downloadItem__thumb {
    width: 70vw;
    max-width: 480px;
    margin: 0 auto 28px;
  }
}

.downloadItem__conts {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 751px) {
  .downloadItem__conts {
    padding: 40px 0 90px;
  }
}

@media (max-width: 750px) {
  .downloadItem__txts {
    margin-bottom: 48px;
  }
}

.downloadItem__ttl {
  border-bottom: 1px solid #dbe1ea;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
}
@media (min-width: 751px) {
  .downloadItem__ttl {
    padding-bottom: 14px;
    margin-bottom: 14px;
    font-size: 24px;
  }
}
@media (max-width: 750px) {
  .downloadItem__ttl {
    padding-bottom: 12px;
    margin-bottom: 14 px;
    font-size: 20px;
  }
}

.downloadItem__lead {
  font-size: 16px;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .downloadItem__lead {
    margin-bottom: 20px;
  }
}
@media (max-width: 750px) {
  .downloadItem__lead {
    margin-bottom: 12px;
  }
}

.downloadItem__txt {
  line-height: 1.8;
}

@media (min-width: 751px) {
  .downloadItem__btn {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}
@media (max-width: 750px) {
  .downloadItem__btn {
    margin: auto;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  お問い合わせ 完了ページ


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.contactComplete__ttl {
  margin-bottom: 28px;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 751px) {
  .contactComplete__ttl {
    font-size: 32px;
  }
}
@media (max-width: 750px) {
  .contactComplete__ttl {
    padding-left: 8px;
    font-size: 24px;
  }
}

.contactComplete__txt {
  line-height: 1.8;
  text-align: center;
}
@media (min-width: 751px) {
  .contactComplete__txt {
    font-size: 16px;
  }
}

.contactComplete__download {
  margin-top: 44px;
}

.contactCompleteBtn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 80px;
}

.contactCompleteBtn__link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.contactCompleteBtn__link:hover {
  color: #a9b1bd;
}
.contactCompleteBtn__link:hover span::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.contactCompleteBtn__link:hover span::before {
  border-left-color: #fff;
}

.contactCompleteBtn__txt {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.contactCompleteBtn__arrow {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 750px) {
  .contactCompleteBtn__arrow {
    top: 0;
  }
}
.contactCompleteBtn__arrow .c-dtlPager__arrow-border {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border: 1px solid #0171ff;
  border-radius: 50%;
}
.contactCompleteBtn__arrow::before {
  content: "";
  position: absolute;
  z-index: 2;
  border: 3px solid transparent;
  margin-top: 1px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.contactCompleteBtn__arrow::after {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  left: -2px;
  bottom: -2px;
  background: #0171ff;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: scale(0);
          transform: scale(0);
}
.contactCompleteBtn__arrow:hover::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.contactCompleteBtn__arrow::before {
  border-left: 7px solid #0171ff;
  margin-right: -5px;
}
.contactCompleteBtn__arrow:hover::before {
  border-left-color: #fff;
}

span.contactCompleteBtn__arrow {
  width: 56px;
  height: 56px;
  margin-left: 12px;
}

span.contactCompleteBtn__arrow::before {
  width: 19px;
  height: 8px;
  border: none;
  margin: 0;
  background: url(../images/common/icon_arrow_blue.svg) no-repeat center/contain;
}

span.contactCompleteBtn__arrow::after {
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
}

.contactCompleteBtn__link:hover span.contactCompleteBtn__arrow::before {
  background-image: url(../images/common/icon_arrow_white.svg);
}

span.contactCompleteBtn__arrow-border {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border-radius: 50%;
  border: 1px solid #0171ff;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  セミナー参加申し込みフォーム


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.applyInfo {
  max-width: 784px;
  margin: auto;
  border-radius: 10px;
  background: #fff;
}
@media (min-width: 751px) {
  .applyInfo {
    width: 82.4304538799vw;
    padding: 32px 5.3% 28px;
    margin-bottom: 72px;
  }
}
@media (max-width: 750px) {
  .applyInfo {
    width: calc(100% - 48px);
    padding: 16px 28px 13px;
    margin-bottom: 70px;
  }
}

@media (min-width: 751px) {
  .applyInfoItem {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 30px 14px;
    line-height: 1.8;
  }
}
@media (max-width: 750px) {
  .applyInfoItem {
    padding: 18px 0 17px;
  }
}

.applyInfoItem:not(:last-child) {
  border-bottom: 1px solid #d3d7dc;
}

.applyInfoItem__head {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  color: #0087c6;
}
@media (min-width: 751px) {
  .applyInfoItem__head {
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    width: 120px;
    font-size: 16px;
  }
}
@media (max-width: 750px) {
  .applyInfoItem__head {
    margin-bottom: 4px;
  }
}

@media (min-width: 751px) {
  .applyInfoItem__body {
    font-size: 16px;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  企業理念


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/*
  企業理念 - ファーストビュー
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .philosophy-fv {
    margin-bottom: -21.9619326501vw;
  }
}
@media (max-width: 750px) {
  .philosophy-fv {
    padding-top: 104px;
    padding-bottom: 200px;
    margin-bottom: -100px;
  }
}

.philosophy-fv .c-fvCircle {
  z-index: 4;
}
@media (min-width: 751px) {
  .philosophy-fv .c-fvCircle {
    top: -12.298682284vw;
    width: 81.2591508053vw;
    height: 81.2591508053vw;
    margin-right: -10.102489019vw;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .philosophy-fv .c-fvCircle {
    top: -8.7890625vw;
  }
}
@media (max-width: 750px) {
  .philosophy-fv .c-fvCircle {
    width: 110.9333333333vw;
    height: 110.9333333333vw;
    margin-top: -18.6666666667vw;
    margin-right: -18.1333333333vw;
  }
}

.philosophy-fv .c-fvCircle__arrow {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  opacity: 0;
}

@media (min-width: 751px) {
  .philosophy-fv .c-fvCircle__img {
    width: 43.7774524158vw;
  }
}
@media (max-width: 750px) {
  .philosophy-fv .c-fvCircle__img {
    width: 59.7333333333vw;
  }
}

/*
  企業理念 - Vision Mission Value - 図形
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.vmvChart {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.vmvChartImg {
  position: absolute;
  width: calc(100% - 40px);
  max-width: 1124px;
  margin: auto;
  opacity: 0;
  -webkit-transform: scale(0.92);
          transform: scale(0.92);
  -webkit-transition: opacity 1.2s, -webkit-transform 1.2s;
  transition: opacity 1.2s, -webkit-transform 1.2s;
  transition: opacity 1.2s, transform 1.2s;
  transition: opacity 1.2s, transform 1.2s, -webkit-transform 1.2s;
}

.vmvChartImg.is-anime {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*
  企業理念 - Vision Mission Value
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/* 背景動画 */
.philosophy .bgLoopMv::after {
  opacity: 0;
}

.philosophy-bgMvOverlay {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  opacity: 0;
  pointer-events: none;
}

.vmv {
  position: relative;
  z-index: 3;
}
@media (min-width: 751px) {
  .vmv {
    padding: 300px 0 200px;
  }
}
@media (max-width: 750px) {
  .vmv {
    padding: 200px 0;
  }
}

@media (min-width: 751px) {
  .vmvSec {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 86.82284041vw;
    padding: 75px 0;
    margin: auto;
  }
}
@media (min-width: 1367px) {
  .vmvSec {
    max-width: 1186px;
  }
}
@media (max-width: 750px) {
  .vmvSec {
    padding: 70px 0;
  }
}

/* 反転 */
@media (min-width: 751px) {
  .vmvSec.-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media (min-width: 751px) {
  .vmvSecHead {
    margin-right: 8.78477306vw;
  }
}
@media (min-width: 1367px) {
  .vmvSecHead {
    margin-right: 120px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .vmvSecHead {
    margin-right: 6.25vw;
  }
}
@media (max-width: 750px) {
  .vmvSecHead {
    margin: 0 12px 72px;
  }
}

/* 反転 */
@media (min-width: 751px) {
  .vmvSec.-reverse .vmvSecHead {
    margin-right: 0;
    margin-left: 3.3674963397vw;
  }
}
@media (min-width: 1367px) {
  .vmvSec.-reverse .vmvSecHead {
    margin-left: 46px;
  }
}

.vmvSecHead__en {
  color: #0087c6;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 200;
  font-style: normal;
  letter-spacing: -0.06em;
  line-height: 1.3;
  white-space: nowrap;
}
@media (min-width: 751px) {
  .vmvSecHead__en {
    margin-bottom: 0.5856515373vw;
    font-size: 10.2489019034vw;
  }
}
@media (min-width: 1367px) {
  .vmvSecHead__en {
    margin-bottom: 16px;
    font-size: 140px;
  }
}
@media (max-width: 750px) {
  .vmvSecHead__en {
    margin-bottom: 12px;
    font-size: 82px;
  }
}

.vmvSecHead__txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #0087c6;
}
@media (min-width: 751px) {
  .vmvSecHead__txt {
    padding-left: 2.3426061493vw;
  }
}
@media (min-width: 1367px) {
  .vmvSecHead__txt {
    padding-left: 32px;
  }
}
@media (max-width: 750px) {
  .vmvSecHead__txt {
    padding-left: 24px;
  }
}

.vmvSecHead__txt::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 10px;
  border: 1px solid #0087c6;
}

@media (min-width: 751px) {
  .vmvSecConts {
    margin-top: 5.8565153734vw;
  }
}
@media (min-width: 1367px) {
  .vmvSecConts {
    margin-top: 80px;
  }
}
@media (max-width: 750px) {
  .vmvSecConts {
    margin: 0 24px;
  }
}

/* 反転 */
@media (min-width: 751px) {
  .vmvSec.-reverse .vmvSecConts {
    padding-left: 5.1244509517vw;
  }
}
@media (min-width: 1367px) {
  .vmvSec.-reverse .vmvSecConts {
    padding-left: 70px;
  }
}

.vmvSecContsHead {
  position: relative;
}
@media (min-width: 751px) {
  .vmvSecContsHead {
    padding-bottom: 3.3674963397vw;
    margin-bottom: 3.3674963397vw;
  }
}
@media (min-width: 1367px) {
  .vmvSecContsHead {
    padding-bottom: 46px;
    margin-bottom: 46px;
  }
}
@media (max-width: 750px) {
  .vmvSecContsHead {
    padding-bottom: 32px;
    margin-bottom: 32px;
  }
}

.vmvSecContsHead::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 1px;
  background: #0087c6;
}

@media (min-width: 751px) {
  .vmvSecContsHead__logo {
    width: 22.4011713031vw;
  }
}
@media (min-width: 1367px) {
  .vmvSecContsHead__logo {
    width: 306px;
  }
}
@media (max-width: 750px) {
  .vmvSecContsHead__logo {
    width: 176px;
  }
}

.vmvSecContsHeadTtl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  white-space: nowrap;
}
@media (min-width: 751px) {
  .vmvSecContsHeadTtl {
    margin-right: -1.9033674963vw;
    font-size: 2.7818448023vw;
    letter-spacing: 0.05em;
  }
}
@media (min-width: 1367px) {
  .vmvSecContsHeadTtl {
    margin-right: -16px;
    font-size: 38px;
  }
}
@media (max-width: 750px) {
  .vmvSecContsHeadTtl {
    font-size: 21px;
    letter-spacing: -0.01em;
    white-space: nowrap;
  }
}

@media (min-width: 751px) {
  .vmvSecContsHeadTtl__sub {
    font-size: 2.5622254758vw;
  }
}
@media (min-width: 1367px) {
  .vmvSecContsHeadTtl__sub {
    font-size: 35px;
  }
}
@media (max-width: 750px) {
  .vmvSecContsHeadTtl__sub {
    font-size: 20px;
  }
}

.vmvSecContsBody__txt {
  line-height: 2.4;
  text-align: justify;
  letter-spacing: 0.03em;
  font-size: 16px;
}
@media (max-width: 1024px) and (min-width: 751px) {
  .vmvSecContsBody__txt {
    font-size: 14px;
  }
}

.vmvSecContsBody__txt + .vmvSecContsBody__txt {
  margin-top: 2.4em;
}

@media (min-width: 751px) {
  .vmvSec:nth-child(1) .vmvSecContsBody__txt {
    white-space: nowrap;
  }
}

.vmvSec:nth-child(3) .vmvSecContsBody__txt {
  max-width: 594px;
}

/*
  企業理念 - 行動指針
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.guidelines {
  position: relative;
  z-index: 3;
}

.guidelinesHead {
  position: relative;
  z-index: 3;
}
@media (min-width: 751px) {
  .guidelinesHead {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: 86.82284041vw;
    margin: 0 auto 5.8565153734vw;
  }
}
@media (min-width: 1367px) {
  .guidelinesHead {
    max-width: 1186px;
    margin-bottom: 80px;
  }
}
@media (max-width: 750px) {
  .guidelinesHead {
    padding-left: 32px;
    margin-bottom: 80px;
  }
}

@media (min-width: 751px) {
  .guidelinesHeadTtl {
    margin-bottom: 1.1713030747vw;
  }
}
@media (min-width: 1367px) {
  .guidelinesHeadTtl {
    margin-bottom: 16px;
  }
}
@media (max-width: 750px) {
  .guidelinesHeadTtl {
    margin-bottom: 12px;
  }
}

.guidelinesHeadTtl__txt {
  display: block;
  padding: 0 10px;
  color: #0087c6;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 200;
  font-style: normal;
  letter-spacing: -0.06em;
  line-height: 1;
}
@media (min-width: 751px) {
  .guidelinesHeadTtl__txt {
    font-size: 7.3206442167vw;
  }
}
@media (min-width: 1367px) {
  .guidelinesHeadTtl__txt {
    font-size: 100px;
  }
}
@media (max-width: 750px) {
  .guidelinesHeadTtl__txt {
    font-size: 64px;
  }
}

@media (min-width: 751px) {
  .guidelinesHeadTtl__txt:first-child {
    margin-left: -0.75em;
  }
}
@media (max-width: 750px) {
  .guidelinesHeadTtl__txt:first-child {
    margin-left: -28px;
  }
}

.guidelinesHeadTtl.is-anime .guidelinesHeadTtl__txt > span {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.guidelinesHead__txt {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 6px;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #0087c6;
}

.guidelinesHead__txt::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 10px;
  border: 1px solid #0087c6;
}

@media (min-width: 751px) {
  .guidelinesConts {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: calc(100% - 40px);
    max-width: 974px;
    margin: auto;
  }
}
@media (max-width: 750px) {
  .guidelinesConts {
    padding-bottom: 150px;
  }
}

.guidelinesConts::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: -300px;
  background: #f7f7f7;
}

.guidelinesSec {
  position: relative;
  z-index: 2;
}
@media (min-width: 751px) {
  .guidelinesSec {
    width: calc(50% - 10px);
  }
}
@media (max-width: 750px) {
  .guidelinesSec {
    margin: 0 24px;
  }
}

@media (min-width: 751px) {
  .guidelinesSec:nth-child(even) {
    padding-top: 76px;
    margin-left: 20px;
    margin-bottom: 30px;
  }
}

@media (min-width: 751px) {
  .guidelinesSec:nth-child(2) {
    padding-top: 76px;
  }
}

@media (max-width: 750px) {
  .guidelinesSec:not(:last-child) {
    margin-bottom: 60px;
  }
}

.guidelinesSecHead {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
}
@media (min-width: 751px) {
  .guidelinesSecHead {
    padding-bottom: 10px;
  }
}
@media (max-width: 750px) {
  .guidelinesSecHead {
    padding-bottom: 14px;
  }
}

.guidelinesSecHead::before,
.guidelinesSecHead::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
}

.guidelinesSecHead::before {
  right: 0;
  background: #dbe1ea;
}

.guidelinesSecHead::after {
  width: 40px;
  background: #0087c6;
}

.guidelinesSecHead__num {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  width: 40px;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #0087c6;
  font-size: 20px;
}
@media (max-width: 750px) {
  .guidelinesSecHead__num {
    padding-left: 6px;
  }
}

.guidelinesSecHead__ttl {
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media (min-width: 751px) {
  .guidelinesSecHead__ttl {
    padding-left: 2px;
    font-size: 30px;
  }
}
@media (max-width: 750px) {
  .guidelinesSecHead__ttl {
    padding-left: 4px;
    font-size: 20px;
  }
}

.guidelinesSecBody {
  padding-top: 14px;
  padding-left: 44px;
}

.guidelinesSecBody__txt {
  line-height: 1.8;
  font-size: 16px;
  letter-spacing: 0.03em;
}

/*
  企業理念 - ページ下部 円
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.philosophyBtmWrap {
  position: relative;
  z-index: 3;
}

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

@media (min-width: 751px) {
  .inflate-philosophy {
    margin-bottom: 140px;
  }
}
@media (max-width: 750px) {
  .inflate-philosophy {
    margin-bottom: 80px;
  }
}

/*
  企業理念 - メニュー
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.philosophy .c-bizMenu {
  position: relative;
  z-index: 3;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  IR情報 トップページ


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .ir .bizTtl {
    max-width: 1126px;
  }
}

/*
  IR情報 トップページ - ニュース
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.irTop-news {
  background: #f7f7f7;
}
@media (min-width: 751px) {
  .irTop-news {
    padding-bottom: 188px;
  }
}
@media (max-width: 750px) {
  .irTop-news {
    padding-bottom: 108px;
    margin-top: 104px;
  }
}

.irTop-newsConts {
  margin: auto;
}
@media (min-width: 751px) {
  .irTop-newsConts {
    width: calc(100% - 48px);
    max-width: 974px;
    margin-top: 84px;
  }
}
@media (max-width: 750px) {
  .irTop-newsConts {
    width: calc(100% - 40px);
    margin-top: 45px;
  }
}

@media (min-width: 751px) {
  .irTop-newsList {
    max-width: 860px;
    margin-left: auto;
    margin-bottom: 50px;
  }
}
@media (max-width: 750px) {
  .irTop-newsList {
    margin-bottom: 50px;
  }
}

/*
  IR情報 トップページ - メニュー
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.irTop-menu {
  position: relative;
}
@media (min-width: 751px) {
  .irTop-menu {
    padding-bottom: 260px;
  }
}
@media (max-width: 750px) {
  .irTop-menu {
    padding-bottom: 13.3333333333vw;
  }
}

.irTop-menu::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background: #f7f7f7;
}
@media (min-width: 751px) {
  .irTop-menu::before {
    height: 500px;
  }
}
@media (max-width: 750px) {
  .irTop-menu::before {
    bottom: 500px;
  }
}

.irTop-menuList {
  margin: auto;
}
@media (min-width: 751px) {
  .irTop-menuList {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 82.4304538799vw;
    margin-top: 110px;
    max-width: 1126px;
  }
}
@media (max-width: 750px) {
  .irTop-menuList {
    width: calc(100% - 48px);
    margin-top: 56px;
  }
}

.irTop-menuBox {
  background: #fff;
  border-radius: 10px;
}
@media (min-width: 751px) {
  .irTop-menuBox {
    min-height: 528px;
    padding: 17px 2.85% 23px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1025px) {
  .irTop-menuBox {
    width: calc(33.33% - 13px);
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .irTop-menuBox {
    width: calc(50% - 10px);
  }
}
@media (max-width: 750px) {
  .irTop-menuBox {
    padding: 22px 14px 24px;
  }
}

@media (min-width: 1025px) {
  .irTop-menuBox:not(:nth-child(3n)) {
    margin-right: 19px;
  }
}

@media (max-width: 1024px) and (min-width: 751px) {
  .irTop-menuBox:nth-child(odd) {
    margin-right: 20px;
  }
}

@media (max-width: 750px) {
  .irTop-menuBox:not(:last-child) {
    margin-bottom: 28px;
  }
}

@media (min-width: 751px) {
  .irTop-menuBoxHead {
    margin-bottom: 24px;
  }
}
@media (max-width: 750px) {
  .irTop-menuBoxHead {
    margin-bottom: 22px;
  }
}

.irTop-menuBoxHead__icon {
  margin: auto;
}
@media (min-width: 751px) {
  .irTop-menuBoxHead__icon {
    width: 90px;
    margin-bottom: 6px;
  }
}
@media (min-width: 1367px) {
  .irTop-menuBoxHead__icon {
    width: 6.588579795vw;
  }
}
@media (max-width: 750px) {
  .irTop-menuBoxHead__icon {
    width: 83px;
    margin-bottom: 5px;
  }
}

.irTop-menuBoxHead__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  text-align: center;
  font-size: 24px;
}

/* メニュー */
.irTop-menuBoxItem {
  border-top: 1px solid #dbe1ea;
}

.irTop-menuBoxItem:last-child {
  border-bottom: 1px solid #dbe1ea;
}

.irTop-menuBoxLink {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 10px 11px;
}

.irTop-menuBoxItem__ttl {
  padding-right: 8px;
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  font-size: 16px;
}

/* テキスト */
@media (min-width: 751px) {
  .irTop-menuBoxBody {
    margin-top: 50px;
  }
}
@media (max-width: 750px) {
  .irTop-menuBoxBody {
    padding-bottom: 24px;
    margin-top: 42px;
  }
}

.irTop-menuBox__lead {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  text-align: center;
}
@media (min-width: 751px) {
  .irTop-menuBox__lead {
    margin-bottom: 20px;
  }
}
@media (max-width: 750px) {
  .irTop-menuBox__lead {
    margin-bottom: 32px;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  IRニュース一覧


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
body.news {
  overflow-x: hidden;
}

@media (min-width: 1025px) {
  .ir-newsSub {
    margin-right: 60px;
  }
}
@media (max-width: 1024px) and (min-width: 751px) {
  .ir-newsSub {
    margin-right: 38px;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  株主の状況


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.conts.-infomation .c-fvHeading__ttlRow {
  display: block;
}
@media screen and (max-width: 750px) {
  .conts.-infomation .c-fvHeading .c-fvHeading__ttl {
    font-size: 14.3vw;
  }
}

.information__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 130%;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .information__ttl {
    font-size: 24px;
  }
}
@media (max-width: 750px) {
  .information__ttl {
    font-size: 20px;
  }
}
.information__ttl.-reverse {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.information__ttl::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0087c6;
  top: 10px;
  margin-top: 10px;
  margin-right: 17px;
}
.information__body {
  margin: 92px auto 0;
}
@media (max-width: 1024px) {
  .information__body {
    margin: 76px auto 0;
  }
}
.information__list {
  position: relative;
  margin-top: 44px;
}
@media (max-width: 750px) {
  .information__list {
    margin-top: 20px;
    overflow: auto;
  }
  .information__list .information__list-inner {
    width: 733px;
  }
}
.information__txt {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 0.42px;
  color: #3D424B;
}
.information__txt.-attention {
  margin-top: 20px;
  font-size: 13px;
}
.information__item-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  color: #0087C6;
  padding: 20px 0;
  border-bottom: 1px solid #D3D7DC;
}
.information__item-conts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #D3D7DC;
}
.information__item-sec1 {
  display: block;
  max-width: 382px;
  width: 100%;
  word-break: break-all;
}
.information__item-sec2 {
  display: block;
  max-width: 286px;
  width: 100%;
  margin-left: 20px;
  word-break: break-all;
}
.information__item-sec3 {
  display: block;
  max-width: 267px;
  width: 100%;
  margin-left: 20px;
  word-break: break-all;
}
.information__sec {
  position: relative;
}
.information__sec + .information__sec .information__secInner {
  margin-top: 124px;
}
.information__secInner {
  max-width: 933px;
  width: 100%;
  width: calc(100% - 40px);
  margin: 64px auto 0;
}
@media (max-width: 1024px) {
  .information__secInner {
    max-width: none;
    overflow: hidden;
  }
}

.information__conts-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 72px;
}
@media (max-width: 750px) {
  .information__conts-inner {
    display: block;
    margin-top: 40px;
  }
}

.information__detail {
  max-width: 333px;
  width: 100%;
  margin-left: 117px;
}
@media (max-width: 750px) {
  .information__detail {
    max-width: none;
    width: auto;
    margin: 40px 0 0;
  }
}

.information__detail-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.information__detail-item + .information__detail-item {
  margin-top: 13px;
}
.information__detail-item .information__detail-dot {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.information__detail-item .information__detail-dot::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  border-radius: 100%;
}
.information__detail-item .information__txt.-title {
  max-width: 115px;
  width: 100%;
  margin-left: 30px;
  font-weight: 600;
  word-break: break-all;
}
.information__detail-item .information__txt.-detail {
  max-width: 60px;
  width: 100%;
  margin-left: 43px;
  word-break: break-all;
}
.information__detail-item svg {
  width: 60px;
}
.information__detail-item.-color01 .information__detail-dot::before {
  background: #0069A8;
}
.information__detail-item.-color02 .information__detail-dot::before {
  background: #0087C6;
}
.information__detail-item.-color03 .information__detail-dot::before {
  background: #28AFEE;
}
.information__detail-item.-color04 .information__detail-dot::before {
  background: #46CDFF;
}
.information__detail-item.-color05 .information__detail-dot::before {
  background: #A5E9F8;
}
.information__detail-item.-color06 .information__detail-dot::before {
  background: #D0D4D5;
}
.information__detail-item.-color07 .information__detail-dot::before {
  background: #989898;
}
.information__detail-item.-color08 .information__detail-dot::before {
  background: #FFFFFF;
}

.information__graph {
  position: relative;
  max-width: 380px;
  width: 100%;
  height: 0;
  padding-top: 380px;
}

#chart {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  IRライブラリ


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.ir-libraryConts {
  position: relative;
  z-index: 3;
}
@media (min-width: 751px) {
  .ir-libraryConts {
    padding-top: 128px;
  }
}

.ir-librarySec {
  max-width: 935px;
  margin: auto;
}
@media (min-width: 751px) {
  .ir-librarySec {
    width: calc(100% - 40px);
  }
}
@media (max-width: 750px) {
  .ir-librarySec {
    width: calc(100% - 48px);
  }
}

@media (min-width: 751px) {
  .ir-librarySec:not(:last-child) {
    margin-bottom: 74px;
  }
}
@media (max-width: 750px) {
  .ir-librarySec:not(:last-child) {
    margin-bottom: 90px;
  }
}

@media (max-width: 750px) {
  .ir-libraryListWrap {
    margin-top: 40px;
  }
}

@media (min-width: 751px) {
  .ir-libraryList {
    margin-bottom: 38px;
  }
}
@media (max-width: 750px) {
  .ir-libraryList {
    margin-bottom: 32px;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  電子公告


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.ir-noticeConts {
  position: relative;
  z-index: 3;
}
@media (min-width: 751px) {
  .ir-noticeConts {
    padding-top: 168px;
    padding-bottom: 300px;
  }
}
@media (max-width: 750px) {
  .ir-noticeConts {
    width: calc(100% - 48px);
    padding-bottom: 100px;
    margin: auto;
  }
}

.ir-noticeSec {
  max-width: 935px;
  margin: auto;
}
@media (min-width: 751px) {
  .ir-noticeSec {
    margin-bottom: 48px;
  }
}
@media (max-width: 750px) {
  .ir-noticeSec {
    margin-bottom: 40px;
  }
}

@media (max-width: 750px) {
  .ir-noticeListWrap {
    margin-top: 40px;
  }
}

.ir-noticeTxts {
  max-width: 935px;
  margin: auto;
  line-height: 1.8;
}
@media (min-width: 751px) {
  .ir-noticeTxts {
    width: calc(100% - 40px);
  }
}

.ir-noticeTxt + .ir-noticeTxt {
  margin-top: 1.5em;
}

.ir-noticeOuterlink {
  display: inline-block;
  color: #0171ff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.ir-noticeOuterlink::after {
  content: "";
  display: inline-block;
  background-image: url("https://wahcell.jp/wp-content/themes/wahcell-1/img/icon_outerlink_blue.svg");
  background-size: cover;
  width: 12px;
  height: 10px;
  margin-left: 6px;
  margin-top: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.ir-noticeOuterlink:hover {
  color: #a2a8b4;
}
.ir-noticeOuterlink:hover::after {
  background-image: url("../images/common/icon_outerlink_gray.svg");
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  トップメッセージ


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.conts.-irMessage + .shrink .shrink__bg {
  background: #f7f7f7;
}

@media (min-width: 751px) {
  .irMessage__body {
    padding-top: 5vw;
    margin-bottom: 8vw;
  }
}
@media (max-width: 750px) {
  .irMessage__body {
    padding-top: 50px;
  }
}

@media (min-width: 751px) {
  .irMessage__inner {
    max-width: 1305px;
    width: calc(100% - 48px);
    margin: 0 auto;
  }
}

.irMessageHead {
  position: relative;
}
@media (min-width: 751px) {
  .irMessageHead {
    margin-bottom: 98px;
  }
}
@media (max-width: 750px) {
  .irMessageHead {
    margin-bottom: 55px;
  }
}

.irMessageHead__img {
  display: block;
}

.irMessage__txtarea {
  position: relative;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0.03em;
  text-align: justify;
}
@media (min-width: 751px) {
  .irMessage__txtarea {
    max-width: 835px;
    margin-left: auto;
    margin-bottom: 333px;
    padding-right: 7.1%;
  }
}
@media (max-width: 750px) {
  .irMessage__txtarea {
    width: calc(100% - 48px);
    margin: 0 auto;
  }
}

.irMessage__ttl {
  margin-bottom: 32px;
  font-weight: bold;
  font-size: 24px;
}

.irMessage__txt:not(:last-of-type) {
  margin-bottom: 30px;
}
.irMessage__txt:last-of-type {
  text-align: right;
  margin-top: 39px;
}
.irMessage__txt span {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  display: block;
  margin-top: 8px;
  letter-spacing: 0;
  line-height: 160%;
}

.irMessage__circle {
  position: absolute;
  z-index: -1;
}

@media (min-width: 751px) {
  .irMessage__circle.-left {
    max-width: 615px;
    width: 46vw;
    top: 51.2%;
    left: -12.5%;
  }
}
@media (max-width: 750px) {
  .irMessage__circle.-left {
    top: 31%;
    left: -33.5%;
  }
}

@media (min-width: 751px) {
  .irMessage__circle.-right {
    bottom: -26.7%;
    right: -10.7%;
    max-width: 833px;
    width: 61vw;
  }
}
@media (max-width: 750px) {
  .irMessage__circle.-right {
    bottom: -5.2%;
    right: -32.7%;
  }
}

.irMessage__menu {
  max-width: 1130px;
  margin: 0 auto;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  governance


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (max-width: 750px) {
  .governance .c-fvHeading {
    margin-left: 9px;
    margin-right: auto;
  }
}
@media (max-width: 750px) {
  .governance .c-fvHeading__ttlRow {
    display: block;
  }
}
@media (max-width: 750px) {
  .governance .c-fvHeading__ttl {
    font-size: 14.9vw;
  }
}
@media (max-width: 750px) {
  .governance .c-fvHeading__txt {
    margin-top: -6px;
  }
}

.governance__body {
  position: relative;
  z-index: 2;
}
@media (min-width: 751px) {
  .governance__body {
    margin: -23vw 0 9.3vw;
  }
}
@media (max-width: 750px) {
  .governance__body {
    margin: 9vw 0 17vw;
  }
}

@media (min-width: 751px) {
  .governance__inner {
    margin-bottom: 100px;
  }
}
@media (max-width: 750px) {
  .governance__inner {
    margin-bottom: 50px;
  }
}

.governance__secInner {
  position: relative;
  width: calc(100% - 48px);
  margin: 0 auto;
}
@media (min-width: 751px) {
  .governance__secInner {
    max-width: 975px;
  }
}
@media (max-width: 750px) {
  .governance__secInner {
    padding-top: 20px;
  }
}

@media (min-width: 751px) {
  .governance__sec:not(:last-of-type) {
    padding-bottom: 185px;
  }
}
@media (max-width: 750px) {
  .governance__sec:not(:last-of-type) {
    padding-bottom: 90px;
  }
}

@media (min-width: 751px) {
  .governance__sec .ir__menu {
    margin-top: 250px;
  }
}
@media (max-width: 750px) {
  .governance__sec .ir__menu {
    margin-top: 150px;
  }
}

.ir__menu .c-bizMenu {
  padding: 0;
}

.governance__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 130%;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .governance__ttl {
    font-size: 24px;
  }
}
@media (max-width: 750px) {
  .governance__ttl {
    font-size: 20px;
  }
}
.governance__ttl.-reverse {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.governance__ttl::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0087c6;
  top: 10px;
  margin-top: 10px;
  margin-right: 17px;
}

.governance__txt {
  max-width: 743px;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0.03em;
}
@media (min-width: 751px) {
  .governance__txt {
    margin-top: 76px;
  }
}
@media (max-width: 750px) {
  .governance__txt {
    text-align: justify;
    margin-top: 40px;
  }
}

.governance__imgWrap::-webkit-scrollbar {
  height: 2px;
}
.governance__imgWrap::-webkit-scrollbar-track {
  background: #dbe1ea;
}
.governance__imgWrap::-webkit-scrollbar-thumb {
  background: #a2a8b4;
}
@media (min-width: 751px) {
  .governance__imgWrap {
    margin-top: 90px;
  }
}
@media (max-width: 750px) {
  .governance__imgWrap {
    width: calc(100% + 24px);
    padding-right: 24px;
    padding-bottom: 29px;
    overflow-x: scroll;
  }
}

@media (max-width: 750px) {
  .governance__img {
    min-width: 592px;
    margin-top: 40px;
    margin-right: 24px;
  }
}

.governance__list {
  max-width: 688px;
  margin-top: 42px;
}

.governance__item {
  border-bottom: 1px solid #dbe1ea;
}
.governance__item:first-child {
  border-top: 1px solid #dbe1ea;
}

.governanceLink {
  position: relative;
  display: block;
  min-height: 78px;
  line-height: 180%;
  letter-spacing: 0.03em;
}
.governanceLink span {
  z-index: 3;
  display: block;
}
@media (min-width: 751px) {
  .governanceLink {
    font-size: 16px;
    padding: 25px 104px 25px 20px;
  }
}
@media (max-width: 750px) {
  .governanceLink {
    font-size: 14px;
    padding: 18px 16px 84px;
  }
}
.governanceLink:hover .governanceLinkIcon__img::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.governanceLink:hover .governanceLinkIcon__img .line1 {
  stroke: #fff;
}
.governanceLink:hover .governanceLinkIcon__img .line2 {
  fill: #fff;
}

.governanceLinkIcon {
  position: absolute;
  right: 19px;
  z-index: 2;
}
@media (min-width: 751px) {
  .governanceLinkIcon {
    top: 16px;
  }
}
@media (max-width: 750px) {
  .governanceLinkIcon {
    bottom: 19px;
  }
}

.governanceLinkIcon__img {
  margin-bottom: 10px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.governanceLinkIcon__img::before {
  position: absolute;
  content: "";
  width: 44px;
  height: 44px;
  border-radius: 50%;
  z-index: -1;
  -webkit-transform: scale(0);
          transform: scale(0);
  background-color: #0171ff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 3;
}
.governanceLinkIcon__img svg {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 3;
}

.governanceLinkIcon__txt {
  position: relative;
  z-index: 3;
  font-size: 12px;
  line-height: 130%;
  text-align: center;
  letter-spacing: 0.05em;
  color: #a2a8b4;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  stock


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.stock__body {
  position: relative;
  z-index: 2;
}
@media (min-width: 751px) {
  .stock__body {
    margin-top: -24.9vw;
  }
}
@media (max-width: 750px) {
  .stock__body {
    padding: 12vw 0 62px;
  }
}

@media (min-width: 751px) {
  .stock__inner {
    margin-bottom: 50px;
  }
}

@media (min-width: 751px) {
  .stock__sec:not(:last-of-type) {
    padding-bottom: 185px;
  }
}
@media (max-width: 750px) {
  .stock__sec:not(:last-of-type) {
    padding-bottom: 90px;
  }
}

@media (max-width: 750px) {
  .stock__sec:last-child .c-secRound {
    margin-bottom: 13px;
  }
}

.stock__secInner {
  position: relative;
  width: calc(100% - 48px);
  margin: 0 auto;
}
@media (min-width: 751px) {
  .stock__secInner {
    max-width: 975px;
  }
}

.stock__heading {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 130%;
  letter-spacing: 0.05em;
}
@media (min-width: 751px) {
  .stock__heading {
    font-size: 24px;
    margin-bottom: 96px;
  }
}
@media (max-width: 750px) {
  .stock__heading {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
.stock__heading.-reverse {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 750px) {
  .stock__heading.-reverse {
    padding-right: 22px;
  }
}
.stock__heading::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0087c6;
  top: 10px;
  margin-top: 10px;
  margin-right: 17px;
}

.stock__list {
  max-width: 935px;
  margin: 0 auto;
}

.stock__item {
  border-bottom: 1px solid #dbe1ea;
  min-height: 90px;
}
@media (min-width: 751px) {
  .stock__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 30px 0 30px 40px;
  }
}
@media (max-width: 750px) {
  .stock__item {
    padding: 15px 10px;
  }
}
.stock__item:first-child {
  border-top: 1px solid #dbe1ea;
}

.stock__term {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  line-height: 160%;
}
@media (min-width: 751px) {
  .stock__term {
    width: 238px;
    font-size: 18px;
  }
}
@media (max-width: 750px) {
  .stock__term {
    font-size: 16px;
  }
}

.stock__desc {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0.03em;
}

.stock__link {
  display: inline-block;
  color: #0171ff;
}
@media (min-width: 751px) {
  .stock__link {
    margin-left: 7px;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  quote


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.quote__body {
  position: relative;
  z-index: 3;
}

.quote__sec {
  position: relative;
  max-width: 744px;
  width: calc(100% - 48px);
}
@media (min-width: 751px) {
  .quote__sec {
    padding: 252px 0 227px;
    margin: 0 auto 202px;
  }
}
@media (max-width: 750px) {
  .quote__sec {
    padding-top: 44.2666666667vw;
    margin: 0 auto 24vw;
  }
}

@media (min-width: 751px) {
  .quote__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.quote__bg {
  position: absolute;
  z-index: -1;
  -webkit-transform: rotate(170deg);
          transform: rotate(170deg);
  display: block;
}
@media (min-width: 751px) {
  .quote__bg {
    width: 1485.7px;
    left: -50%;
    top: -1%;
  }
}
@media (max-width: 750px) {
  .quote__bg {
    width: 142vw;
    height: 79.1vw;
    top: 24%;
    left: -30%;
  }
}
.quote__bg svg {
  width: 100%;
  height: 100%;
}

.quote__txt {
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0.03em;
}
@media (min-width: 751px) {
  .quote__txt {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-right: 76px;
  }
}
@media (max-width: 750px) {
  .quote__txt {
    margin-bottom: 32px;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  calendar


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.calendar__body {
  position: relative;
}
@media (min-width: 751px) {
  .calendar__body {
    padding: 9.2vw 0 8vw;
  }
}
@media (max-width: 750px) {
  .calendar__body {
    padding-top: 20vw;
  }
}

.calendar__inner {
  margin: auto;
  max-width: 1256px;
  width: calc(100% - 48px);
  background-color: #fff;
}
@media (min-width: 751px) {
  .calendar__inner {
    margin-bottom: 70px;
    padding: 119px 0 165px;
    border-radius: 24px;
  }
}
@media (max-width: 750px) {
  .calendar__inner {
    padding: 33px 0 51px;
    border-radius: 10px;
  }
}
.calendar__inner.is-list-none {
  padding: 119px 0;
}
@media screen and (min-width: 769px) {
  .calendar__inner.is-list-none .calendar__imgWrap {
    margin: 0 auto 64px;
  }
}
@media screen and (max-width: 768px) {
  .calendar__inner.is-list-none .calendar__imgWrap {
    margin-bottom: 22px;
  }
}
.calendar__inner.is-list-none .calendar__listWrap {
  max-width: 996px;
}
.calendar__inner.is-list-none .calendar__listWrap .calendar__txt {
  padding: 0;
}

@media (min-width: 751px) {
  .calendar__imgWrap {
    max-width: 996px;
    width: calc(100% - 40px);
    margin: 0 auto 129px;
  }
}
@media (max-width: 750px) {
  .calendar__imgWrap {
    overflow-x: scroll;
    padding-bottom: 47px;
    margin-bottom: 55px;
    width: calc(100% - 19px);
    margin-left: auto;
  }
  .calendar__imgWrap::-webkit-scrollbar {
    height: 2px;
  }
  .calendar__imgWrap::-webkit-scrollbar-track {
    background: #dbe1ea;
  }
  .calendar__imgWrap::-webkit-scrollbar-thumb {
    background: #a2a8b4;
  }
}

@media (max-width: 750px) {
  .calendar__img {
    width: 877px;
    margin-right: 19px;
  }
}

.calendar__listWrap {
  max-width: 935px;
  width: calc(100% - 56px);
  margin: 0 auto;
}

@media (min-width: 751px) {
  .calendar__list {
    margin-bottom: 50px;
  }
}
@media (max-width: 750px) {
  .calendar__list {
    margin-bottom: 44px;
  }
}

.calendar__item {
  border-bottom: 1px solid #dbe1ea;
}
@media (min-width: 751px) {
  .calendar__item {
    padding: 8px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 750px) {
  .calendar__item {
    padding: 15px 10px;
  }
}
.calendar__item:first-child {
  border-top: 1px solid #dbe1ea;
}

.calendar__term {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  color: #0087c6;
}
@media (min-width: 751px) {
  .calendar__term {
    width: calc(100% - 260px);
    border-right: 1px dashed #dbe1ea;
    padding: 22px 0 22px 40px;
    font-size: 18px;
  }
}
@media (max-width: 750px) {
  .calendar__term {
    font-size: 16px;
  }
}

.calendar__desc {
  font-size: 16px;
  line-height: 180%;
  letter-spacing: 0.03em;
}
@media (min-width: 751px) {
  .calendar__desc {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 22px 40px 22px 70px;
    text-align: left;
  }
}

.calendar__txt {
  line-height: 1.8;
  letter-spacing: 0.03em;
}
@media (min-width: 751px) {
  .calendar__txt {
    padding-left: 40px;
  }
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  faq


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
@media (min-width: 751px) {
  .faq__body {
    padding-top: 160px;
  }
}
@media (max-width: 750px) {
  .faq__body {
    padding-top: 60px;
  }
}

.faq__inner {
  max-width: 975px;
  width: calc(100% - 48px);
  margin: 0 auto 40px;
}

.faq__item {
  position: relative;
  background-color: #fff;
  border-radius: 4px;
}
.faq__item:not(:last-child) {
  margin-bottom: 16px;
}
@media (min-width: 751px) {
  .faq__item {
    padding: 35px 39px 32px;
  }
}
@media (max-width: 750px) {
  .faq__item {
    cursor: pointer;
    padding: 20px 0 20px 20px;
  }
}

@media (max-width: 750px) {
  .faqAcc__ttlWrap {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 60px;
  }
}

.faqAcc__ttl {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 160%;
  color: #0087c6;
}
@media (min-width: 751px) {
  .faqAcc__ttl {
    font-size: 18px;
    margin-bottom: 19px;
  }
}
@media (max-width: 750px) {
  .faqAcc__ttl {
    font-size: 16px;
  }
}
.faqAcc__ttl span {
  display: block;
  font-family: montserrat, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 110%;
  margin-right: 6px;
}
@media (min-width: 751px) {
  .faqAcc__ttl span {
    font-size: 24px;
  }
}
@media (max-width: 750px) {
  .faqAcc__ttl span {
    font-size: 20px;
  }
}

.faqAcc__txt {
  line-height: 180%;
  letter-spacing: 0.03em;
}
@media (min-width: 751px) {
  .faqAcc__txt {
    display: block !important;
  }
}
@media (max-width: 750px) {
  .faqAcc__txt {
    display: none;
    text-align: justify;
    margin-top: 11px;
    padding-right: 20px;
  }
}
.faqAcc__txt a {
  color: #0171ff;
}

.faqAcc__btn {
  position: absolute;
  right: 21px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 751px) {
  .faqAcc__btn {
    display: none;
  }
}
.faqAcc__btn::before, .faqAcc__btn::after {
  position: absolute;
  z-index: 2;
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background-color: #0171ff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.faqAcc__btn::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.faqAcc__btn.-active::before, .faqAcc__btn.-active::after {
  background-color: #fff;
}
.faqAcc__btn.-active::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.faqAcc__btn.-active .c-circleBtn__overlay {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  policy


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.policy__inner {
  max-width: 1126px;
  width: calc(100% - 48px);
  margin: 0 auto;
}
@media (min-width: 751px) {
  .policy__inner {
    margin-top: 120px;
    margin-bottom: 70px;
  }
}
@media (max-width: 750px) {
  .policy__inner {
    margin-top: 56px;
    margin-bottom: 40px;
  }
}

.policyFvHeading {
  border-bottom: 1px solid #dbe1ea;
}
@media (min-width: 751px) {
  .policyFvHeading {
    padding-bottom: 103px;
    margin-bottom: 125px;
  }
}
@media (max-width: 750px) {
  .policyFvHeading {
    padding-bottom: 53px;
    margin-bottom: 54px;
  }
}

@media (min-width: 751px) {
  .policyFvHeading .c-fvHeading__ttl {
    margin-bottom: -8px;
  }
}

.policy__list {
  max-width: 934px;
  margin: auto;
}
@media (min-width: 751px) {
  .policy__list {
    width: calc(100% - 48px);
  }
}

@media (min-width: 751px) {
  .policy__item:not(:last-child) {
    margin-bottom: 50px;
  }
}
@media (max-width: 750px) {
  .policy__item:not(:last-child) {
    margin-bottom: 43px;
  }
}

.policy__term {
  font-family: "Midashi Go MB31", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  position: relative;
  line-height: 130%;
  letter-spacing: 0.05em;
  padding-left: 25px;
}
@media (min-width: 751px) {
  .policy__term {
    font-size: 32px;
    margin-bottom: 33px;
  }
}
@media (max-width: 750px) {
  .policy__term {
    font-size: 23.5px;
    margin-bottom: 25px;
  }
}
.policy__term::before {
  position: absolute;
  content: "";
  left: 0;
  width: 3px;
  height: 33px;
  background-color: #0087c6;
  border-radius: 10px;
}
@media (min-width: 751px) {
  .policy__term::before {
    top: 4px;
  }
}
@media (max-width: 750px) {
  .policy__term::before {
    top: 0px;
  }
}

.policy__desc {
  line-height: 180%;
  letter-spacing: 0.03em;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  disclaimer


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.disclaimer__inner {
  max-width: 1126px;
  width: calc(100% - 48px);
  margin: 0 auto;
}
@media (min-width: 751px) {
  .disclaimer__inner {
    margin-top: 120px;
    margin-bottom: 100px;
  }
}
@media (max-width: 750px) {
  .disclaimer__inner {
    margin-top: 56px;
    margin-bottom: 40px;
  }
}

.disclaimerFvHeading {
  border-bottom: 1px solid #dbe1ea;
}
@media (min-width: 751px) {
  .disclaimerFvHeading {
    padding-bottom: 105px;
    margin-bottom: 124px;
  }
}
@media (max-width: 750px) {
  .disclaimerFvHeading {
    padding-bottom: 52px;
    margin-bottom: 55px;
  }
}

@media (min-width: 751px) {
  .disclaimerFvHeading .c-fvHeading__ttl {
    margin-bottom: -8px;
  }
}

.disclaimer__txtWrap {
  max-width: 934px;
  line-height: 180%;
  letter-spacing: 0.03em;
  margin: auto;
}
@media (min-width: 751px) {
  .disclaimer__txtWrap {
    width: calc(100% - 48px);
  }
}
@media (max-width: 750px) {
  .disclaimer__txtWrap {
    text-align: justify;
  }
}

.disclaimer__txt:not(:last-child) {
  margin-bottom: 22px;
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  sponsorship


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.sponsorship__list-item {
  min-height: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 750px) {
  .sponsorship__list-item {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.sponsorship__list-item.partner__item::before {
  content: none;
}
.sponsorship__txtarea.partner__txtarea {
  padding-right: 38px;
  padding-bottom: 0;
  width: 100%;
  max-width: 100%;
}
.sponsorship__sns-list {
  margin-top: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 750px) {
  .sponsorship__sns-list {
    display: block;
  }
}
.sponsorship__sns-list__item {
  margin-right: 50px;
}
@media (max-width: 750px) {
  .sponsorship__sns-list__item {
    margin-top: 15px;
  }
  .sponsorship__sns-list__item:first-child {
    margin-top: 0;
  }
}
.sponsorship__sns-list__item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 751px) {
  .sponsorship__sns-list__item a {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .sponsorship__sns-list__item a:hover {
    opacity: 0.7;
  }
}
.sponsorship__sns-list__item:last-child {
  margin-right: 0;
}
@media (max-width: 750px) {
  .sponsorship__sns-list__item-icon-wrap {
    min-width: 34px;
  }
}
.sponsorship__sns-list__item span {
  display: inline-block;
  font-size: 16px;
  margin-left: 24px;
  color: #0171ff;
}
@media (max-width: 750px) {
  .sponsorship__sns-list__item span {
    margin-left: 20px;
  }
}
@media (max-width: 750px) {
  .sponsorship .partnerHeading {
    padding-bottom: 40px;
  }
}
.sponsorship .partner__list + .partnerHeading {
  margin-top: 131px;
}
@media (max-width: 750px) {
  .sponsorship .partner__list + .partnerHeading {
    margin-top: 60px;
  }
}

/*
  要素出現アニメーション
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/*
 fadeIn-anime：その場で透過度が1になり表示される
 slideUp-anime：fadeIn-animeに
*/
.fadeIn-anime {
  opacity: 0;
  -webkit-transition: opacity 1.4s;
  transition: opacity 1.4s;
}

.fadeIn-anime.is-anime {
  opacity: 1;
}

.slideUp-anime-parent.is-anime .fadeIn-anime {
  opacity: 1;
}

.slideUp-anime-parent.is-anime .fadeIn-anime-child {
  opacity: 1;
}

.slideUp-anime,
.slideUp-anime-parent > * {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.6s;
  transition: opacity 0.5s, -webkit-transform 0.6s;
  transition: transform 0.6s, opacity 0.5s;
  transition: transform 0.6s, opacity 0.5s, -webkit-transform 0.6s;
}

.is-anime .slideUp-anime,
.slideUp-anime.is-anime,
.slideUp-anime-parent.is-anime > * {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.anime-no1 {
  z-index: 2;
}

.anime-no1 {
  -webkit-transition-delay: 0.07s !important;
          transition-delay: 0.07s !important;
}

.slideUp-anime-parent > *:nth-child(1) {
  -webkit-transition-delay: 0.2s !important;
          transition-delay: 0.2s !important;
}

@media (min-width: 751px) {
  .anime-no1-pc {
    -webkit-transition-delay: 0.07s !important;
            transition-delay: 0.07s !important;
  }
}
@media (max-width: 750px) {
  .anime-no1-sp {
    -webkit-transition-delay: 0.07s !important;
            transition-delay: 0.07s !important;
  }
}
.anime-no2 {
  -webkit-transition-delay: 0.14s !important;
          transition-delay: 0.14s !important;
}

.slideUp-anime-parent > *:nth-child(2) {
  -webkit-transition-delay: 0.4s !important;
          transition-delay: 0.4s !important;
}

@media (min-width: 751px) {
  .anime-no2-pc {
    -webkit-transition-delay: 0.14s !important;
            transition-delay: 0.14s !important;
  }
}
@media (max-width: 750px) {
  .anime-no2-sp {
    -webkit-transition-delay: 0.14s !important;
            transition-delay: 0.14s !important;
  }
}
.anime-no3 {
  -webkit-transition-delay: 0.21s !important;
          transition-delay: 0.21s !important;
}

.slideUp-anime-parent > *:nth-child(3) {
  -webkit-transition-delay: 0.6s !important;
          transition-delay: 0.6s !important;
}

@media (min-width: 751px) {
  .anime-no3-pc {
    -webkit-transition-delay: 0.21s !important;
            transition-delay: 0.21s !important;
  }
}
@media (max-width: 750px) {
  .anime-no3-sp {
    -webkit-transition-delay: 0.21s !important;
            transition-delay: 0.21s !important;
  }
}
.anime-no4 {
  -webkit-transition-delay: 0.28s !important;
          transition-delay: 0.28s !important;
}

.slideUp-anime-parent > *:nth-child(4) {
  -webkit-transition-delay: 0.8s !important;
          transition-delay: 0.8s !important;
}

@media (min-width: 751px) {
  .anime-no4-pc {
    -webkit-transition-delay: 0.28s !important;
            transition-delay: 0.28s !important;
  }
}
@media (max-width: 750px) {
  .anime-no4-sp {
    -webkit-transition-delay: 0.28s !important;
            transition-delay: 0.28s !important;
  }
}
.anime-no5 {
  -webkit-transition-delay: 0.35s !important;
          transition-delay: 0.35s !important;
}

.slideUp-anime-parent > *:nth-child(5) {
  -webkit-transition-delay: 1s !important;
          transition-delay: 1s !important;
}

@media (min-width: 751px) {
  .anime-no5-pc {
    -webkit-transition-delay: 0.35s !important;
            transition-delay: 0.35s !important;
  }
}
@media (max-width: 750px) {
  .anime-no5-sp {
    -webkit-transition-delay: 0.35s !important;
            transition-delay: 0.35s !important;
  }
}
.anime-no6 {
  -webkit-transition-delay: 0.42s !important;
          transition-delay: 0.42s !important;
}

.slideUp-anime-parent > *:nth-child(6) {
  -webkit-transition-delay: 1.2s !important;
          transition-delay: 1.2s !important;
}

@media (min-width: 751px) {
  .anime-no6-pc {
    -webkit-transition-delay: 0.42s !important;
            transition-delay: 0.42s !important;
  }
}
@media (max-width: 750px) {
  .anime-no6-sp {
    -webkit-transition-delay: 0.42s !important;
            transition-delay: 0.42s !important;
  }
}
.anime-no7 {
  -webkit-transition-delay: 0.49s !important;
          transition-delay: 0.49s !important;
}

.slideUp-anime-parent > *:nth-child(7) {
  -webkit-transition-delay: 1.4s !important;
          transition-delay: 1.4s !important;
}

@media (min-width: 751px) {
  .anime-no7-pc {
    -webkit-transition-delay: 0.49s !important;
            transition-delay: 0.49s !important;
  }
}
@media (max-width: 750px) {
  .anime-no7-sp {
    -webkit-transition-delay: 0.49s !important;
            transition-delay: 0.49s !important;
  }
}
.anime-no8 {
  -webkit-transition-delay: 0.56s !important;
          transition-delay: 0.56s !important;
}

.slideUp-anime-parent > *:nth-child(8) {
  -webkit-transition-delay: 1.6s !important;
          transition-delay: 1.6s !important;
}

@media (min-width: 751px) {
  .anime-no8-pc {
    -webkit-transition-delay: 0.56s !important;
            transition-delay: 0.56s !important;
  }
}
@media (max-width: 750px) {
  .anime-no8-sp {
    -webkit-transition-delay: 0.56s !important;
            transition-delay: 0.56s !important;
  }
}
.anime-no9 {
  -webkit-transition-delay: 0.63s !important;
          transition-delay: 0.63s !important;
}

.slideUp-anime-parent > *:nth-child(9) {
  -webkit-transition-delay: 1.8s !important;
          transition-delay: 1.8s !important;
}

@media (min-width: 751px) {
  .anime-no9-pc {
    -webkit-transition-delay: 0.63s !important;
            transition-delay: 0.63s !important;
  }
}
@media (max-width: 750px) {
  .anime-no9-sp {
    -webkit-transition-delay: 0.63s !important;
            transition-delay: 0.63s !important;
  }
}
.anime-no10 {
  -webkit-transition-delay: 0.7s !important;
          transition-delay: 0.7s !important;
}

.slideUp-anime-parent > *:nth-child(10) {
  -webkit-transition-delay: 2s !important;
          transition-delay: 2s !important;
}

@media (min-width: 751px) {
  .anime-no10-pc {
    -webkit-transition-delay: 0.7s !important;
            transition-delay: 0.7s !important;
  }
}
@media (max-width: 750px) {
  .anime-no10-sp {
    -webkit-transition-delay: 0.7s !important;
            transition-delay: 0.7s !important;
  }
}
.anime-no11 {
  -webkit-transition-delay: 0.77s !important;
          transition-delay: 0.77s !important;
}

.slideUp-anime-parent > *:nth-child(11) {
  -webkit-transition-delay: 2.2s !important;
          transition-delay: 2.2s !important;
}

@media (min-width: 751px) {
  .anime-no11-pc {
    -webkit-transition-delay: 0.77s !important;
            transition-delay: 0.77s !important;
  }
}
@media (max-width: 750px) {
  .anime-no11-sp {
    -webkit-transition-delay: 0.77s !important;
            transition-delay: 0.77s !important;
  }
}
.anime-no12 {
  -webkit-transition-delay: 0.84s !important;
          transition-delay: 0.84s !important;
}

.slideUp-anime-parent > *:nth-child(12) {
  -webkit-transition-delay: 2.4s !important;
          transition-delay: 2.4s !important;
}

@media (min-width: 751px) {
  .anime-no12-pc {
    -webkit-transition-delay: 0.84s !important;
            transition-delay: 0.84s !important;
  }
}
@media (max-width: 750px) {
  .anime-no12-sp {
    -webkit-transition-delay: 0.84s !important;
            transition-delay: 0.84s !important;
  }
}
.anime-no13 {
  -webkit-transition-delay: 0.91s !important;
          transition-delay: 0.91s !important;
}

.slideUp-anime-parent > *:nth-child(13) {
  -webkit-transition-delay: 2.6s !important;
          transition-delay: 2.6s !important;
}

@media (min-width: 751px) {
  .anime-no13-pc {
    -webkit-transition-delay: 0.91s !important;
            transition-delay: 0.91s !important;
  }
}
@media (max-width: 750px) {
  .anime-no13-sp {
    -webkit-transition-delay: 0.91s !important;
            transition-delay: 0.91s !important;
  }
}
.anime-no14 {
  -webkit-transition-delay: 0.98s !important;
          transition-delay: 0.98s !important;
}

.slideUp-anime-parent > *:nth-child(14) {
  -webkit-transition-delay: 2.8s !important;
          transition-delay: 2.8s !important;
}

@media (min-width: 751px) {
  .anime-no14-pc {
    -webkit-transition-delay: 0.98s !important;
            transition-delay: 0.98s !important;
  }
}
@media (max-width: 750px) {
  .anime-no14-sp {
    -webkit-transition-delay: 0.98s !important;
            transition-delay: 0.98s !important;
  }
}
.anime-no15 {
  -webkit-transition-delay: 1.05s !important;
          transition-delay: 1.05s !important;
}

.slideUp-anime-parent > *:nth-child(15) {
  -webkit-transition-delay: 3s !important;
          transition-delay: 3s !important;
}

@media (min-width: 751px) {
  .anime-no15-pc {
    -webkit-transition-delay: 1.05s !important;
            transition-delay: 1.05s !important;
  }
}
@media (max-width: 750px) {
  .anime-no15-sp {
    -webkit-transition-delay: 1.05s !important;
            transition-delay: 1.05s !important;
  }
}
/*
  slideLeft
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.slideLeft-anime {
  opacity: 0;
  -webkit-transform: translateX(-24px);
          transform: translateX(-24px);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.6s;
  transition: opacity 0.5s, -webkit-transform 0.6s;
  transition: transform 0.6s, opacity 0.5s;
  transition: transform 0.6s, opacity 0.5s, -webkit-transform 0.6s;
}

.slideLeft-anime.is-anime {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slideScale-anime {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}

.slideScale-anime.is-anime {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*
  見出し 要素出現アニメーション
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-txtCut {
  overflow: hidden;
}

.c-txtCut > span {
  display: inline-block;
  -webkit-transform: translate3d(0, 110%, 0);
          transform: translate3d(0, 110%, 0);
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}

.c-txtCut > span:nth-child(1) {
  -webkit-transition-delay: 0.07s;
          transition-delay: 0.07s;
}

.c-txtCut > span:nth-child(2) {
  -webkit-transition-delay: 0.14s;
          transition-delay: 0.14s;
}

.c-txtCut > span:nth-child(3) {
  -webkit-transition-delay: 0.21s;
          transition-delay: 0.21s;
}

.c-txtCut > span:nth-child(4) {
  -webkit-transition-delay: 0.28s;
          transition-delay: 0.28s;
}

.c-txtCut > span:nth-child(5) {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}

.c-txtCut > span:nth-child(6) {
  -webkit-transition-delay: 0.42s;
          transition-delay: 0.42s;
}

.c-txtCut > span:nth-child(7) {
  -webkit-transition-delay: 0.49s;
          transition-delay: 0.49s;
}

.c-txtCut > span:nth-child(8) {
  -webkit-transition-delay: 0.56s;
          transition-delay: 0.56s;
}

.c-txtCut > span:nth-child(9) {
  -webkit-transition-delay: 0.63s;
          transition-delay: 0.63s;
}

.c-txtCut > span:nth-child(10) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

.c-txtCut > span:nth-child(11) {
  -webkit-transition-delay: 0.77s;
          transition-delay: 0.77s;
}

.c-txtCut > span:nth-child(12) {
  -webkit-transition-delay: 0.84s;
          transition-delay: 0.84s;
}

.c-txtCut > span:nth-child(13) {
  -webkit-transition-delay: 0.91s;
          transition-delay: 0.91s;
}

.c-txtCut > span:nth-child(14) {
  -webkit-transition-delay: 0.98s;
          transition-delay: 0.98s;
}

.c-txtCut > span:nth-child(15) {
  -webkit-transition-delay: 1.05s;
          transition-delay: 1.05s;
}

.c-txtCut > span:nth-child(16) {
  -webkit-transition-delay: 1.12s;
          transition-delay: 1.12s;
}

.c-txtCut > span:nth-child(17) {
  -webkit-transition-delay: 1.19s;
          transition-delay: 1.19s;
}

.c-txtCut > span:nth-child(18) {
  -webkit-transition-delay: 1.26s;
          transition-delay: 1.26s;
}

.c-txtCut > span:nth-child(19) {
  -webkit-transition-delay: 1.33s;
          transition-delay: 1.33s;
}

.c-txtCut > span:nth-child(20) {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}

.c-txtCut > span:nth-child(21) {
  -webkit-transition-delay: 1.47s;
          transition-delay: 1.47s;
}

.c-txtCut > span:nth-child(22) {
  -webkit-transition-delay: 1.54s;
          transition-delay: 1.54s;
}

.c-txtCut > span:nth-child(23) {
  -webkit-transition-delay: 1.61s;
          transition-delay: 1.61s;
}

.c-txtCut > span:nth-child(24) {
  -webkit-transition-delay: 1.68s;
          transition-delay: 1.68s;
}

.c-txtCut > span:nth-child(25) {
  -webkit-transition-delay: 1.75s;
          transition-delay: 1.75s;
}

.c-txtCut > span:nth-child(26) {
  -webkit-transition-delay: 1.82s;
          transition-delay: 1.82s;
}

.c-txtCut > span:nth-child(27) {
  -webkit-transition-delay: 1.89s;
          transition-delay: 1.89s;
}

.c-txtCut > span:nth-child(28) {
  -webkit-transition-delay: 1.96s;
          transition-delay: 1.96s;
}

.c-txtCut > span:nth-child(29) {
  -webkit-transition-delay: 2.03s;
          transition-delay: 2.03s;
}

.c-txtCut > span:nth-child(30) {
  -webkit-transition-delay: 2.1s;
          transition-delay: 2.1s;
}

.c-txtCut > span:nth-child(31) {
  -webkit-transition-delay: 2.17s;
          transition-delay: 2.17s;
}

.c-txtCut > span:nth-child(32) {
  -webkit-transition-delay: 2.24s;
          transition-delay: 2.24s;
}

.c-txtCut > span:nth-child(33) {
  -webkit-transition-delay: 2.31s;
          transition-delay: 2.31s;
}

.c-txtCut > span:nth-child(34) {
  -webkit-transition-delay: 2.38s;
          transition-delay: 2.38s;
}

.c-txtCut > span:nth-child(35) {
  -webkit-transition-delay: 2.45s;
          transition-delay: 2.45s;
}

.c-txtCut > span:nth-child(36) {
  -webkit-transition-delay: 2.52s;
          transition-delay: 2.52s;
}

.c-txtCut > span:nth-child(37) {
  -webkit-transition-delay: 2.59s;
          transition-delay: 2.59s;
}

.c-txtCut > span:nth-child(38) {
  -webkit-transition-delay: 2.66s;
          transition-delay: 2.66s;
}

.c-txtCut > span:nth-child(39) {
  -webkit-transition-delay: 2.73s;
          transition-delay: 2.73s;
}

.c-txtCut > span:nth-child(40) {
  -webkit-transition-delay: 2.8s;
          transition-delay: 2.8s;
}

.c-txtCut > span:nth-child(41) {
  -webkit-transition-delay: 2.87s;
          transition-delay: 2.87s;
}

.c-txtCut > span:nth-child(42) {
  -webkit-transition-delay: 2.94s;
          transition-delay: 2.94s;
}

.c-txtCut > span:nth-child(43) {
  -webkit-transition-delay: 3.01s;
          transition-delay: 3.01s;
}

.c-txtCut > span:nth-child(44) {
  -webkit-transition-delay: 3.08s;
          transition-delay: 3.08s;
}

.c-txtCut > span:nth-child(45) {
  -webkit-transition-delay: 3.15s;
          transition-delay: 3.15s;
}

.c-txtCut > span:nth-child(46) {
  -webkit-transition-delay: 3.22s;
          transition-delay: 3.22s;
}

.c-txtCut > span:nth-child(47) {
  -webkit-transition-delay: 3.29s;
          transition-delay: 3.29s;
}

.c-txtCut > span:nth-child(48) {
  -webkit-transition-delay: 3.36s;
          transition-delay: 3.36s;
}

.c-txtCut > span:nth-child(49) {
  -webkit-transition-delay: 3.43s;
          transition-delay: 3.43s;
}

.c-txtCut > span:nth-child(50) {
  -webkit-transition-delay: 3.5s;
          transition-delay: 3.5s;
}

/* 表示 */
.c-txtCut.is-anime > span {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

/*
  拡大表示アニメーション
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.c-expansion-anime {
  opacity: 0;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
}

.c-expansion-anime.is-anime {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*
  画像出現アニメーション
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.zoomOut-anime {
  overflow: hidden;
}

.zoomOut-anime > * {
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
  -webkit-transition: -webkit-transform 1.6s;
  transition: -webkit-transform 1.6s;
  transition: transform 1.6s;
  transition: transform 1.6s, -webkit-transform 1.6s;
}

.is-anime .zoomOut-anime > *,
.zoomOut-anime.is-anime > * {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*
  画像出現アニメーション フェード
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.zoomOut-fade-anime {
  overflow: hidden;
}

.zoomOut-fade-anime > * {
  opacity: 0;
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
  -webkit-transition: opacity 0.8s, -webkit-transform 1.6s;
  transition: opacity 0.8s, -webkit-transform 1.6s;
  transition: transform 1.6s, opacity 0.8s;
  transition: transform 1.6s, opacity 0.8s, -webkit-transform 1.6s;
}

.is-anime .zoomOut-fade-anime > *,
.zoomOut-fade-anime.is-anime > * {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*
  ズームインアニメーション
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.zoomIn-anime {
  opacity: 0;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
}

.zoomIn-anime.is-anime {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー


  ローディングアニメーション


ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/*
  ローディング前
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.loading {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 100000;
  background: -webkit-linear-gradient(353.6deg, #f0f0f0 34.84%, #e7ebf1 81.3%);
  background: linear-gradient(96.4deg, #f0f0f0 34.84%, #e7ebf1 81.3%);
}

.loadingMv {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fvCopyMain,
.fvCopySub,
.fvLead,
.fvScrollWrap {
  overflow: hidden;
}

.fvCopyMain__img,
.fvCopySub__img,
.fvLead__txt,
.fvScroll {
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
}

.bgMvWrap {
  top: 0;
  left: 0;
}

/*
  ローディング後
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
.loading.is-done {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 2s;
  transition: 2s;
}

.fvCopyMain__img.is-show,
.fvCopySub__img.is-show,
.fvLead__txt.is-show {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.fvScroll.is-show {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}/*# sourceMappingURL=style.css.map */