@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@200;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&display=swap");
/* ブレイクポイント参考

PC:インナーコンテンツサイズ以上
Laptop-HiDPI:1440
Laptop-MDPI :1280
iPad Pro(10.5inch):834
iPad Pro(12.9inch):1024
iPad:601
SP:600

*/
/* レスポンシブサイト非表示 */
/* PCのみ */
@media screen and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
}
/* タブレット・PC */
@media screen and (max-width: 599px) {
  .pctb {
    display: none !important;
  }
}
/* タブレット・SP */
@media screen and (min-width: 1025px) {
  .tbsp {
    display: none !important;
  }
}
/* タブレットのみ */
@media screen and (max-width: 599px), (min-width: 1025px) {
  .tb {
    display: none !important;
  }
}
/* SPのみ */
@media screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
@media print {
  .tb, .tbsp, .sp {
    display: none !important;
  }
  body {
    width: 1200px;
    -webkit-print-color-adjust: exact;
  }
  /*　------- ↓その他参考例　---------
  .header {
      position: relative !important; //ヘッダー固定fixedを解除
  }
  .header .header-inner {
      width: 100% !important; //サイト幅を解除
  }
  .page-title {
      margin-top: 0px !important; //固定ヘッダー時のマージンTOP分を解除
      width: 100% !important; //サイト幅を解除
  }
  .breadcrumbs-list {
      width: 100% !important; //サイト幅を解除
  }
  .global-nav {
      width: 100%; //サイト幅を解除
  }
  ------- ↑その他参考　---------*/
}
/*--------------------------------------------------------

	リセット : html5reset-1.6.1.css

参考
https://coliss.com/articles/build-websites/operation/css/my-css-reset-by-ire.html
----------------------------------------------------------*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html {
  font-size: 62.5%;
}

/*body設定*/
body {
  margin: 0;
  padding: 0;
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  color: #222;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  line-height: 1.5;
  font-size: 1.6rem;
  font-weight: 500;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
}
@media screen and (max-width: 599px) {
  body {
    font-size: 1.5rem;
  }
}

/*IE用：游ゴシックの謎余白をなくすためフォントを別指定*/
@media all and (-ms-high-contrast: none) {
  body {
    font-family: Meiryo, sans-serif;
  }
}
/*要素のフォントサイズやマージン・パディングをリセットしています*/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
caption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

/*テーブル指定*/
table,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

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

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています marginを指定したら地獄*/
ul[class],
ol[class] {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote,
q {
  quotes: none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています。また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
  text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています。また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input,
select {
  vertical-align: middle;
}

/*画像を縦に並べたときに余白が出てしまわないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  -webkit-backface-visibility: hidden;
  width: auto;
  max-width: 100%;
  height: auto;
}

/* タッチデバイスでのリンクやボタンの反応を向上 */
a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

@page {
  size: A4;
  margin: 0;
}
/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

/*クラスの指定がない場合のリンクのデフォルト色を指定*/
a:not([class]) {
  color: #222222;
}

a:not([class]):hover {
  color: #222222;
}

a:not([class]):active {
  color: #222222;
}

a:not([class]):visited {
  color: #222222;
}

/*すべての要素のfont-family, font-size, line-heightをその親から継承するようにリセット*/
* {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/*属性と状態のCSSリセット*/
[hidden] {
  display: none !important;
}

[disabled] {
  cursor: not-allowed;
}

:focus:not(:focus-visible) {
  outline: none;
}

/*box-sizing*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/*clearfix*/
/* For modern browsers */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* For IE 6/7 only */
.clearfix {
  *zoom: 1;
}

/*禁則処理の追加*/
p,
li,
dt,
dd,
th,
td,
pre {
  -ms-line-break: strict;
  line-break: strict;
  -ms-word-break: break-strict;
  word-break: break-strict;
}

/*iOSでのsubmit, buttonのデザインをリセットするCSS*/
button,
input[type=submit],
input[type=button],
input[type=search] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
button::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=search]::-webkit-search-decoration {
  display: none;
}
button::focus,
input[type=submit]::focus,
input[type=button]::focus,
input[type=search]::focus {
  outline-offset: -2px;
}

/* Form */
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  margin: 0;
  padding: 0;
  background-color: transparent;
  color: inherit;
  font-size: 100%;
  border: none;
  border-radius: 0;
  outline: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
}

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

/** Form Select IE 11 */
select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

/** Selection */
::-moz-selection,
::selection {
  background-color: #b3d4fc;
  /* Change as appropriate */
  color: #000;
  /* Change as appropriate */
  text-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media print, screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: auto;
  }
}
/*クリアフィックス*/
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

a {
  text-decoration: none;
  transition: 0.2s;
}

p, h1, h2, h3, h4, h5, dt, dd, a {
  font-display: swap;
}

/*マージンボトム*/
.mb00 {
  margin-bottom: 0px !important;
}
@media screen and (max-width: 599px) {
  .mb00 {
    margin-bottom: 0px !important;
  }
}

.mb05 {
  margin-bottom: 5px !important;
}
@media screen and (max-width: 599px) {
  .mb05 {
    margin-bottom: 5px !important;
  }
}

.mb10 {
  margin-bottom: 10px !important;
}
@media screen and (max-width: 599px) {
  .mb10 {
    margin-bottom: 5px !important;
  }
}

.mb15 {
  margin-bottom: 15px !important;
}
@media screen and (max-width: 599px) {
  .mb15 {
    margin-bottom: 10px !important;
  }
}

.mb20 {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 599px) {
  .mb20 {
    margin-bottom: 15px !important;
  }
}

.mb25 {
  margin-bottom: 25px !important;
}
@media screen and (max-width: 599px) {
  .mb25 {
    margin-bottom: 20px !important;
  }
}

