@charset "UTF-8";
/*
  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 {
  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;
  touch-action: manipulation;
}

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

: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 {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline-offset: 5px;
}

/* ユーザーがボタンのテキストを選択できないようにする */
: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;
}

/*-- settingフォルダの中の_index.scss --*/ /*-- mixinフォルダの中の_index.scss --*/ /*-- globalフォルダの直下の_index.scss --*/
/*404*/
section#error404 {
  grid-column: 1/4;
  text-align: center;
}
section#error404 p:first-child {
  margin: 30px 0;
  font-size: 52px;
  font-weight: bold;
  text-shadow: 5px 5px 2px #EDEDED;
}

@media screen and (min-width: 768px) {
  .fadein {
    opacity: 0;
    transform: translate(0, 100px);
    transition: all 1000ms;
  }
  .fadein01 {
    opacity: 0;
    transform: translate(0, 0);
    transition: all 3000ms;
  }
  .fadein02 {
    opacity: 0;
    transform: translate(-100px, 0);
    transition: all 1000ms;
  }
  .fadein03 {
    opacity: 0.1;
    transform: translate(0, 0);
    transition: all 1000ms;
  }
  .fadein04 {
    opacity: 0.1;
    transform: translate(100px, 0);
    transition: all 1000ms;
  }
  .fadein05 {
    opacity: 0;
    transform: translate(100px, 0);
    transition: all 1000ms;
  }
  /* 画面内に入った状態 */
  .fadein.scrollin,
  .fadein02.scrollin,
  .fadein03.scrollin,
  .fadein04.scrollin,
  .fadein05.scrollin {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.p-top-functions .p-title-primary,
.p-top-comparison .p-title-primary {
  margin-bottom: 30px;
}

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  /*color: #333;*/
}

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  font-size: clamp(0.75rem, 0.511rem + 0.76vw, 1rem);
}

html[lang=ja] {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

html {
  box-sizing: border-box;
}

/**, 
*:before, 
*:after {
    box-sizing: inherit;
}*/
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  vertical-align: baseline;
  background: transparent;
}

a {
  color: #1F1F1F;
  text-decoration: none;
  transition: all 0.2s;
}

a:hover {
  opacity: 0.7;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #f3eeee;
  margin: 15px 0;
  padding: 0;
}

/*
 input, select {
vertical-align: middle; }
 */
