@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 --*/
/*-- 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: #e35c60;
  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: #e35c60;
  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%;
  }
}
.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 ol {
    width: 100%;
  }
  .breadcrumb ol li {
    font-size: 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .breadcrumb ol li a {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}
.main-footer {
  position: relative;
  background: url("../img/bg_login_body.png");
}
.main-footer__info {
  display: none;
}
.main-footer__nav {
  padding: 4vw 0;
  border-top: 1px solid #F5F5F5;
}
.main-footer__nav nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2vw;
}
.main-footer__nav nav a {
  text-decoration: none;
  color: #555;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.main-footer__nav nav a:hover {
  opacity: 0.6;
}
.main-footer__nav nav .nav-block {
  width: -webkit-calc(100% / 5);
  width: 20%;
}
.main-footer__nav nav .nav-block__li > a {
  display: block;
  font-size: 14px;
  margin-bottom: 1vw;
}
.main-footer__nav nav .nav-block__li-child-block {
  padding-left: 1rem;
  margin-bottom: 1rem;
}
.main-footer__nav nav .nav-block__li-child-block__li {
  position: relative;
  font-size: 13px;
  margin-bottom: 0.75vw;
}
.main-footer__nav nav .nav-block__li-child-block__li:before {
  content: "";
  width: 6px;
  height: 6px;
  border-left: 1px solid rgba(85, 85, 85, 0.5);
  border-bottom: 1px solid rgba(85, 85, 85, 0.5);
  display: block;
  position: absolute;
  left: -12px;
  top: 50%;
  margin-top: -5px;
}
.main-footer__nav nav .nav-block__li-child-block__li span {
  display: block;
  font-weight: normal;
  font-size: 10px;
  margin-bottom: 4px;
}
.main-footer__nav nav .nav-block.footer-logo img {
  margin: auto;
  width: 90%;
}
.main-footer__nav nav .nav-block.sp {
  display: none;
}
.main-footer .footer-bottom {
  border-top: 1px solid #F5F5F5;
  padding: 2vw 0;
  text-align: center;
  font-size: 10px;
}

#pagetop {
  position: fixed;
  left: 50%;
  bottom: 6%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  cursor: pointer;
  z-index: 200;
}

@media (max-width: 768px) {
  .main-footer {
    position: relative;
    padding: 0;
  }
  .main-footer__info {
    display: block;
    padding: 2vw 0;
  }
  .main-footer__info__logo {
    margin: 0 auto;
    width: 30%;
  }
  .main-footer__info__logo img {
    width: 100%;
  }
  .main-footer__nav {
    background: #e35c60;
  }
  .main-footer__nav nav {
    display: block;
    padding-left: 6%;
    padding-right: 6%;
  }
  .main-footer__nav nav a {
    text-decoration: none;
    color: #fff;
  }
  .main-footer__nav nav .nav-block {
    width: 100%;
  }
  .main-footer__nav nav .nav-block__li > a {
    display: block;
    font-size: 14px;
    font-weight: bold;
    padding: 3vw 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
  }
  .main-footer__nav nav .nav-block__li > 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;
  }
  .main-footer__nav nav .nav-block__li-child-block {
    display: none;
  }
  .main-footer__nav nav .nav-block.footer-logo {
    display: none;
  }
  .main-footer__nav nav .nav-block.sp {
    display: block;
  }
  .main-footer .footer-bottom {
    margin-bottom: 52px;
  }
  #pagetop {
    display: none;
    bottom: 55px;
    width: 35px;
  }
  #pagetop img {
    width: 100%;
  }
}
.main-header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  background: url("../img/bg_login_body.png");
  -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: #e35c60;
  -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(227, 92, 96, 0.6);
          box-shadow: 0px 0px 4px 1px rgba(227, 92, 96, 0.6);
}
.tooltip1 .description1,
.tooltip2 .description1,
.tooltip3 .description1 {
  display: none;
  position: absolute;
  padding: 6px 8px;
  font-size: 12px;
  color: #fff;
  border-radius: 5px;
  background: #e35c60;
  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 #e35c60;
  -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: #e35c60;
  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 #e35c60;
  -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: #e35c60;
  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 #e35c60;
  -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: #e35c60;
  }
  .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: #e35c60;
    position: relative;
  }
  .menu-toggle .icon:before, .menu-toggle .icon:after {
    content: "";
    width: 24px;
    height: 4px;
    background: #e35c60;
    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: #e35c60;
    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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2vw 0.5vw;
  font-size: clamp(0.75rem, 0.528rem + 0.46vw, 0.875rem);
  background: url("../img/bg_login_body.png");
  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;
}

.main-content {
  overflow: hidden;
}

.content-header {
  position: relative;
  min-height: 220px;
  background-size: auto auto;
  background-color: rgba(227, 92, 96, 0.75);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
}
.content-header header {
  color: #fff;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 40%;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  width: 88%;
}
.content-header header .content-header__title {
  position: relative;
  padding: 0 0 1vw 0;
}
.content-header header .content-header__title:after {
  display: block;
  content: "";
  width: 72px;
  height: 4px;
  background: #fff;
  position: absolute;
  left: calc(50% - 36px);
  bottom: 0;
}
.content-header header .content-header__title__main {
  display: block;
  margin: 0 auto 1vw;
  font-size: clamp(1.5rem, 1.194rem + 0.98vw, 1.875rem);
  font-weight: bold;
}
.content-header header .content-header__title__ornament {
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
  color: #fff;
  font-family: "M+ Type-1 (general-j) Black";
  letter-spacing: 2px;
  display: block;
  margin: 0 auto;
}
.content-header header .single-header__title__main {
  display: block;
  margin: 0 auto 1vw;
  font-size: clamp(1.5rem, 1.194rem + 0.98vw, 1.875rem);
  font-weight: bold;
}

.content-body {
  margin-top: -64px;
  position: relative;
  padding-bottom: -webkit-calc($margin_base * 2);
  padding-bottom: 8vw;
}

.content-body__inner {
  -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;
  border-radius: -webkit-calc($margin_base / 2);
  border-radius: 2vw;
}
.content-body__inner__section {
  padding: 4vw;
  border-bottom: 1px solid #e5e5e8;
  margin-bottom: 40px;
}
.content-body__inner__section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.content-body__inner__section h2 {
  padding: 0 0 2vw;
  font-size: clamp(1rem, 0.592rem + 1.31vw, 1.5rem);
  position: relative;
  font-weight: bold;
}
.content-body__inner__section h2 span {
  padding-right: 1vw;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, rgba(227, 92, 96, 0.4)));
  background-image: linear-gradient(transparent 60%, rgba(227, 92, 96, 0.4) 60%);
  font-weight: bold;
}
.content-body__inner__section h3 {
  padding: 0 0 2vw;
  font-size: 20px;
  position: relative;
  font-weight: bold;
}
.content-body__inner__section h3 span {
  padding-right: 1vw;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, rgba(227, 92, 96, 0.4)));
  background-image: linear-gradient(transparent 70%, rgba(227, 92, 96, 0.4) 70%);
  font-weight: normal;
}
.content-body__inner__section h4 {
  padding: 0 0 2vw;
  font-size: 18px;
  position: relative;
  font-weight: bold;
}
@media (max-width: 768px) {
  .content-header {
    min-height: 240px;
  }
  .content-header header {
    top: 37%;
  }
  .content-header header .content-header__title:after {
    bottom: -10px;
  }
  .content-body__inner {
    border-radius: 0;
  }
}
.fixed-cta {
  display: none;
}

@media (max-width: 768px) {
  .l-header-mega-menu {
    display: block;
    background: rgba(227, 92, 96, 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: #e35c60;
  }
  .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: #e35c60;
  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: #e35c60;
  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;
}

.price-main {
  -webkit-box-shadow: 0 0px 15px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0px 15px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 4vw;
}
.price-main__title {
  padding: 1vw;
  background-color: rgba(227, 92, 96, 0.75);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: clamp(1.25rem, 1.117rem + 0.43vw, 1.5rem);
  font-weight: bold;
  text-align: center;
}
.price-main__cost {
  padding: 2vw 4vw;
  width: calc(100% - 4vw);
  margin: 0 auto;
  font-size: clamp(1rem, 0.592rem + 1.31vw, 1.5rem);
  text-align: center;
}
.price-main__cost.line {
  border-bottom: dotted 1px #ccc;
}
.price-main__cost li {
  margin: 0 auto;
  text-align: left;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}
.price-main__cost li span {
  font-size: clamp(1.5rem, 1.194rem + 0.98vw, 1.875rem);
  font-weight: bold;
}
.price-main__caption {
  padding: 1.3333333333vw 8vw;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.price-main__caption li {
  font-size: clamp(0.75rem, 0.546rem + 0.65vw, 1rem);
  padding: 0 0 0 1rem;
  margin-bottom: 1vw;
  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;
}
.price-main__caption li:before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #e35c60;
  border-radius: 50%;
}
.price-main__caption li:last-child {
  margin-bottom: 0;
}

.price-info {
  padding: 2vw;
  background-color: rgba(227, 92, 96, 0.05);
  border: rgba(227, 92, 96, 0.08) 1px solid;
  line-height: 2;
  font-size: clamp(0.75rem, 0.546rem + 0.65vw, 1rem);
  width: 100%;
  margin: 0 auto 4vw;
}
.price-info span {
  font-size: clamp(1rem, 0.867rem + 0.43vw, 1.25rem);
}

.price-table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  margin: 1vw 0 4vw;
}
.price-table th, .price-table td {
  border: 1px solid #ddd;
  padding: 1vw 1.5vw;
  line-height: 1.75;
  vertical-align: middle;
}
.price-table th {
  background-color: rgba(227, 92, 96, 0.08);
  font-weight: bold;
  text-align: center;
  font-size: clamp(0.75rem, 0.444rem + 0.98vw, 1.125rem);
  width: 30%;
}
.price-table th:nth-child(2) {
  width: 35%;
}
.price-table th:nth-child(3) {
  width: 35%;
}
.price-table td .icon {
  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;
}
.price-table td .icon li {
  width: 25%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.price-table td .icon li i {
  font-size: clamp(1.5rem, 1.096rem + 2.02vw, 2.5rem);
  color: #e35c60;
}
.price-table td .icon li p {
  padding-top: 0.5vw;
  text-align: center;
  font-size: clamp(0.625rem, 0.523rem + 0.33vw, 0.75rem);
}
.price-table td .text li {
  font-size: clamp(0.75rem, 0.648rem + 0.33vw, 0.875rem);
  padding: 0 0 0 0.5rem;
  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;
}
.price-table td .text li:before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 3px;
  height: 3px;
  background-color: #e35c60;
  border-radius: 50%;
}
.price-table td.plan {
  text-align: center;
}
.price-table td.plan p {
  margin: 0 auto;
}
.price-table td.plan p.balloon {
  position: relative;
  margin-top: 1vw;
  padding: 0.5vw 1vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #e35c60;
  color: #fff;
  font-size: clamp(0.625rem, 0.523rem + 0.33vw, 0.75rem);
  border-radius: 5px;
}
.price-table td.plan p.balloon::before {
  content: "";
  position: absolute;
  margin: auto;
  display: block;
  width: 0;
  height: 0;
  left: 0;
  right: 0;
  top: -8px;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #e35c60;
  border-left: 8px solid transparent;
}

.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;
}
.flow-list li.flow-01 {
  background: url("../img/flow-01.png") no-repeat left 16px top 24px;
  background-size: 240px auto;
}
.flow-list li.flow-02 {
  background: url("../img/flow-02.png") no-repeat left 16px top 24px;
  background-size: 240px auto;
}
.flow-list li.flow-03 {
  background: url("../img/flow-03.png") no-repeat left 16px top 24px;
  background-size: 240px auto;
}
.flow-list li.flow-04 {
  background: url("../img/flow-04.png") no-repeat left 16px top 24px;
  background-size: 240px auto;
}
.flow-list li i {
  position: absolute;
  left: 50%;
  bottom: -40px;
  margin-left: -20px;
  font-size: 40px;
  text-align: center;
  z-index: 1;
  color: #ccc;
}
.flow-list li h2,
.flow-list li h3,
.flow-list li h4,
.flow-list li p {
  margin: 1rem 0;
}
.flow-list li:before {
  display: none;
}

.qa-list {
  margin-bottom: 2vw;
  padding: 0 1rem 0 0.5rem;
}
.qa-list:last-child {
  margin-bottom: 0;
}
.qa-list dt {
  margin-bottom: 8px;
  padding-right: 2rem;
  position: relative;
}
.qa-list dt:before {
  content: "Q.";
  margin-right: 0.5vw;
  font-size: clamp(1rem, 0.796rem + 0.65vw, 1.25rem);
  color: #e35c60;
}
.qa-list dt:after {
  content: "+ 開く";
  color: #e35c60;
  position: absolute;
  right: 8px;
  top: 0;
}
.qa-list dt:hover {
  cursor: pointer;
}
.qa-list dd {
  display: none;
  padding: 0.75rem 1rem;
  line-height: 2;
  background: rgba(0, 0, 0, 0.04);
}
.qa-list dd:before {
  content: "A.";
  font-size: clamp(1rem, 0.796rem + 0.65vw, 1.25rem);
  color: #e35c60;
}
.qa-list.active {
  display: block;
}
.qa-list.active dt:after {
  content: "- 閉じる";
  color: #e35c60;
  position: absolute;
  right: 8px;
  top: -2px;
}
.qa-list table tr {
  margin-bottom: 1vw;
}
.qa-list table tr:last-child {
  margin-bottom: 0;
}
.qa-list table tr td {
  padding-bottom: 1vw;
  vertical-align: top;
}
.qa-list table tr td:first-child {
  width: 6rem;
}

@media (max-width: 916px) {
  .price-table td .icon li {
    width: 40%;
  }
  .price-table td .icon li:nth-child(3), .price-table td .icon li:nth-child(4) {
    margin-top: 2vw;
  }
}
@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: min(6vw, 24px);
    color: #e35c60;
    margin-right: 0.25rem;
  }
  .card-lists a:hover {
    background: transparent;
    color: #e35c60;
  }
  .card-lists a:hover .card-content2 .card-title i,
  .card-lists a:hover .card-content2 .card-image i {
    color: #e35c60;
  }
  .card-lists a:hover .card-content2 .card-description {
    color: rgba(85, 85, 85, 0.7);
  }
  .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;
  }
  .flow-list li i {
    position: absolute;
    left: 50%;
    bottom: -40px;
    margin-left: -20px;
    font-size: 40px;
    text-align: center;
    z-index: 1;
    color: #ccc;
  }
  .flow-list li h2, .flow-list li h3, .flow-list li h4, .flow-list li p {
    margin: 1rem 0;
  }
  .flow-list li:before {
    display: none;
  }
  .flow-list li.flow-01 {
    background: url("../img/flow-01.png") no-repeat center top 24px;
    background-size: 240px auto;
  }
  .flow-list li.flow-02 {
    background: url("../img/flow-02.png") no-repeat center top 24px;
    background-size: 240px auto;
  }
  .flow-list li.flow-03 {
    background: url("../img/flow-03.png") no-repeat center top 24px;
    background-size: 240px auto;
  }
  .flow-list li.flow-04 {
    background: url("../img/flow-04.png") no-repeat center top 24px;
    background-size: 240px auto;
  }
  .qa-list dt:after {
    right: -12px;
    font-size: 13px;
  }
  .qa-list.active dt:after {
    right: -12px;
  }
}
@media (max-width: 500px) {
  .price-main ul li {
    font-size: clamp(0.75rem, 0.546rem + 0.65vw, 1rem);
    padding: 0 0 0 1rem;
    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;
  }
  .price-table td:last-child {
    vertical-align: top;
  }
  .price-table td .icon li {
    width: 50%;
  }
  .qa-list table tr td:first-child {
    width: 4rem;
  }
}
.post-detail-content__voice {
  position: relative;
}
.post-detail-content__voice img {
  /* max-width: 90%; */
  /* width: auto; */
  /* height: auto; */
  /* display: block;*/
}
.post-detail-content__thumbnail {
  width: 100%;
  margin: 0 auto 4vw;
}
.post-detail-content__thumbnail img {
  width: 100%;
  margin: 0 auto;
}
.post-detail-content p {
  line-height: 1.75;
  font-size: clamp(0.875rem, 0.773rem + 0.33vw, 1rem);
  margin: 0 auto 3vw;
}
.post-detail-content h2 {
  margin: 0 auto 3vw;
  padding: 1.5vw 2vw;
  width: 100%;
  font-size: clamp(1.125rem, 0.819rem + 0.98vw, 1.5rem);
  color: #fff;
  background: #e35c60;
  line-height: 1.5;
  border-radius: 1vw;
}
.post-detail-content h3 {
  margin: 1vw 0 2vw;
  padding: 1vw 1.5vw;
  border-left: solid #e35c60 1vw;
  border-bottom: 2px solid #e35c60;
  font-size: clamp(1.125rem, 0.819rem + 0.98vw, 1.5rem);
  color: #555;
}
.post-detail-content h4 {
  margin-bottom: 2vw;
  font-size: clamp(1.063rem, 0.909rem + 0.49vw, 1.25rem);
  color: #555;
  padding: 0;
}
.post-detail-content h5 {
  margin-bottom: 1vw;
  font-size: 15px;
}
.post-detail-content :where(figure) {
  margin: 0;
  padding: 0 0 2vw;
}
.post-detail-content ul {
  padding: 8px 0;
  margin: 0 0 2rem;
}
.post-detail-content ul li {
  font-size: 14px;
  padding: 0 0 0 12px;
  line-height: 1.75;
  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;
}
.post-detail-content ul li:before {
  content: "";
  width: 6px;
  height: 1px;
  background: #e35c60;
  display: block;
  position: absolute;
  left: 0;
  top: 0.6rem;
}
.post-detail-content ol {
  margin: 0 auto;
}
.post-detail-content ol li {
  padding: 8px 32px 8px 0;
  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;
}
.post-detail-content ol li:before {
  content: "0" counter(mission) ".";
  font-size: clamp(1rem, 0.796rem + 0.65vw, 1.25rem);
  color: #e35c60;
  margin-right: 0.25rem;
}
.post-detail-content .thumbnail-image img {
  width: auto;
  height: auto;
}
.post-detail-content .about-point-title {
  position: relative;
  margin-top: 5rem;
  padding-left: 160px;
  border: none;
}
.post-detail-content .about-point-title .about-point {
  position: absolute;
  width: 140px;
  left: 0;
  top: -32px;
}
.post-detail-content .about-point-title .about-point img {
  margin: 0;
}
.post-detail-content .about-point-title:after {
  display: none;
}
.post-detail-content input[type=checkbox], .post-detail-content input[type=radio] {
  width: auto !important;
}