.mb30 {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 1024px) {
  .mb30 {
    margin-bottom: 25px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb30 {
    margin-bottom: 20px !important;
  }
}

.mb35 {
  margin-bottom: 35px !important;
}
@media screen and (max-width: 1024px) {
  .mb35 {
    margin-bottom: 30px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb35 {
    margin-bottom: 25px !important;
  }
}

.mb40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 1024px) {
  .mb40 {
    margin-bottom: 35px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb40 {
    margin-bottom: 30px !important;
  }
}

.mb50 {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 1024px) {
  .mb50 {
    margin-bottom: 45px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb50 {
    margin-bottom: 35px !important;
  }
}

.mb60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 1024px) {
  .mb60 {
    margin-bottom: 50px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb60 {
    margin-bottom: 40px !important;
  }
}

.mb70 {
  margin-bottom: 70px !important;
}
@media screen and (max-width: 1024px) {
  .mb70 {
    margin-bottom: 55px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb70 {
    margin-bottom: 45px !important;
  }
}

.mb80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 1024px) {
  .mb80 {
    margin-bottom: 65px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb80 {
    margin-bottom: 50px !important;
  }
}

.mb90 {
  margin-bottom: 90px !important;
}
@media screen and (max-width: 1024px) {
  .mb90 {
    margin-bottom: 70px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb90 {
    margin-bottom: 60px !important;
  }
}

.mb100 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 1024px) {
  .mb100 {
    margin-bottom: 70px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb100 {
    margin-bottom: 60px !important;
  }
}

.mb120 {
  margin-bottom: 120px !important;
}
@media screen and (max-width: 1024px) {
  .mb120 {
    margin-bottom: 80px !important;
  }
}
@media screen and (max-width: 599px) {
  .mb120 {
    margin-bottom: 70px !important;
  }
}

/*マージントップ*/
.mt00 {
  margin-top: 0px !important;
}
@media screen and (max-width: 599px) {
  .mt00 {
    margin-top: 0px !important;
  }
}

.mt05 {
  margin-top: 5px !important;
}
@media screen and (max-width: 599px) {
  .mt05 {
    margin-top: 5px !important;
  }
}

.mt10 {
  margin-top: 10px !important;
}
@media screen and (max-width: 599px) {
  .mt10 {
    margin-top: 5px !important;
  }
}

.mt15 {
  margin-top: 15px !important;
}
@media screen and (max-width: 599px) {
  .mt15 {
    margin-top: 10px !important;
  }
}

.mt20 {
  margin-top: 20px !important;
}
@media screen and (max-width: 599px) {
  .mt20 {
    margin-top: 15px !important;
  }
}

.mt25 {
  margin-top: 25px !important;
}
@media screen and (max-width: 599px) {
  .mt25 {
    margin-top: 20px !important;
  }
}

.mt30 {
  margin-top: 30px !important;
}
@media screen and (max-width: 1024px) {
  .mt30 {
    margin-top: 25px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt30 {
    margin-top: 20px !important;
  }
}

.mt35 {
  margin-top: 35px !important;
}
@media screen and (max-width: 1024px) {
  .mt35 {
    margin-top: 30px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt35 {
    margin-top: 25px !important;
  }
}

.mt40 {
  margin-top: 40px !important;
}
@media screen and (max-width: 1024px) {
  .mt40 {
    margin-top: 35px !important;
  }
}
@media screen and (max-width: 599px) {
  .mt40 {
    margin-top: 30px !important;
  }
}

.breadCrumbs {
  display: flex;
  margin-bottom: 2em;
}
.breadCrumbs > li {
  font-size: 1.2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  background-image: url(../img/common/arrow01.gif);
  background-position: right 10px top 0.5em;
  background-repeat: no-repeat;
  background-size: 3px auto;
  padding-right: 20px;
}
@media screen and (max-width: 834px) {
  .breadCrumbs > li {
    font-size: 1.1rem;
    background-position: right 8px top 0.5em;
    padding-right: 18px;
  }
}
@media screen and (max-width: 599px) {
  .breadCrumbs > li {
    font-size: 1rem;
    background-position: right 6px top 0.5em;
    padding-right: 16px;
  }
}
.breadCrumbs > li:last-child {
  background: none;
  padding-right: 0;
}
.breadCrumbs > li > a {
  color: #00468C !important;
  text-decoration: underline;
}
@media print, screen and (min-width: 1025px) {
  .breadCrumbs > li > a:hover {
    text-decoration: none;
  }
}

.footer {
  width: 100%;
  background-image: url(../img/common/ftr_bg.jpg);
  background-position: center top;
  background-repeat: repeat-x;
  background-size: 2px auto;
  background-color: #EEEEEE;
  padding: 2px 30px 0;
}
@media screen and (max-width: 834px) {
  .footer {
    padding: 2px 20px 0;
  }
}
@media screen and (max-width: 599px) {
  .footer {
    padding-bottom: 45px;
  }
}
.footer__inner {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.footer__box01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 0;
}
@media screen and (max-width: 1024px) {
  .footer__box01 {
    justify-content: center;
  }
}
.footer__box01__address {
  font-style: normal;
}
@media screen and (max-width: 599px) {
  .footer__box01__address {
    text-align: center;
  }
}
.footer__box01__address__logo {
  max-width: 480px;
  margin-bottom: 5px;
}
@media screen and (max-width: 1024px) {
  .footer__box01__address__logo {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 599px) {
  .footer__box01__address__logo {
    padding-left: 17px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 320px) {
  .footer__box01__address__logo {
    padding-left: 0;
  }
}
.footer__box01__address__logo > a img {
  width: 100%;
}
@media print, screen and (min-width: 1025px) {
  .footer__box01__address__logo > a:hover {
    opacity: 0.6;
  }
}
.footer__box01__address__add {
  display: flex;
  flex-wrap: wrap;
  font-size: 0;
  gap: 5px 25px;
}
@media screen and (max-width: 599px) {
  .footer__box01__address__add {
    flex-direction: column;
  }
}
.footer__box01__address__add__text {
  font-size: 1.3rem;
}
.footer__box01__address__add__text__link {
  color: #222;
}
.footer__box01__nav {
  width: 278px;
}
.footer__box01__nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 3px 22px;
}
.footer__box01__nav__list > li {
  width: calc((99.9% - 22px) / 2);
  font-size: 1.3rem;
  padding-left: 10px;
  background: url(../img/common/arrow01.gif) no-repeat left 0.5em;
}
.footer__box01__nav__list > li > a {
  display: block;
  color: #222;
  text-decoration: none;
}
@media print, screen and (min-width: 1025px) {
  .footer__box01__nav__list > li > a:hover {
    text-decoration: underline;
  }
}
.footer__box02 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #444;
  padding: 16px 30px;
  margin-left: -30px;
  margin-right: -30px;
}
@media screen and (max-width: 834px) {
  .footer__box02 {
    flex-direction: column;
    padding: 16px 20px;
    margin-left: -20px;
    margin-right: -20px;
  }
}
.footer__box02__head {
  background-image: url(../img/common/ftr_contact.jpg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 14px auto;
  padding-right: 48px;
  margin-right: 36px;
}
@media screen and (max-width: 834px) {
  .footer__box02__head {
    background: none;
    padding-right: 0;
    margin-right: 0;
    margin-bottom: 8px;
  }
}
.footer__box02__head__read {
  color: #ffffff;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: bold;
}
.footer__box02__body {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
}
.footer__box02__body__tel {
  max-width: 236px;
}
@media screen and (max-width: 834px) {
  .footer__box02__body__tel {
    max-width: 188px;
  }
}
.footer__box02__body__tel > a img {
  width: 100%;
}
.footer__box02__body__mail {
  max-width: 189px;
}
.footer__box02__body__mail > a img {
  width: 100%;
}
@media print, screen and (min-width: 1025px) {
  .footer__box02__body__mail > a:hover {
    opacity: 0.6;
  }
}
.footer__copy {
  color: #ffffff;
  font-size: 1.3rem;
  font-family: "Roboto", sans-serif !important;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  background-image: url(../img/common/ftr_copy.jpg);
  background-position: center top;
  background-repeat: repeat-x;
  background-size: auto 100%;
  padding: 33px 30px;
  margin-left: -30px;
  margin-right: -30px;
}
@media screen and (max-width: 834px) {
  .footer__copy {
    font-size: 1.2rem;
    padding: 23px 20px;
    margin-left: -20px;
    margin-right: -20px;
  }
}
@media screen and (max-width: 599px) {
  .footer__copy {
    font-size: 1.1rem;
    padding: 13px 20px;
  }
}

.cv-btn-list {
  display: flex;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #ffffff;
  z-index: 1;
}
.cv-btn-list__item {
  width: 50%;
}
.cv-btn-list__item__tel {
  display: block;
  color: #ffffff;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  background-color: #ff0b0b;
  border-right: 1px solid #ffffff;
  padding: 10px 0;
}
@media screen and (max-width: 599px) {
  .cv-btn-list__item__tel {
    padding: 7px 0;
  }
}
.cv-btn-list__item__tel__inr {
  display: inline-block;
  background-image: url(../img/common/icon_tel_white.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 17px auto;
  padding-left: 26px;
}
@media screen and (max-width: 599px) {
  .cv-btn-list__item__tel__inr {
    background-size: 14px auto;
    padding-left: 21px;
  }
}
.cv-btn-list__item__tel__time {
  font-size: 1.1rem;
  margin-bottom: 3px;
}
@media screen and (max-width: 599px) {
  .cv-btn-list__item__tel__time {
    font-size: 1rem;
    margin-bottom: 1px;
  }
}
.cv-btn-list__item__tel__num {
  font-size: 2.2rem;
  font-family: "Roboto", sans-serif !important;
}
@media screen and (max-width: 599px) {
  .cv-btn-list__item__tel__num {
    font-size: 2rem;
  }
}
.cv-btn-list__item__inquiry {
  display: flex;
  height: 100%;
}
.cv-btn-list__item__inquiry__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #ffffff;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.06em;
  background-color: #ff0b0b;
}
@media screen and (max-width: 599px) {
  .cv-btn-list__item__inquiry__btn {
    font-size: 1.6rem;
  }
}
.cv-btn-list__item__inquiry__btn__icon {
  background-image: url(../img/common/icon_mail_white.svg);
  background-position: left top 1px;
  background-repeat: no-repeat;
  background-size: 21px auto;
  padding-left: 30px;
}
@media screen and (max-width: 599px) {
  .cv-btn-list__item__inquiry__btn__icon {
    background-size: 19px auto;
    padding-left: 25px;
  }
}

.header {
  width: 100%;
  background-image: url(../img/common/hdr_bg.jpg);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 5px auto;
  background-color: #fffefa;
  border-top: 5px solid #ca0000;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 1024px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    height: 104px;
    padding-right: 104px;
    z-index: 10;
  }
}
@media screen and (max-width: 834px) {
  .header {
    height: 80px;
    background-size: 4px auto;
    padding-left: 20px;
    padding-right: 80px;
    border-top: 4px solid #ca0000;
  }
}
@media screen and (max-width: 599px) {
  .header {
    height: 60px;
    background-size: 3px auto;
    padding-right: 60px;
  }
}
.header__inner {
  max-width: 960px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.header__box01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 100%;
  padding-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .header__box01 {
    padding-bottom: 0;
  }
}
.header__box01__head {
  padding-top: 15px;
  margin-right: 15px;
}
@media screen and (max-width: 834px) {
  .header__box01__head {
    padding-top: 10px;
  }
}
@media screen and (max-width: 599px) {
  .header__box01__head {
    padding-top: 5px;
  }
}
.header__box01__head__tagline {
  display: block;
  font-size: 1.1rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  line-height: 1.3;
  margin-left: 1px;
  margin-bottom: 8px;
}
@media screen and (max-width: 834px) {
  .header__box01__head__tagline {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 599px) {
  .header__box01__head__tagline {
    font-size: 0.6rem;
    font-weight: bold;
    margin-bottom: 4px;
  }
}
.header__box01__head__logo {
  display: block;
  width: 385px;
}
@media screen and (max-width: 834px) {
  .header__box01__head__logo {
    width: 308px;
  }
}
@media screen and (max-width: 599px) {
  .header__box01__head__logo {
    width: 200px;
  }
}
.header__box01__head__logo img {
  width: 100%;
}
@media print, screen and (min-width: 1025px) {
  .header__box01__head__logo:hover {
    opacity: 0.6;
  }
}
.header__box01__body {
  padding-top: 15px;
  margin-top: 3px;
}
@media screen and (max-width: 1024px) {
  .header__box01__body {
    padding-top: 0;
    margin-top: 0;
  }
}
.header__box01__body__title {
  color: #555555;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  background-color: #dddddd;
  padding: 1px 5px;
  margin-bottom: 8px;
}
.header__box01__body__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
@media screen and (max-width: 1024px) {
  .header__box01__body__contact {
    height: 100%;
    gap: 0;
  }
}
.header__box01__body__contact__tel {
  max-width: 303px;
}
@media screen and (max-width: 1024px) {
  .header__box01__body__contact__tel {
    width: 104px;
    height: 100%;
    border-left: 1px solid #cccccc;
  }
}
@media screen and (max-width: 834px) {
  .header__box01__body__contact__tel {
    width: 80px;
  }
}
@media screen and (max-width: 599px) {
  .header__box01__body__contact__tel {
    width: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .header__box01__body__contact__tel__btn {
    display: block;
    height: 100%;
    background-image: url(../img/common/icon_tel.svg);
    background-position: center top 36%;
    background-repeat: no-repeat;
    background-size: 20px auto;
    padding-top: 58%;
  }
}
@media screen and (max-width: 834px) {
  .header__box01__body__contact__tel__btn {
    background-size: 18px auto;
  }
}
.header__box01__body__contact__tel__btn img {
  width: 100%;
}
.header__box01__body__contact__tel__btn__text {
  display: block;
  color: #222222;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .header__box01__body__contact__tel__btn__text {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 599px) {
  .header__box01__body__contact__tel__btn__text {
    font-size: 1.1rem;
  }
}
.header__box01__body__contact__mail {
  max-width: 175px;
}
@media screen and (max-width: 1024px) {
  .header__box01__body__contact__mail {
    width: 104px;
    height: 100%;
    border-left: 1px solid #cccccc;
  }
}
@media screen and (max-width: 834px) {
  .header__box01__body__contact__mail {
    width: 80px;
  }
}
@media screen and (max-width: 599px) {
  .header__box01__body__contact__mail {
    width: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .header__box01__body__contact__mail__btn {
    display: block;
    height: 100%;
    background-image: url(../img/common/icon_mail.svg);
    background-position: center top 34%;
    background-repeat: no-repeat;
    background-size: 30px auto;
    padding-top: 58%;
  }
}
@media screen and (max-width: 834px) {
  .header__box01__body__contact__mail__btn {
    background-size: 26px auto;
  }
}
.header__box01__body__contact__mail__btn img {
  width: 100%;
}
.header__box01__body__contact__mail__btn__text {
  display: block;
  color: #222222;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .header__box01__body__contact__mail__btn__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 599px) {
  .header__box01__body__contact__mail__btn__text {
    font-size: 1rem;
  }
}
@media print, screen and (min-width: 1025px) {
  .header__box01__body__contact__mail__btn:hover {
    opacity: 0.6;
  }
}
.header__box01__body__menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 104px;
  height: 100%;
  z-index: 20;
}
@media screen and (max-width: 834px) {
  .header__box01__body__menu {
    width: 80px;
  }
}
@media screen and (max-width: 599px) {
  .header__box01__body__menu {
    width: 60px;
  }
}
.header__box01__body__menu__btn {
  position: relative;
  width: 100%;
  height: 100%;
}
.header__box01__body__menu__btn::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ca0000;
}
.header__box01__body__menu__btn .bar {
  position: absolute;
  top: 46px;
  left: 0;
  right: 0;
  width: 36%;
  height: 3px;
  background-color: #fff;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .header__box01__body__menu__btn .bar {
    top: 36px;
  }
}
@media screen and (max-width: 599px) {
  .header__box01__body__menu__btn .bar {
    top: 26px;
    height: 2px;
  }
}
.header__box01__body__menu__btn .bar::before {
  position: absolute;
  content: "";
  right: 0;
  top: -12px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media screen and (max-width: 834px) {
  .header__box01__body__menu__btn .bar::before {
    top: -10px;
  }
}
@media screen and (max-width: 599px) {
  .header__box01__body__menu__btn .bar::before {
    top: -8px;
  }
}
.header__box01__body__menu__btn .bar::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media screen and (max-width: 834px) {
  .header__box01__body__menu__btn .bar::after {
    bottom: -10px;
  }
}
@media screen and (max-width: 599px) {
  .header__box01__body__menu__btn .bar::after {
    bottom: -8px;
  }
}
.header__box01__body__menu__btn.on::before {
  background: #555555;
}
.header__box01__body__menu__btn.on .bar::before {
  width: 0;
}
.header__box01__body__menu__btn.on .bar::after {
  width: 0;
}
.header__global {
  height: 47px;
  background-image: url(../img/common/hdr_global.jpg);
  background-position: center top;
  background-repeat: repeat-x;
  background-size: auto 47px;
  border-bottom: 1px solid #ffffff;
  margin-left: -30px;
  margin-right: -30px;
}
.header__global__nav {
  max-width: 960px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.header__global__nav__list {
  display: flex;
  height: 100%;
}
.header__global__nav__list > li {
  position: relative;
  width: 16.6666666667%;
  margin-top: 1px;
  margin-bottom: 1px;
}
.header__global__nav__list > li::before, .header__global__nav__list > li::after {
  position: absolute;
  content: "";
  top: 0;
  width: 1px;
  height: 100%;
}
.header__global__nav__list > li::before {
  left: 0;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#aa0c0b+0,ab0d0c+100 */
  background: linear-gradient(to bottom, rgb(170, 12, 11) 0%, rgb(171, 13, 12) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.header__global__nav__list > li::after {
  right: 0;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#cd0f0f+0,d01a17+100 */
  background: linear-gradient(to bottom, rgb(205, 15, 15) 0%, rgb(208, 26, 23) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.header__global__nav__list > li:nth-child(1)::before {
  display: none;
}
.header__global__nav__list__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #ffffff;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.6);
  line-height: 1;
  letter-spacing: -0.02em;
  box-shadow: 0px -14px 14px -6px rgba(0, 0, 0, 0.3) inset;
}
.header__global__nav__list__link:hover {
  background-color: #555555;
}
.header__global__nav__list__link.now {
  background-color: #555555;
}

body.open {
  height: 100%;
  overflow: hidden;
}

.menu-box {
  width: 100%;
  height: 0;
  position: fixed;
  top: 104px;
  right: 0;
  z-index: 100;
  background-color: #ca0000;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 834px) {
  .menu-box {
    top: 80px;
  }
}
@media screen and (max-width: 599px) {
  .menu-box {
    top: 60px;
  }
}
.menu-box.on {
  height: calc(100% - 104px);
}
@media screen and (max-width: 834px) {
  .menu-box.on {
    height: calc(100% - 80px);
  }
}
@media screen and (max-width: 599px) {
  .menu-box.on {
    height: calc(100% - 60px);
  }
}
.menu-box__inner {
  max-width: 500px;
  margin: 80px auto 100px;
}
@media screen and (max-width: 834px) {
  .menu-box__inner {
    margin: 60px auto 80px;
  }
}
@media screen and (max-width: 599px) {
  .menu-box__inner {
    margin: 0 auto 60px;
  }
}
.menu-box__inner__list {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 599px) {
  .menu-box__inner__list {
    border-top: none;
  }
}
.menu-box__inner__list__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.menu-box__inner__list__item__link {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.3;
  padding: 25px 30px 25px 56px;
}
@media screen and (max-width: 834px) {
  .menu-box__inner__list__item__link {
    font-size: 1.7rem;
    padding: 25px 20px 25px 54px;
  }
}
@media screen and (max-width: 599px) {
  .menu-box__inner__list__item__link {
    font-size: 1.6rem;
    padding: 20px 20px 20px 44px;
  }
}
.menu-box__inner__list__item__link::before {
  position: absolute;
  content: "";
  top: calc((100% - 16px) / 2);
  left: 20px;
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  border-radius: 50%;
}
@media screen and (max-width: 834px) {
  .menu-box__inner__list__item__link::before {
    top: calc((100% - 14px) / 2);
    width: 14px;
    height: 14px;
  }
}
@media screen and (max-width: 599px) {
  .menu-box__inner__list__item__link::before {
    left: 15px;
  }
}
.menu-box__inner__list__item__link::after {
  position: absolute;
  content: "";
  top: calc((100% - 7px) / 2);
  left: 23px;
  width: 7px;
  height: 7px;
  border-width: 2px 2px 0 0;
  border-style: solid;
  border-color: #ca0000 #ca0000 transparent transparent;
  transform: rotate(45deg);
}
@media screen and (max-width: 834px) {
  .menu-box__inner__list__item__link::after {
    top: calc((100% - 6px) / 2);
    width: 6px;
    height: 6px;
  }
}
@media screen and (max-width: 599px) {
  .menu-box__inner__list__item__link::after {
    left: 18px;
  }
}
.menu-box__inner__cv {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  gap: 10px;
}
@media screen and (max-width: 599px) {
  .menu-box__inner__cv {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.menu-box__inner__cv__item {
  width: calc((100% - 10px) / 2);
}
@media screen and (max-width: 599px) {
  .menu-box__inner__cv__item {
    width: 100%;
  }
}
.menu-box__inner__cv__item__tel {
  display: block;
  color: #333333;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  background-color: #ffffff;
  padding: 13px 10px 10px;
}
.menu-box__inner__cv__item__tel__inr {
  display: inline-block;
  background-image: url(../img/common/icon_tel.svg);
  background-position: left top 4px;
  background-repeat: no-repeat;
  background-size: 19px auto;
  padding-left: 29px;
}
.menu-box__inner__cv__item__tel__time {
  font-size: 1.1rem;
  margin-bottom: 3px;
}
@media screen and (max-width: 599px) {
  .menu-box__inner__cv__item__tel__time {
    font-size: 1rem;
    margin-bottom: 1px;
  }
}
.menu-box__inner__cv__item__tel__num {
  font-size: 2.2rem;
  font-family: "Roboto", sans-serif !important;
}
@media screen and (max-width: 599px) {
  .menu-box__inner__cv__item__tel__num {
    font-size: 2rem;
  }
}
.menu-box__inner__cv__item__inquiry {
  display: flex;
  height: 100%;
}
.menu-box__inner__cv__item__inquiry__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #333333;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.06em;
  background-color: #ffffff;
}
@media screen and (max-width: 599px) {
  .menu-box__inner__cv__item__inquiry__btn {
    font-size: 1.6rem;
    padding: 16px 10px;
  }
}
.menu-box__inner__cv__item__inquiry__btn__icon {
  background-image: url(../img/common/icon_mail.svg);
  background-position: left top 4px;
  background-repeat: no-repeat;
  background-size: 23px auto;
  padding: 3px 0 3px 32px;
}

.contents {
  background-image: url(../img/common/bg_contents01.jpg), url(../img/common/bg_contents02.jpg);
  background-position: center top, center top;
  background-repeat: no-repeat, repeat-x;
  background-size: auto 170px, auto 19px;
  padding: 40px 30px 80px;
}
@media screen and (max-width: 1024px) {
  .contents {
    margin-top: 104px;
  }
}
@media screen and (max-width: 834px) {
  .contents {
    background-size: auto 136px, auto 15.2px;
    padding: 30px 20px 70px;
    margin-top: 80px;
  }
}
@media screen and (max-width: 599px) {
  .contents {
    background-size: auto 102px, auto 11.4px;
    padding: 20px 20px 60px;
    margin-top: 60px;
  }
}
.contents__inner {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.tbl01 {
  width: 100%;
  border: 1px solid #cccccc;
  border-collapse: collapse;
  word-break: break-all;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.tbl01 th,
.tbl01 td {
  line-height: 1.5;
  border-bottom: 1px solid #cccccc;
  padding: 15px 20px;
}
@media screen and (max-width: 599px) {
  .tbl01 th,
  .tbl01 td {
    padding: 10px 10px;
  }
}
.tbl01 th {
  width: 28%;
  font-weight: 500;
  background-color: #EEE;
}

.hl01 {
  position: relative;
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.3;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  padding: 20px 10px 25px 60px;
  margin-bottom: 20px;
  box-shadow: 0px 11px 8px -4px rgba(0, 0, 0, 0.25);
  word-break: break-all;
}
@media screen and (max-width: 834px) {
  .hl01 {
    font-size: 3rem;
    font-weight: 500;
    padding: 18px 10px 23px 50px;
  }
}
@media screen and (max-width: 599px) {
  .hl01 {
    font-size: 2rem;
    padding: 15px 10px 20px 40px;
  }
}
.hl01::before {
  position: absolute;
  content: "";
  top: 27px;
  left: 30px;
  width: 10px;
  height: calc(100% - 59px);
  background-color: #ca0000;
  border-right: 2px solid #cccccc;
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .hl01::before {
    top: 22px;
    left: 25px;
    width: 9px;
    height: calc(100% - 48px);
  }
}
@media screen and (max-width: 599px) {
  .hl01::before {
    top: 16px;
    left: 20px;
    width: 8px;
    height: calc(100% - 37px);
  }
}
.hl01::after {
  position: absolute;
  content: "";
  left: 2px;
  bottom: 2px;
  width: calc(100% - 4px);
  height: calc(50% - 2px);
  background-color: #eeeeee;
  border-bottom: 5px solid #c90101;
}
@media screen and (max-width: 834px) {
  .hl01::after {
    border-bottom: 4px solid #c90101;
  }
}
@media screen and (max-width: 599px) {
  .hl01::after {
    border-bottom: 3px solid #c90101;
  }
}
.hl01__inr {
  position: relative;
  z-index: 1;
}

.hl02 {
  position: relative;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#d42e2e+0,b10101+100 */
  background: linear-gradient(to bottom, rgb(212, 46, 46) 0%, rgb(177, 1, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  padding: 12px 10px 8px 48px;
  margin-bottom: 20px;
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.25);
  word-break: break-all;
}
@media screen and (max-width: 599px) {
  .hl02 {
    font-size: 1.6rem;
    padding: 12px 10px 8px 31px;
  }
}
.hl02::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 25px;
  width: 8px;
  height: calc(100% - 16px);
  background-color: #b50706;
  box-shadow: 1px 2px 5px -2px rgba(0, 0, 0, 0.6) inset;
}
@media screen and (max-width: 599px) {
  .hl02::before {
    top: 10px;
    left: 15px;
    width: 6px;
    height: calc(100% - 20px);
  }
}

.hl03 {
  position: relative;
  color: #3F3000;
  font-size: 1.7rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  line-height: 1.3;
  border-bottom: 3px solid #ca0000;
  padding: 3px 0 5px 15px;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .hl03 {
    font-size: 1.6rem;
    border-bottom: 2px solid #ca0000;
  }
}
.hl03::before {
  position: absolute;
  content: "";
  top: calc((100% - 2px) / 2);
  left: 0;
  width: 8px;
  height: 2px;
  background-color: #ca0000;
}
.hl03::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 1px;
  width: 100%;
  height: calc(50% - 1px);
  background-color: #eeeeee;
  border-bottom: 1px solid #f0ece9;
  z-index: -1;
}

.hl04 {
  position: relative;
  color: #3F3000;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  line-height: 1.3;
  background-color: #EEE;
  padding: 5px 10px 5px 32px;
  margin-bottom: 10px;
}
@media screen and (max-width: 599px) {
  .hl04 {
    padding: 5px 10px 5px 30px;
  }
}
.hl04::before {
  position: absolute;
  content: "";
  top: 9px;
  left: 10px;
  width: 14px;
  height: 14px;
  background-color: #3F3000;
}
@media screen and (max-width: 599px) {
  .hl04::before {
    width: 12px;
    height: 12px;
  }
}

.text-bold {
  font-weight: bold;
}

.text-indent {
  text-indent: -1em;
  padding-left: 1em;
}

.text-red {
  color: #ca0000;
}

.text-link {
  color: #222222;
  text-decoration: underline;
}
@media print, screen and (min-width: 1025px) {
  .text-link:hover {
    text-decoration: none;
  }
}

.tel-link {
  color: #222222;
}
@media screen and (max-width: 1024px) {
  .tel-link {
    text-decoration: underline;
  }
}

/*--------------------------------------------------------
top
----------------------------------------------------------*/
.top-main {
  margin-bottom: 40px;
}
@media screen and (max-width: 834px) {
  .top-main {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-main {
    margin-bottom: 30px;
  }
}

.top-main-box {
  display: flex;
  flex-wrap: wrap;
  padding-left: 45px;
  padding-right: 48px;
  margin-top: -10px;
  margin-left: -45px;
  margin-right: -48px;
}
@media print, screen and (max-width: 1100px) {
  .top-main-box {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }
}
.top-main-box__head {
  width: calc(99.9% - 424px);
  padding-right: 20px;
}
@media screen and (max-width: 1024px) {
  .top-main-box__head {
    width: 55.8%;
  }
}
@media screen and (max-width: 834px) {
  .top-main-box__head {
    width: 100%;
    padding-right: 0;
  }
}
.top-main-box__head__img {
  margin: 15px -20px 20px -45px;
}
@media print, screen and (max-width: 1100px) {
  .top-main-box__head__img {
    margin: 15px -20px 20px -25px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-box__head__img {
    margin: 15px -20px 15px -20px;
  }
}
@media screen and (max-width: 834px) {
  .top-main-box__head__img {
    width: 70%;
    margin: 15px auto 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-main-box__head__img {
    width: auto;
    margin: 15px -10px 15px;
  }
}
.top-main-box__head__img img {
  width: 100%;
}
.top-main-box__head__lead {
  color: #353535;
  font-size: 4.2rem;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 20px;
}
@media print, screen and (max-width: 1100px) {
  .top-main-box__head__lead {
    padding-left: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-box__head__lead {
    font-size: clamp(3rem, 3.9vw, 4rem);
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 834px) {
  .top-main-box__head__lead {
    text-align: center;
    padding-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-main-box__head__lead {
    font-size: 2.4rem;
    text-align: left;
    margin-bottom: 10px;
  }
}
.top-main-box__head__text {
  font-size: 1.4rem;
}
@media print, screen and (max-width: 1100px) {
  .top-main-box__head__text {
    padding-left: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-box__head__text {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 834px) {
  .top-main-box__head__text {
    text-align: center;
    padding-left: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-main-box__head__text {
    font-size: 1.2rem;
    text-align: left;
  }
}
.top-main-box__body {
  width: 424px;
  padding-left: 14px;
}
@media screen and (max-width: 1024px) {
  .top-main-box__body {
    width: 44.1%;
  }
}
@media screen and (max-width: 834px) {
  .top-main-box__body {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-main-box__body {
    display: block;
    margin-top: 0;
  }
}
.top-main-box__body__img {
  position: relative;
  margin-right: -48px;
  margin-left: -14px;
  margin-bottom: -28px;
  z-index: 1;
}
@media print, screen and (max-width: 1100px) {
  .top-main-box__body__img {
    margin-right: -28px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-box__body__img {
    margin-right: -23px;
    margin-bottom: -23px;
  }
}
@media screen and (max-width: 834px) {
  .top-main-box__body__img {
    width: 40%;
    padding-left: 20px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-main-box__body__img {
    width: 70%;
    padding-left: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -15px;
  }
}
.top-main-box__body__img img {
  width: 100%;
}
@media screen and (max-width: 834px) {
  .top-main-box__body__inr {
    width: 60%;
  }
}
@media screen and (max-width: 599px) {
  .top-main-box__body__inr {
    width: auto;
  }
}
.top-main-box__body__inr__img img {
  width: 100%;
}
.top-main-box__body__inr__text {
  color: #ffffff;
  font-size: 1.2rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  background-color: #ca0000;
  padding: 3px 5px 6px;
  margin-top: 3px;
}
@media screen and (max-width: 599px) {
  .top-main-box__body__inr__text {
    font-size: 1.1rem;
  }
}

.top-site__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 834px) {
  .top-site__list {
    gap: 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-site__list {
    gap: 10px;
  }
}
.top-site__list__item {
  width: calc((99.9% - 60px) / 4);
  border: 4px solid #ca0000;
  -webkit-transition: 0.1s ease-in-out;
  -moz-transition: 0.1s ease-in-out;
  -o-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
}
@media screen and (max-width: 834px) {
  .top-site__list__item {
    width: calc((99.9% - 30px) / 4);
    border: 3px solid #ca0000;
  }
}
@media screen and (max-width: 599px) {
  .top-site__list__item {
    width: calc((99.9% - 10px) / 2);
  }
}
@media screen and (max-width: 320px) {
  .top-site__list__item {
    width: 100%;
  }
}
@media print, screen and (min-width: 1025px) {
  .top-site__list__item:hover {
    transform: translateY(2px);
    -webkit-transition: 0.1s ease-in-out;
    -moz-transition: 0.1s ease-in-out;
    -o-transition: 0.1s ease-in-out;
    transition: 0.1s ease-in-out;
  }
}

.top-site-box {
  display: block;
  background-color: #ffffff;
  padding: 10px;
}
.top-site-box__img {
  margin-bottom: 10px;
}
.top-site-box__img img {
  width: 100%;
}
.top-site-box__title {
  position: relative;
  color: #222222;
  font-size: 1.9rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  border-top: 2px dotted #ca0000;
  padding-top: 8px;
  padding-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .top-site-box__title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 834px) {
  .top-site-box__title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-site-box__title {
    font-size: 1.7rem;
  }
}
.top-site-box__title::before {
  position: absolute;
  content: "";
  top: 1px;
  left: 0;
  width: 100%;
  height: 100%;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#d6d6d6+0,ffffff+60 */
  background: linear-gradient(to bottom, rgb(214, 214, 214) 0%, rgb(255, 255, 255) 60%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.top-site-box__title__arw {
  position: relative;
  padding-left: 17px;
}
@media screen and (max-width: 599px) {
  .top-site-box__title__arw {
    padding-left: 15px;
  }
}
.top-site-box__title__arw::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 0;
  width: 11px;
  height: 15px;
  background-color: #c90101;
}
@media screen and (max-width: 1024px) {
  .top-site-box__title__arw::before {
    top: 7px;
  }
}
@media screen and (max-width: 834px) {
  .top-site-box__title__arw::before {
    top: 6px;
  }
}
@media screen and (max-width: 599px) {
  .top-site-box__title__arw::before {
    width: 9px;
  }
}
.top-site-box__title__arw::after {
  position: absolute;
  content: "";
  top: 13px;
  left: 2px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 1024px) {
  .top-site-box__title__arw::after {
    top: 12px;
  }
}
@media screen and (max-width: 834px) {
  .top-site-box__title__arw::after {
    top: 11px;
  }
}
@media screen and (max-width: 599px) {
  .top-site-box__title__arw::after {
    left: 1px;
  }
}
.top-site-box__text {
  color: #222222;
  font-size: 1.3rem;
}

/*--------------------------------------------------------
サンドブラスト処理
----------------------------------------------------------*/
.about-wrap__inr {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.about-lead-box {
  display: flex;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 600px) {
  .about-lead-box {
    flex-direction: row-reverse;
  }
}
.about-lead-box__img {
  width: 250px;
}
@media screen and (max-width: 834px) {
  .about-lead-box__img {
    width: 220px;
  }
}
@media screen and (max-width: 599px) {
  .about-lead-box__img {
    width: 100%;
  }
}
.about-lead-box__img img {
  width: 100%;
}
.about-lead-box__body {
  width: calc(99.9% - 250px);
  padding-right: 25px;
}
@media screen and (max-width: 834px) {
  .about-lead-box__body {
    width: calc(99.9% - 220px);
    padding-right: 20px;
  }
}
@media screen and (max-width: 599px) {
  .about-lead-box__body {
    width: 100%;
    padding-right: 0;
    margin-top: 10px;
  }
}

.about-feature-list__item {
  border-bottom: 1px dotted #EEE;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .about-feature-list__item {
    padding-bottom: 10px;
  }
}
.about-feature-list__item:last-child {
  margin-bottom: 0;
}

.about-feature-box {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.about-feature-box__head {
  display: flex;
  align-items: center;
  width: 323px;
  background-image: url(../img/common/texture01.jpg);
  background-position: left top;
  background-repeat: repeat;
  background-size: 2px auto;
  padding-right: 10px;
}
@media screen and (max-width: 834px) {
  .about-feature-box__head {
    width: 280px;
  }
}
@media screen and (max-width: 599px) {
  .about-feature-box__head {
    width: 100%;
  }
}
.about-feature-box__head__tokucho {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 69px;
  color: #ffffff;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  line-height: 1;
  text-align: center;
  padding: 16px 20px 16px 5px;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .about-feature-box__head__tokucho {
    padding: 12px 20px 12px 5px;
  }
}
.about-feature-box__head__tokucho::before {
  position: absolute;
  content: "";
  top: calc((100% - 106px) / 2);
  left: -47px;
  width: 106px;
  height: 106px;
  background-color: #ca0000;
  border-radius: 50%;
}
.about-feature-box__head__tokucho::after {
  position: absolute;
  content: "";
  top: calc((100% - 10px) / 2);
  right: 0;
  border-width: 5px 0 5px 10px;
  border-style: solid;
  border-color: transparent transparent transparent #ca0000;
}
.about-feature-box__head__tokucho__text {
  position: relative;
  font-size: 1.4rem;
}
@media screen and (max-width: 834px) {
  .about-feature-box__head__tokucho__text {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 599px) {
  .about-feature-box__head__tokucho__text {
    font-size: 1.1rem;
  }
}
.about-feature-box__head__tokucho__num {
  position: relative;
  font-size: 3rem;
}
@media screen and (max-width: 834px) {
  .about-feature-box__head__tokucho__num {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 599px) {
  .about-feature-box__head__tokucho__num {
    font-size: 2.4rem;
  }
}
.about-feature-box__head__lead {
  width: calc(99.9% - 69px);
  color: #3a3400;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  line-height: 1.3;
  padding-left: 5px;
}
@media screen and (max-width: 834px) {
  .about-feature-box__head__lead {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .about-feature-box__head__lead {
    font-size: 1.5rem;
  }
}
.about-feature-box__body {
  width: calc(99.9% - 323px);
  padding-left: 20px;
}
@media screen and (max-width: 834px) {
  .about-feature-box__body {
    width: calc(99.9% - 280px);
    padding-left: 15px;
  }
}
@media screen and (max-width: 599px) {
  .about-feature-box__body {
    width: 100%;
    padding-left: 0;
    margin-top: 10px;
  }
}
.about-feature-box__body__text {
  font-size: 1.5rem;
}
@media screen and (max-width: 599px) {
  .about-feature-box__body__text {
    font-size: 1.4rem;
  }
}

.about-use-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .about-use-list {
    gap: 30px;
  }
}
@media screen and (max-width: 834px) {
  .about-use-list {
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .about-use-list {
    gap: 20px 15px;
  }
}
.about-use-list__item {
  width: calc((99.9% - 40px) / 2);
}
@media screen and (max-width: 1024px) {
  .about-use-list__item {
    width: calc((99.9% - 30px) / 2);
  }
}
@media screen and (max-width: 834px) {
  .about-use-list__item {
    width: calc((99.9% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .about-use-list__item {
    width: 100%;
  }
}

.about-use-box__text {
  font-size: 1.5rem;
}
@media screen and (max-width: 599px) {
  .about-use-box__text {
    font-size: 1.4rem;
  }
}
.about-use-box__img {
  margin-top: 10px;
}
.about-use-box__img img {
  width: 100%;
}

.about-size-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .about-size-list {
    gap: 30px;
  }
}
@media screen and (max-width: 834px) {
  .about-size-list {
    gap: 10px;
  }
}
@media screen and (max-width: 599px) {
  .about-size-list {
    gap: 20px 15px;
  }
}
.about-size-list__item {
  width: calc((99.9% - 120px) / 4);
}
@media screen and (max-width: 1024px) {
  .about-size-list__item {
    width: calc((99.9% - 90px) / 4);
  }
}
@media screen and (max-width: 834px) {
  .about-size-list__item {
    width: calc((99.9% - 30px) / 4);
  }
}
@media screen and (max-width: 599px) {
  .about-size-list__item {
    width: calc((99.9% - 15px) / 2);
  }
}

.about-size-box__img img {
  width: 100%;
}

.about-flow-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .about-flow-list {
    gap: 30px;
  }
}
@media screen and (max-width: 834px) {
  .about-flow-list {
    gap: 10px;
  }
}
@media screen and (max-width: 599px) {
  .about-flow-list {
    gap: 20px 15px;
  }
}
.about-flow-list__item {
  width: calc((99.9% - 120px) / 4);
}
@media screen and (max-width: 1024px) {
  .about-flow-list__item {
    width: calc((99.9% - 90px) / 4);
  }
}
@media screen and (max-width: 834px) {
  .about-flow-list__item {
    width: calc((99.9% - 30px) / 4);
  }
}
@media screen and (max-width: 599px) {
  .about-flow-list__item {
    width: calc((99.9% - 15px) / 2);
  }
}

.about-flow-box__img img {
  width: 100%;
}
.about-flow-box__text {
  font-size: 1.5rem;
  margin-top: 10px;
}
@media screen and (max-width: 599px) {
  .about-flow-box__text {
    font-size: 1.4rem;
    margin-top: 8px;
  }
}

/*--------------------------------------------------------
実績紹介
----------------------------------------------------------*/
.results-wrap__inr {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.results-wrap__list__item {
  margin-bottom: 40px;
}
@media screen and (max-width: 834px) {
  .results-wrap__list__item {
    margin-bottom: 30px;
  }
}
.results-wrap__list__item:last-child {
  margin-bottom: 0;
}

.results-box__title {
  display: flex;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  line-height: 1.3;
  background-color: #DDD;
}
.results-box__title__case {
  display: flex;
  align-items: center;
  width: 94px;
  color: #ffffff;
  background-image: url(../img/results/bg_case.jpg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 10px 100%;
  background-color: #ca0000;
  padding: 8px 10px 8px 10px;
}
.results-box__title__text {
  width: calc(99.9% - 94px);
  color: #3F3000;
  padding: 8px 10px 8px 10px;
}
.results-box__body {
  border: 3px solid #DDD;
  border-top: none;
  padding: 20px 40px 30px;
}
@media screen and (max-width: 834px) {
  .results-box__body {
    padding: 20px 30px 30px;
  }
}
@media screen and (max-width: 599px) {
  .results-box__body {
    padding: 20px 20px 20px;
  }
}
.results-box__body__text {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .results-box__body__text {
    font-size: 1.4rem;
  }
}
.results-box__body__img-box {
  display: flex;
  justify-content: space-between;
  gap: 94px;
}
@media screen and (max-width: 834px) {
  .results-box__body__img-box {
    gap: 56.4px;
  }
}
@media screen and (max-width: 599px) {
  .results-box__body__img-box {
    flex-direction: column;
  }
}
.results-box__body__img-box__before {
  position: relative;
}
.results-box__body__img-box__before::before {
  position: absolute;
  content: "";
  top: 0;
  right: -92px;
  bottom: 0;
  width: 88px;
  height: 58px;
  background-image: url(../img/results/arw.jpg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  margin-top: auto;
  margin-bottom: auto;
}
@media screen and (max-width: 834px) {
  .results-box__body__img-box__before::before {
    right: -54px;
    width: 52.8px;
    height: 34.8px;
  }
}
@media screen and (max-width: 599px) {
  .results-box__body__img-box__before::before {
    top: auto;
    left: 0;
    right: 0;
    bottom: -45px;
    margin: 0 auto;
    transform: rotate(90deg);
  }
}
.results-box__body__img-box__before img {
  width: 100%;
}
.results-box__body__img-box__after img {
  width: 100%;
}

/*--------------------------------------------------------
お客様の声
----------------------------------------------------------*/
.comment-wrap__inr {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.comment-wrap__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .comment-wrap__list {
    gap: 30px;
  }
}
@media screen and (max-width: 834px) {
  .comment-wrap__list {
    gap: 20px;
  }
}
.comment-wrap__list__item {
  width: calc((99.9% - 40px) / 2);
}
@media screen and (max-width: 1024px) {
  .comment-wrap__list__item {
    width: calc((99.9% - 30px) / 2);
  }
}
@media screen and (max-width: 834px) {
  .comment-wrap__list__item {
    width: calc((99.9% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .comment-wrap__list__item {
    width: 100%;
  }
}

.comment-box {
  border: 1px solid #DDD;
}
.comment-box__head {
  position: relative;
  background-color: #eeeeee;
  border: 1px solid #ffffff;
  padding: 12px 10px 12px 175px;
}
@media screen and (max-width: 834px) {
  .comment-box__head {
    padding: 8px 10px 8px 144px;
  }
}
.comment-box__head__img {
  position: absolute;
  top: -7px;
  left: 11px;
  width: 148px;
}
@media screen and (max-width: 834px) {
  .comment-box__head__img {
    top: -6px;
    left: 8px;
    width: 122px;
  }
}
.comment-box__head__img img {
  width: 100%;
}
.comment-box__head__name {
  color: #403000;
  font-size: 1.9rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
}
@media screen and (max-width: 834px) {
  .comment-box__head__name {
    font-size: 1.8rem;
  }
}
.comment-box__body {
  border-top: 1px dotted #DDD;
  padding: 15px 20px;
}
.comment-box__body__text {
  font-size: 1.5rem;
}
@media screen and (max-width: 599px) {
  .comment-box__body__text {
    font-size: 1.4rem;
  }
}

/*--------------------------------------------------------
Q&A
----------------------------------------------------------*/
.faq-wrap__inr {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.faq-wrap__lead {
  margin-bottom: 20px;
}
.faq-wrap__list {
  border-top: 1px solid #DDD;
  padding-top: 30px;
}
.faq-wrap__list > li {
  margin-bottom: 35px;
}
.faq-wrap__list > li:last-child {
  margin-bottom: 0;
}

.faq-box__q {
  position: relative;
  color: #664D00;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 500;
  border-bottom: 1px dotted #BBB;
  padding: 3px 0 12px 45px;
  margin-bottom: 12px;
}
@media screen and (max-width: 599px) {
  .faq-box__q {
    font-size: 1.6rem;
    padding: 0 0 12px 40px;
  }
}
.faq-box__q::before {
  position: absolute;
  content: "Q";
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  color: #ffffff;
  font-size: 1.8rem;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: bold;
  line-height: 26px;
  text-align: center;
  background-color: #cc0001;
}
@media screen and (max-width: 599px) {
  .faq-box__q::before {
    width: 26px;
    height: 26px;
    font-size: 1.6rem;
    line-height: 24px;
  }
}
.faq-box__a {
  position: relative;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif !important;
  font-weight: 400;
  padding: 4px 0 0 45px;
}
@media screen and (max-width: 599px) {
  .faq-box__a {
    font-size: 1.4rem;
    padding: 2px 0 0 40px;
  }
}
.faq-box__a::before {
  position: absolute;
  content: "A";
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  color: #ffffff;
  font-size: 1.8rem;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "YuMincho", "FP-ヒラギノ明朝 StdN W3", "HiraMinProN-W3", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", "メイリオ", Meiryo, "ＭＳ ゴシック", serif;
  font-weight: bold;
  line-height: 26px;
  text-align: center;
  background-color: #555555;
}
@media screen and (max-width: 599px) {
  .faq-box__a::before {
    width: 26px;
    height: 26px;
    font-size: 1.6rem;
    line-height: 24px;
  }
}

/*--------------------------------------------------------
会社概要
----------------------------------------------------------*/
.company-wrap__inr {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.company-wrap__map iframe {
  width: 100%;
  height: 360px;
}
@media screen and (max-width: 834px) {
  .company-wrap__map iframe {
    height: 320px;
  }
}
@media screen and (max-width: 599px) {
  .company-wrap__map iframe {
    height: 260px;
  }
}
@media screen and (max-width: 320px) {
  .company-wrap__map iframe {
    height: 220px;
  }
}
.company-wrap__map-link {
  font-size: 1.3rem;
  text-decoration: underline;
  line-height: 1;
  text-align: right;
  margin-top: 3px;
  margin-bottom: 8px;
}
@media screen and (max-width: 599px) {
  .company-wrap__map-link {
    margin-bottom: 15px;
  }
}
@media print, screen and (min-width: 1025px) {
  .company-wrap__map-link:hover {
    text-decoration: none;
  }
}
.company-wrap__access {
  border-bottom: 1px dotted #CCC;
  padding-bottom: 8px;
}
.company-wrap__access__icon {
  display: inline-block;
  line-height: 1.3;
  background-image: url(../img/common/icon_train.jpg);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 32px auto;
  padding: 3px 0 3px 40px;
}
@media screen and (max-width: 599px) {
  .company-wrap__access__icon {
    background-size: 28px auto;
    padding: 2px 0 2px 35px;
  }
}/*# sourceMappingURL=style.css.map */