@charset "UTF-8";
/*-- foundationフォルダの中の_index.scss --*/
/*
  Made by Elly Loel - https://ellyloel.com/
  参考記事:
    - Josh W Comeau - https://courses.joshwcomeau.com/css-for-js/treasure-trove/010-global-styles/
    - Andy Bell - https://piccalil.li/blog/a-modern-css-reset/
    - Adam Argyle - https://unpkg.com/open-props@1.3.16/normalize.min.css / https://codepen.io/argyleink/pen/KKvRORE
  メモ:
    - :where()は簡単に上書きできるように詳細度を低くするために使用しています。
*/
* {
  /* すべてのデフォルトのマージンを削除 */
  margin: 0;
  /* すべてのデフォルトのパディングを削除 */
  padding: 0;
  /* line-heightをemベースでcalc()で計算。font-sizeを小さくするとline-heightは大きくなり、font-sizeを大きくするとline-heightは小さくなります。参考: https://kittygiraudel.com/2020/05/18/using-calc-to-figure-out-optimal-line-height/ */
  /*line-height: calc(0.25rem + 1em + 0.25rem);*/
}

/* より直感的なボックスサイズのモデルを使用 */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* fieldset, progress, meter以外のすべての要素でボーダーを削除し、背景に適切なデフォルトを設定 */
*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  /* アプリケーションでパーセントによる高さを許可する  */
  block-size: 100%;
  /* テキストのサイズはfont-sizeのみで制御されるようにする */
  -webkit-text-size-adjust: none;
}

/* 減速を好まないユーザーのためにスムーズなスクロールを実現 */
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
body {
  /* テキストのレンダリングを改善 */
  -webkit-font-smoothing: antialiased;
  /* https://marco.org/2012/11/15/text-rendering-optimize-legibility */
  text-rendering: optimizeSpeed;
  /* アプリケーションでパーセントによる高さを許可する */
  min-block-size: 100%;
  /* https://developer.mozilla.org/en-US/docs/Web/CSS/scrollbar-gutter#example_2 */
  /* scrollbar-gutter: stable both-edges; バグが修正されるまで削除: https://bugs.chromium.org/p/chromium/issues/detail?id=1318404#c2 */
}

/* 各メディア要素のデフォルトを改善 */
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
}

/* ストロークを削除し、fillの塗りつぶしカラーはフォントカラーを継承 */
:where(svg) {
  stroke: none;
  fill: currentColor;
}

/* fill属性のないSVG */
:where(svg):where(:not([fill])) {
  /* fillを取り除き、ストロークのカラーはフォントカラーを継承 */
  stroke: currentColor;
  fill: none;
  /* 丸みを帯びたストローク */
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* width属性のないSVGのサイズを設定 */
:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

/* フォーム内のタイポグラフィのスタイルを削除 */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

/* textareaのサイズ変更は垂直のみにし、ブラウザがサポートしている場合にのみblockにします */
:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
/* テキストのオーバーフローを回避 */
:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

/* article、aside、nav、section内のh1フォントサイズを修正 */
h1 {
  font-size: 2em;
}

/* リストの役割をするul、ol要素のリストスタイルを削除。デフォルトのスタイルが削除されることを示唆しています */
:where(ul, ol)[role=list] {
  list-style: none;
}

/* クラスを持たないアンカータグに、より読みやすい下線スタイルを設定。アンカータグに設定することもできますが、コンフリクトを引き起こす可能性があります */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* インタラクティブな要素は適切なカーソルを設定して操作できることを明確にする */
:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button {
  cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

/* フォーカスのアウトラインをアニメーション化 */
@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    -webkit-transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    -webkit-transition-duration: 0.25s;
            transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

/* ユーザーがボタンのテキストを選択できないようにする */
:where(input[type=file])::-webkit-file-upload-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}
:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  text-align: center;
}

/* 無効化されたボタンには無効化されたカーソルを表示 */
:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