.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;
}
.post-detail .post-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 8px 40px;
  border-bottom: 1px solid #e5e5e8;
}
.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;
}
.post-detail .post-thumb img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.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;
}
.post-detail .post-title {
  font-size: 24px;
  line-height: 1.25;
  color: #333;
  padding: 12px 0 20px;
  position: relative;
  font-weight: bold;
}
.post-detail .post-title:after {
  content: "";
  width: 80px;
  height: 4px;
  background: #e35c60;
  position: absolute;
  left: 0;
  bottom: 0;
}
.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;
}
.post-detail .post-meta .posted-date {
  font-size: 14px;
  color: #191930;
  margin-right: 12px;
  opacity: 0.75;
}
.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;
}

@media (max-width: 768px) {
  .post-detail-content ol li {
    font-size: 14px;
    padding: 8px 32px 8px 16px;
    line-height: 1.75;
    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;
  }
  .post-detail-content ol li:before {
    content: "0" counter(mission) ".";
    font-size: 24px;
    line-height: 1;
    color: #e35c60;
    font-weight: normal;
    margin-right: 12px;
  }
  .post-detail-content input[type=checkbox], .post-detail-content input[type=radio] {
    width: auto !important;
  }
  .post-detail-content .agree-box {
    line-height: 1.75;
    text-align: left;
    margin-bottom: 8px;
  }
}
@media (max-width: 500px) {
  .post-detail-content__voice {
    height: 170px;
  }
}
.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: #e35c60;
  -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 > p {
  margin-bottom: 4vw;
}
.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: 25%;
}
.c-contact-form .form-line .form-label:before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #e35c60;
  border-radius: 50%;
}
.c-contact-form .form-line .form-label .required:after {
  margin-left: 4px;
  content: "必 須";
  background: #e35c60;
  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: #e35c60;
  color: #fff;
  padding: 2vw 4vw;
  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;
}