/* Font-size */
/* Font-family*/
/* color */
/* padding */
.p0 {
  padding: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.p5 {
  padding: 5px;
}

.pt5 {
  padding-top: 5px;
}

.pl5 {
  padding-left: 5px;
}

.pr5 {
  padding-right: 5px;
}

.pb5 {
  padding-bottom: 5px;
}

.p10 {
  padding: 10px;
}

.pt10 {
  padding-top: 10px;
}

.pl10 {
  padding-left: 10px;
}

.pr10 {
  padding-right: 10px;
}

.pb10 {
  padding-bottom: 10px;
}

.p15 {
  padding: 15px;
}

.pt15 {
  padding-top: 15px;
}

.pl15 {
  padding-left: 15px;
}

.pr15 {
  padding-right: 15px;
}

.pb15 {
  padding-bottom: 15px;
}

.p20 {
  padding: 20px;
}

.pt20 {
  padding-top: 20px;
}

.pl20 {
  padding-left: 20px;
}

.pr20 {
  padding-right: 20px;
}

.pb20 {
  padding-bottom: 20px;
}

.p25 {
  padding: 25px;
}

.pt25 {
  padding-top: 25px;
}

.pl25 {
  padding-left: 25px;
}

.pr25 {
  padding-right: 25px;
}

.pb25 {
  padding-bottom: 25px;
}

.p30 {
  padding: 30px;
}

.pt30 {
  padding-top: 30px;
}

.pl30 {
  padding-left: 30px;
}

.pr30 {
  padding-right: 30px;
}

.pb30 {
  padding-bottom: 30px;
}

.p35 {
  padding: 35px;
}

.pt35 {
  padding-top: 35px;
}

.pl35 {
  padding-left: 35px;
}

.pr35 {
  padding-right: 35px;
}

.pb35 {
  padding-bottom: 35px;
}

.p40 {
  padding: 40px;
}

.pt40 {
  padding-top: 40px;
}

.pl40 {
  padding-left: 40px;
}

.pr40 {
  padding-right: 40px;
}

.pb40 {
  padding-bottom: 40px;
}

.p45 {
  padding: 45px;
}

.pt45 {
  padding-top: 45px;
}

.pl45 {
  padding-left: 45px;
}

.pr45 {
  padding-right: 45px;
}

.pb45 {
  padding-bottom: 45px;
}

.p50 {
  padding: 50px;
}

.pt50 {
  padding-top: 50px;
}

.pl50 {
  padding-left: 50px;
}

.pr50 {
  padding-right: 50px;
}

.pb50 {
  padding-bottom: 50px;
}

.p60 {
  padding: 60px;
}

.pt60 {
  padding-top: 60px;
}

.pl60 {
  padding-left: 60px;
}

.pr60 {
  padding-right: 60px;
}

.pb60 {
  padding-bottom: 60px;
}

.p70 {
  padding: 70px;
}

.pt70 {
  padding-top: 70px;
}

.pl70 {
  padding-left: 70px;
}

.pr70 {
  padding-right: 70px;
}

.pb70 {
  padding-bottom: 70px;
}

.p80 {
  padding: 80px;
}

.pt80 {
  padding-top: 80px;
}

.pl80 {
  padding-left: 80px;
}

.pr80 {
  padding-right: 80px;
}

.pb80 {
  padding-bottom: 80px;
}

.p90 {
  padding: 90px;
}

.pt90 {
  padding-top: 90px;
}

.pl90 {
  padding-left: 90px;
}

.pr90 {
  padding-right: 90px;
}

.pb90 {
  padding-bottom: 90px;
}

.p100 {
  padding: 100px;
}

.pt100 {
  padding-top: 100px;
}

.pl100 {
  padding-left: 100px;
}

.pr100 {
  padding-right: 100px;
}

.pb100 {
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .p10 {
    padding: 5px;
  }
  .pt10 {
    padding-top: 5px;
  }
  .pl10 {
    padding-left: 5px;
  }
  .pr10 {
    padding-right: 5px;
  }
  .pb10 {
    padding-bottom: 5px;
  }
  .p20 {
    padding: 10px;
  }
  .pt20 {
    padding-top: 10px;
  }
  .pl20 {
    padding-left: 10px;
  }
  .pr20 {
    padding-right: 10px;
  }
  .pb20 {
    padding-bottom: 10px;
  }
  .p30 {
    padding: 15px;
  }
  .pt30 {
    padding-top: 15px;
  }
  .pl30 {
    padding-left: 15px;
  }
  .pr30 {
    padding-right: 15px;
  }
  .pb30 {
    padding-bottom: 15px;
  }
  .p40 {
    padding: 20px;
  }
  .pt40 {
    padding-top: 20px;
  }
  .pl40 {
    padding-left: 20px;
  }
  .pr40 {
    padding-right: 20px;
  }
  .pb40 {
    padding-bottom: 20px;
  }
  .p50 {
    padding: 25px;
  }
  .pt50 {
    padding-top: 25px;
  }
  .pl50 {
    padding-left: 25px;
  }
  .pr50 {
    padding-right: 25px;
  }
  .pb50 {
    padding-bottom: 25px;
  }
  .p60 {
    padding: 30px;
  }
  .pt60 {
    padding-top: 30px;
  }
  .pl60 {
    padding-left: 30px;
  }
  .pr60 {
    padding-right: 30px;
  }
  .pb60 {
    padding-bottom: 30px;
  }
  .p70 {
    padding: 35px;
  }
  .pt70 {
    padding-top: 35px;
  }
  .pl70 {
    padding-left: 35px;
  }
  .pr70 {
    padding-right: 35px;
  }
  .pb70 {
    padding-bottom: 35px;
  }
  .p80 {
    padding: 40px;
  }
  .pt80 {
    padding-top: 40px;
  }
  .pl80 {
    padding-left: 40px;
  }
  .pr80 {
    padding-right: 40px;
  }
  .pb80 {
    padding-bottom: 40px;
  }
  .p90 {
    padding: 45px;
  }
  .pt90 {
    padding-top: 45px;
  }
  .pl90 {
    padding-left: 45px;
  }
  .pr90 {
    padding-right: 45px;
  }
  .pb90 {
    padding-bottom: 45px;
  }
  .p100 {
    padding: 50px;
  }
  .pt100 {
    padding-top: 50px;
  }
  .pl100 {
    padding-left: 50px;
  }
  .pr100 {
    padding-right: 50px;
  }
  .pb100 {
    padding-bottom: 50px;
  }
}
/* margin */
.m0 {
  margin: 0px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.m5 {
  margin: 5px;
}

.mt5 {
  margin-top: 5px;
}

.ml5 {
  margin-left: 5px;
}

.mr5 {
  margin-right: 5px;
}

.mb5 {
  margin-bottom: 5px;
}

.m10 {
  margin: 10px;
}

.mt10 {
  margin-top: 10px;
}

.ml10 {
  margin-left: 10px;
}

.mr10 {
  margin-right: 10px;
}

.mb10 {
  margin-bottom: 10px;
}

.m15 {
  margin: 15px;
}

.mt15 {
  margin-top: 15px;
}

.ml15 {
  margin-left: 15px;
}

.mr15 {
  margin-right: 15px;
}

.mb15 {
  margin-bottom: 15px;
}

.m20 {
  margin: 20px;
}

.mt20 {
  margin-top: 20px;
}

.ml20 {
  margin-left: 20px;
}

.mr20 {
  margin-right: 20px;
}

.mb20 {
  margin-bottom: 20px;
}

.m25 {
  margin: 25px;
}

.mt25 {
  margin-top: 25px;
}

.ml25 {
  margin-left: 25px;
}

.mr25 {
  margin-right: 25px;
}

.mb25 {
  margin-bottom: 25px;
}

.m30 {
  margin: 30px;
}

.mt30 {
  margin-top: 30px;
}

.ml30 {
  margin-left: 30px;
}

.mr30 {
  margin-right: 30px;
}

.mb30 {
  margin-bottom: 30px;
}

.m35 {
  margin: 35px;
}

.mt35 {
  margin-top: 35px;
}

.ml35 {
  margin-left: 35px;
}

.mr35 {
  margin-right: 35px;
}

.mb35 {
  margin-bottom: 35px;
}

.m40 {
  margin: 40px;
}

.mt40 {
  margin-top: 40px;
}

.ml40 {
  margin-left: 40px;
}

.mr40 {
  margin-right: 40px;
}

.mb40 {
  margin-bottom: 40px;
}

.m45 {
  margin: 45px;
}

.mt45 {
  margin-top: 45px;
}

.ml45 {
  margin-left: 45px;
}

.mr45 {
  margin-right: 45px;
}

.mb45 {
  margin-bottom: 45px;
}

.m50 {
  margin: 50px;
}

.mt50 {
  margin-top: 50px;
}

.ml50 {
  margin-left: 50px;
}

.mr50 {
  margin-right: 50px;
}

.mb50 {
  margin-bottom: 50px;
}

.m60 {
  margin: 60px;
}

.mt60 {
  margin-top: 60px;
}

.ml60 {
  margin-left: 60px;
}

.mr60 {
  margin-right: 60px;
}

.mb60 {
  margin-bottom: 60px;
}

.m70 {
  margin: 70px;
}

.mt70 {
  margin-top: 70px;
}

.ml70 {
  margin-left: 70px;
}

.mr70 {
  margin-right: 70px;
}

.mb70 {
  margin-bottom: 70px;
}

.m80 {
  margin: 80px;
}

.mt80 {
  margin-top: 80px;
}

.ml80 {
  margin-left: 80px;
}

.mr80 {
  margin-right: 80px;
}

.mb80 {
  margin-bottom: 80px;
}

.m90 {
  margin: 90px;
}

.mt90 {
  margin-top: 90px;
}

.ml90 {
  margin-left: 90px;
}

.mr90 {
  margin-right: 90px;
}

.mb90 {
  margin-bottom: 90px;
}

.m100 {
  margin: 100px;
}

.mt100 {
  margin-top: 100px;
}

.ml100 {
  margin-left: 100px;
}

.mr100 {
  margin-right: 100px;
}

.mb100 {
  margin-bottom: 100px;
}

@media screen and (max-width: 768px) {
  .m10 {
    margin: 5px;
  }
  .mt10 {
    margin-top: 5px;
  }
  .ml10 {
    margin-left: 5px;
  }
  .mr10 {
    margin-right: 5px;
  }
  .mb10 {
    margin-bottom: 5px;
  }
  .m20 {
    margin: 10px;
  }
  .mt20 {
    margin-top: 10px;
  }
  .ml20 {
    margin-left: 10px;
  }
  .mr20 {
    margin-right: 10px;
  }
  .mb20 {
    margin-bottom: 10px;
  }
  .m30 {
    margin: 15px;
  }
  .mt30 {
    margin-top: 15px;
  }
  .ml30 {
    margin-left: 15px;
  }
  .mr30 {
    margin-right: 15px;
  }
  .mb30 {
    margin-bottom: 15px;
  }
  .m40 {
    margin: 20px;
  }
  .mt40 {
    margin-top: 20px;
  }
  .ml40 {
    margin-left: 20px;
  }
  .mr40 {
    margin-right: 20px;
  }
  .mb40 {
    margin-bottom: 20px;
  }
  .m50 {
    margin: 25px;
  }
  .mt50 {
    margin-top: 25px;
  }
  .ml50 {
    margin-left: 25px;
  }
  .mr50 {
    margin-right: 25px;
  }
  .mb50 {
    margin-bottom: 25px;
  }
  .m60 {
    margin: 30px;
  }
  .mt60 {
    margin-top: 30px;
  }
  .ml60 {
    margin-left: 30px;
  }
  .mr60 {
    margin-right: 30px;
  }
  .mb60 {
    margin-bottom: 30px;
  }
  .m70 {
    margin: 35px;
  }
  .mt70 {
    margin-top: 35px;
  }
  .ml70 {
    margin-left: 35px;
  }
  .mr70 {
    margin-right: 35px;
  }
  .mb70 {
    margin-bottom: 35px;
  }
  .m80 {
    margin: 40px;
  }
  .mt80 {
    margin-top: 40px;
  }
  .ml80 {
    margin-left: 40px;
  }
  .mr80 {
    margin-right: 40px;
  }
  .mb80 {
    margin-bottom: 40px;
  }
  .m90 {
    margin: 45px;
  }
  .mt90 {
    margin-top: 45px;
  }
  .ml90 {
    margin-left: 45px;
  }
  .mr90 {
    margin-right: 45px;
  }
  .mb90 {
    margin-bottom: 45px;
  }
  .m100 {
    margin: 50px;
  }
  .mt100 {
    margin-top: 50px;
  }
  .ml100 {
    margin-left: 50px;
  }
  .mr100 {
    margin-right: 50px;
  }
  .mb100 {
    margin-bottom: 50px;
  }
}
/*-- foundation(基本設定)フォルダの中の_index.scss --*/
/* button
-------------------------------------------------- */
a.btn_blue {
  background-color: #009bff;
  padding: 12px 24px;
  border-radius: 30px;
  color: #FFF;
}
a.btn_orange {
  background: #ff9933;
  padding: 12px 24px;
  border-radius: 30px;
  color: #FFF;
}

/* button
-------------------------------------------------- */
.tel::before {
  content: ""; /*何も入れない*/
  display: inline-block; /*忘れずに！*/
  width: 15px; /*画像の幅*/
  height: 20px; /*画像の高さ*/
  background-image: url("../images/icon-tel.svg");
  background-size: contain;
  vertical-align: middle;
  margin-right: 0.25rem;
}

@media screen and (max-width: 768px) {
  a.btn_blue {
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 6vw;
  }
  a.btn_orange {
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 6vw;
  }
}
@media screen and (max-width: 375px) {
  a.btn_blue {
    background-color: #009bff;
    padding: 1vw 2vw;
    border-radius: 30px;
    color: #FFF;
  }
  a.btn_orange {
    background: #ff9933;
    padding: 1vw 2vw;
    border-radius: 30px;
    color: #FFF;
  }
}
.table_layout {
  border-collapse: separate;
  border-spacing: 5px;
  width: 100%;
}
.table_layout th, .table_layout td {
  border-radius: 5px;
  text-align: center;
  padding: 2vw;
}
.table_layout th {
  background-color: #225B95;
  color: white;
}
.table_layout td {
  background-color: rgba(34, 91, 149, 0.2);
}
.table_layout td.pbx_bg {
  background-color: #225B95;
  color: #fff;
}
.table_layout.row2 th, .table_layout.row2 td {
  width: 50%;
  font-size: clamp(0.75rem, 0.68rem + 0.3vw, 1rem);
  vertical-align: middle;
}
.table_layout.row3 th, .table_layout.row3 td {
  width: 33%;
  font-size: clamp(0.875rem, 0.818rem + 0.24vw, 1rem);
  vertical-align: middle;
}

.icon-circle_cross_triangle {
  margin: 0 auto;
  width: 5vw;
}

.svg {
  display: none; /* 余白を消す */
}

.icon-blue-true, .icon-blue-false,
.icon-wht-true,
.icon-wht-false {
  width: 100%;
  height: auto;
}

.icon-blue-true {
  fill: #225B95; /* webkit */
  stroke: none;
}
.icon-blue-true .svg-icon1-0 {
  fill: #225B95;
}
.icon-blue-true .svg-icon1-1 {
  fill: #225B95;
}
.icon-blue-true .svg-icon2-1 {
  fill: #225B95;
}
.icon-blue-false {
  fill: #cfd6e9; /* webkit */
}
.icon-blue-false .svg-icon1-0,
.icon-blue-false .svg-icon1-1,
.icon-blue-false .svg-icon2-1 {
  fill: #cfd6e9;
}

.icon-wht-true {
  fill: #fff; /* webkit */
  stroke: none;
}
.icon-wht-true .svg-icon3-1 {
  fill: #fff;
}
.icon-wht-false {
  fill: #cfd6e9; /* webkit */
}
.icon-wht-false .svg-icon3-1 {
  fill: #cfd6e9;
}

/*-- componentフォルダの中の_index.scss --*/
/*drop down menu*/
.nav {
  /*margin: 0 auto;*/
  text-align: center;
  font-size: 14px;
}

.nav-items {
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-items .nav-item {
  display: inline-block;
  margin-right: 1em;
  /*&:nth-child(4) a {
  	background: $base_color_sb;
  	padding: 10px 20px;
  	border-radius: 20px;
  	color: #FFFFFF;

  	&:hover {
  		background-color: #286CB0;
  	}
  }
  &:nth-child(5) a {
  	background: $base_color_o;
  	padding: 10px 20px;
  	border-radius: 20px;
  	color: #FFFFFF;

  	&:hover {
  		background-color: #286CB0;
  	}
  }*/
}
.nav-items .nav-item:nth-child(1) .nav-link,
.nav-items .nav-item:nth-child(1) .nav-link:link,
.nav-items .nav-item:nth-child(1) .nav-link:visited,
.nav-items .nav-item:nth-child(1) .nav-link:active,
.nav-items .nav-item:nth-child(1) .submenu-link,
.nav-items .nav-item:nth-child(1) .submenu-link:link,
.nav-items .nav-item:nth-child(1) .submenu-link:visited,
.nav-items .nav-item:nth-child(1) .submenu-link:active, .nav-items .nav-item:nth-child(2) .nav-link,
.nav-items .nav-item:nth-child(2) .nav-link:link,
.nav-items .nav-item:nth-child(2) .nav-link:visited,
.nav-items .nav-item:nth-child(2) .nav-link:active,
.nav-items .nav-item:nth-child(2) .submenu-link,
.nav-items .nav-item:nth-child(2) .submenu-link:link,
.nav-items .nav-item:nth-child(2) .submenu-link:visited,
.nav-items .nav-item:nth-child(2) .submenu-link:active, .nav-items .nav-item:nth-child(3) .nav-link,
.nav-items .nav-item:nth-child(3) .nav-link:link,
.nav-items .nav-item:nth-child(3) .nav-link:visited,
.nav-items .nav-item:nth-child(3) .nav-link:active,
.nav-items .nav-item:nth-child(3) .submenu-link,
.nav-items .nav-item:nth-child(3) .submenu-link:link,
.nav-items .nav-item:nth-child(3) .submenu-link:visited,
.nav-items .nav-item:nth-child(3) .submenu-link:active {
  display: block;
  position: relative;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  outline: none;
}
.nav-items .nav-item:nth-child(1) .nav-link::before, .nav-items .nav-item:nth-child(2) .nav-link::before, .nav-items .nav-item:nth-child(3) .nav-link::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 3px;
  background: #009bff;
  opacity: 0;
  transform: translate(0, 10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.nav-items .nav-item:nth-child(1) .nav-link:hover::before, .nav-items .nav-item:nth-child(2) .nav-link:hover::before, .nav-items .nav-item:nth-child(3) .nav-link:hover::before {
  opacity: 1;
  transform: translate(0, 5px);
}
.nav-items .nav-item:last-child {
  margin-right: 0;
}

.dropdown {
  position: relative;
}
.dropdown .nav-link {
  padding-right: 15px;
}
.dropdown .nav-link::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  border: 5px solid transparent;
  border-top-color: #000;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 100;
  width: 200px;
  margin-left: -100px;
  background: #fff;
  border-radius: 3px;
  line-height: 1.46667;
  margin-top: -5px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translate(0, 0) scale(0.85);
  transition: transform 0.1s ease-out, opacity 0.1s ease-out;
  pointer-events: none;
}
.submenu::after, .submenu::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  height: 0;
}
.submenu::after {
  border-bottom-color: #fff;
}
.submenu::before {
  margin-left: -13px;
  border: 13px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.1);
  filter: blur(1px);
}
.submenu .submenu-items {
  list-style: none;
  padding: 10px 0;
}
.submenu .submenu-items .submenu-item {
  display: block;
  text-align: left;
}
.submenu .submenu-items .submenu-item .submenu-link,
.submenu .submenu-items .submenu-item .submenu-link:link,
.submenu .submenu-items .submenu-item .submenu-link:visited,
.submenu .submenu-items .submenu-item .submenu-link:active {
  color: #3498db;
  padding: 10px 20px;
}
.submenu .submenu-items .submenu-item .submenu-link:hover {
  text-decoration: underline;
}

.submenu-seperator {
  height: 0;
  margin: 12px 10px;
  border-top: 1px solid #eee;
}

.show-submenu .submenu {
  opacity: 1;
  transform: translate(0, 25px) scale(1);
  pointer-events: auto;
}

@media screen and (max-width: 1023px) {
  header .nav {
    width: auto;
  }
  header .nav-items {
    display: none;
  }
}
.js-mv-show {
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  -webkit-transform: translateY(10px);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s, transform 1s;
}
.js-mv-show.is-show {
  -webkit-transform: translateY(0);
  opacity: 1;
  transform: translateY(0);
}
.js-mv-show.is-show:nth-of-type(2) {
  transition-delay: 0.25s;
}
.js-mv-show.is-show:nth-of-type(3) {
  -webkit-transform: translate(-40px, 0);
  -webkit-transition-delay: 0.5s;
  transform: translate(-40px, 0);
  transition-delay: 0.5s;
}
.js-mv-show:nth-of-type(1) {
  transform: translateY(0);
}
.js-mv-show:nth-of-type(3) {
  transform: translate(-40px, 10px);
}

.js-show {
  -webkit-transition: opacity 0.3s 0.5s, -webkit-transform 0.3s 0.5s;
  -webkit-transform: translateY(10px);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s 0.5s, transform 0.3s 0.5s;
}
.js-show.is-show {
  -webkit-transform: translateY(0);
  opacity: 1;
  transform: translateY(0);
}
.js-show-op {
  -webkit-transition: opacity 0.5s 0.5s;
  opacity: 0;
  transition: opacity 0.5s 0.5s;
}
.js-show-op.is-show {
  opacity: 1;
}
.js-show-list {
  -webkit-transition: opacity 0.8s;
  opacity: 0;
  transition: opacity 0.8s;
}
.js-show-list.is-show {
  opacity: 1;
}
.js-show-list.is-show:nth-of-type(2) {
  transition-delay: 0.1s;
}
.js-show-list.is-show:nth-of-type(3) {
  transition-delay: 0.2s;
}
.js-show-list.is-show:nth-of-type(4) {
  transition-delay: 0.3s;
}
.js-show-list.is-show:nth-of-type(5) {
  transition-delay: 0.4s;
}
.js-show-list.is-show:nth-of-type(6) {
  transition-delay: 0.5s;
}
.js-show-list.is-show:nth-of-type(7) {
  transition-delay: 0.6s;
}
.js-show-list.is-show:nth-of-type(8) {
  transition-delay: 0.7s;
}
.js-show-list.is-show:nth-of-type(9) {
  transition-delay: 0.8s;
}
.js-show-list.is-show:nth-of-type(10) {
  transition-delay: 0.9s;
}

/*-- layoutフォルダの中の_index.scss --*/
header {
  width: 100%;
  height: 65px;
  background: #fff;
  position: fixed;
  z-index: 999;
  /*.menu {
  	display: flex;
  	justify-content: space-between;
  	align-items: center;
  	width: 600px;
  }

  .menu__item {
  	position: relative;
  	display:inline-block;
  	a {
  		display: block;
  		//font-family: "Oxygen", sans-serif;
  		color: #333;
  		font-size: 14px;
  		&:hover {
  			color: $base_color_b;
  		}
  	}
  	&:nth-child(3) a {
  		font-size: 16px;
  		&::before{
  			content: '';
  			display: inline-block;
  			width: 20px;
  			height: 20px;
  			background-image: url("../images/icon-tel.svg");
  			background-size: contain;
  			vertical-align: middle;
  		}
  	}
  	&:nth-child(4) a {
  		background: $base_color_sb;
  		padding: 10px 20px;
  		border-radius: 20px;
  		color: #FFFFFF;

  		&:hover {
  			background-color: #286CB0;
  		}
  	}
  	&:nth-child(5) a {
  		background: $base_color_o;
  		padding: 10px 20px;
  		border-radius: 20px;
  		color: #FFFFFF;

  		&:hover {
  			background-color: #286CB0;
  		}
  	}
  	ul{
  		display:none;
  	}
  	&:hover ul {
  		display:block;
  		position:absolute;
  		padding:0;
  		margin:0;
  		top:1.5em;
  		left:0;
  		list-style-type:none;
  		border:1px solid gray;
  		background: #fff;
  	}
  }*/
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 2%;
}
header h1 {
  width: 170px;
}
header h1 img {
  width: 100%;
}

/*Hamburger menu*/
#menuToggle {
  display: none;
  position: relative;
  top: 0px;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}