/*-- globalフォルダの直下の_index.scss --*/
/*-- settingフォルダの中の_index.scss --*/
/*-- globalフォルダの直下の_index.scss --*/
/*-- globalフォルダの直下の_index.scss --*/
ol, ul {
  list-style: none;
  list-style-type: none;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/bebasneue_regular-webfont.ttf") format("truetype"), url("../fonts/bebasneue_regular-webfont.woff") format("woff");
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
/*
@font-face {
	font-family: 'Bebas';
	src: url(../fonts/bebasneue_light-webfont.ttf) format("truetype"), url(../fonts/bebasneue_light-webfont.woff) format("woff");
	font-style: normal;
	font-weight: lighter;
	text-rendering: optimizeLegibility;
}*/
html {
  overflow-x: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "M+ Type-1 (general-j) Regular", "Roboto", "Helvetica Neue", "Helvetica", "Arial", "SF Pro JP", "SF Pro Display", "SF Pro Icons", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  overflow-x: hidden;
  color: #555;
  padding-top: 90px;
  font-size: clamp(0.75rem, 0.546rem + 0.65vw, 1rem);
}
body a {
  color: #88CEFA;
  text-decoration: none;
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
@keyframes rotation {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
/*---------------------------------------------------------------------------------------
  contents
----------------------------------------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 6%;
  padding-right: 6%;
}

.pc_hid {
  display: none;
}

.image-page-items {
  width: 100%;
}
.image-page-items .image-page-item.bottom,
.image-page-items .image-page-info.bottom {
  margin-bottom: 4vw;
}
.image-page-items .image-page-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.image-page-items .image-page-item .image .space {
  padding-bottom: 2vw;
  display: block;
}
.image-page-items .image-page-item:nth-child(odd) .image {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  padding-right: 0;
  padding-left: -webkit-calc($margin_base / 2);
  padding-left: 2vw;
}
.image-page-items .image-page-item:last-child {
  margin-bottom: 0;
}
.image-page-items .image-page-info .info {
  width: 100%;
}
.image-page-items .image {
  width: 50%;
  padding-right: -webkit-calc($margin_base / 2);
  padding-right: 2vw;
}
.image-page-items .info {
  width: 50%;
}
.image-page-items .info p {
  margin-bottom: 4vw;
}
.image-page-items .info p:last-child {
  margin-bottom: 0;
}
.image-page-items .info ul li {
  font-size: clamp(0.75rem, 0.648rem + 0.33vw, 0.875rem);
  padding: 0 0 0 0.5rem;
  margin-bottom: 0.5vw;
  line-height: inherit;
  counter-increment: mission;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
}
.image-page-items .info ul li:before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 3px;
  height: 3px;
  background-color: #88CEFA;
  border-radius: 50%;
}

.pc-only {
  display: block;
  margin-bottom: 4vw;
}

.sp-only {
  display: none;
  margin-bottom: 8vw;
}

/*---------------------------------------------------------------------------------------
  TOP 2023
----------------------------------------------------------------------------------------*/
.no-content-text {
  text-align: center;
  width: 100%;
  padding: 4vw;
}

.popup {
  display: none;
  height: 100vh;
  width: 100%;
  background: black;
  opacity: 0.7;
  position: fixed;
  top: 0;
  left: 0;
}

.content {
  background: #fff;
  padding: 30px;
  width: 50%;
}

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

@media (max-width: 768px) {
  body {
    padding-top: 50px;
  }
  .pc_hid {
    display: block;
  }
  .image-page-items {
    width: 100%;
    padding: 0 0;
  }
  .image-page-items .image-page-item .image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    padding-right: 0;
  }
  .image-page-items .image-page-item .info {
    width: 100%;
  }
  .image-page-items .image-page-item .info h2 {
    border: none;
    padding: 0;
    margin: 0 0 8px;
    font-weight: bold;
  }
  .image-page-items .image-page-item .info h2:after {
    display: none;
  }
  .image-page-items .image-page-item .info h3 {
    margin: 0 0 16px;
    padding: 8px 0 16px;
    line-height: 1.4;
  }
  .image-page-items .image-page-item:nth-child(odd) .image {
    padding-right: 0;
    padding-left: 0;
  }
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block;
  }
}
@media (max-width: 500px) {
  .container {
    padding-left: 3%;
    padding-right: 3%;
  }
}
@media (min-width: 769px) {
  .breadcrumb {
    border-bottom: 1px solid #e5e5e8;
    border-top: 1px solid #e5e5e8;
    padding: 8px;
  }
  .breadcrumb ol {
    max-width: 1112px;
    min-width: 960px;
    padding: 0 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
  }
  .breadcrumb ol li {
    font-size: 12px;
    color: #404052;
  }
  .breadcrumb ol li:last-child:after {
    display: none;
  }
  .breadcrumb ol li:after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 1px solid #bfbfc5;
    border-right: 1px solid #bfbfc5;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    display: inline-block;
    margin: 0 4px;
  }
  .breadcrumb ol li a {
    text-decoration: none;
    display: iline-block;
  }
}
@media (max-width: 768px) {
  .breadcrumb {
    border-bottom: 1px solid #e5e5e8;
    border-top: 1px solid #e5e5e8;
    padding: 8px;
  }
  .breadcrumb ol {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
  }
  .breadcrumb ol li {
    font-size: 10px;
    color: #404052;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .breadcrumb ol li:last-child:after {
    display: none;
  }
  .breadcrumb ol li:after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 1px solid #bfbfc5;
    border-right: 1px solid #bfbfc5;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    display: inline-block;
    margin: 0 4px;
  }
  .breadcrumb ol li a {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-decoration: none;
    display: iline-block;
  }
}
@media (min-width: 769px) {
  .main-footer {
    position: relative;
  }
  .l-footer-company-info {
    background: #fff;
    padding: 24px;
  }
  .l-footer-company-info .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
  }
  .l-footer-company-info .footer-company-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .l-footer-company-info .footer-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 200px;
    padding-bottom: 8px;
  }
  .l-footer-company-info .footer-logo .footer-company-name {
    font-weight: bold;
    margin-top: 8px;
    font-size: 12px;
    width: 100%;
  }
  .l-footer-company-info .c-footer-access-info {
    padding-top: 8px;
    padding-left: 32px;
  }
  .l-footer-company-info .c-footer-access-info .adress {
    font-size: 12px;
    line-height: 1.25;
  }
  .l-footer-company-info .c-footer-access-info .contact {
    padding-top: 4px;
    font-size: 12px;
  }
  .l-footer-company-info .c-footer-access-info .contact span {
    margin-right: 12px;
  }
  .l-footer-company-info .c-footer-access-info .contact span svg {
    color: #404052;
    margin-right: 4px;
  }
  .l-footer-company-info .company-credential-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .l-footer-company-info .company-credential-logo .credential-logo-item {
    height: 80px;
    margin-left: 8px;
  }
  .l-footer-company-info .company-credential-logo .credential-logo-item img {
    width: 200px;
  }
  .l-footer-nav {
    background: #6395ec;
    padding: 40px 0;
  }
  .l-footer-nav .c-footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .l-footer-nav .c-footer-nav a {
    text-decoration: none;
    color: #fff;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .l-footer-nav .c-footer-nav a:hover {
    opacity: 0.6;
  }
  .l-footer-nav .c-footer-nav .footer-nav-block {
    width: 31%;
  }
  .l-footer-nav .c-footer-nav .footer-nav-item > a {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
  }
  .l-footer-nav .footer-nav-child-block {
    padding-left: 1rem;
    margin-bottom: 1rem;
  }
  .l-footer-nav .footer-nav-child-item {
    position: relative;
    padding: 6px 0;
    font-size: 13px;
  }
  .l-footer-nav .footer-nav-child-item:before {
    content: "";
    width: 6px;
    height: 6px;
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    display: block;
    position: absolute;
    left: -12px;
    top: 50%;
    margin-top: -5px;
  }
  .l-footer-nav .footer-nav-child-item a {
    font-weight: bold;
  }
  .l-footer-nav .footer-nav-child-item span {
    display: block;
    font-weight: normal;
    font-size: 10px;
    margin-bottom: 4px;
  }
  .footer-bottom {
    background: #FF8B85;
    padding: 24px;
    text-align: center;
    color: #fff;
    font-size: 10px;
  }
  .c-footer-pager {
    padding: 40px 0 64px;
    text-align: center;
  }
  .c-footer-pager .pagination {
    margin: 0 auto;
  }
  .c-footer-pager .pagination ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .c-footer-pager .pagination ul li {
    padding: 8px;
    margin: 0 4px;
    font-size: 20px;
    position: relative;
    font-family: "M+ Type-1 (general-j) Black", "Alegreya Sans SC", "Helvetice Neue", "Roboto", "Arial", sans-serif;
  }
  .c-footer-pager .pagination ul li:before {
    content: "";
    width: 16px;
    height: 3px;
    background: #88CEFA;
    position: absolute;
    left: calc(50% - 8px);
    top: -2px;
    opacity: 0;
  }
  .c-footer-pager .pagination ul li a {
    display: block;
    text-decoration: none;
    font-weight: bold;
  }
  .c-footer-pager .pagination ul li span {
    font-weight: bold;
  }
  .c-footer-pager .pagination ul li.active:before {
    opacity: 1;
  }
  .c-footer-pager .pagination ul li.prev a {
    color: transparent;
    position: relative;
    margin-top: -4px;
  }
  .c-footer-pager .pagination ul li.prev a:before {
    content: "";
    width: 8px;
    height: 8px;
    border-left: 2px solid #bfbfc5;
    border-top: 2px solid #bfbfc5;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    display: inline-block;
  }
  .c-footer-pager .pagination ul li.next a {
    color: transparent;
    position: relative;
    margin-top: -4px;
  }
  .c-footer-pager .pagination ul li.next a:before {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid #bfbfc5;
    border-top: 2px solid #bfbfc5;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .l-footer-company-info {
    background: #fff;
    padding: 24px 0 0;
  }
  .l-footer-company-info .footer-logo {
    padding-bottom: 12px;
  }
  .l-footer-company-info .footer-logo img {
    display: block;
    margin: 0 auto;
    height: 48px;
    width: auto;
  }
  .l-footer-company-info .footer-logo .footer-company-name {
    font-weight: bold;
    font-size: 12px;
    padding-top: 12px;
    text-align: center;
  }
  .l-footer-company-info .c-footer-access-info {
    padding: 12px 0 24px;
    border-top: 1px solid #e5e5e8;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    text-align: center;
  }
  .l-footer-company-info .c-footer-access-info .adress {
    font-size: 11px;
    line-height: 1.25;
  }
  .l-footer-company-info .c-footer-access-info .contact {
    padding-top: 4px;
    font-size: 11px;
  }
  .l-footer-company-info .c-footer-access-info .contact span {
    margin-right: 12px;
  }
  .l-footer-company-info .c-footer-access-info .contact span svg {
    color: #404052;
    margin-right: 4px;
  }
  .l-footer-company-info .company-credential-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 24px 16px;
    background: #f2f2f3;
    margin: 0 -16px;
    width: calc(100% + 32px);
  }
  .l-footer-company-info .company-credential-logo .credential-logo-item {
    height: 40px;
    margin: 0 4px;
  }
  .l-footer-company-info .company-credential-logo .credential-logo-item img {
    height: 100%;
    width: auto;
  }
  .l-footer-nav {
    background: #6395ec;
    padding: 8px 0 0;
  }
  .l-footer-nav .c-footer-nav a {
    text-decoration: none;
    color: #fff;
  }
  .l-footer-nav .footer-nav-block {
    width: 100%;
  }
  .l-footer-nav .footer-nav-item > a {
    display: block;
    font-size: 14px;
    font-weight: bold;
    padding: 16px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
  }
  .l-footer-nav .footer-nav-item > a:after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 16px;
    top: calc(50% - 3px);
    opacity: 0.5;
  }
  .l-footer-nav .footer-nav-child-block {
    display: none;
  }
  .footer-bottom {
    background: #000019;
    padding: 12px;
    text-align: center;
    color: #fff;
    font-size: 10px;
  }
  .c-footer-pager {
    padding: 40px 0 64px;
    text-align: center;
  }
  .c-footer-pager .pagination {
    margin: 0 auto;
  }
  .c-footer-pager .pagination ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .c-footer-pager .pagination ul li {
    padding: 8px;
    margin: 0 4px;
    font-size: 20px;
    position: relative;
    font-family: "M+ Type-1 (general-j) Black", "Alegreya Sans SC", "Helvetice Neue", "Roboto", "Arial", sans-serif;
  }
  .c-footer-pager .pagination ul li:before {
    content: "";
    width: 16px;
    height: 3px;
    background: #88CEFA;
    position: absolute;
    left: calc(50% - 8px);
    top: -2px;
    opacity: 0;
  }
  .c-footer-pager .pagination ul li a {
    display: block;
    text-decoration: none;
    font-weight: bold;
  }
  .c-footer-pager .pagination ul li span {
    font-weight: bold;
  }
  .c-footer-pager .pagination ul li.active:before {
    opacity: 1;
  }
  .c-footer-pager .pagination ul li.prev a {
    color: transparent;
    position: relative;
    margin-top: -4px;
  }
  .c-footer-pager .pagination ul li.prev a:before {
    content: "";
    width: 8px;
    height: 8px;
    border-left: 2px solid #bfbfc5;
    border-top: 2px solid #bfbfc5;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    display: inline-block;
  }
  .c-footer-pager .pagination ul li.next a {
    color: transparent;
    position: relative;
    margin-top: -4px;
  }
  .c-footer-pager .pagination ul li.next a:before {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid #bfbfc5;
    border-top: 2px solid #bfbfc5;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    display: inline-block;
  }
}
.main-header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-bottom: 3px;
}
.main-header-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 2% 5px;
  max-width: 1440px;
  margin: 0 auto;
  gap: 1vw;
}
.main-header-top__logo img {
  height: auto;
  width: auto;
  max-width: 180px;
  margin: 0 auto;
}
.main-header-top__tagline {
  font-weight: normal;
  font-size: clamp(0.625rem, 0.346rem + 0.58vw, 0.75rem);
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.main-header-top__cta {
  margin-left: auto;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.main-header-top__cta .recept-time {
  font-size: 10px;
  margin-bottom: 1px;
  color: #191930;
  padding: 0 2px;
}
.main-header-top__cta .c-header-tel {
  font-size: clamp(0.75rem, 0.623rem + 0.54vw, 1rem);
  font-weight: bold;
  font-family: "Alegreya Sans SC";
  letter-spacing: 0.5px;
  line-height: 1;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.main-header-top__cta .c-header-tel::before {
  content: "\f095";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 1.15em;
  margin-right: 2px;
}
.main-header-top__cta .c-header-tel a {
  color: #555;
}
.main-header-top__cta .c-header-tel span {
  font-size: clamp(0.625rem, 0.346rem + 0.58vw, 0.75rem);
}
.main-header-top__user-login {
  min-width: 110px;
}
.main-header-top__user-login .for-user {
  font-size: 12px;
  margin-bottom: 8px;
}
.main-header-top__contact {
  padding: 0 1.25vw 0 0;
}
.main-header-top__contact a {
  color: #555;
}
.main-header-top__contact a:hover {
  opacity: 0.5;
}
.main-header-bottom {
  max-width: 1440px;
  margin: 0 auto;
}
.main-header-bottom__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  gap: 1.5vw;
}
.main-header-bottom__nav-list .header-nav-item {
  text-align: center;
}
.main-header-bottom__nav-list .header-nav-item:hover .l-header-mega-menu {
  visibility: visible;
  overflow: visible;
  opacity: 1;
}
.main-header-bottom__nav-list .header-nav-item > a {
  display: block;
  padding: 0 0 2px;
  width: 100%;
  color: #555;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  display: inline-block;
  /*&:after {
  	content: "";
  	display: block;
  	height: 28px;
  	border-right: 1px solid #fff;
  	position: absolute;
  	right: 0;
  	top: 50%;
  	margin-top: -14px;
  }*/
}
.main-header-bottom__nav-list .header-nav-item > a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  width: 0;
  height: 2px;
  background-color: #88CEFA;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.main-header-bottom__nav-list .header-nav-item > a:hover::after {
  width: 100%;
}
.main-header-bottom__nav-list .header-nav-item > a svg {
  margin-right: 8px;
}
.main-header-bottom__nav-list .header-nav-item > a span {
  display: block;
  margin: 0 auto;
  font-weight: bold;
}
.main-header-bottom__nav-list .header-nav-item > a .nav-item-title {
  font-size: clamp(0.75rem, 0.471rem + 0.58vw, 0.875rem);
  /*&::before{
  	content: '\f015';
  	font-family:'FontAwesome';
  	font-weight: 400;
  }*/
}
.main-header-bottom__nav-list .header-nav-item > a .nav-item-title-deco {
  font-size: 1vw;
  padding-top: 4px;
  color: #fff;
  letter-spacing: 4px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transform-origin: center center;
  transform-origin: center center;
  letter-spacing: 1px;
}
.main-header-bottom__nav-list .header-nav-item.sp {
  display: none;
}

.menu-toggle {
  display: none;
}

.tooltip1,
.tooltip2,
.tooltip3 {
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.tooltip1 p,
.tooltip2 p,
.tooltip3 p {
  margin: 0;
  padding: 0;
}
.tooltip1:hover .description1,
.tooltip2:hover .description1,
.tooltip3:hover .description1 {
  display: inline-block;
  top: 30px;
  left: -25px;
}
.tooltip1:hover .description2,
.tooltip2:hover .description2,
.tooltip3:hover .description2 {
  display: inline-block;
  top: 30px;
  left: -34px;
}
.tooltip1:hover .description3,
.tooltip2:hover .description3,
.tooltip3:hover .description3 {
  display: inline-block;
  top: 38px;
  left: 0px;
}
.tooltip1.shadow,
.tooltip2.shadow,
.tooltip3.shadow {
  /* preview */
  /* border-radius */
  /* box-shadow */
  -webkit-box-shadow: 0px 0px 4px 1px rgba(136, 206, 250, 0.6);
          box-shadow: 0px 0px 4px 1px rgba(136, 206, 250, 0.6);
}
.tooltip1 .description1,
.tooltip2 .description1,
.tooltip3 .description1 {
  display: none;
  position: absolute;
  padding: 6px 8px;
  font-size: 12px;
  color: #fff;
  border-radius: 5px;
  background: #88cefa;
  width: auto;
  white-space: nowrap;
}
.tooltip1 .description1:before,
.tooltip2 .description1:before,
.tooltip3 .description1:before {
  content: "";
  position: absolute;
  top: -47%;
  right: calc(50% - 10px);
  border: 10px solid transparent;
  border-top: 10px solid #88cefa;
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}
.tooltip1 .description2,
.tooltip2 .description2,
.tooltip3 .description2 {
  display: none;
  position: absolute;
  padding: 6px 8px;
  font-size: 12px;
  color: #fff;
  border-radius: 5px;
  background: #88cefa;
  width: auto;
  white-space: nowrap;
}
.tooltip1 .description2:before,
.tooltip2 .description2:before,
.tooltip3 .description2:before {
  content: "";
  position: absolute;
  top: -47%;
  right: calc(50% - 10px);
  border: 10px solid transparent;
  border-top: 10px solid #88cefa;
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}
.tooltip1 .description3,
.tooltip2 .description3,
.tooltip3 .description3 {
  display: none;
  position: absolute;
  padding: 6px 8px;
  font-size: 12px;
  color: #fff;
  border-radius: 5px;
  background: #88cefa;
  width: auto;
  white-space: nowrap;
}
.tooltip1 .description3:before,
.tooltip2 .description3:before,
.tooltip3 .description3:before {
  content: "";
  position: absolute;
  top: -47%;
  right: calc(50% - 10px);
  border: 10px solid transparent;
  border-top: 10px solid #88cefa;
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}

@media (max-width: 1440px) {
  .main-header-top {
    padding-left: 2%;
    padding-right: 2%;
  }
}
@media (max-width: 768px) {
  .main-header {
    z-index: 1000;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    /* ヘッダーのメニュー部分 */
  }
  .main-header-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 12px;
  }
  .main-header-top__logo img {
    height: auto;
    width: auto;
    max-width: 130px;
  }
  .main-header-top__tagline, .main-header-top__user-login, .main-header-top__contact {
    display: none;
  }
  .main-header-top__cta {
    margin-right: 50px;
  }
  .main-header-bottom {
    padding: 0;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow-y: scroll;
    position: fixed;
    max-height: calc(100vh - 70px);
    width: 100%;
    left: 0;
    top: 54px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    padding-bottom: 35;
  }
  .main-header-bottom.header-open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    padding-bottom: 34px;
  }
  .main-header-bottom__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  .main-header-bottom__nav-list .header-nav-item {
    width: 100%;
    border-bottom: 1px solid #e5e5e8;
    padding: 0;
    text-align: left;
  }
  .main-header-bottom__nav-list .header-nav-item:last-child > a:after {
    display: none;
  }
  .main-header-bottom__nav-list .header-nav-item > a {
    padding: 4vw 2vw;
    color: #fff;
    background: #88CEFA;
  }
  .main-header-bottom__nav-list .header-nav-item > a:before {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 16px;
    top: calc(50% - 3px);
  }
  .main-header-bottom__nav-list .header-nav-item > a span {
    display: block;
    margin: 0 auto;
    font-weight: bold;
  }
  .main-header-bottom__nav-list .header-nav-item > a .nav-item-title i {
    margin-right: 8px;
  }
  .main-header-bottom__nav-list .header-nav-item > a .nav-item-title-deco {
    display: none;
  }
  .main-header-bottom__nav-list .header-nav-item.sp {
    display: block;
  }
  .menu-toggle {
    display: block;
    position: absolute;
    right: 10px;
    top: 4px;
    text-align: center;
    display: block;
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    text-align: center;
    margin: auto;
    width: 42px;
    height: 42px;
  }
  .menu-toggle .icon {
    margin: 12px auto 6px;
    width: 24px;
    height: 4px;
    display: block;
    background: #88CEFA;
    position: relative;
  }
  .menu-toggle .icon:before, .menu-toggle .icon:after {
    content: "";
    width: 24px;
    height: 4px;
    background: #88CEFA;
    position: absolute;
    left: 0;
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  .menu-toggle .icon:before {
    top: -8px;
  }
  .menu-toggle .icon:after {
    bottom: -8px;
  }
  .menu-toggle .label {
    font-size: 10px;
    font-weight: bold;
    color: #88CEFA;
    letter-spacing: 2px;
    padding-left: 1px;
  }
}
.l-header-mega-menu {
  display: block;
  visibility: hidden;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  right: 0;
  left: 0;
  top: 100%;
  margin: auto;
  width: 100%;
  padding-left: 6%;
  padding-right: 6%;
}
.l-header-mega-menu .header-mega-menu {
  text-align: left;
  padding: 2vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2vw 0.5vw;
  font-size: clamp(0.75rem, 0.528rem + 0.46vw, 0.875rem);
  background: #fff;
  border-bottom-left-radius: -webkit-calc($margin_base / 2);
  border-bottom-left-radius: 2vw;
  border-bottom-right-radius: -webkit-calc($margin_base / 2);
  border-bottom-right-radius: 2vw;
  border-right: 1px solid #F5F5F5;
  border-bottom: 1px solid #F5F5F5;
  border-left: 1px solid #F5F5F5;
  -webkit-box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.25);
}
.l-header-mega-menu .header-mega-menu .header-mega-menu-item {
  width: calc(25% - 0.5vw);
}
.l-header-mega-menu .header-mega-menu .header-mega-menu-item a {
  padding: 0 0;
  text-decoration: none;
  color: rgba(85, 85, 85, 0.8);
}
.l-header-mega-menu .header-mega-menu .header-mega-menu-item a:hover {
  color: rgba(85, 85, 85, 0.6);
}
.l-header-mega-menu .header-mega-menu .mega-menu-item-lead {
  font-size: 10px;
  margin-bottom: 4px;
  display: block;
}