@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: #e35c60;
    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: #e35c60;
    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%;
  }
}
@media (max-width: 500px) {
  .c-contact-form .form-line .form-label {
    width: 55%;
  }
}
.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;
}
.c-footer-pager .pagination ul li:before {
  content: "";
  width: 16px;
  height: 3px;
  background: #e35c60;
  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-left: 2px solid #bfbfc5;
  border-top: 2px solid #bfbfc5;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  display: inline-block;
}

.move,
.move2,
.move3,
.movelist,
.movelist_sp {
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 500ms;
  transition: all 500ms;
  opacity: 0;
}

.animation_do {
  -webkit-transition: all 500ms;
  transition: all 500ms;
  opacity: 1;
}

.move.move-active,
.move2.move-active,
.move3.move-active,
.movelist.move-active,
.movelist_sp.move-active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.move2-later,
.move3-later {
  -webkit-transition: all 500ms;
  transition: all 500ms;
  opacity: 0;
}

.move2-later.move-active,
.move3-later.move-active,
.animation_do.animation_active {
  opacity: 1;
}

/*-- 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: #e35c60;
  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: #e35c60;
}
.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;
  }
}
/*---------------------------------------------------------------------------------------
	Modal Window
----------------------------------------------------------------------------------------*/
.js-modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999999;
}
.js-modal_bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  width: 100%;
}
.js-modal_content {
  background: #fff;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 5px;
  width: 80%;
}
.js-modal_content_inner {
  position: relative;
  padding: 2vw 1.75vw 2vw 2vw;
  text-align: left;
}
.js-modal_content_inner__div {
  height: 70%;
  max-height: 800px;
  height: 100%;
  overflow-y: scroll;
  padding-right: 0.25vw;
}
.js-modal_content_inner__div img {
  margin: 0 auto;
}
.js-modal_close {
  position: absolute;
  top: -25px;
  right: -25px;
}

@media (max-width: 500px) {
  .js-modal_content._sm {
    width: 40%;
  }
  .js-modal_content._md {
    width: 60%;
  }
  .js-modal_content._lg {
    width: 80%;
  }
}
.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(227, 92, 96, 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(227, 92, 96, 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: #e35c60;
}
.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: #e35c60;
  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: #e35c60;
  font-size: 20px;
  font-weight: bold;
}
.section-block_content__text h4 span {
  display: inline-block;
  margin-right: 10px;
  padding: 6px 10px;
  color: #fff;
  background: #e35c60;
}
.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 #e35c60;
  padding: 18px 24px 18px 16px;
  min-width: 240px;
  color: #e35c60;
  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 #e35c60;
  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: #e35c60;
  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: #e35c60;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, rgba(227, 92, 96, 0.5)));
  background: linear-gradient(transparent 70%, rgba(227, 92, 96, 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: #e35c60;
}
.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: #e35c60;
    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;
  }
}/*# sourceMappingURL=style.css.map */