#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  /* hide this */
  z-index: 2;
  /* and place it over the hamburger */
  -webkit-touch-callout: none;
}
#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #225B95;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}
#menuToggle span:first-child {
  transform-origin: 0% 0%;
}
#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}
#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #225B95;
}
#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

#menu {
  position: absolute;
  width: 300px;
  background: #225B95;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  transform-origin: 0% 0%;
  transform: translate(65%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}
#menu li {
  padding: 15px;
  color: #fff;
  border-bottom: 1px solid #286DB3;
}
#menu li:hover {
  background-color: #d1e1f1;
  color: #225B95;
}
#menu li:nth-last-child {
  border-bottom: 0px solid #286DB3;
}

#menuToggle input:checked ~ ul {
  transform: translate(-80%, 0);
}

.fixed-cta {
  position: fixed;
  left: 0;
  top: 33%;
  z-index: 100;
  width: 40px;
}
.fixed-cta a {
  display: block;
  padding: 16px 8px 16px 6px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  line-height: 1.2;
  border-radius: 0 0 12px 0px;
  background: #ff9933;
}
.fixed-cta a:first-child {
  border-radius: 0 12px 0 0px;
  border-bottom: 1px solid #eee;
}

@media screen and (max-width: 1023px) {
  header .container {
    height: 65px;
    padding: 15px;
  }
}
@media (max-width: 768px) {
  header .menu {
    display: none;
  }
  header .container {
    padding: 0px 15px;
  }
  header .container h1 img {
    width: 250px;
  }
  header #menuToggle {
    display: block;
  }
  .fixed-cta {
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    top: auto;
    left: 0;
    bottom: 0;
    z-index: 10000;
    width: 100%;
  }
  .fixed-cta a {
    display: block;
    padding: 0;
    height: 50px;
    line-height: 50px;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 0;
    background: #ff9933;
    width: 50%;
  }
  .fixed-cta a:first-child {
    border-radius: 0;
    border-right: 1px solid #eee;
  }
}
@media screen and (max-width: 320px) {
  header .container {
    height: 65px;
  }
  header .container h1 img {
    width: 225px;
  }
}
.wrapper {
  padding-top: 65px;
}
@media screen and (max-width: 1024px) {
  .wrapper {
    padding-top: 65px;
  }
}
@media screen and (max-width: 768px) {
  .wrapper {
    padding-top: 64px;
  }
}
@media screen and (max-width: 500px) {
  .wrapper {
    padding-top: 64px;
  }
}
@media screen and (max-width: 320px) {
  .wrapper {
    padding-top: 64px;
  }
}
.wrapper .inner {
  margin: 0 auto;
  margin-inline: auto;
  width: min(100% - 80px, 1200px);
}