@media (min-width: 769px) {
  .container {
    width: 100%;
    max-width: 1100px;
    min-width: 960px;
    margin: 0 auto;
    padding: 0 16px;
  }
  .section-header {
    text-align: center;
  }
  .section-header .section-title {
    padding-bottom: 32px;
    position: relative;
  }
  .section-header .section-title:before {
    content: "";
    width: 1px;
    height: 96px;
    background: #88CEFA;
    position: absolute;
    left: 50%;
    top: -144px;
    margin-left: -1px;
  }
  .section-header .section-title .ornament {
    font-size: 48px;
    font-weight: bold;
    color: #88CEFA;
    font-family: "M+ Type-1 (general-j) Black", "Alegreya Sans SC", "Helvetice Neue", "Roboto", "Arial", sans-serif;
    margin: 0 auto 16px;
    display: block;
    letter-spacing: 3px;
  }
  .section-header .section-title .title-main {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #333;
    display: block;
    margin: 0 auto;
  }
  .section-header .solution-top-img {
    margin-bottom: 24px;
  }
  .section-header p {
    text-align: left;
    line-height: 1.8;
    margin-bottom: 16px;
  }
  .section-header .section-copy {
    font-weight: bold;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
  }
  .l-top-products-section {
    background: #fff;
    position: relative;
    padding: 120px 0 160px;
  }
  .l-products-item {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    z-index: 100;
  }
  .l-products-item .c-products-item {
    background-color: #88CEFA;
    width: calc(19% - 8px);
    border-radius: 20px;
    margin: 0 auto 40px;
    position: relative;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .l-products-item .c-products-item:hover {
    -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }
  .l-products-item .c-products-item:hover:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  .l-products-item .c-products-item .c-producst-image {
    width: 100%;
    height: 140px;
    border-radius: 20px 20px 0 0;
    padding: 24px 12px;
    background: #fff;
    margin: 0 auto;
    text-align: center;
    position: relative;
  }
  .l-products-item .c-products-item .c-producst-image img {
    width: auto;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .l-products-item .c-products-item a {
    text-decoration: none;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .l-products-item .products-item-content {
    padding: 24px;
    width: 100%;
    position: relative;
  }
  .l-products-item .products-item-title {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 12px;
    padding-bottom: 20px;
    margin-bottom: 16px;
    position: relative;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    height: 4rem;
    overflow: hidden;
    border-bottom: 1px solid #eee;
  }
  .l-products-item .products-item-title .products-item-deco {
    display: block;
    margin: 0 auto;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0px;
    padding-top: 8px;
    font-weight: bold;
    font-family: "M+ Type-1 (general-j) Black", "Alegreya Sans SC", "Helvetice Neue", "Roboto", "Arial", sans-serif;
  }
  .l-products-item .products-item-title .products-item-deco {
    display: block;
    margin: 0 auto;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0px;
    padding-top: 8px;
    font-weight: bold;
    font-family: "M+ Type-1 (general-j) Black", "Alegreya Sans SC", "Helvetice Neue", "Roboto", "Arial", sans-serif;
  }
  .l-products-item .products-item-text {
    position: relative;
    padding: 8px 0;
    font-size: 11px;
    line-height: 1.4;
    overflow: hidden;
    height: 4.4rem;
    font-weight: normal;
  }
  .l-top-service-section {
    background: #fff;
    position: relative;
    padding: 120px 0 160px;
  }
  .l-top-service-section:before {
    content: "";
    display: block;
    width: 100%;
    height: 400px;
    background: #f2f2f3;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .l-service-item {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    z-index: 100;
  }
  .l-service-item .c-service-item {
    counter-increment: top-service;
    background-color: #BCD0F7;
    min-height: 400px;
    width: calc(33% - 8px);
    margin: 0 auto 24px;
    position: relative;
    border-radius: 20px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .l-service-item .c-service-item:hover {
    -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }
  .l-service-item .c-service-item:hover:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  .l-service-item .c-service-item:nth-child(4) {
    margin-right: 8px;
  }
  .l-service-item .c-service-item:nth-child(5) {
    margin-left: 8px;
  }
  .l-service-item .c-service-item .service-item-image {
    width: 100%;
    height: 240px;
    border-radius: 10px 10px 0 0;
    background-position: center center;
    margin-top: -8px;
    background: #fff;
    text-align: center;
  }
  .l-service-item .c-service-item .service-item-image img {
    width: auto;
  }
  .l-service-item .c-service-item a {
    text-decoration: none;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .l-service-item .service-item-content {
    min-height: 200px;
    padding: 1vw 1.5vw;
    width: 100%;
    position: relative;
  }
  .l-service-item .service-item-content:before {
    font-size: 96px;
    font-family: "M+ Type-1 (general-j) Black", "Alegreya Sans SC", "Helvetice Neue", "Roboto", "Arial", sans-serif;
    letter-spacing: -2px;
    position: absolute;
    right: 24px;
    top: -62px;
    font-weight: normal;
    color: #88CEFA;
  }
  .l-service-item .service-item-title {
    font-size: 20px;
    margin-bottom: 12px;
    padding-bottom: 20px;
    position: relative;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    font-weight: bold;
  }
  .l-service-item .service-item-title :after {
    content: "";
    width: 64px;
    height: 4px;
    background: #fff;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .l-service-item .service-item-title .service-item-deco {
    display: block;
    margin: 0 auto;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding-top: 8px;
    font-weight: bold;
    font-family: "M+ Type-1 (general-j) Black", "Alegreya Sans SC", "Helvetice Neue", "Roboto", "Arial", sans-serif;
  }
  .l-service-item .service-item-text {
    position: relative;
    padding: 8px 0;
    font-size: 12px;
    height: 78px;
    line-height: 1.6;
    font-weight: bold;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  }
  .l-top-mission-section {
    background-color: #fff;
    position: relative;
    color: #88CEFA;
    padding: 88px 0 68px;
  }
  .l-top-mission-section .mission-bg {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/bg-wave.png"), url("../img/bg.png");
    background-repeat: repeat-x, repeat;
    background-size: 100% auto, auto;
    background-position: center center, center center;
  }
  .l-top-mission-section .l-mission-content {
    position: relative;
  }
  .l-top-mission-section .l-mission-content .section-title .ornament {
    color: #88CEFA;
  }
  .l-top-mission-section .l-mission-content .title-main {
    color: #88CEFA;
  }
  .l-top-mission-section .l-mission-content .mission-content-header {
    padding-bottom: 60px;
  }
  .l-top-mission-section .l-mission-content .chara-image {
    width: 200px;
    margin: 0 auto 24px;
    position: absolute;
    left: 130px;
    top: -220px;
  }
  .l-top-mission-section .l-mission-content .c-mission-content-text {
    background: rgba(255, 255, 255, 0.95);
    -webkit-box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    max-width: 1100px;
    width: 100%;
    padding: 56px;
    margin: 0 auto 80px;
    z-index: 100;
    position: relative;
  }
  .l-top-mission-section .l-mission-content .c-mission-content-text p {
    line-height: 2;
    text-align: left;
    font-size: 14px;
    margin-bottom: 16px;
  }
  .l-top-mission-section .l-mission-content .c-mission-content-text .mission-center {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    font-family: "M+ Type-1 (general-j) Black";
    margin: 8px 0 0px;
  }
  .l-top-mission-section .l-mission-content .c-mission-content-text ol {
    padding: 16px 0 32px;
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .l-top-mission-section .l-mission-content .c-mission-content-text ol li {
    font-size: 16px;
    width: 31%;
    margin: 0 auto 16px;
    padding: 16px 16px;
    line-height: 1.6;
    font-weight: bold;
    text-align: center;
    counter-increment: mission;
    position: relative;
    border-bottom: 1px solid rgba(253, 123, 127, 0.2);
  }
  .l-top-mission-section .l-mission-content .c-mission-content-text ol li i {
    font-size: 40px;
    margin-right: 8px;
  }
  .l-top-mission-section .l-mission-content .c-mission-content-text ol li:before {
    content: "0" counter(mission) "";
    font-size: 32px;
    font-weight: normal;
    display: block;
  }
  .l-top-mission-section .l-mission-content .c-mission-content-text .c-to-company-link {
    padding: 32px 8px 0;
    text-align: center;
  }
  .l-top-mission-section .l-mission-content .c-mission-content-text .c-to-company-link .to-company-link {
    display: inline-block;
    border: 2px solid #88CEFA;
    padding: 18px 24px 18px 16px;
    min-width: 240px;
    color: #88CEFA;
    text-decoration: none;
    font-weight: bold;
    position: relative;
  }
  .l-top-mission-section .l-mission-content .c-mission-content-text .c-to-company-link .to-company-link:hover {
    color: #fff;
  }
  .l-top-mission-section .l-mission-content .c-mission-content-text .c-to-company-link .to-company-link:hover:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  .l-top-mission-section .l-mission-content .c-mission-content-text .c-to-company-link .to-company-link:hover img {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  .l-top-mission-section .l-mission-content .c-mission-content-text .c-to-company-link .to-company-link img {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 16px;
    top: 30%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .l-top-mission-section .l-mission-content .c-mission-content-text .c-to-company-link:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #fc3036;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    z-index: -1;
  }
  .l-top-mission-section .about-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .l-top-mission-section .about-items .about-item {
    width: 50%;
    position: relative;
  }
  .l-top-mission-section .about-items .about-item .title {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 32px 16px 32px;
    font-weight: bold;
    text-align: right;
    color: #fff;
    font-size: 22px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), to(transparent));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    width: 100%;
    height: 80px;
  }
  .l-top-news-section {
    position: relative;
    background: #fff;
    padding: 180px 0 88px;
    overflow: hidden;
  }
  .l-top-news-section:before {
    content: "";
    display: block;
    width: 80vw;
    height: 80vw;
    border-radius: 100%;
    background: #88CEFA;
    position: absolute;
    right: -40vw;
    top: -40vw;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 0.2;
  }
  .l-top-news-section:after {
    content: "";
    display: block;
    width: 80vw;
    height: 80vw;
    border-radius: 100%;
    background: #FF8B85;
    position: absolute;
    right: -40vw;
    bottom: -40vw;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 0.2;
  }
  .news-section-content {
    width: 100%;
    position: relative;
    z-index: 100;
  }
  .c-to-news-link {
    padding: 32px;
    text-align: center;
    position: relative;
    z-index: 100;
  }
  .c-to-news-link .to-news-link {
    display: block;
    max-width: 240px;
    margin: 8px auto 16px;
    border-radius: 60px;
    background: #88CEFA;
    color: #fff;
    padding: 20px 24px 20px 16px;
    text-decoration: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    font-weight: bold;
    position: relative;
  }
  .c-to-news-link .to-news-link i {
    margin-left: 6px;
  }
  .c-to-news-link .to-news-link:hover {
    opacity: 0.8;
  }
  .c-to-news-link .to-news-link:hover img {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }
  .c-to-news-link .to-news-link img {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 16px;
    top: 30%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .default-page h1 {
    margin: 64px 0 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #e5e5e8;
    font-size: 30px;
    color: #000019;
    line-height: 1.25;
    position: relative;
  }
  .default-page h1:after {
    content: "";
    width: 200px;
    height: 6px;
    background: #88CEFA;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .default-page h2 {
    margin: 40px 0 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e5e8;
    font-size: 24px;
    color: #000019;
    line-height: 1.25;
    position: relative;
  }
  .default-page h2:after {
    content: "";
    width: 56px;
    height: 4px;
    background: #88CEFA;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .default-page h3 {
    font-size: 24px;
    color: #000019;
    padding: 20px 0;
    position: relative;
    margin-bottom: 40px;
  }
  .default-page h3:after {
    content: "";
    width: 80px;
    height: 4px;
    background: #88CEFA;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .default-page h4 {
    font-size: 20px;
    color: #000019;
    padding: 4px 0 4px 24px;
    margin: 16px 0;
    position: relative;
    font-weight: bold;
  }
  .default-page h4:before {
    content: "";
    width: 12px;
    height: 2px;
    background: #88CEFA;
    position: absolute;
    left: 0;
    top: calc(50% - 1px);
  }
  .default-page p {
    font-size: 15px;
    line-height: 1.75;
    color: #404052;
    margin-bottom: 4rem;
  }
  .default-page ul {
    list-style: disc;
    padding-left: 2rem;
    margin: 0 0 2rem;
    font-size: 15px;
    line-height: 1.75;
  }
  .default-page ul li {
    padding: 0.25rem 0;
  }
  .default-page ul ul {
    list-style: circle;
  }
  .default-page ol {
    padding: 8px 0;
    margin: 0 0 2rem;
  }
  .default-page ol li {
    font-size: 14px;
    padding: 8px 32px 8px 16px;
    line-height: 1.5;
    counter-increment: mission;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .default-page ol li:before {
    content: "0" counter(mission) ".";
    font-size: 24px;
    line-height: 1;
    color: #88CEFA;
    font-family: "M+ Type-1 (general-j) Black", "Alegreya Sans SC", "Helvetice Neue", "Roboto", "Arial", sans-serif;
    font-weight: normal;
    margin-right: 12px;
  }
  .default-page .image-page-items {
    width: 100%;
  }
  .default-page .image-page-items .image-page-item {
    margin-bottom: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .default-page .image-page-items .image-page-item .image {
    width: 50%;
    padding-right: 24px;
  }
  .default-page .image-page-items .image-page-item .info {
    width: 50%;
  }
  .default-page .image-page-items .image-page-item .info h2 {
    border: none;
    padding: 0;
    margin: 0 0 8px;
    font-weight: bold;
  }
  .default-page .image-page-items .image-page-item .info h2:after {
    display: none;
  }
  .default-page .image-page-items .image-page-item .info h3 {
    margin: 0 0 16px;
    padding: 8px 0 16px;
    line-height: 1.4;
  }
  .default-page .image-page-items .image-page-item:nth-child(odd) .image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-right: 0;
    padding-left: 24px;
  }
  .default-page .qa-list {
    margin-bottom: 32px;
    line-height: 1.6;
  }
  .default-page .qa-list dt {
    margin-bottom: 8px;
    padding-right: 32px;
    font-weight: bold;
    font-size: 16px;
    position: relative;
  }
  .default-page .qa-list dt:before {
    content: "Q.";
    margin-right: 8px;
    font-size: 20px;
    color: #88CEFA;
  }
  .default-page .qa-list dt:after {
    content: "+ 髢九￥";
    color: #88CEFA;
    position: absolute;
    right: 8px;
    top: 0;
    font-size: 16px;
  }
  .default-page .qa-list dt:hover {
    cursor: pointer;
  }
  .default-page .qa-list dd {
    display: none;
  }
  .default-page .qa-list dd:before {
    content: "A.";
    margin-right: 8px;
    font-size: 20px;
    color: #88CEFA;
  }
  .default-page .qa-list.active {
    display: block;
  }
  .default-page .qa-list.active dt:after {
    content: "- 閉じる";
    color: #88CEFA;
    position: absolute;
    right: 8px;
    top: -2px;
  }
  .c-post-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -16px;
    position: relative;
  }
  .c-post-list .post-item {
    width: calc(33.3333333% - 32px);
    margin: 0 16px 32px;
    border-radius: 10px;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    background: #fff;
    overflow: hidden;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .c-post-list .post-item:hover {
    -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.075);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.075);
  }
  .c-post-list .post-item:hover .post-thumb {
    opacity: 0.75;
  }
  .c-post-list .post-item:hover .post-item-title {
    color: #88CEFA;
  }
  .c-post-list .post-item a {
    text-decoration: none;
    color: #000019;
  }
  .c-post-list .post-item .post-thumb {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 160px;
    position: relative;
    overflow: hidden;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-bottom: 1px solid #f2f2f3;
  }
  .c-post-list .post-item .post-thumb img {
    width: 180px;
    height: auto;
    margin: 0 auto;
  }
  .c-post-list .post-item .post-item-text {
    padding: 24px;
  }
  .c-post-list .post-item .post-item-title {
    padding-bottom: 12px;
    line-height: 1.25;
    position: relative;
    font-weight: bold;
    color: #000019;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .c-post-list .post-item .post-item-meta {
    padding: 8px 0 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .c-post-list .post-item .post-item-meta .posted-date {
    font-size: 12px;
    color: #bfbfc5;
    margin-left: auto;
  }
  .c-post-list .post-item .post-item-meta .post-category {
    font-size: 12px;
    line-height: 1;
    padding: 2px 4px;
    border: 1px solid #80808c;
    border-radius: 2px;
    color: #80808c;
  }
  .sp-only {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .container {
    width: 100%;
    margin: 0 auto;
    padding: 0px;
  }
  .section-header {
    text-align: center;
  }
  .section-header .section-title {
    padding-bottom: 0px;
    position: relative;
    top: -48px;
  }
  .section-header .section-title:before {
    content: "";
    width: 0px;
    height: 96px;
    background: #88CEFA;
    position: absolute;
    left: 50%;
    top: -144px;
    margin-left: -1px;
  }
  .section-header .section-title .ornament {
    font-size: 32px;
    font-weight: bold;
    color: #88CEFA;
    font-family: "M+ Type-1 (general-j) Black", "Alegreya Sans SC", "Helvetice Neue", "Roboto", "Arial", sans-serif;
    margin: 0 auto 8px;
    display: block;
    letter-spacing: 1px;
  }
  .section-header .section-title .title-main {
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #333;
    display: block;
    margin: 0 auto;
  }
  .section-header .section-copy {
    font-weight: bold;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
  }
  .section-header .solution-top-img {
    margin-bottom: 24px;
  }
  .section-header p {
    text-align: left;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 16px;
  }
  .l-top-products-section {
    background: #fff;
    position: relative;
    padding: 60px 0 80px;
  }
  .l-products-item {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    z-index: 100;
  }
  .l-products-item .c-products-item {
    background-color: #88CEFA;
    width: 90%;
    border-radius: 20px;
    margin: 0 auto 40px;
    position: relative;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .l-products-item .c-products-item:hover {
    -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  }
  .l-products-item .c-products-item:hover:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  .l-products-item .c-products-item .c-producst-image {
    width: 100%;
    height: 140px;
    border-radius: 20px 20px 0 0;
    padding: 24px 12px;
    background: #fff;
    margin: 0 auto;
    text-align: center;
    position: relative;
  }
  .l-products-item .c-products-item .c-producst-image img {
    width: auto;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .l-products-item .c-products-item a {
    text-decoration: none;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .l-products-item .products-item-content {
    padding: 24px;
    width: 100%;
    position: relative;
  }
  .l-products-item .products-item-title {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 12px;
    padding-bottom: 20px;
    margin-bottom: 16px;
    position: relative;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    height: 4rem;
    overflow: hidden;
    border-bottom: 1px solid #eee;
  }
  .l-products-item .products-item-title .products-item-deco {
    display: block;
    margin: 0 auto;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0px;
    padding-top: 8px;
    font-weight: bold;
    font-family: "M+ Type-1 (general-j) Black", "Alegreya Sans SC", "Helvetice Neue", "Roboto", "Arial", sans-serif;
  }
  .l-products-item .products-item-text {
    position: relative;
    padding: 8px 0;
    font-size: 11px;
    line-height: 1.4;
    overflow: hidden;
    height: 4.4rem;
    font-weight: normal;
  }
  .l-top-service-section {
    background: #fff;
    position: relative;
    padding: 80px 0 120px;
  }
  .l-top-service-section:before {
    content: "";
    display: block;
    width: 100%;
    height: 400px;
    background: #f2f2f3;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .l-service-item {
    width: 100%;
    margin: 0 auto;
    padding: 24px 20px 0;
    position: relative;
    z-index: 100;
  }
  .l-service-item .c-service-item {
    counter-increment: top-service;
    background-color: #88CEFA;
    margin-bottom: 24px;
    border-bottom: 4px solid #bfbfc5;
    width: 100%;
    position: relative;
  }
  .l-service-item .c-service-item .service-item-image {
    width: 100%;
    height: 200px;
    background-size: cover;
  }
  .l-service-item .c-service-item a {
    text-decoration: none;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .l-service-item .service-item-content {
    padding: 32px 20px;
    width: 100%;
    position: relative;
  }
  .l-service-item .service-item-content:before {
    content: "0" counter(top-service);
    font-size: 64px;
    font-family: "M+ Type-1 (general-j) Black", "Alegreya Sans SC", "Helvetice Neue", "Roboto", "Arial", sans-serif;
    letter-spacing: -2px;
    position: absolute;
    right: 20px;
    top: -72px;
    font-weight: normal;
  }
  .l-service-item .service-item-title {
    font-size: 18px;
    margin-bottom: 12px;
    padding-bottom: 16px;
    position: relative;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
    font-weight: bold;
  }
  .l-service-item .service-item-title:after {
    content: "";
    width: 56px;
    height: 3px;
    background: #fff;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .l-service-item .service-item-title .service-item-deco {
    display: block;
    margin: 0 auto;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding: 6px 1px 0;
    font-family: "M+ Type-1 (general-j) Black", "Alegreya Sans SC", "Helvetice Neue", "Roboto", "Arial", sans-serif;
  }
  .l-service-item .service-item-text {
    position: relative;
    padding: 8px 0;
    font-size: 11px;
    line-height: 1.6;
    font-weight: bold;
    text-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  }
  .l-top-mission-section {
    background-color: #fff;
    position: relative;
    color: #fff;
    padding: 88px 0 0;
  }
  .l-top-mission-section .mission-bg {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .l-top-mission-section .l-mission-content {
    position: relative;
  }
  .l-top-mission-section .l-mission-content .mission-content-header {
    padding-bottom: 160px;
    background: url("../img/mission_bg.jpg") no-repeat center bottom;
    background-size: contain;
  }
  .l-top-mission-section .l-mission-content .chara-image {
    width: 160px;
    margin: 0 auto 24px;
    position: absolute;
    left: 100px;
    top: -180px;
  }
  .l-top-mission-section .l-mission-content .c-mission-content-text {
    background: #88CEFA;
    border-bottom: 4px solid #bfbfc5;
    width: 100%;
    padding: 32px 20px;
    margin: 0 auto;
    z-index: 100;
    position: relative;
  }
  .l-top-mission-section .l-mission-content .c-mission-content-text p {
    line-height: 1.75;
    font-size: 14px;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    padding: 0 4px;
  }
  .l-top-mission-section .l-mission-content .c-mission-content-text ol {
    margin: 32px auto;
    border: 1px solid rgba(255, 255, 255, 0.4);
  }
  .l-top-mission-section .l-mission-content .c-mission-content-text ol li {
    font-size: 14px;
    padding: 16px 20px 32px;
    line-height: 1.6;
    font-weight: bold;
    counter-increment: mission;
    position: relative;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .l-top-mission-section .l-mission-content .c-mission-content-text ol li:last-child {
    border-bottom: none;
  }
  .l-top-mission-section .l-mission-content .c-mission-content-text ol li:before {
    content: "0" counter(mission) ".";
    font-size: 32px;
    font-family: "M+ Type-1 (general-j) Black", "Alegreya Sans SC", "Helvetice Neue", "Roboto", "Arial", sans-serif;
    display: block;
    text-align: center;
    font-weight: normal;
    margin-bottom: 24px;
    padding-left: 8px;
  }
  .l-top-mission-section .l-mission-content .c-mission-content-text ol li:after {
    content: "";
    width: 32px;
    height: 4px;
    background: #fff;
    position: absolute;
    top: 68px;
    left: calc(50% - 16px);
  }
  .l-top-mission-section .l-mission-content .c-mission-content-text .c-to-company-link {
    padding: 32px 0 0;
    text-align: center;
  }
  .l-top-mission-section .l-mission-content .c-mission-content-text .c-to-company-link .to-company-link {
    display: inline-block;
    border: 2px solid #fff;
    padding: 18px 24px 18px 16px;
    width: 100%;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    position: relative;
  }
  .l-top-mission-section .l-mission-content .c-mission-content-text .c-to-company-link .to-company-link img {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 16px;
    top: 30%;
  }
  .l-top-mission-section .about-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 32px;
  }
  .l-top-mission-section .about-items .about-item {
    width: 100%;
    position: relative;
  }
  .l-top-mission-section .about-items .about-item .title {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 32px 16px 32px;
    font-weight: bold;
    text-align: right;
    color: #fff;
    font-size: 22px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), to(transparent));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    width: 100%;
    height: 80px;
  }
  .l-top-news-section {
    position: relative;
    background: #f2f2f3;
    padding: 144px 0 88px;
    overflow: hidden;
  }
  .l-top-news-section:before, .l-top-news-section:after {
    content: "";
    display: block;
    width: 80vw;
    height: 80vw;
    background: #e5e5e8;
    position: absolute;
    bottom: -40vw;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    opacity: 0.4;
  }
  .l-top-news-section:before {
    right: -40vw;
  }
  .l-top-news-section:after {
    left: -40vw;
  }
  .news-section-content {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 100;
  }
  .c-to-news-link {
    padding: 12px 12px;
    text-align: center;
    position: relative;
    z-index: 100;
  }
  .c-to-news-link .to-news-link {
    display: inline-block;
    width: 100%;
    background: #88CEFA;
    color: #fff;
    padding: 20px 24px 20px 16px;
    text-decoration: none;
    font-weight: bold;
    position: relative;
  }
  .c-to-news-link .to-news-link img {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 16px;
    top: 30%;
  }
  .default-page h2 {
    margin: 0 0 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e5e8;
    font-size: 20px;
    color: #000019;
    line-height: 1.25;
    position: relative;
  }
  .default-page h2:after {
    content: "";
    width: 80px;
    height: 1px;
    background: #88CEFA;
    position: absolute;
    left: 0;
    bottom: -1px;
  }
  .default-page h3 {
    font-size: 18px;
    color: #000019;
    padding: 16px 0;
    position: relative;
    margin-bottom: 32px;
  }
  .default-page h3:after {
    content: "";
    width: 80px;
    height: 4px;
    background: #88CEFA;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .default-page h4 {
    font-size: 16px;
    color: #000019;
    padding: 4px 0 4px 16px;
    margin: 12px 0;
    position: relative;
    font-weight: bold;
  }
  .default-page h4:before {
    content: "";
    width: 8px;
    height: 2px;
    background: #88CEFA;
    position: absolute;
    left: 0;
    top: calc(50% - 1px);
  }
  .default-page p {
    line-height: 1.75;
    margin-bottom: 2rem;
  }
  .default-page img {
    max-width: 100%;
    height: auto;
    width: auto;
    display: block;
    margin: 1.5rem auto;
  }
  .default-page ul {
    list-style: disc;
    padding-left: 2rem;
    font-size: 14px;
    line-height: 1.5;
  }
  .default-page ul li {
    padding: 0.25rem 0;
  }
  .default-page ul ul {
    list-style: circle;
  }
  .default-page ol {
    padding: 8px 0;
    margin: 0 0 2rem;
  }
  .default-page ol li {
    font-size: 14px;
    padding: 12px 0;
    line-height: 1.5;
    counter-increment: mission;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .default-page ol li:before {
    content: "0" counter(mission) ".";
    font-size: 24px;
    line-height: 1;
    color: #88CEFA;
    font-family: "M+ Type-1 (general-j) Black", "Alegreya Sans SC", "Helvetice Neue", "Roboto", "Arial", sans-serif;
    font-weight: normal;
    margin-right: 8px;
  }
  .default-page .image-page-items {
    width: 100%;
    padding: 0 0;
  }
  .default-page .image-page-items .image-page-item {
    margin-bottom: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .default-page .image-page-items .image-page-item .image {
    width: 100%;
    padding-right: 0;
  }
  .default-page .image-page-items .image-page-item .info {
    width: 100%;
  }
  .default-page .image-page-items .image-page-item .info h2 {
    border: none;
    padding: 0;
    margin: 0 0 8px;
    font-weight: bold;
  }
  .default-page .image-page-items .image-page-item .info h2:after {
    display: none;
  }
  .default-page .image-page-items .image-page-item .info h3 {
    margin: 0 0 16px;
    padding: 8px 0 16px;
    line-height: 1.4;
  }
  .default-page .image-page-items .image-page-item:nth-child(odd) .image {
    -webkit-box-ordinal-group: auto;
    -ms-flex-order: auto;
    order: auto;
    padding-right: 0;
    padding-left: 0;
  }
  .default-page .qa-list {
    margin-bottom: 32px;
    line-height: 1.6;
    padding: 0 16px;
  }
  .default-page .qa-list dt {
    margin-bottom: 8px;
    padding-right: 48px;
    font-weight: bold;
    font-size: 14px;
    position: relative;
  }
  .default-page .qa-list dt:before {
    content: "Q.";
    margin-right: 8px;
    font-size: 20px;
    color: #88CEFA;
  }
  .default-page .qa-list dt:after {
    color: #88CEFA;
    position: absolute;
    right: -12px;
    top: 8px;
    font-size: 13px;
  }
  .default-page .qa-list dt:hover {
    cursor: pointer;
  }
  .default-page .qa-list dd {
    display: none;
    font-size: 13px;
  }
  .default-page .qa-list dd:before {
    content: "A.";
    margin-right: 8px;
    font-size: 20px;
    color: #88CEFA;
  }
  .default-page .qa-list.active {
    display: block;
  }
  .default-page .qa-list.active dt:after {
    content: "- ・ｽﾂゑｿｽ・ｽ・ｽ";
    color: #88CEFA;
    position: absolute;
    right: -12px;
    top: 8px;
  }
  .c-post-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 16px;
    margin: 0 auto;
    position: relative;
  }
  .c-post-list .post-item {
    width: 100%;
    margin: 0 auto 32px;
    border-radius: 20px;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    background: #fff;
    overflow: hidden;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  .c-post-list .post-item:hover {
    -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.075);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.075);
  }
  .c-post-list .post-item:hover .post-thumb {
    opacity: 0.75;
  }
  .c-post-list .post-item:hover .post-item-title {
    color: #88CEFA;
  }
  .c-post-list .post-item a {
    text-decoration: none;
    color: #000019;
  }
  .c-post-list .post-item .post-thumb {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 160px;
    position: relative;
    overflow: hidden;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border-bottom: 1px solid #f2f2f3;
  }
  .c-post-list .post-item .post-thumb img {
    width: 180px;
    height: auto;
    margin: 0 auto;
  }
  .c-post-list .post-item .post-item-text {
    padding: 24px;
  }
  .c-post-list .post-item .post-item-title {
    padding-bottom: 12px;
    line-height: 1.25;
    position: relative;
    font-weight: bold;
    color: #000019;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .c-post-list .post-item .post-item-meta {
    padding: 8px 0 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .c-post-list .post-item .post-item-meta .posted-date {
    font-size: 12px;
    color: #bfbfc5;
    margin-left: auto;
  }
  .c-post-list .post-item .post-item-meta .post-category {
    font-size: 12px;
    line-height: 1;
    padding: 2px 4px;
    border: 1px solid #80808c;
    border-radius: 2px;
    color: #80808c;
  }
  .pc-only {
    display: none !important;
  }
}
.fixed-cta {
  display: none;
}

@media (max-width: 768px) {
  .l-header-mega-menu {
    display: block;
    background: rgba(136, 206, 250, 0.75);
    padding-left: 2rem;
    visibility: inherit;
    overflow: inherit;
    opacity: 1;
    position: relative;
    padding: inherit;
  }
  .l-header-mega-menu .header-mega-menu {
    text-align: left;
    padding: inherit;
    display: block;
    border-radius: 0;
    border: none;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .l-header-mega-menu .header-mega-menu .header-mega-menu-item {
    width: 100%;
    border-bottom: 1px solid #e5e5e8;
  }
  .l-header-mega-menu .header-mega-menu .header-mega-menu-item a {
    padding: 4vw 2vw 4vw 6vw;
    text-decoration: none;
    color: #fff;
  }
  .l-header-mega-menu .header-mega-menu .header-mega-menu-item a:hover {
    color: #fff;
  }
  .header-mega-menu .header-mega-menu-title {
    display: none;
  }
  .header-mega-menu .header-mega-menu-item {
    background: none;
  }
  .header-mega-menu .header-mega-menu-item:last-child {
    border-bottom: none;
  }
  .header-mega-menu .header-mega-menu-item:last-child.products-item:last-child {
    border-bottom: none;
  }
  .header-mega-menu .header-mega-menu-item a {
    display: block;
    padding: 8px 0;
    text-decoration: none;
    color: #fff;
    position: relative;
  }
  .header-mega-menu .header-mega-menu-item a:before {
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    position: absolute;
    left: 10px;
    top: 20px;
  }
  .header-mega-menu .header-mega-menu-item a:after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    right: 16px;
    top: calc(50% - 3px);
  }
  .header-mega-menu .mega-menu-item-lead {
    font-size: 10px;
    margin-bottom: 6px;
    display: block;
    color: #88CEFA;
  }
  .header-mega-menu .mega-menu-item-title {
    font-weight: bold;
    font-size: 14px;
    color: #fff;
  }
  .fixed-cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    top: auto;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 10000;
    width: 100%;
    gap: 2vw;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    padding: 1vw 3%;
  }
  .fixed-cta a {
    width: 50%;
  }
}
.card-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2vw 0;
}
.card-lists a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: calc(50% - 1vw);
  text-decoration: none;
  -webkit-transition: 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition: 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  padding: 1vw;
  border-radius: 20px;
  gap: 0 1vw;
  /*.card-image {
  	width: 20%;
  	text-align: center;
  	i {
  		//font-size: clamp(3.125rem, 2.62rem + 2.53vw, 4.375rem);
  		font-size: min(5vw,56px);
  		color: $color_main;
  	}
  }*/
}
.card-lists a .card-content2 .card-title {
  font-weight: bold;
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  margin-bottom: 8px;
}
.card-lists a .card-content2 .card-title i {
  font-size: min(2vw, 56px);
  color: #88CEFA;
  margin-right: 0.5rem;
}
.card-lists a .card-content2 .card-title span {
  font-size: 14px;
  margin-left: 8px;
}
.card-lists a .card-content2 .card-description {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(85, 85, 85, 0.7);
}
.card-lists a:hover {
  background: #88CEFA;
  color: #fff;
}
.card-lists a:hover .card-content2 .card-title i,
.card-lists a:hover .card-content2 .card-image i {
  color: #fff;
}
.card-lists a:hover .card-content2 .card-description {
  color: #fff;
}

@media (min-width: 769px) {
  .l-post-index {
    padding: 64px 0 0;
    background: #f2f2f3;
    margin-top: -32px;
    position: relative;
  }
  .l-post-index:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("../img/bg.png") repeat left top #f2f2f3;
    background-attachment: fixed;
  }
  .l-post-detail {
    background: #f2f2f3;
    padding-bottom: 80px;
    position: relative;
  }
  .l-post-detail:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("../img/bg.png") repeat left top #f2f2f3;
    background-attachment: fixed;
  }
  .l-post-detail .post-detail {
    -webkit-transform: translateY(-64px);
    transform: translateY(-64px);
    background: #fff;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 32px 40px 40px;
    position: relative;
  }
  .l-post-detail .post-detail .post-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 8px 8px 40px;
    border-bottom: 1px solid #e5e5e8;
  }
  .l-post-detail .post-detail .post-thumb {
    width: 400px;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .l-post-detail .post-detail .post-thumb img {
    max-width: 100%;
    width: auto;
    height: auto;
  }
  .l-post-detail .post-detail .post-header-text {
    padding-left: 32px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .l-post-detail .post-detail .post-title {
    font-size: 24px;
    line-height: 1.25;
    color: #000019;
    padding: 12px 0 20px;
    position: relative;
    font-weight: bold;
  }
  .l-post-detail .post-detail .post-title:after {
    content: "";
    width: 80px;
    height: 4px;
    background: #88CEFA;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .l-post-detail .post-detail .post-meta {
    padding-bottom: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .l-post-detail .post-detail .post-meta .posted-date {
    font-size: 14px;
    color: #191930;
    margin-right: 12px;
    opacity: 0.75;
  }
  .l-post-detail .post-detail .post-meta .post-category-tag {
    font-size: 11px;
    display: inline-block;
    padding: 4px 8px;
    border: 1px solid #191930;
    border-radius: 2px;
    line-height: 1;
    color: #191930;
  }
  .l-post-detail .post-detail-content {
    padding: 40px 40px;
  }
  .l-post-detail .post-detail-content h2 {
    margin: 40px 0 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e5e8;
    font-size: 24px;
    color: #000019;
    line-height: 1.25;
    position: relative;
  }
  .l-post-detail .post-detail-content h2:after {
    content: "";
    width: 56px;
    height: 4px;
    background: #88CEFA;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .l-post-detail .post-detail-content h3 {
    font-size: 20px;
    color: #000019;
    padding: 20px 0;
    position: relative;
    margin-bottom: 40px;
  }
  .l-post-detail .post-detail-content h3:after {
    content: "";
    width: 80px;
    height: 4px;
    background: #88CEFA;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .l-post-detail .post-detail-content h4 {
    font-size: 18px;
    color: #000019;
    padding: 4px 0 4px 24px;
    margin: 16px 0;
    position: relative;
    font-weight: bold;
  }
  .l-post-detail .post-detail-content h4:before {
    content: "";
    width: 12px;
    height: 2px;
    background: #88CEFA;
    position: absolute;
    left: 0;
    top: calc(50% - 1px);
  }
  .l-post-detail .post-detail-content p {
    font-size: 15px;
    line-height: 1.75;
    color: #404052;
    margin-bottom: 2rem;
  }
  .l-post-detail .post-detail-content img {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    margin: 1.5rem auto;
  }
  .l-post-detail .post-detail-content ul {
    padding: 8px 0;
    margin: 0 0 2rem;
  }
  .l-post-detail .post-detail-content ul li {
    font-size: 14px;
    padding: 8px 32px 8px 16px;
    line-height: 1.5;
    counter-increment: mission;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .l-post-detail .post-detail-content ul li:before {
    content: "";
    width: 6px;
    height: 1px;
    background: #88CEFA;
    display: block;
    position: absolute;
    left: 0;
    top: 0.75rem;
  }
  .l-post-detail .post-detail-content ol {
    padding: 8px 0;
    margin: 0 0 2rem;
  }
  .l-post-detail .post-detail-content ol li {
    font-size: 14px;
    padding: 8px 32px 8px 16px;
    line-height: 1.5;
    counter-increment: mission;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .l-post-detail .post-detail-content ol li:before {
    content: "0" counter(mission) ".";
    font-size: 24px;
    line-height: 1;
    color: #88CEFA;
    font-family: "M+ Type-1 (general-j) Black", "Alegreya Sans SC", "Helvetice Neue", "Roboto", "Arial", sans-serif;
    font-weight: normal;
    margin-right: 12px;
  }
  .l-post-detail .post-detail-content table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    margin-bottom: 32px;
  }
  .l-post-detail .post-detail-content table th,
  .l-post-detail .post-detail-content table td {
    border: 1px solid #ddd;
    padding: 1.2rem;
    line-height: 1.5;
  }
  .l-post-detail .post-detail-content table th {
    background: #f2f2f3;
    font-weight: bold;
    text-align: left;
  }
  .l-post-detail .post-detail-content .thumbnail-image img {
    width: auto;
    height: auto;
  }
  .l-post-detail .post-detail-content .about-point-title {
    position: relative;
    margin-top: 5rem;
    padding-left: 160px;
    border: none;
  }
  .l-post-detail .post-detail-content .about-point-title .about-point {
    position: absolute;
    width: 140px;
    left: 0;
    top: -32px;
  }
  .l-post-detail .post-detail-content .about-point-title .about-point img {
    margin: 0;
  }
  .l-post-detail .post-detail-content .about-point-title:after {
    display: none;
  }
  .l-post-detail .post-detail-content .wp-block-button {
    margin: -12px 0 40px;
  }
  .l-post-detail .post-detail-content .wp-block-button a {
    font-size: 14px;
    background: #88CEFA;
  }
  .l-post-detail .post-detail-content .price-table-01 th {
    width: 20%;
  }
  .l-post-detail .post-detail-content .price-table-01 td {
    width: 20%;
    font-size: 14px;
    text-align: center;
  }
  .l-post-detail .post-detail-content .price-table-01 td strong {
    font-size: 18px;
  }
  .l-post-detail .post-detail-content .price-table-01 .koumoku1 {
    font-weight: bold;
    background: #eee;
  }
  .l-post-detail .post-detail-content #ini_tbl1 th,
  .l-post-detail .post-detail-content #ini_tbl2 th,
  .l-post-detail .post-detail-content #ini_tbl3 th {
    width: 10%;
  }
  .l-post-detail .post-detail-content #ini_tbl1 td,
  .l-post-detail .post-detail-content #ini_tbl2 td,
  .l-post-detail .post-detail-content #ini_tbl3 td {
    width: 30%;
  }
  .l-post-detail .post-detail-content #ini_tbl1 .koumoku1,
  .l-post-detail .post-detail-content #ini_tbl2 .koumoku1,
  .l-post-detail .post-detail-content #ini_tbl3 .koumoku1 {
    font-weight: bold;
    background: #eee;
  }
  .l-post-detail .post-detail-content #ini_tbl1 .total,
  .l-post-detail .post-detail-content #ini_tbl1 .price2,
  .l-post-detail .post-detail-content #ini_tbl2 .total,
  .l-post-detail .post-detail-content #ini_tbl2 .price2,
  .l-post-detail .post-detail-content #ini_tbl3 .total,
  .l-post-detail .post-detail-content #ini_tbl3 .price2 {
    font-weight: bold;
    background: #ddd;
  }
  .l-post-detail .post-detail-content .flow-list li {
    display: block;
    padding: 1rem 2rem 1rem 280px;
    margin-bottom: 16px;
    border: 1px solid #eee;
    border-bottom: 4px solid #eee;
    border-radius: 20px;
    position: relative;
    background: url(../img/flow-01.png) no-repeat left top 24px;
  }
  .l-post-detail .post-detail-content .flow-list li.flow-01 {
    background: url(../img/flow-01.png) no-repeat left 16px top 24px;
    background-size: 240px auto;
  }
  .l-post-detail .post-detail-content .flow-list li.flow-02 {
    background: url(../img/flow-02.png) no-repeat left 16px top 24px;
    background-size: 240px auto;
  }
  .l-post-detail .post-detail-content .flow-list li.flow-03 {
    background: url(../img/flow-03.png) no-repeat left 16px top 24px;
    background-size: 240px auto;
  }
  .l-post-detail .post-detail-content .flow-list li.flow-04 {
    background: url(../img/flow-04.png) no-repeat left 16px top 24px;
    background-size: 240px auto;
  }
  .l-post-detail .post-detail-content .flow-list li i {
    position: absolute;
    left: 50%;
    bottom: -40px;
    margin-left: -20px;
    font-size: 40px;
    text-align: center;
    z-index: 1;
    color: #ccc;
  }
  .l-post-detail .post-detail-content .flow-list li h2,
  .l-post-detail .post-detail-content .flow-list li h3,
  .l-post-detail .post-detail-content .flow-list li h4,
  .l-post-detail .post-detail-content .flow-list li p {
    margin: 1rem 0;
  }
  .l-post-detail .post-detail-content .flow-list li:before {
    display: none;
  }
  .l-post-detail .post-detail-content input[type=checkbox],
  .l-post-detail .post-detail-content input[type=radio] {
    width: auto !important;
  }
  .l-post-detail .post-detail-content .ver-01 {
    background: url(../img/line1.png) no-repeat left bottom;
    border: none;
    padding-bottom: 32px;
  }
  .l-post-detail .post-detail-content .ver-01:after {
    display: none;
  }
  .l-post-detail .post-detail-content .ver-02 {
    background: url(../img/line2.png) no-repeat left bottom;
    border: none;
    padding-bottom: 32px;
  }
  .l-post-detail .post-detail-content .ver-02:after {
    display: none;
  }
  .l-post-detail.consent .c-child-page-content, .l-post-detail.document .c-child-page-content {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .l-post-detail.consent .c-child-page-content .image-page-item, .l-post-detail.document .c-child-page-content .image-page-item {
    position: relative;
    z-index: 5;
    margin-bottom: 120px;
  }
  .l-post-detail.consent .c-child-page-content .image-page-item .info, .l-post-detail.document .c-child-page-content .image-page-item .info {
    padding: 144px 0 0 40px;
  }
  .l-post-detail.consent .c-child-page-content .image-page-item .image img, .l-post-detail.document .c-child-page-content .image-page-item .image img {
    border-radius: 0px;
  }
  .l-post-detail.consent .c-child-page-content .image-page-item:after, .l-post-detail.document .c-child-page-content .image-page-item:after {
    content: "";
    width: 140%;
    height: 100%;
    background: #FFEBEB;
    position: absolute;
    right: -70%;
    top: 80px;
    z-index: -1;
    border-radius: 40px;
  }
  .l-post-detail.consent .c-child-page-content .image-page-item:nth-child(odd) .info, .l-post-detail.document .c-child-page-content .image-page-item:nth-child(odd) .info {
    padding-right: 40px;
    padding-left: 0;
  }
  .l-post-detail.consent .c-child-page-content .image-page-item:nth-child(odd):after, .l-post-detail.document .c-child-page-content .image-page-item:nth-child(odd):after {
    right: auto;
    left: -70%;
  }
  .parent-pageid-19 .l-post-detail:before,
  .page-id-2 .l-post-detail:before {
    background: #fff;
  }
  .parent-pageid-19 .l-post-detail .c-child-page-content,
  .page-id-2 .l-post-detail .c-child-page-content {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .parent-pageid-19 .l-post-detail .c-child-page-content .image-page-item,
  .page-id-2 .l-post-detail .c-child-page-content .image-page-item {
    position: relative;
    z-index: 5;
    margin-bottom: 120px;
  }
  .parent-pageid-19 .l-post-detail .c-child-page-content .image-page-item .info,
  .page-id-2 .l-post-detail .c-child-page-content .image-page-item .info {
    padding: 144px 0 0 40px;
  }
  .parent-pageid-19 .l-post-detail .c-child-page-content .image-page-item .image img,
  .page-id-2 .l-post-detail .c-child-page-content .image-page-item .image img {
    border-radius: 0px;
  }
  .parent-pageid-19 .l-post-detail .c-child-page-content .image-page-item:nth-child(odd):after,
  .page-id-2 .l-post-detail .c-child-page-content .image-page-item:nth-child(odd):after {
    right: auto;
    left: -70%;
  }
  .parent-pageid-19 .l-post-detail .c-child-page-content .image-page-item:nth-child(odd) .info,
  .page-id-2 .l-post-detail .c-child-page-content .image-page-item:nth-child(odd) .info {
    padding-right: 40px;
    padding-left: 0;
  }
  .l-page-header {
    position: relative;
    min-height: 346px;
    background: url("../img/header-coomon-bg.jpg") repeat-x center center;
    background-size: cover;
  }
  .l-page-header .page-header-image {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.5;
  }
  .l-page-header .page-header {
    color: #88CEFA;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding-bottom: 40px;
  }
  .l-page-header .page-title {
    position: relative;
    padding: 24px 0;
  }
  .l-page-header .page-title:after {
    display: block;
    content: "";
    width: 72px;
    height: 4px;
    background: #88CEFA;
    position: absolute;
    left: calc(50% - 36px);
    bottom: 0;
  }
  .l-page-header .page-title .page-title-main {
    display: block;
    margin: 0 auto 16px;
    font-size: 32px;
    font-weight: bold;
    font-family: "M+ Type-1 (general-j) Black";
  }
  .l-page-header .page-title .page-title-ornament {
    font-size: 12px;
    color: #FF8B85;
    font-family: "M+ Type-1 (general-j) Black";
    letter-spacing: 2px;
    display: block;
    margin: 0 auto;
    text-transform: uppercase;
  }
  .l-page-header .page-header-text {
    padding: 24px 0;
    font-size: 12px;
    font-weight: bold;
    line-height: 2;
  }
  .l-page-intro {
    margin-top: -64px;
    position: relative;
  }
  .l-page-intro .page-intro-content {
    background: #88CEFA;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 40px 24px 40px 64px;
  }
  .l-page-intro .page-intro-content .page-intro-title {
    font-size: 20px;
    line-height: 1.4;
    font-weight: bold;
    padding-bottom: 24px;
    position: relative;
    margin: 0;
  }
  .l-page-intro .page-intro-content .page-intro-title:after {
    content: "";
    width: 104px;
    height: 4px;
    background: #fff;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .l-page-intro .page-intro-content .page-intro-detail {
    padding: 32px 40px 0.75rem 0;
    font-size: 14px;
    line-height: 1.75;
  }
  .l-page-intro .page-intro-img img {
    max-width: 320px;
    height: auto;
  }
}
@media (max-width: 768px) {
  .card-lists {
    display: block;
  }
  .card-lists a {
    width: 100%;
    margin-bottom: 4vw;
    /*.card-image {
    	i{
    		font-size: 50px !important;
    	}
    }*/
  }
  .card-lists a .card-content2 .card-title i {
    font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
    color: #88CEFA;
    margin-right: 0.25rem;
  }
  .card-lists a:hover {
    background: transparent;
    color: #88CEFA;
  }
  .card-lists a:hover .card-content2 .card-title i,
  .card-lists a:hover .card-content2 .card-image i {
    color: #88CEFA;
  }
  .card-lists a:hover .card-content2 .card-description {
    color: rgba(85, 85, 85, 0.7);
  }
  .l-post-index {
    padding: 64px 0 0;
    background: #f2f2f3;
    margin-top: -32px;
    position: relative;
  }
  .l-post-index:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("../img/bg.png") repeat left top #f2f2f3;
    background-attachment: fixed;
  }
  .l-post-detail {
    background: #f2f2f3;
    padding-bottom: 80px;
    position: relative;
  }
  .l-post-detail:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url("../img/bg.png") repeat left top #f2f2f3;
    background-attachment: fixed;
  }
  .l-post-detail .post-detail {
    -webkit-transform: translateY(-64px);
    transform: translateY(-64px);
    background: #fff;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 32px 40px 40px;
    position: relative;
  }
  .l-post-detail .post-detail .post-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 8px 8px 40px;
    border-bottom: 1px solid #e5e5e8;
  }
  .l-post-detail .post-detail .post-thumb {
    width: 400px;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .l-post-detail .post-detail .post-thumb img {
    max-width: 100%;
    width: auto;
    height: auto;
  }
  .l-post-detail .post-detail .post-header-text {
    padding-left: 32px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .l-post-detail .post-detail .post-title {
    font-size: 24px;
    line-height: 1.25;
    color: #000019;
    padding: 12px 0 20px;
    position: relative;
    font-weight: bold;
  }
  .l-post-detail .post-detail .post-title:after {
    content: "";
    width: 80px;
    height: 4px;
    background: #88CEFA;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .l-post-detail .post-detail .post-meta {
    padding-bottom: 8px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .l-post-detail .post-detail .post-meta .posted-date {
    font-size: 14px;
    color: #191930;
    margin-right: 12px;
    opacity: 0.75;
  }
  .l-post-detail .post-detail .post-meta .post-category-tag {
    font-size: 11px;
    display: inline-block;
    padding: 4px 8px;
    border: 1px solid #191930;
    border-radius: 2px;
    line-height: 1;
    color: #191930;
  }
  .l-post-detail .post-detail-content {
    padding: 40px 16px;
  }
  .l-post-detail .post-detail-content h2 {
    margin: 40px 0 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e5e8;
    font-size: 24px;
    color: #000019;
    line-height: 1.25;
    position: relative;
  }
  .l-post-detail .post-detail-content h2:after {
    content: "";
    width: 56px;
    height: 4px;
    background: #88CEFA;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .l-post-detail .post-detail-content h3 {
    font-size: 20px;
    color: #000019;
    padding: 20px 0;
    position: relative;
    margin-bottom: 40px;
  }
  .l-post-detail .post-detail-content h3:after {
    content: "";
    width: 80px;
    height: 4px;
    background: #88CEFA;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .l-post-detail .post-detail-content h4 {
    font-size: 18px;
    color: #000019;
    padding: 4px 0 4px 24px;
    margin: 16px 0;
    position: relative;
    font-weight: bold;
  }
  .l-post-detail .post-detail-content h4:before {
    content: "";
    width: 12px;
    height: 2px;
    background: #88CEFA;
    position: absolute;
    left: 0;
    top: calc(50% - 1px);
  }
  .l-post-detail .post-detail-content p {
    color: #404052;
    margin-bottom: 2rem;
  }
  .l-post-detail .post-detail-content img {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    margin: 1.5rem auto;
  }
  .l-post-detail .post-detail-content ul {
    padding: 8px 0;
    margin: 0 0 2rem;
  }
  .l-post-detail .post-detail-content ul li {
    font-size: 14px;
    padding: 8px 32px 8px 16px;
    line-height: 1.5;
    counter-increment: mission;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .l-post-detail .post-detail-content ul li:before {
    content: "";
    width: 6px;
    height: 1px;
    background: #88CEFA;
    display: block;
    position: absolute;
    left: 0;
    top: 0.75rem;
  }
  .l-post-detail .post-detail-content ol {
    padding: 8px 0;
    margin: 0 0 2rem;
  }
  .l-post-detail .post-detail-content ol li {
    font-size: 14px;
    padding: 8px 32px 8px 16px;
    line-height: 1.5;
    counter-increment: mission;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .l-post-detail .post-detail-content ol li:before {
    content: "0" counter(mission) ".";
    font-size: 24px;
    line-height: 1;
    color: #88CEFA;
    font-family: "M+ Type-1 (general-j) Black", "Alegreya Sans SC", "Helvetice Neue", "Roboto", "Arial", sans-serif;
    font-weight: normal;
    margin-right: 12px;
  }
  .l-post-detail .post-detail-content table {
    width: 100%;
    border-sepacing: 0;
    border-collapse: collapse;
    margin-bottom: 32px;
  }
  .l-post-detail .post-detail-content table th, .l-post-detail .post-detail-content table td {
    border: 1px solid #ddd;
    padding: 1.2rem;
    line-height: 1.5;
  }
  .l-post-detail .post-detail-content table th {
    background: #f2f2f3;
    font-weight: bold;
    text-align: left;
  }
  .l-post-detail .post-detail-content .thumbnail-image img {
    width: auto;
    height: auto;
  }
  .l-post-detail .post-detail-content .wp-block-button {
    margin: -12px 0 40px;
  }
  .l-post-detail .post-detail-content .wp-block-button a {
    font-size: 14px;
    background: #88CEFA;
  }
  .l-post-detail .post-detail-content .price-table-01 th {
    width: 20%;
    font-size: 12px;
    padding: 8px;
  }
  .l-post-detail .post-detail-content .price-table-01 td {
    width: 20%;
    font-size: 12px;
    padding: 8px;
  }
  .l-post-detail .post-detail-content .price-table-01 .koumoku1 {
    font-weight: bold;
    background: #eee;
  }
  .l-post-detail .post-detail-content #ini_tbl1 th,
  .l-post-detail .post-detail-content #ini_tbl2 th,
  .l-post-detail .post-detail-content #ini_tbl3 th {
    width: 10%;
    font-size: 12px;
    padding: 8px;
  }
  .l-post-detail .post-detail-content #ini_tbl1 td,
  .l-post-detail .post-detail-content #ini_tbl2 td,
  .l-post-detail .post-detail-content #ini_tbl3 td {
    width: 30%;
    font-size: 12px;
    padding: 8px;
  }
  .l-post-detail .post-detail-content #ini_tbl1 .koumoku1,
  .l-post-detail .post-detail-content #ini_tbl2 .koumoku1,
  .l-post-detail .post-detail-content #ini_tbl3 .koumoku1 {
    font-weight: bold;
    background: #eee;
  }
  .l-post-detail .post-detail-content #ini_tbl1 .total,
  .l-post-detail .post-detail-content #ini_tbl1 .price2,
  .l-post-detail .post-detail-content #ini_tbl2 .total,
  .l-post-detail .post-detail-content #ini_tbl2 .price2,
  .l-post-detail .post-detail-content #ini_tbl3 .total,
  .l-post-detail .post-detail-content #ini_tbl3 .price2 {
    font-weight: bold;
    background: #ddd;
  }
  .l-post-detail .post-detail-content .flow-list li {
    display: block;
    padding: 200px 2rem 1rem;
    margin-bottom: 16px;
    border: 1px solid #eee;
    border-bottom: 4px solid #eee;
    border-radius: 20px;
    position: relative;
  }
  .l-post-detail .post-detail-content .flow-list li i {
    position: absolute;
    left: 50%;
    bottom: -40px;
    margin-left: -20px;
    font-size: 40px;
    text-align: center;
    z-index: 1;
    color: #ccc;
  }
  .l-post-detail .post-detail-content .flow-list li h2, .l-post-detail .post-detail-content .flow-list li h3, .l-post-detail .post-detail-content .flow-list li h4, .l-post-detail .post-detail-content .flow-list li p {
    margin: 1rem 0;
  }
  .l-post-detail .post-detail-content .flow-list li:before {
    display: none;
  }
  .l-post-detail .post-detail-content .flow-list li.flow-01 {
    background: url(../img/flow-01.png) no-repeat center top 24px;
    background-size: 240px auto;
  }
  .l-post-detail .post-detail-content .flow-list li.flow-02 {
    background: url(../img/flow-02.png) no-repeat center top 24px;
    background-size: 240px auto;
  }
  .l-post-detail .post-detail-content .flow-list li.flow-03 {
    background: url(../img/flow-03.png) no-repeat center top 24px;
    background-size: 240px auto;
  }
  .l-post-detail .post-detail-content .flow-list li.flow-04 {
    background: url(../img/flow-04.png) no-repeat center top 24px;
    background-size: 240px auto;
  }
  .l-post-detail .post-detail-content input[type=checkbox],
  .l-post-detail .post-detail-content input[type=radio] {
    width: auto !important;
  }
  .l-page-header {
    position: relative;
    min-height: 250px;
    padding-top: 72px;
    background: url("../img/header-coomon-bg.jpg") repeat-x center center;
    background-size: cover;
  }
  .l-page-header .page-header-image {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.5;
  }
  .l-page-header .page-header {
    color: #88CEFA;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
  }
  .l-page-header .page-title {
    position: relative;
    padding: 24px 0;
  }
  .l-page-header .page-title:after {
    display: block;
    content: "";
    width: 72px;
    height: 4px;
    background: #88CEFA;
    position: absolute;
    left: calc(50% - 36px);
    bottom: 0;
  }
  .l-page-header .page-title .page-title-main {
    display: block;
    margin: 0 auto 16px;
    font-size: 32px;
    font-weight: bold;
    font-family: "M+ Type-1 (general-j) Black";
  }
  .l-page-header .page-title .page-title-ornament {
    font-size: 12px;
    color: #FF8B85;
    font-family: "M+ Type-1 (general-j) Black";
    letter-spacing: 2px;
    display: block;
    margin: 0 auto;
    text-transform: uppercase;
  }
  .l-page-header .page-header-text {
    padding: 24px 0;
    font-size: 12px;
    font-weight: bold;
    line-height: 2;
  }
}
@media (min-width: 769px) {
  .l-child-page {
    margin-top: -64px;
  }
  .c-child-page-content {
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background: #fff;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .c-child-page-content-section {
    padding: 80px 80px 64px;
    border-bottom: 1px solid #e5e5e8;
    margin-bottom: 40px;
    width: 100%;
  }
  .c-child-page-content-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .l-child-page {
    margin-top: -64px;
    position: relative;
    padding-bottom: 32px;
  }
  .l-child-page:before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 64px);
    top: 64px;
    left: 0;
    background: #f2f2f3;
  }
  .c-child-page-content {
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #fff;
    position: relative;
  }
  .c-child-page-content-section {
    padding: 40px 32px;
    border-bottom: 1px solid #e5e5e8;
    margin-bottom: 40px;
  }
  .c-child-page-content-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 40px;
  }
}
.btn_01 {
  padding: 8px;
  font-size: 14px;
  font-weight: bold;
  color: #000;
  display: block;
  text-align: center;
  text-decoration: none;
  border-radius: 60px;
  background: -webkit-gradient(linear, left top, right bottom, from(#ffe082), to(#e0c268));
  background: linear-gradient(to bottom right, #ffe082 0%, #e0c268 100%);
  -webkit-box-shadow: 0 4px 0 rgb(242, 183, 5);
          box-shadow: 0 4px 0 rgb(242, 183, 5);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.btn_01:hover {
  opacity: 0.8;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn_02 {
  padding: 8px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  display: block;
  text-align: center;
  text-decoration: none;
  border-radius: 60px;
  background: -webkit-gradient(linear, left top, right bottom, from(#ca403d), to(#e35c60));
  background: linear-gradient(to bottom right, #ca403d 0%, #e35c60 100%);
  -webkit-box-shadow: 0 4px 0 #cf4b4f;
          box-shadow: 0 4px 0 #cf4b4f;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.btn_02:hover {
  opacity: 0.8;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn_03 {
  padding: 1.5vw 2vw;
  font-size: clamp(1rem, -0.116rem + 2.33vw, 1.5rem);
  font-weight: bold;
  color: #fff;
  display: block;
  text-align: center;
  text-decoration: none;
  border-radius: 60px;
  background: rgb(52, 202, 140);
  -webkit-box-shadow: 0 4px 0 rgb(42, 162, 112);
          box-shadow: 0 4px 0 rgb(42, 162, 112);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.btn_03:hover {
  opacity: 0.8;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn_04 {
  padding: 1.5vw 2vw;
  font-size: clamp(1rem, -0.116rem + 2.33vw, 1.5rem);
  font-weight: bold;
  color: #000;
  display: block;
  text-align: center;
  text-decoration: none;
  border-radius: 60px;
  background: rgb(255, 179, 0);
  -webkit-box-shadow: 0 4px 0 rgb(204, 143, 0);
          box-shadow: 0 4px 0 rgb(204, 143, 0);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.btn_04:hover {
  opacity: 0.8;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn_05 {
  padding: 8px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  display: block;
  text-align: center;
  text-decoration: none;
  border-radius: 60px;
  background: rgb(52, 202, 140);
  -webkit-box-shadow: 0 4px 0 rgb(42, 162, 112);
          box-shadow: 0 4px 0 rgb(42, 162, 112);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.btn_05:hover {
  opacity: 0.8;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn_06 {
  padding: 8px;
  font-size: 14px;
  font-weight: bold;
  color: #000;
  display: block;
  text-align: center;
  text-decoration: none;
  border-radius: 60px;
  background: rgb(255, 179, 0);
  -webkit-box-shadow: 0 4px 0 rgb(204, 143, 0);
          box-shadow: 0 4px 0 rgb(204, 143, 0);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.btn_06:hover {
  opacity: 0.8;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn_07 {
  padding: 1vw 1.5vw;
  font-size: clamp(1rem, -0.116rem + 2.33vw, 1.5rem);
  font-weight: bold;
  color: #fff;
  display: block;
  text-align: center;
  text-decoration: none;
  border-radius: 60px;
  background: rgb(52, 202, 140);
  -webkit-box-shadow: 0 4px 0 rgb(42, 162, 112);
          box-shadow: 0 4px 0 rgb(42, 162, 112);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.btn_07:hover {
  opacity: 0.8;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn_08 {
  padding: 1vw 1.5vw;
  font-size: clamp(1rem, -0.116rem + 2.33vw, 1.5rem);
  font-weight: bold;
  color: #000;
  display: block;
  text-align: center;
  text-decoration: none;
  border-radius: 60px;
  background: rgb(255, 179, 0);
  -webkit-box-shadow: 0 4px 0 rgb(204, 143, 0);
          box-shadow: 0 4px 0 rgb(204, 143, 0);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.btn_08:hover {
  opacity: 0.8;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn_news {
  padding: clamp(0.625rem, 0.293rem + 1.06vw, 1.25rem);
  font-size: clamp(1rem, 0.867rem + 0.43vw, 1.25rem);
  font-weight: bold;
  color: #fff;
  display: block;
  text-align: center;
  text-decoration: none;
  border-radius: 60px;
  background: #88CEFA;
  -webkit-box-shadow: 0 4px 0 #cf4b4f;
          box-shadow: 0 4px 0 #cf4b4f;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.btn_news:hover {
  opacity: 0.8;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn_news i {
  margin-left: 0.5vw;
}

.button-news {
  margin: 0 auto;
}

@media (max-width: 500px) {
  .button-news {
    width: 60%;
  }
}
.c-contact-form {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-contact-form .contact-caution {
  padding-top: 8px;
  font-size: 12px;
}
.c-contact-form .form-line {
  padding: 0 0 2vw 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-contact-form .form-line.devide {
  border-bottom: 1px dotted #e5e5e8;
  padding-bottom: 4vw;
  margin-bottom: 4vw;
}
.c-contact-form .form-line.noflex {
  display: block;
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
}
.c-contact-form .form-line.noflex .form-label {
  width: 100%;
}
.c-contact-form .form-line .form-label {
  font-size: clamp(0.75rem, 0.546rem + 0.65vw, 1rem);
  padding: 0 0 0 0.6rem;
  margin-bottom: 0;
  line-height: inherit;
  counter-increment: mission;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
  font-weight: bold;
  width: 30%;
  min-width: 10rem;
}
.c-contact-form .form-line .form-label:before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #88CEFA;
  border-radius: 50%;
}
.c-contact-form .form-line .form-label .required:after {
  margin-left: 4px;
  content: "必 須";
  background: #88CEFA;
  color: #fff;
  line-height: 1;
  padding: 0.2vw 0.3vw;
  border-radius: 2px;
  display: inline-block;
  font-size: clamp(0.625rem, 0.568rem + 0.26vw, 0.75rem);
}
.c-contact-form .form-line .form-input input[type=text],
.c-contact-form .form-line .form-input input[type=number],
.c-contact-form .form-line .form-input input[type=tel],
.c-contact-form .form-line .form-input input[type=email],
.c-contact-form .form-line .form-input textarea {
  border: 1px solid #e5e5e8;
  border-radius: 4px;
  padding: 0.75rem 0.5rem;
  margin-right: 4px;
}
.c-contact-form .form-line .form-input input[type=text]:placeholder-shown, .c-contact-form .form-line .form-input input[type=text]::-webkit-input-placeholder, .c-contact-form .form-line .form-input input[type=text]:-moz-placeholder, .c-contact-form .form-line .form-input input[type=text]:-ms-input-placeholder,
.c-contact-form .form-line .form-input input[type=number]:placeholder-shown,
.c-contact-form .form-line .form-input input[type=number]::-webkit-input-placeholder,
.c-contact-form .form-line .form-input input[type=number]:-moz-placeholder,
.c-contact-form .form-line .form-input input[type=number]:-ms-input-placeholder,
.c-contact-form .form-line .form-input input[type=tel]:placeholder-shown,
.c-contact-form .form-line .form-input input[type=tel]::-webkit-input-placeholder,
.c-contact-form .form-line .form-input input[type=tel]:-moz-placeholder,
.c-contact-form .form-line .form-input input[type=tel]:-ms-input-placeholder,
.c-contact-form .form-line .form-input input[type=email]:placeholder-shown,
.c-contact-form .form-line .form-input input[type=email]::-webkit-input-placeholder,
.c-contact-form .form-line .form-input input[type=email]:-moz-placeholder,
.c-contact-form .form-line .form-input input[type=email]:-ms-input-placeholder,
.c-contact-form .form-line .form-input textarea:placeholder-shown,
.c-contact-form .form-line .form-input textarea::-webkit-input-placeholder,
.c-contact-form .form-line .form-input textarea:-moz-placeholder,
.c-contact-form .form-line .form-input textarea:-ms-input-placeholder {
  color: #ccc;
}
.c-contact-form .form-line .form-input input[type=text]:-moz-placeholder,
.c-contact-form .form-line .form-input input[type=number]:-moz-placeholder,
.c-contact-form .form-line .form-input input[type=tel]:-moz-placeholder,
.c-contact-form .form-line .form-input input[type=email]:-moz-placeholder,
.c-contact-form .form-line .form-input textarea:-moz-placeholder {
  opacity: 1;
}
.c-contact-form .form-line .form-input.full-input input,
.c-contact-form .form-line .form-input.full-input textarea {
  width: 100%;
}
.c-contact-form .form-line .form-input.full-input input {
  max-width: 100%;
}
.c-contact-form .form-line .form-input.full-input.input-margin {
  padding: 0 0 2vw 0;
}
.c-contact-form .form-line .form-input.flex-input {
  padding: 2vw 0;
}
.c-contact-form .form-line .form-input.flex-input > span {
  display: block;
}
.c-contact-form .form-line .form-input.flex-input > span span {
  font-size: clamp(0.75rem, 0.648rem + 0.33vw, 0.875rem);
}
.c-contact-form .form-line .form-input.flex-input textarea {
  width: 100%;
  display: block;
}
.c-contact-form .agree-box {
  width: 50%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 4vw;
}
.c-contact-form .agree-box p {
  margin-bottom: 1vw;
}
.c-contact-form .agree-box a {
  display: block;
  padding: 0.5vw 1vw;
  border: 1px solid;
}
.c-contact-form .form-agree {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
.c-contact-form .form-agree p {
  margin-bottom: 1vw;
}
.c-contact-form .form-agree div {
  margin-bottom: 4vw;
}
.c-contact-form .form-submit {
  text-align: center;
}
.c-contact-form .form-submit input[type=submit] {
  display: inline-block;
  width: 50%;
  background: #88CEFA;
  color: #fff;
  padding: 2vw 0;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  font-size: clamp(1rem, 0.796rem + 0.65vw, 1.25rem);
  cursor: pointer;
  border: none;
  border-radius: 10px;
}

.c-complete {
  padding: 16px;
}
.c-complete .complete-title {
  margin: 40px 0 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e8;
  font-size: 24px;
  color: #000019;
  line-height: 1.25;
  position: relative;
}
.c-complete .complete-title:after {
  content: "";
  width: 56px;
  height: 4px;
  background: #88CEFA;
  position: absolute;
  left: 0;
  bottom: 0;
}
.c-complete .complete-message {
  font-size: 15px;
  line-height: 1.75;
  color: #404052;
  margin-bottom: 4rem;
}
.c-complete .complete-caution {
  font-size: 12px;
  margin-bottom: 1rem;
  color: #80808c;
}
.c-complete .complete-other-contact {
  border: 1px solid #88CEFA;
  display: inline-block;
}
.c-complete .complete-other-contact ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 16px;
  color: #88CEFA;
}
.c-complete .complete-other-contact ul li {
  padding: 24px 16px;
  text-align: center;
  font-size: 20px;
  white-space: nowrap;
}
.c-complete .complete-other-contact ul li i {
  margin-right: 4px;
  display: inline-block;
}
.c-complete .complete-other-contact ul li a {
  color: #88CEFA;
  text-decoration: none;
  margin-left: 4px;
  display: inline-block;
}
.c-complete .complete-other-contact ul li span {
  margin-left: 4px;
  display: inline-block;
}

@media (max-width: 768px) {
  .c-contact-form .contact-caution {
    line-height: 1.4;
  }
  .c-contact-form .form-line .form-label:before {
    content: "";
    position: absolute;
    top: 0.6rem;
    left: 0;
    width: 4px;
    height: 4px;
    background-color: #88CEFA;
    border-radius: 50%;
    top: 0.45rem;
  }
  .c-contact-form .form-line .form-label .required {
    margin-left: 4px;
  }
  .c-contact-form .form-line .form-label .required:after {
    content: "必須";
    background: #88CEFA;
    color: #fff;
    line-height: 1;
    padding: 2px 4px;
    border-radius: 2px;
    display: inline-block;
    font-size: 10px;
    font-weight: bold;
  }
  .c-contact-form .form-line .form-input input[type=text],
  .c-contact-form .form-line .form-input input[type=number],
  .c-contact-form .form-line .form-input input[type=tel],
  .c-contact-form .form-line .form-input input[type=email],
  .c-contact-form .form-line .form-input textarea {
    padding: 0.5rem;
    width: 100%;
  }
  .c-contact-form .form-line .form-input input[type=text]:-moz-placeholder-shown, .c-contact-form .form-line .form-input input[type=number]:-moz-placeholder-shown, .c-contact-form .form-line .form-input input[type=tel]:-moz-placeholder-shown, .c-contact-form .form-line .form-input input[type=email]:-moz-placeholder-shown, .c-contact-form .form-line .form-input textarea:-moz-placeholder-shown {
    color: #ccc;
  }
  .c-contact-form .form-line .form-input input[type=text]:-ms-input-placeholder, .c-contact-form .form-line .form-input input[type=number]:-ms-input-placeholder, .c-contact-form .form-line .form-input input[type=tel]:-ms-input-placeholder, .c-contact-form .form-line .form-input input[type=email]:-ms-input-placeholder, .c-contact-form .form-line .form-input textarea:-ms-input-placeholder {
    color: #ccc;
  }
  .c-contact-form .form-line .form-input input[type=text]:placeholder-shown,
  .c-contact-form .form-line .form-input input[type=number]:placeholder-shown,
  .c-contact-form .form-line .form-input input[type=tel]:placeholder-shown,
  .c-contact-form .form-line .form-input input[type=email]:placeholder-shown,
  .c-contact-form .form-line .form-input textarea:placeholder-shown {
    color: #ccc;
  }
  .c-contact-form .form-line .form-input input[type=text]::-webkit-input-placeholder,
  .c-contact-form .form-line .form-input input[type=number]::-webkit-input-placeholder,
  .c-contact-form .form-line .form-input input[type=tel]::-webkit-input-placeholder,
  .c-contact-form .form-line .form-input input[type=email]::-webkit-input-placeholder,
  .c-contact-form .form-line .form-input textarea::-webkit-input-placeholder {
    color: #ccc;
  }
  .c-contact-form .form-line .form-input input[type=text]:-moz-placeholder,
  .c-contact-form .form-line .form-input input[type=number]:-moz-placeholder,
  .c-contact-form .form-line .form-input input[type=tel]:-moz-placeholder,
  .c-contact-form .form-line .form-input input[type=email]:-moz-placeholder,
  .c-contact-form .form-line .form-input textarea:-moz-placeholder {
    color: #ccc;
  }
  .c-contact-form .form-line .form-input input[type=text]::-moz-placeholder,
  .c-contact-form .form-line .form-input input[type=number]::-moz-placeholder,
  .c-contact-form .form-line .form-input input[type=tel]::-moz-placeholder,
  .c-contact-form .form-line .form-input input[type=email]::-moz-placeholder,
  .c-contact-form .form-line .form-input textarea::-moz-placeholder {
    opacity: 1;
    color: #ccc;
  }
  .c-contact-form .form-line .form-input input[type=text]:-ms-input-placeholder,
  .c-contact-form .form-line .form-input input[type=number]:-ms-input-placeholder,
  .c-contact-form .form-line .form-input input[type=tel]:-ms-input-placeholder,
  .c-contact-form .form-line .form-input input[type=email]:-ms-input-placeholder,
  .c-contact-form .form-line .form-input textarea:-ms-input-placeholder {
    color: #ccc;
  }
  .c-contact-form .form-line .form-input.full-input input,
  .c-contact-form .form-line .form-input.full-input textarea {
    width: 100%;
  }
  .c-contact-form .form-line .form-input.full-input input {
    max-width: 600px;
  }
  .c-contact-form .form-line .form-input.flex-input {
    display: block;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
  }
  .c-contact-form .form-line .form-input.flex-input > span {
    width: 100%;
  }
  .c-contact-form .agree-box {
    width: 60%;
  }
}
/*-- settingフォルダの中の_index.scss --*/
/*-- mixinフォルダの中の_index.scss --*/
.jq-tab-menu {
  margin: 0px auto 40px;
  border-radius: 28px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: auto;
}
.jq-tab-menu li {
  text-align: center;
  border: 1px solid rgba(0, 0, 25, 0.1);
  -webkit-box-shadow: 0px 10px 12px rgba(40, 74, 221, 0.1);
  box-shadow: 0px 10px 12px rgba(40, 74, 221, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 20%;
  padding: 8px 8px !important;
  font-size: 16px;
  font-weight: bold;
  color: #88CEFA;
  background: #fff;
}
.jq-tab-menu li:before {
  display: none !important;
}
.jq-tab-menu li:first-child {
  border-radius: 28px 0 0 28px;
  padding-left: 16px;
  position: relative;
}
.jq-tab-menu li:last-child {
  border-radius: 0 28px 28px 0;
  padding-right: 16px;
  position: relative;
}
.jq-tab-menu li.active {
  color: #fff;
  background: #88CEFA;
}
.jq-tab-menu li:hover {
  cursor: pointer;
}

.jq-tab-area__box {
  display: none;
}
.jq-tab-area__box.show {
  display: block;
}

@media (max-width: 768px) {
  .jq-tab-menu li {
    padding: 8px 8px;
    font-size: 12px;
    width: 33.33%;
  }
  .jq-tab-menu li.active {
    padding: 8px 8px;
    font-size: 12px;
  }
}
.section-block {
  padding-bottom: 6vw;
  /*&.service{
  	&:before {
  		content: "";
  		display: block;
  		width: 100%;
  		height: 240px;
  		background: #f2f2f3;
  		position: absolute;
  		left: 0;
  		bottom: 0;
  	}
  }*/
}
.section-block:first-child {
  padding-top: 4vw;
}
.section-block.about {
  background: rgba(136, 206, 250, 0.05);
}
.section-block.archive {
  padding: 0;
}
.section-block.before:before, .section-block.after:after {
  content: "";
  display: block;
  width: 60vw;
  height: 60vw;
  border-radius: 100%;
  background: rgba(136, 206, 250, 0.2);
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.section-block.before:before {
  right: -40vw;
  top: 0;
}
.section-block.after:after {
  right: -40vw;
  bottom: -40vw;
}
.section-block_header {
  text-align: center;
  margin-bottom: 4vw;
}
.section-block_header h2 .title-main {
  display: block;
  padding-bottom: -webkit-calc($margin_base / 4);
  padding-bottom: 1vw;
  font-size: clamp(1.625rem, 0.894rem + 2.34vw, 3rem);
  font-weight: bold;
  color: #88CEFA;
}
.section-block_header h2 .title-main .num {
  font-size: clamp(1.5rem, 1.071rem + 2.14vw, 3rem);
}
.section-block_header h2 .title-main.mincho {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  color: #121368;
}
.section-block_header h2 .ornament {
  font-size: clamp(1rem, 0.701rem + 0.96vw, 1.563rem);
  font-weight: bold;
  letter-spacing: 1px;
  color: #88CEFA;
  display: block;
  margin: 0 auto;
}
.section-block_header h2 .ornament.mincho {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  color: #121368;
}
.section-block_header .solution-top-img {
  margin-bottom: 24px;
}
.section-block_header p {
  text-align: left;
  line-height: 1.8;
  margin-bottom: 16px;
}
.section-block_header .section-copy {
  font-weight: bold;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.section-block_content__point {
  position: relative;
}
.section-block_content.m_bottom {
  margin-bottom: 4vw;
}
.section-block_content__text {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  max-width: 1100px;
}
.section-block_content__text h3 {
  margin: 0 auto 2vw;
  text-align: center;
  font-size: clamp(1rem, 0.643rem + 1.79vw, 2.25rem);
  font-weight: bold;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  /*&::before,
  &::after {
  	background-color: $color_text_base;
  	content: '';
  	height: 2px;
  	position: absolute;
  	top: 50%;
  	transform: translateY(-50%);
  	-webkit-transform: translateY(-50%);
  }
  &::before {
  	left: calc(-100px - 20px);
  	width: 100px;
  }
  &::after {
  	right: calc(-100px - 20px);
  	width: 100px;
  }*/
}
.section-block_content__text h3 .num {
  font-size: 34px;
}
.section-block_content__text ul li {
  padding-bottom: 20px;
}
.section-block_content__text ul li:last-child {
  padding-bottom: 0;
}
.section-block_content__text h4 {
  padding: 0 0 20px;
  color: #88CEFA;
  font-size: 20px;
  font-weight: bold;
}
.section-block_content__text h4 span {
  display: inline-block;
  margin-right: 10px;
  padding: 6px 10px;
  color: #fff;
  background: #88CEFA;
}
.section-block_content__text p {
  line-height: 1.75;
  text-align: left;
}
.section-block_content__text p.m-bottom {
  margin-bottom: 4vw;
}
.section-block_content__text .c-to-company-link {
  padding: 32px 8px 0;
  text-align: center;
}
.section-block_content__text .c-to-company-link .to-company-link {
  display: inline-block;
  border: 2px solid #88CEFA;
  padding: 18px 24px 18px 16px;
  min-width: 240px;
  color: #88CEFA;
  text-decoration: none;
  font-weight: bold;
  position: relative;
}
.section-block_content__text .c-to-company-link .to-company-link:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fc3036;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  z-index: -1;
}
.section-block_content__text .c-to-company-link .to-company-link:hover {
  color: #fff;
}
.section-block_content__text .c-to-company-link .to-company-link:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.section-block_content__text .c-to-company-link .to-company-link:hover img {
  -webkit-transform: translateX(8px);
  transform: translateX(8px);
}
.section-block_content__text .c-to-company-link .to-company-link img {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 16px;
  top: 30%;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.section-block_content__text .chara-image {
  width: 200px;
  margin: 0 auto 24px;
  position: absolute;
  left: 30px;
  top: -100px;
}
.section-block_content__text .chara-image img {
  max-width: 100%;
}
.section-block_content__text.dot {
  padding: 20px 40px;
  border: 7px dotted #88CEFA;
  border-radius: 20px;
}
.section-block_content__text .survey_results h3 {
  width: 65%;
  margin: 0 auto 4vw;
}
.section-block_content__text .survey_results h3 img {
  width: 100%;
}
.section-block_content__text .survey_results ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 4vw;
}
.section-block_content__text .survey_results ul li {
  padding-bottom: 0;
}
.section-block_content__text .survey_results table {
  margin: 0 auto;
}
.section-block_content__text .survey_results p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.section-block_content__about {
  margin: 0 auto;
}
.section-block_content__about.point {
  width: 80%;
}
.section-block_content__about p {
  line-height: 1.75;
}
.section-block_content__about > p {
  padding: 2vw 0 4vw calc(7% + 2vw);
}
.section-block_content__about ul {
  list-style: disc;
  padding-left: 2rem;
  margin: 0 0 2rem;
  font-size: 15px;
  line-height: 1.75;
}
.section-block_content__about ul li {
  padding: 0.25rem 0;
}
.section-block_content__about ul ul {
  list-style: circle;
}
.section-block_content__about ol {
  padding: 2vw 0 4vw calc(7% + 2vw);
}
.section-block_content__about ol li {
  counter-increment: mission;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 2.5;
}
.section-block_content__about ol li:before {
  content: "0" counter(mission) ".";
  font-size: clamp(1rem, 0.857rem + 0.71vw, 1.5rem);
  line-height: 1;
  color: #88CEFA;
  font-weight: normal;
  margin-right: 1vw;
}
.section-block_content__about__items {
  width: 100%;
}
.section-block_content__about__items .feature {
  background: url("../img/bg_login_body.png");
}
.section-block_content__about__items .feature:last-child .item {
  margin-bottom: 0;
}
.section-block_content__about__items .feature:nth-child(odd) .item .image {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  padding-right: 0;
}
.section-block_content__about__items .feature .item {
  margin: 0 auto 4vw;
  max-width: 1100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3vw;
  padding: calc(4vw / 2) 0;
}
.section-block_content__about__items .feature .item .image {
  width: 50%;
}
.section-block_content__about__items .feature .item .image img {
  width: 100%;
}
.section-block_content__about__items .feature .item .info {
  width: 50%;
}
.section-block_content__about__items .feature .item .info h2 {
  border: none;
  padding: 0;
  margin: 0 0 2vw;
  font-weight: bold;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #88CEFA;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, rgba(136, 206, 250, 0.5)));
  background: linear-gradient(transparent 70%, rgba(136, 206, 250, 0.5) 70%);
}
.section-block_content__about__items .feature .item .info h2:after {
  display: none;
}
.section-block_content__about__items .feature .item .info h3 {
  margin: 0 0 16px;
  padding: 8px 0 16px;
  line-height: 1.4;
}
.section-block_content__about__title {
  color: #555;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2vw;
}
.section-block_content__about__title span:first-child {
  width: 7%;
}
.section-block_content__about__title span:first-child img {
  margin: 0;
  width: 100%;
}
.section-block_content__about__title:after {
  display: none;
}
.section-block_contact h2 .title-main {
  display: block;
  padding-bottom: 2vw;
  font-size: clamp(1rem, -0.116rem + 2.33vw, 1.5rem);
  font-weight: bold;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
.section-block .colmun-block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 100;
  gap: 1.5vw 1vw;
  max-width: 1100px;
  margin: 0 auto;
}
.section-block .colmun-block_item {
  background-color: #fff;
  width: calc(33.3333333333% - 1vw);
  border-radius: 10px;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.section-block .colmun-block_item:hover {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.section-block .colmun-block_item:hover:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.section-block .colmun-block_item__image {
  width: 100%;
  height: 200px;
  border-radius: 10px 10px 0 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.section-block .colmun-block_item__image img {
  height: auto;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transform: scale(1.75, 1.75);
          transform: scale(1.75, 1.75);
}
.section-block .colmun-block_item__image img:hover {
  -webkit-transform: scale(2, 2);
          transform: scale(2, 2);
  /*画像の拡大*/
  cursor: pointer;
  /*カーソルをポインターにする*/
}
.section-block .colmun-block_item__content {
  padding: 1vw 1.5vw;
  width: 100%;
  position: relative;
}
.section-block .colmun-block_item__content:before {
  font-size: 96px;
  letter-spacing: -2px;
  position: absolute;
  right: 24px;
  top: -62px;
  font-weight: normal;
  color: #88CEFA;
}
.section-block .colmun-block_item__content--title {
  /*font-size: 20px;
  margin-bottom: 12px;
  padding-bottom: 20px;
  position: relative;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  font-weight: bold;*/
  position: relative;
  overflow: hidden;
  padding-bottom: 2vw;
  color: #555;
}
.section-block .colmun-block_item__content--title.archive {
  padding-bottom: 0;
}
.section-block .colmun-block_item__content--title .--deco {
  display: block;
  margin: 0 auto;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
  padding-top: 8px;
  font-weight: bold;
}
.section-block .colmun-block_item__content--text {
  position: relative;
  font-size: clamp(0.75rem, 0.71rem + 0.18vw, 0.875rem);
  line-height: 1.75;
}
.section-block .colmun-block_item__content--meta {
  padding: 0 0 1vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.section-block .colmun-block_item__content--meta .posted-date {
  font-size: 12px;
  color: #bfbfc5;
  margin-left: auto;
}
.section-block .colmun-block_item__content--meta .post-category {
  font-size: 12px;
  line-height: 1;
  padding: 2px 4px;
  border: 1px solid #80808c;
  border-radius: 2px;
  color: #80808c;
}
.section-block .colmun-block_item a {
  text-decoration: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}
.section-block .colmun-block_info {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 70%;
  gap: 1.5vw;
}
.section-block .colmun-block_info li {
  width: 50%;
}
.section-block .about-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-radius: 20px;
  border: 1px solid #F5F5F5;
}
.section-block .about-items .about-item {
  width: 50%;
  position: relative;
}
.section-block .about-items .about-item:nth-child(1) img {
  border-radius: 20px 0 0 0;
}
.section-block .about-items .about-item:nth-child(2) img {
  border-radius: 0 20px 0 0;
}
.section-block .about-items .about-item:nth-child(3) .title {
  border-radius: 0 0 0 20px;
}
.section-block .about-items .about-item:nth-child(3) img {
  border-radius: 0 0 0 20px;
}
.section-block .about-items .about-item:nth-child(4) .title {
  border-radius: 0 0 20px 0;
}
.section-block .about-items .about-item:nth-child(4) img {
  border-radius: 0 0 20px 0;
}
.section-block .about-items .about-item .title {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 32px 16px 32px;
  font-weight: bold;
  text-align: right;
  color: #fff;
  font-size: 22px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), to(transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  width: 100%;
  height: 80px;
}
.section-block .about-items .about-item img {
  max-width: 100%;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .section-block_header .section-copy {
    font-weight: bold;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
  }
  .section-block_header .solution-top-img {
    margin-bottom: 24px;
  }
  .section-block_header p {
    text-align: left;
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 16px;
  }
  .section-block_content {
    width: 90%;
    margin: 0 auto;
  }
  .section-block_content__about.point {
    width: 100%;
  }
  .section-block_content__about__items {
    width: 100%;
  }
  .section-block_content__about__items .feature {
    background: none;
  }
  .section-block_content__about__items .feature .item {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }
  .section-block_content__about__items .feature .item:after {
    content: none;
  }
  .section-block_content__about__items .feature .item:nth-child(odd) .image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding-right: 0;
  }
  .section-block_content__about__items .feature .item .image {
    width: 100%;
    margin-bottom: 1vw;
  }
  .section-block_content__about__items .feature .item .image > div:before, .section-block_content__about__items .feature .item .image > div:after {
    content: none;
  }
  .section-block_content__about__items .feature .item .image img {
    width: 100%;
  }
  .section-block_content__about__items .feature .item .info {
    width: 100%;
    margin-bottom: 4vw;
  }
  .section-block_content__about__items .feature .item .info h2 {
    text-align: center;
  }
  .section-block_content__about__items .feature .item .info h2:after {
    display: none;
  }
  .section-block_content__about__items .feature .item .info h2 br {
    display: none;
  }
  .section-block_content__about__items .feature .item .info h3 {
    margin: 0 0 16px;
    padding: 8px 0 16px;
    line-height: 1.4;
  }
  .section-block_content__about__title .about-point {
    width: 40px;
    left: 30px;
    top: -5px;
  }
  .section-block_content.m_bottom {
    margin-bottom: 30px;
  }
  .section-block_content__text h4 {
    padding: 0 0 10px;
    font-size: 16px;
    line-height: 1.75;
  }
  .section-block_content__text h4 span {
    margin-right: 5px;
    padding: 0 5px;
  }
  .section-block_content__text .chara-image {
    display: none;
  }
  .section-block_content__text .survey_results h3 {
    width: 100%;
    margin: 0 auto 6vw;
  }
  .section-block_content__text .survey_results ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 6vw;
  }
  .section-block_content__text .survey_results ul li {
    width: 48%;
  }
  .section-block_content__text .survey_results table tr td:first-child {
    width: 23%;
  }
  .section-block .colmun-block {
    display: block;
  }
  .section-block .colmun-block_item {
    width: 100%;
    margin-bottom: 4vw;
  }
  .section-block .colmun-block_item__content {
    padding: 2vw 4vw 4vw;
  }
  .section-block .colmun-block_item:last-child {
    margin-bottom: 0;
  }
  .section-block .colmun-block_info {
    width: 100%;
    gap: 2vw;
  }
  .section-block .colmun-block_info li {
    width: 50%;
  }
  .section-block .about-items {
    margin-top: 20px;
    border-radius: none;
    border: none;
  }
  .section-block .about-items .about-item {
    width: 100%;
  }
  .section-block .about-items .about-item:nth-child(1) img {
    border-radius: 0 0 0 0;
  }
  .section-block .about-items .about-item:nth-child(2) img {
    border-radius: 0 0 0 0;
  }
  .section-block .about-items .about-item:nth-child(3) .title {
    border-radius: 0 0 0 0;
  }
  .section-block .about-items .about-item:nth-child(3) img {
    border-radius: 0 0 0 0;
  }
  .section-block .about-items .about-item:nth-child(4) .title {
    border-radius: 0 0 0 0;
  }
  .section-block .about-items .about-item:nth-child(4) img {
    border-radius: 0 0 0 0;
  }
  .section-block .about-items .about-item .title {
    position: relative;
    left: auto;
    bottom: auto;
    padding: 10px 0 16px;
    font-weight: bold;
    text-align: center;
    color: #88CEFA;
    font-size: 16px;
    background: none;
    width: 100%;
    height: auto;
  }
  .section-block .about-items .about-item img {
    max-width: 100%;
    vertical-align: middle;
  }
}
@media (max-width: 500px) {
  .section-block {
    padding-bottom: 8vw;
  }
  .section-block_content {
    width: 100%;
  }
}
.banner {
  position: fixed;
  margin: 30px;
  z-index: 99998;
  bottom: 0;
  right: 0;
}
.banner a {
  text-decoration: none;
}
.banner-close {
  font-weight: bold;
  position: absolute;
  top: -13px;
  right: -13px;
  z-index: 99999;
  padding: 1px 8px;
  border: none;
  background-color: #f8f8f8;
  border-radius: 13px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.4);
}
.banner-back {
  background: rgba(255, 255, 255, 0.4);
  min-width: 200px;
}
.banner-back-body {
  font-weight: bold;
  text-align: center;
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.4);
  border: 4px solid #ff7b02;
}
.banner-back-body .top {
  color: #fff;
  background: #ff7b02;
  padding: 0.5vw;
  font-size: clamp(1rem, -0.116rem + 2.33vw, 1.5rem);
}
.banner-back-body .bottom {
  padding: 1.3333333333vw 2vw;
}
.banner-back-body .bottom div {
  width: 100%;
}
.banner-back-body .bottom div p {
  font-size: clamp(1rem, 0.442rem + 1.16vw, 1.25rem);
}
.banner-back-body .bottom div:first-child {
  margin-bottom: 1.3333333333vw;
}

@media screen and (max-width: 768px) {
  .banner {
    display: none;
    width: 100%;
    margin: 0px;
    bottom: 60px;
  }
  .banner-icon {
    font-size: 28px;
  }
  .banner-body {
    width: 100%;
    border-radius: 0px;
  }
  .banner-back {
    width: 100%;
    margin: 0px;
    border-radius: 0px;
  }
  .banner-top {
    padding: 5px;
    border-radius: 0px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #006EB0), to(#0AB0C7));
    background: linear-gradient(#006EB0 50%, #0AB0C7);
  }
  .banner-bottom {
    padding: 10px 10px 18px 10px;
  }
  .banner-copy {
    font-size: 15px;
  }
  .banner-copy::after {
    font-size: 12px;
    margin-top: 1.4px;
    margin-left: 12px;
    top: initial;
    right: initial;
  }
  .banner-close {
    top: 8px;
    right: 15px;
  }
  .banner-copy-br {
    display: none;
  }
}
@media (min-width: 769px) {
  /*使ってない？？*/
}/*# sourceMappingURL=style.css.map */