.u-lower-pages {
  padding-top: 65px;
}
@media screen and (max-width: 1024px) {
  .u-lower-pages {
    padding-top: 65px;
  }
}
@media screen and (max-width: 768px) {
  .u-lower-pages {
    padding-top: 40px;
  }
}
@media screen and (max-width: 500px) {
  .u-lower-pages {
    padding-top: 30px;
  }
}

.p-title-color {
  position: relative;
}
.p-title-color::before {
  background-color: rgba(122, 203, 255, 0.4);
  content: "";
  display: block;
  height: 204px;
  left: 0;
  position: absolute;
  top: -65px;
  width: 100%;
}
.p-title-color .p-title-primary {
  margin-bottom: 0;
  font-weight: bold;
  padding-top: 12px;
  position: relative;
  text-align: center;
}
.p-title-color__inner {
  background: url("../images/bg_title.jpg") center center/cover;
  border-radius: 20px;
  padding: 60px 0 80px;
  position: relative;
}

.main {
  display: flex;
  align-items: center;
  margin-top: 65px;
  background: url("../images/main.png") no-repeat left center/cover;
  height: calc(100vh - 65px);
  margin-bottom: 6vw;
}
.main__catch {
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  line-height: 1.6;
}
.main__catch--01 {
  font-size: clamp(1.25rem, 0.682rem + 2.84vw, 2.5rem);
  font-weight: bold;
}
.main__catch--02 {
  font-size: 20px;
  padding-top: 30px;
}

.container {
  margin: 0 auto;
}

.p-page-functions__body {
  margin-top: 160px;
}
.p-page-functions__list {
  margin-top: 40px;
}

.p-title-primary__en {
  display: block;
  font-size: clamp(0.875rem, 0.818rem + 0.24vw, 1rem);
}

.p-title-primary--l .p-title-primary__en {
  color: #fff;
}

.p-title-primary__ja {
  display: block;
  font-size: clamp(1.25rem, 0.682rem + 2.42vw, 2.5rem);
  margin-top: 10px;
}

.p-title-primary--l .p-title-primary__ja {
  color: #fff;
}

.p-title-primary__lead {
  text-align: center;
}

.p-title-primary__wrap {
  background: red;
}

.p-top-functions .p-title-primary,
.p-top-comparison .p-title-primary {
  margin-bottom: 30px;
}

.p-title-secondary {
  text-align: center;
}
.p-title-secondary__title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 60px;
}
.p-title-secondary__lead {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.8;
}

.box-title {
  text-align: center;
  margin-bottom: 6vw;
}
.box-title > h2 {
  position: relative;
  font-size: clamp(1.25rem, 0.966rem + 1.21vw, 1.875rem);
  line-height: 1.5;
}
.box-title > h2::before, .box-title > h2::after {
  content: "";
  display: block;
  width: 22.5px;
  height: 4px;
  background-color: #009bff;
  position: absolute;
  bottom: -24px;
}
.box-title > h2::before {
  left: 50%;
}
.box-title > h2::after {
  right: 50%;
}
.box-title > h2.company {
  color: #fff;
}
.box-title > h3 {
  position: relative;
  font-size: clamp(1.25rem, 0.966rem + 1.21vw, 1.875rem);
  line-height: 1.5;
}
.box-title > h3::before, .box-title > h3::after {
  content: "";
  display: block;
  width: 22.5px;
  height: 4px;
  background-color: #009bff;
  position: absolute;
  bottom: -24px;
}
.box-title > h3::before {
  left: 50%;
}
.box-title > h3::after {
  right: 50%;
}
.box-title > h3.company {
  color: #fff;
}

.l-inner {
  margin: 0 auto;
  margin-inline: auto;
  width: min(100% - 80px, 1200px);
}
.l-inner-md {
  margin: 0 auto;
  margin-inline: auto;
  width: min(100% - 80px, 1024px);
}
.l-inner-s {
  margin: 0 auto;
  margin-inline: auto;
  width: min(100% - 80px, 846px);
}

.section-title,
#company .company h2,
#recruit > div h2,
article section:first-child .title h2 {
  font-size: 32px;
  font-family: "Oxygen", sans-serif;
  font-weight: bold;
  text-align: center;
  color: #225B95;
}

.section-sub,
#product1 .product1__info h3,
#product2 .product2__info h3,
#product3 .product3__info h3,
#product4 .product4__info h3,
#product5 .product5__info h3,
#vision h2,
#name .name__info h2,
#boss > div h3,
#access h2,
article section:nth-child(2) .desc h3 {
  font-size: clamp(1.25rem, 1.136rem + 0.48vw, 1.5rem);
  font-weight: bold;
}

.section-sub02,
#product1 .product1__info p,
#product2 .product2__info p,
#product4 .product4__info p {
  line-height: 2;
  padding: 3vw 0;
  box-sizing: border-box;
}

#product3 .product3__info p,
#product5 .product5__info p {
  line-height: 2;
  padding: 3vw 0;
  box-sizing: border-box;
  /*a {
  	margin-top: 20px;
  	display: block;
  	font-weight: bold;
  	font-size: 18px;
  	color: #ffa200;

  	&:hover {
  		color: rgba(255, 162, 0, 0.75);
  	}
  }*/
}

#product1,
#product2,
#product3,
#product4,
#product5 {
  padding: 0 0 12vw 0;
  box-sizing: border-box;
  overflow: hidden;
}

.product1,
.product2,
.product3,
.product4,
.product5 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.product1__info,
.product2__info,
.product3__info,
.product4__info,
.product5__info {
  width: 50%;
  display: flex;
}
.product1__info .num,
.product2__info .num,
.product3__info .num,
.product4__info .num,
.product5__info .num {
  font-size: clamp(1.25rem, 1.136rem + 0.48vw, 1.5rem);
  color: #225B95;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
}
.product1__info .num::after,
.product2__info .num::after,
.product3__info .num::after,
.product4__info .num::after,
.product5__info .num::after {
  content: "";
  display: block;
  width: 150px;
  height: 2px;
  background-color: #225B95;
  position: absolute;
  top: 50%;
  left: 120%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.product1__img,
.product2__img,
.product3__img,
.product4__img,
.product5__img {
  width: 50%;
}

.product1 p:last-child {
  margin: 0;
  padding: 0;
}

.product1,
.product3,
.product5 {
  flex-direction: row-reverse;
}
.product1__info,
.product3__info,
.product5__info {
  margin-left: 6vw;
}
.product1__img,
.product3__img,
.product5__img {
  text-align: right;
  position: relative;
}
.product1__img::after,
.product3__img::after,
.product5__img::after {
  content: "";
  width: 95%;
  height: 100%;
  background: rgba(122, 203, 255, 0.4);
  position: absolute;
  left: 0;
  top: 10%;
  z-index: -2;
  border-radius: 0 1vw 1vw 0;
}
.product1__img img,
.product3__img img,
.product5__img img {
  margin: 0 0 0 auto;
}

.product2__info,
.product4__info {
  margin-right: 75px;
  justify-content: flex-end;
}
.product2__img,
.product4__img {
  position: relative;
}
.product2__img::after,
.product4__img::after {
  content: "";
  width: 95%;
  height: 100%;
  background: rgba(122, 203, 255, 0.4);
  position: absolute;
  right: 0;
  top: 10%;
  z-index: -2;
  border-radius: 1vw 0 0 1vw;
}

#vision {
  padding: 0 0 6vw 0;
}
#vision .vision {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  line-height: 1.75;
}

.t1,
.t2,
.t3 {
  display: block;
  padding-top: 65px;
  margin-top: -65px;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 1199px) {
  .main__catch--01, .main__catch--02 {
    padding: 25px;
  }
  #vision .vision {
    padding: 3vw;
  }
  div.wpcf7 {
    padding: 15px !important;
  }
  input[type=tel] {
    border: 1px solid #ccc;
    width: 99%;
  }
  article form input[type=text], article form input[type=email] {
    border: 1px solid #ccc;
    width: 99%;
  }
  article form textarea {
    border: 1px solid #ccc;
    width: 99%;
  }
  article form dt span.label {
    width: 200px;
  }
  article .privacy {
    width: auto;
  }
}
@media screen and (max-width: 1023px) {
  article form #tel01 {
    width: 80%;
  }
  .main__catch--01, .main__catch--02 {
    padding: 25px;
  }
  #menuToggle {
    display: block;
  }
  #vision .vision div {
    padding: 15px;
  }
  .product1__img img,
  .product2__img img,
  .product3__img img,
  .product4__img img,
  .product5__img img {
    width: 90%;
  }
  .product1__info .info-box,
  .product2__info .info-box,
  .product3__info .info-box,
  .product4__info .info-box,
  .product5__info .info-box {
    width: 90%;
  }
}
@media screen and (max-width: 868px) {
  /*main*/
  .main {
    background: url("../images/main.png") no-repeat 30%/cover;
  }
  article form #tel01 {
    width: 80%;
  }
  article form dt span.label {
    width: auto;
    margin-right: 10px;
  }
  .row-address, .big-row {
    line-height: 45px;
  }
  article form dt, article form dd {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .form-desc ul li {
    margin-bottom: 15px;
  }
  .form-desc h3 {
    font-size: 22px;
  }
  .main {
    margin-bottom: 5vw;
  }
  .main__catch--01 {
    padding: 15px;
    text-align: center;
  }
  .main__catch--02 {
    padding: 15px;
    text-align: center;
  }
  #product1 .product1,
  #product1 .product2,
  #product1 .product3,
  #product1 .product4,
  #product1 .product5,
  #product2 .product1,
  #product2 .product2,
  #product2 .product3,
  #product2 .product4,
  #product2 .product5,
  #product3 .product1,
  #product3 .product2,
  #product3 .product3,
  #product3 .product4,
  #product3 .product5,
  #product4 .product1,
  #product4 .product2,
  #product4 .product3,
  #product4 .product4,
  #product4 .product5,
  #product5 .product1,
  #product5 .product2,
  #product5 .product3,
  #product5 .product4,
  #product5 .product5 {
    flex-direction: column-reverse;
  }
  #product1 .product1__info,
  #product1 .product2__info,
  #product1 .product3__info,
  #product1 .product4__info,
  #product1 .product5__info,
  #product2 .product1__info,
  #product2 .product2__info,
  #product2 .product3__info,
  #product2 .product4__info,
  #product2 .product5__info,
  #product3 .product1__info,
  #product3 .product2__info,
  #product3 .product3__info,
  #product3 .product4__info,
  #product3 .product5__info,
  #product4 .product1__info,
  #product4 .product2__info,
  #product4 .product3__info,
  #product4 .product4__info,
  #product4 .product5__info,
  #product5 .product1__info,
  #product5 .product2__info,
  #product5 .product3__info,
  #product5 .product4__info,
  #product5 .product5__info {
    width: 100%;
    margin: 0px;
  }
  #product1 .product1__info h3,
  #product1 .product2__info h3,
  #product1 .product3__info h3,
  #product1 .product4__info h3,
  #product1 .product5__info h3,
  #product2 .product1__info h3,
  #product2 .product2__info h3,
  #product2 .product3__info h3,
  #product2 .product4__info h3,
  #product2 .product5__info h3,
  #product3 .product1__info h3,
  #product3 .product2__info h3,
  #product3 .product3__info h3,
  #product3 .product4__info h3,
  #product3 .product5__info h3,
  #product4 .product1__info h3,
  #product4 .product2__info h3,
  #product4 .product3__info h3,
  #product4 .product4__info h3,
  #product4 .product5__info h3,
  #product5 .product1__info h3,
  #product5 .product2__info h3,
  #product5 .product3__info h3,
  #product5 .product4__info h3,
  #product5 .product5__info h3 {
    padding: 0 0 3vw;
    margin: 0;
  }
  #product1 .product1__info .info-box,
  #product1 .product2__info .info-box,
  #product1 .product3__info .info-box,
  #product1 .product4__info .info-box,
  #product1 .product5__info .info-box,
  #product2 .product1__info .info-box,
  #product2 .product2__info .info-box,
  #product2 .product3__info .info-box,
  #product2 .product4__info .info-box,
  #product2 .product5__info .info-box,
  #product3 .product1__info .info-box,
  #product3 .product2__info .info-box,
  #product3 .product3__info .info-box,
  #product3 .product4__info .info-box,
  #product3 .product5__info .info-box,
  #product4 .product1__info .info-box,
  #product4 .product2__info .info-box,
  #product4 .product3__info .info-box,
  #product4 .product4__info .info-box,
  #product4 .product5__info .info-box,
  #product5 .product1__info .info-box,
  #product5 .product2__info .info-box,
  #product5 .product3__info .info-box,
  #product5 .product4__info .info-box,
  #product5 .product5__info .info-box {
    margin: 0 auto;
    width: 90%;
  }
  #product1 .product1__info p,
  #product1 .product2__info p,
  #product1 .product3__info p,
  #product1 .product4__info p,
  #product1 .product5__info p,
  #product2 .product1__info p,
  #product2 .product2__info p,
  #product2 .product3__info p,
  #product2 .product4__info p,
  #product2 .product5__info p,
  #product3 .product1__info p,
  #product3 .product2__info p,
  #product3 .product3__info p,
  #product3 .product4__info p,
  #product3 .product5__info p,
  #product4 .product1__info p,
  #product4 .product2__info p,
  #product4 .product3__info p,
  #product4 .product4__info p,
  #product4 .product5__info p,
  #product5 .product1__info p,
  #product5 .product2__info p,
  #product5 .product3__info p,
  #product5 .product4__info p,
  #product5 .product5__info p {
    padding: 0 0 6vw;
  }
  #product1 .product1__info .num,
  #product1 .product2__info .num,
  #product1 .product3__info .num,
  #product1 .product4__info .num,
  #product1 .product5__info .num,
  #product2 .product1__info .num,
  #product2 .product2__info .num,
  #product2 .product3__info .num,
  #product2 .product4__info .num,
  #product2 .product5__info .num,
  #product3 .product1__info .num,
  #product3 .product2__info .num,
  #product3 .product3__info .num,
  #product3 .product4__info .num,
  #product3 .product5__info .num,
  #product4 .product1__info .num,
  #product4 .product2__info .num,
  #product4 .product3__info .num,
  #product4 .product4__info .num,
  #product4 .product5__info .num,
  #product5 .product1__info .num,
  #product5 .product2__info .num,
  #product5 .product3__info .num,
  #product5 .product4__info .num,
  #product5 .product5__info .num {
    padding: 3vw 0;
  }
  #product1 .product1__info .num::after,
  #product1 .product2__info .num::after,
  #product1 .product3__info .num::after,
  #product1 .product4__info .num::after,
  #product1 .product5__info .num::after,
  #product2 .product1__info .num::after,
  #product2 .product2__info .num::after,
  #product2 .product3__info .num::after,
  #product2 .product4__info .num::after,
  #product2 .product5__info .num::after,
  #product3 .product1__info .num::after,
  #product3 .product2__info .num::after,
  #product3 .product3__info .num::after,
  #product3 .product4__info .num::after,
  #product3 .product5__info .num::after,
  #product4 .product1__info .num::after,
  #product4 .product2__info .num::after,
  #product4 .product3__info .num::after,
  #product4 .product4__info .num::after,
  #product4 .product5__info .num::after,
  #product5 .product1__info .num::after,
  #product5 .product2__info .num::after,
  #product5 .product3__info .num::after,
  #product5 .product4__info .num::after,
  #product5 .product5__info .num::after {
    left: 100%;
  }
  #product1 .product1__img,
  #product1 .product2__img,
  #product1 .product3__img,
  #product1 .product4__img,
  #product1 .product5__img,
  #product2 .product1__img,
  #product2 .product2__img,
  #product2 .product3__img,
  #product2 .product4__img,
  #product2 .product5__img,
  #product3 .product1__img,
  #product3 .product2__img,
  #product3 .product3__img,
  #product3 .product4__img,
  #product3 .product5__img,
  #product4 .product1__img,
  #product4 .product2__img,
  #product4 .product3__img,
  #product4 .product4__img,
  #product4 .product5__img,
  #product5 .product1__img,
  #product5 .product2__img,
  #product5 .product3__img,
  #product5 .product4__img,
  #product5 .product5__img {
    width: 100%;
    padding: 0;
    text-align: center;
  }
  #product1 .product1__img img,
  #product1 .product2__img img,
  #product1 .product3__img img,
  #product1 .product4__img img,
  #product1 .product5__img img,
  #product2 .product1__img img,
  #product2 .product2__img img,
  #product2 .product3__img img,
  #product2 .product4__img img,
  #product2 .product5__img img,
  #product3 .product1__img img,
  #product3 .product2__img img,
  #product3 .product3__img img,
  #product3 .product4__img img,
  #product3 .product5__img img,
  #product4 .product1__img img,
  #product4 .product2__img img,
  #product4 .product3__img img,
  #product4 .product4__img img,
  #product4 .product5__img img,
  #product5 .product1__img img,
  #product5 .product2__img img,
  #product5 .product3__img img,
  #product5 .product4__img img,
  #product5 .product5__img img {
    width: 100%;
    margin: 0 auto;
  }
  #product1 .product1__img::after,
  #product1 .product2__img::after,
  #product1 .product3__img::after,
  #product1 .product4__img::after,
  #product1 .product5__img::after,
  #product2 .product1__img::after,
  #product2 .product2__img::after,
  #product2 .product3__img::after,
  #product2 .product4__img::after,
  #product2 .product5__img::after,
  #product3 .product1__img::after,
  #product3 .product2__img::after,
  #product3 .product3__img::after,
  #product3 .product4__img::after,
  #product3 .product5__img::after,
  #product4 .product1__img::after,
  #product4 .product2__img::after,
  #product4 .product3__img::after,
  #product4 .product4__img::after,
  #product4 .product5__img::after,
  #product5 .product1__img::after,
  #product5 .product2__img::after,
  #product5 .product3__img::after,
  #product5 .product4__img::after,
  #product5 .product5__img::after {
    display: none;
  }
  #product2 .img,
  #product4 .img {
    padding: 3vw;
  }
  #info {
    padding: 55px 0px 25px;
  }
  #info .container {
    display: block;
  }
  #info .info {
    width: 100%;
    margin: 0px;
  }
  #info .info p:first-child {
    font-size: 18px;
    line-height: 25px;
  }
  #info .info p:last-child {
    margin: 0px;
  }
  #info iframe {
    margin: 0px auto;
    display: block;
  }
  #product2,
  #product3,
  #product4,
  #product5 {
    padding: 0 0 6vw 0px;
  }
  #product1,
  #name,
  #access,
  #company,
  #recruit {
    padding: 0 0 5vw;
  }
  .company {
    padding: 15px;
  }
  #vision .vision {
    display: block;
  }
  #vision .vision div {
    width: 100%;
    margin-bottom: 15px;
    padding: 15px;
  }
  #name .logo {
    display: block;
  }
  #name .logo .name__img {
    margin: 15px;
  }
  #name .logo .name__img02 {
    margin: 55px 15px 15px;
  }
  #recruit .recruit dl {
    padding: 15px;
  }
  #recruit .recruit p:nth-of-type(2) {
    padding: 15px;
    font-size: 22px;
  }
  #access > div p:last-of-type {
    font-size: 15px;
  }
  /*Contact page*/
  div.wpcf7 {
    padding: 15px !important;
  }
  .check {
    margin-top: 25px;
  }
  article .privacy {
    width: auto;
    margin: 0px;
  }
  .big-row, .row-address {
    line-height: 45px;
  }
  article form input[type=text], article form input[type=email] {
    border: 1px solid #ccc;
    width: 99%;
  }
  input[type=tel] {
    border: 1px solid #ccc;
    width: 99%;
  }
  article section .desc p:nth-of-type(1) {
    font-size: 15px;
  }
  article form dd {
    width: 100%;
    margin: 0px;
  }
  article form dt {
    width: 100%;
    margin-bottom: 5px;
  }
  article .privacy h2 {
    font-size: 18px;
  }
  article section .desc p:last-child {
    margin-bottom: 15px;
    font-size: 16px;
  }
  article form .cell03 {
    display: block;
  }
  article form textarea {
    border: 1px solid #ccc;
    width: 99%;
  }
  article section:first-child .desc h3 {
    padding: 15px;
    font-size: 25px;
    line-height: 35px;
  }
  article .privacy .wpcf7-list-item-label {
    font-size: 15px;
  }
  #tel .time {
    font-size: 15px;
    line-height: 1.5;
  }
  #tel h3 {
    font-size: 20px;
    margin-bottom: 25px;
  }
  #tel .tel {
    font-size: 35px;
  }
  .p-title-color__inner {
    padding: 30px 0 40px;
    border-radius: 10px;
  }
  .p-title-color::before {
    height: 109px;
    top: -40px;
  }
  .p-title-color-primary {
    margin-bottom: 32px;
    padding-top: 10px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
@media screen and (max-width: 500px) {
  .wrapper .inner {
    width: min(100% - 40px, 1200px);
  }
  .l-inner {
    width: min(100% - 40px, 1200px);
  }
  #vision .vision {
    text-align: left;
  }
}
@media screen and (max-width: 375px) {
  #vision .vision {
    padding: 0;
  }
  #vision .vision div {
    padding: 0;
  }
  #product1 .product1,
  #product2 .product2,
  #product3 .product3,
  #product4 .product4,
  #product5 .product5 {
    padding: 0;
  }
  #product1,
  #vision,
  #name,
  #access,
  #company,
  #recruit {
    padding: 6vw 0px;
  }
}
@media screen and (max-width: 320px) {
  .main__catch--01 {
    font-size: 20px;
  }
  .main__catch--02 {
    font-size: 15px;
  }
  #product1 .product1__info h3 {
    font-size: 14px;
  }
  #company .company dt {
    font-size: 16px;
  }
  #name .logo .name__img02 {
    margin: 55px 5px 15px;
  }
  #company .company dd, #name p {
    font-size: 15px;
  }
  #recruit .recruit p:nth-of-type(2) {
    font-size: 18px;
  }
}
.backtop-box {
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  padding: 0 0 6vw;
}

.footer-logo {
  margin: 10px 0px;
}

.l-footer {
  position: relative;
  width: 100%;
  margin-top: auto;
  padding: 0 0 3vw 0;
}
.l-footer .p-footer {
  max-width: 1720px;
  margin: 0 auto;
}
.l-footer .p-footer__container.l-inner {
  margin-inline: auto;
}
.l-footer .p-footer__main {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-orient: horizontal;
  display: flex;
  justify-content: flex-start;
}
.l-footer .p-footer__list {
  margin-left: 80px;
}
.l-footer .p-footer__list .p-footer-nav .p-footer-nav__list {
  display: flex;
}
.l-footer .p-footer__list .p-footer-nav .p-footer-nav__list .p-footer-nav__item .p-footer-nav__column-head {
  font-weight: bold;
}
.l-footer .p-footer__list .p-footer-nav .p-footer-nav__list .p-footer-nav__item .p-footer-nav__column-item {
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .l-footer .p-footer__list .p-footer-nav .p-footer-nav__list .p-footer-nav__item .p-footer-nav__column-item {
    margin-top: 10px;
  }
}
@media screen and (max-width: 500px) {
  .l-footer .p-footer__list .p-footer-nav .p-footer-nav__list .p-footer-nav__item .p-footer-nav__column-item {
    margin-top: 5px;
  }
}
.l-footer .p-footer__logo {
  display: inline-block;
}
.l-footer .p-footer__logo img {
  width: 60%;
}
.l-footer .p-footer__company .p-footer__iso {
  display: inline-block;
  margin-left: 8px;
  margin-top: 8px;
}
.l-footer .p-footer__company-name {
  font-weight: bold;
  margin-top: 10px;
}
.l-footer .p-footer__company-address {
  margin-top: 10px;
}
.l-footer .p-footer__company .p-footer__tel-link {
  display: block;
  margin-top: 10px;
}
.l-footer .p-footer__company .l-footer-sns {
  margin-top: 10px;
}
.l-footer .p-footer__company .l-footer-sns .p-sns-links {
  display: flex;
}
.l-footer .p-footer__copy-links {
  padding-top: 6vw;
}

@media screen and (max-width: 868px) {
  .l-footer .p-footer__list {
    margin-left: 100px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding-top: 10vw;
    padding-bottom: 5vw;
    width: 100%;
    margin-bottom: 50px;
  }
  .l-footer .p-footer {
    max-width: 100%;
  }
  .l-footer .p-footer__main {
    display: block;
  }
  .l-footer .p-footer__list {
    margin-left: 0;
  }
  .l-footer .p-footer__list .p-footer-nav .p-footer-nav__list {
    margin-bottom: 3vw;
    display: block;
  }
  .l-footer .p-footer__list .p-footer-nav .p-footer-nav__list .p-footer-nav__item .p-footer-nav__column {
    margin-bottom: 5vw;
  }
  .l-footer .p-footer__company {
    margin-bottom: 3vw;
  }
  .l-footer .p-footer__company .p-footer__iso {
    display: inline-block;
    margin-left: 8px;
    margin-top: 8px;
  }
  .l-footer .p-footer__company .p-footer__company-name {
    font-weight: bold;
    margin-top: 10px;
  }
  .l-footer .p-footer__company .p-footer__company-address {
    margin-top: 10px;
  }
  .l-footer .p-footer__company .p-footer__tel-link {
    display: block;
    margin-top: 10px;
  }
  .l-footer .p-footer__company .l-footer-sns {
    margin-top: 10px;
  }
  .l-footer .p-footer__company .l-footer-sns .p-sns-links {
    display: flex;
  }
}
@media screen and (max-width: 500px) {
  .l-footer .p-footer__logo {
    display: block;
    margin: 0 auto;
    width: 50%;
    padding: 6vw 0;
  }
  .l-footer .p-footer__logo img {
    width: 100%;
  }
}
/*-- layoutフォルダの中の_index.scss --*/
.blog-info {
  padding: 6vw 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}
.blog-info.list {
  padding: 6vw 6vw 0;
  margin-bottom: 6vw;
}
.blog-info.list li {
  margin-bottom: 2%;
  width: 32%;
}
.blog-info.list li a {
  display: block;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
  height: 100%;
}
.blog-info.list li a:hover {
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.5);
}
.blog-info.list li h2 {
  padding: 1vw 2vw;
  font-size: clamp(1.125rem, 1.006rem + 0.38vw, 1.25rem);
}
.blog-info.list li .article-text {
  padding: 0 2vw 1vw;
  font-size: clamp(0.75rem, 0.631rem + 0.38vw, 0.875rem);
}
.blog-info.list li .article-meta li {
  margin-bottom: inherit;
  padding: 0 2vw 2vw 0;
  width: 100%;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  text-align: right;
}
.blog-info.list li .article-meta li i {
  margin-right: 6px;
}
.blog-info.list li:nth-child(3n+2):last-child {
  margin-left: auto;
  margin-right: 34%;
}
.blog-info__main {
  width: 70%;
}
.blog-info__main > h1 {
  margin-bottom: 2vw;
  padding: 0.75rem 0;
  position: relative;
  border-bottom: 5px solid #ddd;
  font-size: clamp(1.25rem, 0.654rem + 1.91vw, 1.875rem);
}
.blog-info__main > h1:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 20%;
  height: 5px;
  background: #009bff;
}
.blog-info__main--date {
  padding: 0 2vw 1vw;
  width: 100%;
  font-size: clamp(0.75rem, 0.631rem + 0.38vw, 0.875rem);
  color: #989898;
}
.blog-info__main--date i {
  margin-right: 0.5vw;
}
.blog-info__main--icatch {
  margin-bottom: 6vw;
  width: 100%;
}
.blog-info__main section {
  padding: 0 2vw 6vw;
}
.blog-info__main section h1 {
  margin: 0 0 2vw;
  padding: 1vw;
  background: rgba(0, 155, 255, 0.05);
  border-left: solid 0.75vw #009bff;
  font-size: clamp(1.25rem, 0.654rem + 1.91vw, 1.875rem);
}
.blog-info__main section h2 {
  margin: 0 0 2vw;
  padding: 1vw 1vw 1vw 3vw;
  background: rgba(0, 155, 255, 0.05);
  position: relative;
  font-size: clamp(1.125rem, 0.767rem + 1.15vw, 1.5rem);
}
.blog-info__main section h2:before {
  content: "";
  position: absolute;
  top: 20%;
  left: 1.5vw;
  width: 0.8%;
  height: 60%;
  background: #009bff;
}
.blog-info__main section h3 {
  margin: 0 0 2vw;
  padding: 0.75vw 1.5vw;
  background: rgba(0, 155, 255, 0.05);
  font-size: clamp(1rem, 0.761rem + 0.76vw, 1.25rem);
}
.blog-info__main section h4 {
  margin: 0 0 1.2vw;
  color: #333;
  font-size: clamp(0.75rem, 0.511rem + 0.76vw, 1rem);
}
.blog-info__main section h5, .blog-info__main section h6 {
  margin: 0 0 1vw;
  color: #333;
  font-size: clamp(0.75rem, 0.631rem + 0.38vw, 0.875rem);
}
.blog-info__main section p {
  padding: 0 2vw;
}
.blog-info__main section ul, .blog-info__main section ol {
  padding: 1vw 0;
}
.blog-info__main section ul li {
  padding: 0 0 0.5vw 1rem;
  position: relative;
}
.blog-info__main section ul li::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #225B95;
  border-radius: 50%;
}
.blog-info__main section ul li:last-child {
  padding: 0 0 0 1rem;
}
.blog-info__main section ol li {
  padding: 0 0 0.5vw 0;
  counter-increment: mission;
}
.blog-info__main section ol li::before {
  content: "0" counter(mission) ".";
  margin-right: 0.25rem;
  color: #225B95;
  font-weight: bold;
}
.blog-info__main section ol li:last-child {
  padding: 0 0 0 0;
}
.blog-info__main section blockquote {
  margin: 1vw auto;
  position: relative;
  padding: 3vw;
  font-style: italic;
  background: rgba(34, 91, 149, 0.1);
  border: none;
  border-top: solid 3px #225B95;
  border-bottom: solid 3px #225B95;
  width: 90%;
}
.blog-info__main section blockquote:before, .blog-info__main section blockquote:after {
  display: inline-block;
  position: absolute;
  width: 3vw;
  height: 3vw;
  vertical-align: middle;
  text-align: center;
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #FFF;
  font-size: clamp(0.625rem, 0.267rem + 1.15vw, 1rem);
  line-height: 3vw;
  background: #225B95;
}
.blog-info__main section blockquote:before {
  top: 0;
  left: 0;
}
.blog-info__main section blockquote:after {
  bottom: 0;
  right: 0;
}
.blog-info__main section blockquote + p {
  margin-top: 1.6em;
}
.blog-info__main section blockquote p {
  position: relative;
  padding: 0;
  margin: 10px 0;
  z-index: 3;
  line-height: 1.7;
}
.blog-info__main section blockquote > p:last-child {
  margin-bottom: 0 !important;
}
.blog-info__main section > a {
  margin: 1vw auto;
  position: relative;
  padding: 2vw;
  border: solid 2px #225B95;
  color: #225B95;
  display: block;
  width: 90%;
}
.blog-info__main section > a:after {
  position: absolute;
  content: "Check!!";
  top: -10px;
  left: 15px;
  background: #fff;
  font-weight: bold;
  color: #225B95;
  padding: 0 1vw;
}
.blog-info__menu {
  width: 25%;
}

#sidebar-agency,
#sidebar-dealer {
  padding: 20px;
}
#sidebar-agency .side-title,
#sidebar-dealer .side-title {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 30px;
}
#sidebar-agency .archive,
#sidebar-dealer .archive {
  text-align: left;
}
#sidebar-agency .archive h3,
#sidebar-dealer .archive h3 {
  margin-bottom: 2vw;
  padding: 0.75rem 0;
  position: relative;
  border-bottom: 3px solid #ddd;
  font-size: clamp(0.75rem, 0.511rem + 0.76vw, 1rem);
}
#sidebar-agency .archive h3:before,
#sidebar-dealer .archive h3:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 40%;
  height: 3px;
  background: #009bff;
}
#sidebar-agency .archive ul li,
#sidebar-dealer .archive ul li {
  padding: 0 0 0.5vw 1rem;
  position: relative;
  text-align: left;
}
#sidebar-agency .archive ul li::before,
#sidebar-dealer .archive ul li::before {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #225B95;
  border-radius: 50%;
}
#sidebar-agency .archive ul li:last-child,
#sidebar-dealer .archive ul li:last-child {
  padding: 0 0 0 1rem;
}
#sidebar-agency .archive .archive-cal, #sidebar-agency .archive .archive-new, #sidebar-agency .archive .archive-archive,
#sidebar-dealer .archive .archive-cal,
#sidebar-dealer .archive .archive-new,
#sidebar-dealer .archive .archive-archive {
  padding-bottom: 3vw;
}

/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 767px) {
  /*-------------------------------------------
  aside
  -------------------------------------------*/
  #sidebar {
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .blog-info.list {
    padding: 6vw 2vw 0;
  }
  .blog-info.list li {
    width: 49%;
  }
  .blog-info.list li:nth-child(3n+2):last-child {
    margin-left: 0;
    margin-right: inherit;
  }
  .blog-info__main {
    width: 100%;
  }
  .blog-info__main section blockquote {
    width: 100%;
  }
  .blog-info__main section > a {
    width: 100%;
  }
  .blog-info__menu {
    width: 100%;
  }
  #sidebar-agency,
  #sidebar-dealer {
    padding: 20px 0;
  }
}
@media screen and (max-width: 500px) {
  .blog-info.list {
    padding: 6vw 0 0;
  }
  .blog-info li {
    width: 100%;
  }
}
.product-info h2 {
  text-align: center;
  font-size: clamp(1.25rem, 0.971rem + 1.19vw, 2.25rem);
  line-height: 1.5;
}
.product-info__feature {
  margin: 7vw auto 4vw;
  width: -moz-fit-content;
  width: fit-content;
}
.product-info__feature li {
  font-size: clamp(0.75rem, 0.636rem + 0.48vw, 1rem);
}
.product-info__feature li::before {
  content: "特徴2";
  background: #009bff;
  border-radius: 2vw;
  padding: 0.5vw 1vw;
  color: #fff;
  margin-right: 1vw;
}
.product-info__feature li:first-child::before {
  content: "特徴1";
}
.product-info__feature li:nth-child(3)::before {
  content: "特徴3";
}
.product-info__security {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5vw 0.75vw;
}
.product-info__security li {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5vw;
  width: calc(50% - 0.75vw);
  border: 8px solid #225B95;
  border-radius: 20px;
  padding: 0.75vw;
}
.product-info__security li div {
  text-align: left;
  width: calc(85% - 1.5vw);
}
.product-info__security li div:first-child {
  width: 15%;
}
.product-info__security li div:first-child img {
  width: 100%;
  max-width: 100px;
}
.product-info__security li div h4 {
  padding-bottom: 0.5vw;
  font-size: clamp(1.25rem, 1.136rem + 0.48vw, 1.5rem);
  color: #225B95;
}
.product-info__security li div p {
  text-align: left;
  line-height: 1.25;
  font-size: clamp(0.875rem, 0.818rem + 0.24vw, 1rem);
}
.product-info__security li div:first-child h4 {
  display: none;
}
.product-info__section {
  padding: 3vw 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product-info__section__left {
  width: 42%;
}
.product-info__section__left.title {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1.5vw;
}
.product-info__section__left.title .title-left {
  width: 18%;
}
.product-info__section__left.title .title-left img {
  width: 100%;
}
.product-info__section__left.title .title-right {
  width: 76%;
}
.product-info__section__left.title .title-right h4 {
  color: #225B95;
  font-size: 20px;
  margin-bottom: 1vw;
}
.product-info__section__left.title .title-right p {
  text-align: left;
  line-height: 1.5;
}
.product-info__section__right {
  width: 56%;
}
.product-info__list {
  margin: 4vw auto;
  /*.product-info__image{
  	margin: 0 auto;
  	width: 90%;
  }*/
}
.product-info__list h3 {
  font-size: clamp(1.25rem, 1.136rem + 0.48vw, 1.5rem);
  color: #225B95;
}
.product-info__p3-3 {
  padding: 3vw 0;
}
.product-info__p3-3 .p3-3-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.product-info__p3-3 .p3-3-inner div {
  padding: 2rem;
  border-top: 8px solid #225B95;
  border-right: 8px solid #225B95;
  border-bottom: 8px solid #225B95;
  width: 90%;
  background: #fff;
  border-radius: 0 2rem 2rem 0;
  font-size: clamp(1.25rem, 0.971rem + 1.19vw, 2.25rem);
  font-weight: bold;
  color: #225B95;
}
.product-info__p3-3 .p3-3-inner div:first-child {
  border-top: 8px solid #225B95;
  border-right: 0;
  border-bottom: 8px solid #225B95;
  border-left: 8px solid #225B95;
  width: 10%;
  text-align: center;
  background: #225B95;
  border-radius: 2rem 0 0 2rem;
  color: #fff;
}
.product-info p {
  text-align: center;
  line-height: 1.5;
  font-size: clamp(0.875rem, 0.761rem + 0.48vw, 1.125rem);
}
.product-info p.p-left {
  text-align: left;
}
.product-info__feature1 {
  display: flex;
}
.product-info__feature1 > div:first-child {
  width: 30%;
}
.product-info__feature1 > div:first-child img {
  width: 100%;
}
.product-info__image {
  padding: 3vw 0;
}
.product-info__text {
  padding-bottom: 6vw;
}
.product-info__topix {
  display: flex;
  flex-wrap: wrap; /* 折返し指定 */
  gap: 0.5vw 0.5vw; /* 余白 */
}
.product-info__topix li {
  flex-grow: 1;
  width: calc(50% - 0.5vw);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.product-info__topix li a {
  display: flex;
}
.product-info__topix li a div:first-child {
  width: 35%;
}
.product-info__topix li a div:first-child img {
  vertical-align: top;
}
.product-info__topix li a div:last-child {
  width: 65%;
  padding: 0.75vw 0.5vw;
}
.product-info__topix li a div:last-child p {
  text-align: left;
}
.product-info__topix li a div:last-child p.time {
  color: rgba(0, 0, 0, 0.5);
  font-size: clamp(0.625rem, 0.506rem + 0.38vw, 0.75rem);
}
.product-info__topix li a div:last-child p.title {
  font-size: clamp(0.75rem, 0.511rem + 0.76vw, 1rem);
  font-weight: bold;
}
.product-info__topix li a div:last-child p.info {
  color: rgba(0, 0, 0, 0.75);
  font-size: clamp(0.625rem, 0.506rem + 0.38vw, 0.75rem);
}

@media screen and (max-width: 799px) {
  .product-info__p3-3 {
    padding: 3vw 0;
  }
  .product-info__p3-3 .p3-3-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .product-info__p3-3 .p3-3-inner div {
    padding: 1rem;
    border-top: 6px solid #225B95;
    border-right: 6px solid #225B95;
    border-bottom: 6px solid #225B95;
    width: 90%;
    background: #fff;
    border-radius: 0 1rem 1rem 0;
    font-size: clamp(1.25rem, 0.971rem + 1.19vw, 2.25rem);
    font-weight: bold;
    color: #225B95;
  }
  .product-info__p3-3 .p3-3-inner div:first-child {
    border-top: 6px solid #225B95;
    border-right: 0;
    border-bottom: 6px solid #225B95;
    border-left: 6px solid #225B95;
    width: 10%;
    text-align: center;
    background: #225B95;
    border-radius: 1rem 0 0 1rem;
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .product-info__security {
    display: block;
  }
  .product-info__security li {
    width: 100%;
    padding: 1.5vw 2vw;
    margin-bottom: 2vw;
    align-items: center;
  }
  .product-info__security li div h4 {
    font-size: 20px;
    padding-bottom: 1vw;
  }
  .product-info__section {
    display: block;
  }
  .product-info__section__left {
    width: 100%;
    margin-bottom: 4vw;
  }
  .product-info__section__right {
    width: 100%;
  }
  .product-info__topix {
    gap: 1.5vw 0;
  }
  .product-info__topix li {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .product-info__security li {
    align-items: flex-start;
    margin-bottom: 4vw;
  }
  .product-info__security li div {
    width: calc(80% - 1.5vw);
  }
  .product-info__security li div:first-child {
    width: 20%;
  }
  .product-info__security li div h4 {
    font-size: 16px;
  }
  .product-info__section {
    display: block;
  }
  .product-info__section__left {
    width: 100%;
    margin-bottom: 4vw;
  }
  .product-info__section__right {
    width: 100%;
  }
}
.member-login {
  text-align: center;
  padding: 2vw;
  border-radius: 1vw;
  background-color: rgba(122, 203, 255, 0.2);
}
.member-login p {
  text-align: left;
  line-height: 1.5;
  font-size: clamp(0.75rem, 0.631rem + 0.38vw, 0.875rem);
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.member-login p a {
  color: #225b95;
  text-decoration: underline;
}
.member-login input {
  box-sizing: border-box;
}
.member-login input[name=post_password] {
  width: 30%;
  padding: 0.8vw;
  border: 1px solid rgba(34, 91, 149, 0.5);
  border-radius: 0.25vw;
}
.member-login input[name=post_password]::-moz-placeholder {
  color: rgba(34, 91, 149, 0.5);
}
.member-login input[name=post_password]::placeholder {
  color: rgba(34, 91, 149, 0.5);
}
.member-login input[name=Submit] {
  width: 10%;
  margin: 1em;
  display: inline-block;
  border: 1px solid #225B95;
  background: #225B95;
  color: #fff;
  padding: 0.5vw;
  border-radius: 5px;
  font-size: clamp(0.75rem, 0.693rem + 0.28vw, 0.875rem);
}

.member-main {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.member-main li {
  line-height: 2;
  font-size: clamp(1rem, 0.761rem + 0.76vw, 1.25rem);
  font-weight: bold;
}
.member-main li a {
  display: block;
  background: rgba(179, 11, 0, 0.05);
  padding: 15px;
  border-radius: 3px;
}
.member-main li a i {
  font-size: clamp(1.5rem, 1.142rem + 1.15vw, 1.875rem);
  color: rgb(179, 11, 0);
  margin-right: 0.5rem;
}

.member-qa {
  text-align: left;
}

.mw_wp_form {
  width: 100%;
}
.mw_wp_form table.mailform-tbl {
  width: 74%;
  margin-right: auto;
  margin-left: auto;
}
.mw_wp_form table tr {
  width: 100%;
  border-bottom: 1px dotted #ccc;
  padding: 30px 0;
  font-weight: normal;
}
.mw_wp_form table tr:first-child {
  border-top: 1px dotted #ccc;
}
.mw_wp_form table th {
  padding: 2vw 0;
  text-align: left;
  vertical-align: top;
  font-weight: normal;
  width: 30%;
  float: left;
  font-size: clamp(0.75rem, 0.636rem + 0.48vw, 1rem);
}
.mw_wp_form table th .attention {
  margin-left: 10px;
  color: red;
}
.mw_wp_form table td {
  padding: 2vw 0;
  width: 70%;
  float: left;
  font-size: clamp(0.75rem, 0.636rem + 0.48vw, 1rem);
}
.mw_wp_form table td.w50 input,
.mw_wp_form table td.w50 select {
  width: 50%;
  box-sizing: border-box;
  padding: 0.5vw;
  border: 1px solid rgba(34, 91, 149, 0.5);
  border-radius: 0.25vw;
}
.mw_wp_form table td.w50 input::-moz-placeholder, .mw_wp_form table td.w50 select::-moz-placeholder {
  color: rgba(34, 91, 149, 0.5);
}
.mw_wp_form table td.w50 input::placeholder,
.mw_wp_form table td.w50 select::placeholder {
  color: rgba(34, 91, 149, 0.5);
}
.mw_wp_form table td.w80 input,
.mw_wp_form table td.w80 select,
.mw_wp_form table td.w80 textarea {
  width: 80%;
  box-sizing: border-box;
  padding: 0.5vw;
  border: 1px solid rgba(34, 91, 149, 0.5);
  border-radius: 0.25vw;
}
.mw_wp_form table td.w80 input::-moz-placeholder, .mw_wp_form table td.w80 select::-moz-placeholder, .mw_wp_form table td.w80 textarea::-moz-placeholder {
  color: rgba(34, 91, 149, 0.5);
}
.mw_wp_form table td.w80 input::placeholder,
.mw_wp_form table td.w80 select::placeholder,
.mw_wp_form table td.w80 textarea::placeholder {
  color: rgba(34, 91, 149, 0.5);
}
.mw_wp_form #submit-button {
  text-align: center;
}
.mw_wp_form #submit-button input {
  margin: 1em;
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid #009bff;
  background: #009bff;
  color: #fff;
  box-sizing: border-box;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border-radius: 5px;
  font-size: 90%;
}
.mw_wp_form #submit-button input[name=submitBack] {
  margin: 1em;
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid #999;
  background: #999;
  color: white;
  box-sizing: border-box;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border-radius: 5px;
  font-size: 90%;
}
.mw_wp_form .form_step {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 20px 0;
  list-style: none;
}
.mw_wp_form .form_step > li {
  display: block;
  position: relative;
  padding: 0.5em;
  width: 22%;
  border: 1px solid currentColor;
  color: #225B95;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}
.mw_wp_form .form_step > li:nth-of-type(n + 2) {
  margin: 0px 0px 0px 4%;
}
.mw_wp_form .form_step > li:nth-of-type(n + 2):before {
  position: absolute;
  top: 50%;
  left: -1.5em;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #225B95;
  border-left: 2px solid #225B95;
  transform: translateY(-50%) rotate(135deg);
  content: "";
}

.mw_wp_form_input .form_step > li:nth-of-type(1),
.mw_wp_form_preview .form_step > li:nth-of-type(2),
.mw_wp_form_complete .form_step > li:nth-of-type(3) {
  background-color: #225B95;
  color: #fff;
}

.contact-complete {
  display: table;
  text-align: center;
  min-height: 200px;
  padding: 2vw 0;
  width: 80%;
  margin: 0 auto;
}
.contact-complete__inner {
  display: table-cell;
}
.contact-complete__inner .btn {
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid #009bff;
  background: #009bff;
  color: #fff;
  box-sizing: border-box;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 5px;
  font-size: 90%;
}

.btn {
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid #009bff;
  background: #009bff;
  color: #fff;
  box-sizing: border-box;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 5px;
  font-size: 90%;
}
.btn a {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .mw_wp_form .form_step > li {
    font-size: 10px;
    width: 30%;
  }
  .mw_wp_form table.mailform-tbl {
    width: 98%;
  }
  .mw_wp_form table td {
    width: 65%;
    float: right;
  }
  .mw_wp_form table td.w50 input,
  .mw_wp_form table td.w50 select {
    width: 100%;
    box-sizing: border-box;
  }
  .mw_wp_form table td.w80 input,
  .mw_wp_form table td.w80 select,
  .mw_wp_form table td.w80 textarea {
    width: 100%;
    box-sizing: border-box;
  }
}
/*-- projectフォルダの中の_index.scss --*/
/*.p-title-color {
	margin-bottom: 80px;
	position: relative;
	&::before {
		background-color: rgba(#7acbff,.4);
		content: '';
		display: block;
		height: 204px;
		left: 0;
		position: absolute;
		top: -80px;
		width: 100%;
	}
	.p-title-primary {
		margin-bottom: 0;
	}
	&__inner {
		background: url("../images/bg_title.jpg") center center/cover;
		border-radius: 20px;
		padding: 60px 0 80px;
		position: relative;
	}
}
.p-title-primary {
	font-weight: bold;
	margin-bottom: 60px;
	padding-top: 12px;
	position: relative;
	text-align: center;
	&::before {
		-webkit-transform: translateX(-50%);
		background: url("../images/ico_arrow-down.svg") left top no-repeat;
		background-size: 100% auto;
		content: '';
		height: 12px;
		left: 50%;
		position: absolute;
		top: -10px;
		transform: translateX(-50%);
		width: 20px;
	}
	&--l{
		&::before {
			background-image: url("../images/ico_arrow-down-l.svg");
		}
		.p-title-primary__en {
			color: #fff;
		}
		.p-title-primary__ja {
			color: #fff;
		}
	}
	&__en {
		color: #C66462;
		display: block;
		font-size: 16px;
	}
	&__ja {
		display: block;
		font-size: clamp(1.875rem, 1.701rem + 0.74vw, 2.5rem);
		margin-top: 10px;
	}
	&__lead {
		text-align: center;
	}
	&__wrap {
		background: red;
	}
	&__image{
		position: absolute;
		width: 35%;
		right: 0;
		top: 0;
		margin: auto;
		bottom: 0;
	}
}*/
/* container
-------------------------------------------------- */
/*header*/
/*drop down menu*/
/* Navigation */
/*main*/
/*info*/
/*product1-5*/
/*company*/
/*vision*/
/*name*/
/*access*/
/*recuite*/
/*contact*/
/*footer*/
/*
 footer {
p:first-of-type {
  text-align: center;
}

div:last-child {
  background: $base_color_b;
  padding: 15px 0 15px;
  box-sizing: border-box;

  p {
	text-align: center;
	font-family: "Open Sans", sans-serif;
	color: #fff;
	font-size: 14px;
  }
}
 }
 */
/*---------------------------------------------------------------------------------------
    fixed-cta
----------------------------------------------------------------------------------------*//*# sourceMappingURL=style.css.map */