@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hind:wght@400;500;600;700&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;
  }
}
/* 1400以上 */
@media screen and (max-width: 1400px) {
  .only1400 {
    display: none !important;
  }
}
/* タブレット・PC */
@media screen and (max-width: 599px) {
  .tbpc {
    display: none !important;
  }
}
/* タブレット02・PC */
@media screen and (max-width: 834px) {
  .tb02pc {
    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;
  }
}
/* タブレットのみ */
@media screen and (min-width: 835px) {
  .tb02sp {
    display: none !important;
  }
}
/* SPのみ */
@media screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
/* justify-content: space-between; */
@media print {
  .sp {
    display: none !important;
  }
  body {
    width: 1140px;
    -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%;
  scroll-behavior: smooth;
}

/*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;
}

/*キーボード操作フォーカス*/
a:focus-visible,
audio:focus-visible,
button:focus-visible,
details:focus-visible,
embed:focus-visible,
iframe:focus-visible,
img:focus-visible,
input:focus-visible,
label:focus-visible,
object:focus-visible,
select:focus-visible,
textarea:focus-visible,
video:focus-visible {
  outline: 1px solid #000 !important;
}

/*テーブル指定*/
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;
  transition: 0.1s;
  text-decoration: none;
}

/*クラスの指定がない場合のリンクのデフォルト色を指定*/
/*すべての要素の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: #a38941;
  /* Change as appropriate */
  color: #fff;
  /* 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 screen and (min-width: 1025px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: auto;
  }
}
/*--------------------------------------------------------
	body設定
----------------------------------------------------------*/
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
  color: #000;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff;
  line-height: 1.7;
  font-size: 1.6rem;
  overflow-x: hidden;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.02em;
  font-family: "Noto Sans JP", sans-serif !important;
}
@media screen and (min-width: 1025px) {
  body {
    font-weight: 400;
  }
}

/*クリアフィックス*/
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

/*Visually Hidden*/
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.noscroll {
  overflow: hidden;
}

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

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

.al-center {
  text-align: center;
}

.tel {
  color: inherit;
}

/*マージン*/
.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: 10px !important;
  }
}

.mb15 {
  margin-bottom: 15px !important;
}
@media screen and (max-width: 599px) {
  .mb15 {
    margin-bottom: 15px !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: 599px) {
  .mb30 {
    margin-bottom: 25px !important;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header {
  position: relative;
  height: 160px;
  z-index: 2;
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 70px 100px;
}
@media screen and (max-width: 1400px) {
  .header {
    padding: 60px 50px;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    padding: 50px 40px;
    height: auto;
  }
}
@media screen and (max-width: 599px) {
  .header {
    padding: 25px 20px;
  }
}

@media screen and (max-width: 599px) {
  .header-logo {
    width: calc(100% - 70px);
  }
}
.header-logo img {
  width: 100%;
  max-width: 295px;
}
@media screen and (max-width: 599px) {
  .header-logo img {
    max-width: 250px;
  }
}

/* ===================================
ハンバーガー
=====================================*/
/*ハンバーガーボタン*/
#nav-toggle {
  position: absolute;
  top: 0;
  right: 0;
  height: 90px;
  width: 100px;
  cursor: pointer;
  background-color: #101010;
  border-bottom-left-radius: 3px;
  z-index: 100;
  transition: 0.2s;
}
@media screen and (min-width: 1025px) {
  #nav-toggle {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  #nav-toggle {
    display: block;
    position: fixed;
  }
}
@media screen and (max-width: 599px) {
  #nav-toggle {
    width: 80px;
    height: 66px;
  }
}
#nav-toggle > div {
  position: absolute;
  top: 32px;
  left: 33px;
  width: 34px;
}
@media screen and (max-width: 599px) {
  #nav-toggle > div {
    top: 21px;
    left: 25px;
    width: 30px;
  }
}
#nav-toggle span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #5e5e5e;
  position: absolute;
  transition: transform 0.3s ease-in-out, top 0.5s ease;
  /* #nav-toggle close */
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 10px;
}
#nav-toggle span:nth-child(3) {
  top: 20px;
}

.open #nav-toggle span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  display: none;
}
.open #nav-toggle span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
  width: 100%;
}

/*黒背景*/
#gloval-nav-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 98;
  cursor: pointer;
  display: none;
}
.open #gloval-nav-overlay {
  display: block;
}
@media screen and (max-width: 1024px) {
  #gloval-nav-overlay {
    background-color: rgba(0, 0, 0, 0.5);
  }
}

/*ハンバーガー内*/
#gloval-nav {
  display: block;
  overflow: auto;
  background-color: #262626;
  position: fixed;
  top: 0;
  right: 0;
  width: 700px;
  height: 100vh;
  transform: translateX(700px);
  transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 99;
}
@media screen and (min-width: 1025px) {
  #gloval-nav::-webkit-scrollbar {
    width: 7px;
  }
  #gloval-nav::-webkit-scrollbar-track {
    background: #e6e6e6;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  #gloval-nav::-webkit-scrollbar-thumb {
    background: #c5c5c5;
    border-radius: 3px;
    box-shadow: none;
  }
}
@media screen and (max-width: 1024px) {
  #gloval-nav {
    width: 90%;
    max-width: 600px;
    transform: translateX(100%);
  }
}

.open #gloval-nav {
  transform: translateX(0);
}

.gloval-nav-contents {
  z-index: 999;
  padding: 130px 30px;
  max-width: 620px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .gloval-nav-contents {
    padding: 90px 30px 100px;
  }
}

.gloval-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 400px;
  margin: 0 auto 50px;
}

.gloval-nav-item {
  width: 100%;
}
.gloval-nav-item__title {
  margin-bottom: 25px;
  display: block;
  font-size: 2.8rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-family: "Hind", sans-serif !important;
  background-image: url(../img/common/icon_company.png);
  background-size: 23px auto;
  background-repeat: no-repeat;
  padding: 0 0 18px 38px;
  background-position: left 3px top 1px;
  border-bottom: 1px solid rgba(218, 218, 218, 0.2);
}
.gloval-nav-item__title--product {
  background-image: url(../img/common/icon_product.png);
  background-repeat: no-repeat;
  background-size: 30px auto;
  background-position: left 0 top 2px;
}
@media screen and (max-width: 599px) {
  .gloval-nav-item__title {
    padding: 0 0 16px 37px;
  }
}
.gloval-nav-item__title span {
  font-size: 1.3rem;
  opacity: 0.5;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: block;
  font-family: "Noto Sans JP", sans-serif !important;
}
.gloval-nav-item__list {
  padding-left: 28px;
}
@media screen and (max-width: 599px) {
  .gloval-nav-item__list {
    padding-left: 18px;
  }
}
.gloval-nav-item__list > li {
  margin-bottom: 17px;
}
.gloval-nav-item__list > li:last-child {
  margin-bottom: 0;
}
.gloval-nav-item__list > li > a {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
  display: block;
  background-image: url(../img/common/icon_arrow01.png);
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-position: left 0 top 5px;
  padding: 0 0 0 23px;
}
@media screen and (min-width: 1025px) {
  .gloval-nav-item__list > li > a:hover {
    opacity: 0.7;
    transform: translateX(2px);
  }
}
@media screen and (max-width: 599px) {
  .gloval-nav-item__list > li > a {
    font-size: 1.7rem;
  }
}

.gloval-nav-other-list {
  display: flex;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 599px) {
  .gloval-nav-other-list {
    margin: 0 auto 30px;
  }
}
.gloval-nav-other-list > li {
  width: calc((100% - 10px) / 2);
}
.gloval-nav-other-list > li > a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  text-align: center;
  padding: 32px 5px 8px 5px;
}
.gloval-nav-other-list > li > a.contact {
  background-image: url(../img/common/icon_contact.png);
  background-repeat: no-repeat;
  background-size: 18px auto;
  background-position: left 50% top 13px;
}
.gloval-nav-other-list > li > a.access {
  background-image: url(../img/common/icon_access.png);
  background-repeat: no-repeat;
  background-size: 15px auto;
  background-position: left 50% top 9px;
}
@media screen and (min-width: 1025px) {
  .gloval-nav-other-list > li > a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(2px);
  }
}

.gloval-nav-bottom-list {
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.gloval-nav-bottom-list > li > a {
  color: #858585;
  font-size: 1.4rem;
  font-weight: 500;
}

/*お問い合わせ*/
.footer-contact-common {
  background-image: url(../img/common/contact_bg.webp);
  background-size: cover;
  background-position: left 50% top 0;
  background-attachment: fixed;
}
@media screen and (max-width: 599px) {
  .footer-contact-common {
    background-position: right 80% top 0;
  }
}
.footer-contact-common__inner {
  text-align: center;
  padding: 115px 60px 120px;
  margin-right: 280px;
}
@media screen and (max-width: 1400px) {
  .footer-contact-common__inner {
    margin-right: 240px;
    padding: 90px 50px 100px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-contact-common__inner {
    padding: 80px 40px 80px;
    margin-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .footer-contact-common__inner {
    padding: 60px 20px 60px;
  }
}

.footer-contact-common-title {
  font-size: 7rem;
  font-family: "Hind", sans-serif !important;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 35px;
}
@media screen and (max-width: 1400px) {
  .footer-contact-common-title {
    font-size: 6.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer-contact-common-title {
    font-size: 5.6rem;
  }
}
@media screen and (max-width: 599px) {
  .footer-contact-common-title {
    font-size: 4.2rem;
  }
}
.footer-contact-common-title span {
  display: block;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 599px) {
  .footer-contact-common-title span {
    font-size: 1.5rem;
  }
}

.footer-contact-common-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1030px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .footer-contact-common-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.footer-contact-common-item {
  width: calc((100% - 30px) / 2);
  background-color: #fff;
  border-radius: 3px;
  padding: 34px;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .footer-contact-common-item {
    padding: 28px 10px;
  }
}
@media screen and (max-width: 599px) {
  .footer-contact-common-item {
    width: 100%;
  }
}
.footer-contact-common-item__title {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 12px;
}
@media screen and (max-width: 1400px) {
  .footer-contact-common-item__title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer-contact-common-item__title {
    font-size: 1.7rem;
  }
}
.footer-contact-common-item__mail > a {
  width: 100%;
  max-width: 230px;
  background-color: #101010;
  color: #fff;
  display: block;
  margin: 0 auto;
  font-weight: 500;
  border-radius: 100px;
  padding: 18px 15px;
}
.footer-contact-common-item__mail > a > span {
  background-image: url(../img/common/icon_arrow03.png), url(../img/common/icon_contact.png);
  background-repeat: no-repeat;
  background-size: 14px auto, 18px auto;
  background-position: right 0 top 7px, left 0 top 6px;
  padding: 0 27px 0 30px;
}
@media screen and (min-width: 1025px) {
  .footer-contact-common-item__mail > a:hover {
    transform: translateY(2px);
    opacity: 0.8;
  }
}
@media screen and (max-width: 1024px) {
  .footer-contact-common-item__mail > a {
    font-size: 1.5rem;
  }
  .footer-contact-common-item__mail > a span {
    background-position: right 0 top 7px, left 0 top 4px;
  }
}
.footer-contact-common-item__tel {
  margin-bottom: 5px;
}
.footer-contact-common-item__tel > a {
  font-size: 4.6rem;
  font-family: "Hind", sans-serif !important;
  line-height: 0.9;
  color: #000;
  font-weight: 600;
  display: block;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1400px) {
  .footer-contact-common-item__tel > a {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer-contact-common-item__tel > a {
    font-size: 3.8rem;
  }
}
.footer-contact-common-item__tel > a span {
  background-image: url(../img/common/icon_tel.svg);
  background-repeat: no-repeat;
  background-size: 29px auto;
  background-position: left 0 top 16px;
  padding: 0 10px 0 33px;
}
@media screen and (max-width: 1024px) {
  .footer-contact-common-item__tel > a span {
    background-size: 20px auto;
    padding: 0 10px 0 25px;
  }
}
.footer-contact-common-item__text01 {
  font-size: 1.5rem;
  font-weight: 700;
}

/* //お問い合わせ */
.footer {
  background-color: #262626;
  background-image: url(../img/common/footer_line.png);
  background-repeat: no-repeat;
  background-position: right 280px bottom 0;
  padding-right: 280px;
}
@media screen and (max-width: 1400px) {
  .footer {
    padding-right: 240px;
    background-position: right 240px bottom 0;
    background-size: 500px;
  }
}
@media screen and (max-width: 1024px) {
  .footer {
    padding-right: 0;
    background-position: right 0 bottom 0;
  }
}
@media screen and (max-width: 599px) {
  .footer {
    background-size: 250px;
  }
}

.footer-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 150px 60px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1400px) {
  .footer-inner {
    padding: 100px 50px 120px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-inner {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 599px) {
  .footer-inner {
    padding: 70px 20px 70px;
  }
}

.footer-block01 {
  padding: 0 50px 0 0;
}
@media screen and (max-width: 1400px) {
  .footer-block01 {
    padding: 0 30px 0 0;
  }
}
@media screen and (max-width: 1024px) {
  .footer-block01 {
    width: 100%;
    padding: 0;
    text-align: center;
  }
}

.footer-block02 {
  padding: 0 70px 0 70px;
  border-left: 1px solid #505050;
  display: flex;
  gap: 70px;
}
@media screen and (max-width: 1400px) {
  .footer-block02 {
    padding: 0 30px 0 30px;
    gap: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-block02 {
    display: none;
  }
}

.footer-block03 {
  padding: 0 0 0 50px;
  border-left: 1px solid #505050;
}
@media screen and (max-width: 1400px) {
  .footer-block03 {
    padding: 0 0 0 30px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-block03 {
    width: 100%;
    padding: 0;
    border: none;
  }
}

.footer-logo-text {
  margin-bottom: 15px;
  font-family: "Hind", sans-serif !important;
  color: #fff;
  font-size: 10.9rem;
  line-height: 0.9;
  font-weight: 500;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 1400px) {
  .footer-logo-text {
    font-size: 7rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer-logo-text {
    font-size: 5.6rem;
  }
}
@media screen and (max-width: 599px) {
  .footer-logo-text {
    margin-bottom: 10px;
    font-size: 4.5rem;
  }
}
.footer-logo-text > a {
  color: #fff;
}
.footer-logo-text span {
  padding-left: 5px;
  font-size: 9rem;
}
@media screen and (max-width: 1400px) {
  .footer-logo-text span {
    font-size: 5rem;
  }
}
@media screen and (max-width: 599px) {
  .footer-logo-text span {
    font-size: 4rem;
  }
}

.footer-logo-image {
  width: 100%;
  max-width: 295px;
  margin-bottom: 70px;
}
@media screen and (max-width: 1400px) {
  .footer-logo-image {
    margin-bottom: 40px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer-logo-image {
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 599px) {
  .footer-logo-image {
    max-width: 240px;
  }
}

.footer-address {
  color: #fff;
  font-size: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .footer-address {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .footer-address {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 1024px) {
  .footer-links-item {
    width: 100%;
  }
}
.footer-links-item__title {
  margin-bottom: 25px;
  display: block;
  font-size: 3rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-family: "Hind", sans-serif !important;
  background-image: url(../img/common/icon_company.png);
  background-size: 23px auto;
  background-repeat: no-repeat;
  padding: 0 0 0 38px;
  background-position: left 3px top 1px;
}
.footer-links-item__title--product {
  background-image: url(../img/common/icon_product.png);
  background-repeat: no-repeat;
  background-size: 30px auto;
  background-position: left 0 top 2px;
}
@media screen and (max-width: 1400px) {
  .footer-links-item__title {
    font-size: 2.6rem;
  }
}
.footer-links-item__title span {
  font-size: 1.3rem;
  opacity: 0.5;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: block;
  font-family: "Noto Sans JP", sans-serif !important;
}
.footer-links-item__list {
  padding-left: 38px;
}
@media screen and (max-width: 1400px) {
  .footer-links-item__list {
    padding-left: 0;
  }
}
.footer-links-item__list > li {
  margin-bottom: 17px;
}
.footer-links-item__list > li:last-child {
  margin-bottom: 0;
}
.footer-links-item__list > li > a {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
  display: block;
  background-image: url(../img/common/icon_arrow01.png);
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-position: left 0 top 5px;
  padding: 0 0 0 23px;
}
@media screen and (min-width: 1025px) {
  .footer-links-item__list > li > a:hover {
    opacity: 0.7;
    transform: translateX(2px);
  }
}
@media screen and (max-width: 1400px) {
  .footer-links-item__list > li > a {
    font-size: 1.5rem;
  }
}

.footer-other-links {
  margin-bottom: 60px;
}
@media screen and (max-width: 1400px) {
  .footer-other-links {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .footer-other-links {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .footer-other-links {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.footer-other-links > li {
  margin-bottom: 18px;
}
@media screen and (max-width: 1400px) {
  .footer-other-links > li {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 599px) {
  .footer-other-links > li {
    width: 100%;
    text-align: center;
    margin: 0;
  }
}
.footer-other-links > li > a {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  display: block;
}
@media screen and (min-width: 1025px) {
  .footer-other-links > li > a:hover {
    transform: translateX(2px);
    opacity: 0.8;
  }
}
@media screen and (max-width: 1400px) {
  .footer-other-links > li > a {
    font-size: 1.4rem;
  }
}

.footer-copyright {
  font-size: 1rem;
  font-family: "Hind", sans-serif !important;
  color: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 1024px) {
  .footer-copyright {
    text-align: center;
  }
}

.pagetop {
  position: fixed;
  right: 300px;
  bottom: 20px;
  z-index: 50;
}
@media screen and (min-width: 1025px) {
  .pagetop:hover {
    opacity: 0.5;
  }
}

.side {
  position: fixed;
  right: 0;
  top: 140px;
  z-index: 100;
  height: 100%;
  width: 280px;
  max-height: calc(100% - 240px);
  background-color: #101010;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  transition: 0.4s ease;
  overflow-y: auto;
}
@media screen and (max-height: 800px) {
  .side {
    max-height: calc(100% - 140px);
  }
}
@media screen and (min-width: 1025px) {
  .side::-webkit-scrollbar {
    width: 6px;
  }
  .side::-webkit-scrollbar-track {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 17px 0;
  }
  .side::-webkit-scrollbar-thumb {
    background: #6d6d6d;
    border-radius: 10px;
    box-shadow: none;
  }
}
@media screen and (max-width: 1400px) {
  .side {
    top: 40px;
    width: 240px;
    max-height: calc(100% - 80px);
  }
}
@media screen and (max-width: 1024px) {
  .side {
    display: none;
  }
}
.side.transform {
  top: 0;
  max-height: 100%;
}

.side-inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 36px;
  box-sizing: border-box;
}
@media screen and (max-width: 1400px) {
  .side-inner {
    padding: 60px 20px;
  }
}

.side-head-list {
  display: flex;
  gap: 5px;
  margin-bottom: 40px;
}
.side-head-list > li {
  width: calc((100% - 5px) / 2);
}
.side-head-list > li > a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  text-align: center;
  padding: 32px 5px 8px 5px;
}
.side-head-list > li > a.contact {
  background-image: url(../img/common/icon_contact.png);
  background-repeat: no-repeat;
  background-size: 18px auto;
  background-position: left 50% top 13px;
}
.side-head-list > li > a.access {
  background-image: url(../img/common/icon_access.png);
  background-repeat: no-repeat;
  background-size: 15px auto;
  background-position: left 50% top 9px;
}
@media screen and (min-width: 1025px) {
  .side-head-list > li > a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(2px);
  }
}

.side-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 1400px) {
  .side-list {
    gap: 40px;
  }
}

.side-item {
  width: 100%;
}
.side-item__title {
  margin-bottom: 25px;
  display: block;
  font-size: 3rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  font-family: "Hind", sans-serif !important;
  background-image: url(../img/common/icon_company.png);
  background-size: 23px auto;
  background-repeat: no-repeat;
  padding: 0 0 0 38px;
  background-position: left 3px top 1px;
}
.side-item__title--product {
  background-image: url(../img/common/icon_product.png);
  background-repeat: no-repeat;
  background-size: 30px auto;
  background-position: left 0 top 2px;
}
@media screen and (max-width: 1400px) {
  .side-item__title {
    font-size: 2.8rem;
  }
}
.side-item__title span {
  font-size: 1.3rem;
  opacity: 0.5;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: block;
  font-family: "Noto Sans JP", sans-serif !important;
}
.side-item__list {
  padding-left: 38px;
}
.side-item__list > li {
  margin-bottom: 17px;
}
.side-item__list > li:last-child {
  margin-bottom: 0;
}
.side-item__list > li > a {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 500;
  line-height: 1.3;
  display: block;
  background-image: url(../img/common/icon_arrow01.png);
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-position: left 0 top 5px;
  padding: 0 0 0 23px;
}
@media screen and (min-width: 1025px) {
  .side-item__list > li > a:hover {
    opacity: 0.7;
    transform: translateX(2px);
  }
}

.under-construction {
  text-align: center;
}

.contents-layout-base {
  background-color: #ebf0f5;
  padding: 0 340px 180px 60px;
}
@media screen and (max-width: 1400px) {
  .contents-layout-base {
    padding: 0 290px 140px 50px;
  }
}
@media screen and (max-width: 1024px) {
  .contents-layout-base {
    padding: 60px 40px 110px;
  }
}
@media screen and (max-width: 599px) {
  .contents-layout-base {
    padding: 40px 20px 70px;
  }
}
.contents-layout-base--pd-side-none {
  padding: 0 280px 180px 0;
}
@media screen and (max-width: 1400px) {
  .contents-layout-base--pd-side-none {
    padding: 0 240px 140px 0;
  }
}
@media screen and (max-width: 1024px) {
  .contents-layout-base--pd-side-none {
    padding: 60px 0 110px;
  }
}
@media screen and (max-width: 599px) {
  .contents-layout-base--pd-side-none {
    padding: 40px 0 70px;
  }
}

.contents-inner-base {
  max-width: 1060px;
  margin: 0 auto;
}

/*--------------------------------------------------------
pagetitle
----------------------------------------------------------*/
.pagetitle {
  height: 600px;
  position: relative;
  margin-top: -160px;
  display: flex;
  align-items: center;
  padding: 140px 280px 20px 100px;
  background-image: url(../img/common/pagetitle_bg.webp);
  background-size: cover;
  background-position: left 0 top 0;
  background-attachment: fixed;
}
@media screen and (max-width: 1400px) {
  .pagetitle {
    padding: 140px 280px 20px 50px;
    height: 460px;
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle {
    padding: 150px 40px 10px 40px;
    background-position: right 85% top 0;
    height: 430px;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle {
    height: 360px;
    padding: 170px 20px 10px 20px;
  }
}
.pagetitle__text-box {
  z-index: 1;
  color: #fff;
}
.pagetitle__title {
  font-family: "Hind", sans-serif !important;
  font-size: 12.3rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-indent: -0.05em;
  margin-bottom: 3px;
}
@media screen and (max-width: 1400px) {
  .pagetitle__title {
    font-size: 10rem;
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle__title {
    font-size: 9rem;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__title {
    font-size: 5.8rem;
    margin-bottom: 30px;
  }
}
.pagetitle__title span {
  font-size: 2.6rem;
  letter-spacing: 0.03em;
  font-family: "Noto Sans JP", sans-serif !important;
  margin-left: 25px;
}
@media screen and (max-width: 1400px) {
  .pagetitle__title span {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .pagetitle__title span {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 599px) {
  .pagetitle__title span {
    margin-left: 0;
    display: block;
    font-size: 1.8rem;
  }
}
.pagetitle__text01 {
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: 35px;
}
@media screen and (max-width: 599px) {
  .pagetitle__text01 {
    display: none;
  }
}
.pagetitle__text02 {
  font-size: 1.8rem;
  font-family: "Hind", sans-serif !important;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 599px) {
  .pagetitle__text02 {
    font-size: 1.4rem;
  }
}

/*--------------------------------------------------------
breadcrumb
----------------------------------------------------------*/
.breadcrumb {
  padding: 40px 0 0 40px;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 500;
  margin-bottom: 75px;
  display: flex;
}
@media screen and (max-width: 1400px) {
  .breadcrumb {
    padding: 40px 0 0;
  }
}
@media screen and (max-width: 1024px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb > li {
  position: relative;
  font-size: 1.4rem;
  color: #9aa0ae;
  letter-spacing: 0;
}
.breadcrumb > li:not(:last-child) {
  padding-right: 45px;
}
.breadcrumb > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 22px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #838383;
  border-right: 1px solid #838383;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.breadcrumb > li > a {
  color: #000;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .breadcrumb > li > a:hover {
    text-decoration: none;
  }
}

/*--------------------------------------------------------
_wysiwyg
----------------------------------------------------------*/
.wysiwyg {
  /*各テンプレートを囲むbox【必須】*/
  /*タイトル処理*/
  /*キャッチコピーの処理*/
  /*本文テキスト・写真回り込み処理*/
  /*ボタン*/
  /*写真の処理*/
  /*リスト*/
  /*テーブル*/
  /*テーブル*/
  /*youtube*/
  /*以下テンプレート外*/
}
.wysiwyg img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.wysiwyg .box {
  margin-bottom: 40px;
}
.wysiwyg .box:before, .wysiwyg .box:after {
  content: "";
  display: table;
}
.wysiwyg .box:after {
  clear: both;
}
.wysiwyg .ttl01 {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.3;
  position: relative;
  padding: 0 0 2px 20px;
  margin-top: 20px;
  margin-bottom: -10px;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .ttl01 {
    font-size: 2.7rem;
    margin-bottom: -5px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl01 {
    font-size: 2.4rem;
    padding: 0 0 2px 17px;
  }
}
.wysiwyg .ttl01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: #101010;
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl01::before {
    width: 4px;
  }
}
.wysiwyg .ttl02 {
  background-color: #dee4eb;
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 14px 10px 14px 30px;
  position: relative;
  margin-top: 20px;
  margin-bottom: -15px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl02 {
    margin-top: 10px;
    font-size: 2rem;
  }
}
.wysiwyg .ttl02::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 14px;
  width: 4px;
  height: calc(100% - 22px);
  background-color: #101010;
  display: block;
}
.wysiwyg .ttl03 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  position: relative;
  padding: 2px 0 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: -15px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .ttl03 {
    padding: 2px 0 15px 0;
    font-size: 1.9rem;
  }
}
.wysiwyg .ttl03::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 38px;
  height: 3px;
  background-color: #101010;
}
.wysiwyg .ttl04 {
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 0 0 0 24px;
  line-height: 1.4;
  margin-bottom: -20px;
}
.wysiwyg .ttl04::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  height: 16px;
  width: 16px;
  border: 4px solid #101010;
  border-radius: 50px;
}
.wysiwyg .copy01 {
  color: #101010;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .wysiwyg .copy01 {
    font-size: 1.8rem;
  }
}
.wysiwyg .copy02 {
  color: #101010;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.4;
  font-family: serif;
}
@media screen and (max-width: 599px) {
  .wysiwyg .copy02 {
    font-size: 1.8rem;
  }
}
.wysiwyg .text--mincho {
  font-family: serif !important;
  font-weight: 500;
}
.wysiwyg .img-right {
  margin: 6px 0 20px 30px;
  max-width: 44%;
  float: right;
}
@media screen and (max-width: 599px) {
  .wysiwyg .img-right {
    margin: 0 auto 10px auto;
    width: auto;
    max-width: 100%;
    float: none;
  }
}
.wysiwyg .img-right img {
  max-width: 100%;
  border-radius: 3px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .img-right img {
    display: block;
    margin: 0 auto;
  }
}
.wysiwyg .img-left {
  margin: 6px 30px 20px 0;
  max-width: 44%;
  float: left;
}
@media screen and (max-width: 599px) {
  .wysiwyg .img-left {
    margin: 0 auto 10px auto;
    width: auto;
    max-width: 100%;
    float: none;
  }
}
.wysiwyg .img-left img {
  max-width: 100%;
  border-radius: 3px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .img-left img {
    display: block;
    margin: 0 auto;
  }
}
.wysiwyg .btn-wrapper {
  text-align: center;
}
.wysiwyg .btn-wrapper a {
  display: block;
  background-color: #101010;
  text-align: center;
  font-weight: 600;
  color: #969d9f;
  line-height: 1.4;
  padding: 14px 35px 15px;
  border-radius: 300px;
  position: relative;
  display: inline-block;
  min-width: 300px;
  background-image: url(../img/common/icon_arrow03.png);
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-position: right 30px top 50%;
}
@media screen and (min-width: 1025px) {
  .wysiwyg .btn-wrapper a:hover {
    transform: translateY(2px);
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .btn-wrapper a {
    max-width: 100%;
    min-width: auto;
    padding: 14px 45px 15px;
  }
}
.wysiwyg .photo-3 {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .photo-3 {
    gap: 15px;
  }
}
.wysiwyg .photo-3::after {
  content: none;
}
.wysiwyg .photo-3 li {
  flex: 1;
  text-align: center;
}
.wysiwyg .photo-3 li img {
  max-width: 100%;
  border-radius: 3px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .photo-3 li {
    width: 100%;
    flex: auto;
  }
}
.wysiwyg .photo-2 {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .photo-2 {
    gap: 15px;
  }
}
.wysiwyg .photo-2::after {
  content: none;
}
.wysiwyg .photo-2 li {
  flex: 1;
  text-align: center;
}
.wysiwyg .photo-2 li img {
  max-width: 100%;
  border-radius: 3px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .photo-2 li {
    width: 100%;
    flex: auto;
  }
}
.wysiwyg .photo-1 {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.wysiwyg .photo-1 img {
  border-radius: 3px;
}
.wysiwyg .caption {
  display: block;
  margin-top: 10px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .wysiwyg .caption {
    margin-top: 5px;
  }
}
.wysiwyg .list-wrapper {
  margin: 0;
  list-style: none;
  padding: 0;
}
.wysiwyg .list-wrapper li {
  position: relative;
  padding-left: 21px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.wysiwyg .list-wrapper li:last-child {
  margin-bottom: 0;
}
.wysiwyg .list-wrapper li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 3px;
  width: 10px;
  height: 10px;
  background-color: #101010;
  border-radius: 10px;
}
@media screen and (max-width: 599px) {
  .wysiwyg .list-wrapper li::before {
    top: 7px;
  }
}
.wysiwyg .list-wrapper02 {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: num;
}
.wysiwyg .list-wrapper02 li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 13px;
  line-height: 1.4;
}
.wysiwyg .list-wrapper02 li:last-child {
  margin-bottom: 0;
}
.wysiwyg .list-wrapper02 li::before {
  content: counter(num);
  counter-increment: num;
  top: -1px;
  left: 0;
  width: 25px;
  height: 25px;
  background-color: #101010;
  position: absolute;
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  padding-top: 3px;
}
.wysiwyg .table {
  width: 100%;
  border: 1px solid #ddd;
  border-collapse: collapse;
}
.wysiwyg .table thead th {
  padding: 15px;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
  background-color: #101010;
  color: #fff;
  border: 1px solid #d3d8de;
}
@media screen and (max-width: 599px) {
  .wysiwyg .table thead th {
    padding: 10px;
  }
}
.wysiwyg .table th {
  padding: 15px;
  line-height: 1.4;
  text-align: center;
  vertical-align: middle;
  background-color: #dee4eb;
  border: 1px solid #d3d8de;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  .wysiwyg .table th {
    padding: 10px;
  }
}
.wysiwyg .table td {
  padding: 15px;
  line-height: 1.4;
  vertical-align: middle;
  border: 1px solid #d3d8de;
}
@media screen and (max-width: 599px) {
  .wysiwyg .table td {
    padding: 10px;
  }
}
.wysiwyg .table02 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  .wysiwyg .table02 {
    display: block;
  }
}
.wysiwyg .table02 tr:nth-child(odd) {
  background-color: #dee4eb;
}
@media screen and (max-width: 599px) {
  .wysiwyg .table02 tr {
    width: 100%;
    display: block;
  }
}
.wysiwyg .table02 th {
  width: 240px;
  text-align: left;
  padding: 25px;
  color: #101010;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .table02 th {
    width: 200px;
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .table02 th {
    width: 100%;
    display: block;
    padding-bottom: 0;
  }
}
.wysiwyg .table02 td {
  padding: 25px;
}
@media screen and (max-width: 1024px) {
  .wysiwyg .table02 td {
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  .wysiwyg .table02 td {
    width: 100%;
    display: block;
    padding-top: 10px;
  }
}
.wysiwyg .youtube-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  border-radius: 3px;
  overflow: hidden;
}
.wysiwyg .youtube-wrapper iframe {
  width: 100%;
  height: 100%;
}
.wysiwyg .left {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.wysiwyg .center {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.wysiwyg .right {
  width: 100%;
  margin: 0 auto;
  text-align: right;
}
.wysiwyg h1 {
  font-size: 240%;
  line-height: 1.5;
  background: url(none);
  margin: 0px;
  padding: 0px;
}
.wysiwyg h2 {
  font-size: 180%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
  border-bottom: none;
}
.wysiwyg h3 {
  font-size: 140%;
  line-height: 1.5;
  background: url(none);
  margin: 0px;
  padding: 0px;
}
.wysiwyg h4 {
  font-size: 120%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
.wysiwyg h5 {
  font-size: 100%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
.wysiwyg h6 {
  font-size: 82%;
  line-height: 1.5;
  margin: 0;
  background: url(none);
  padding: 0px;
}
.wysiwyg ul {
  padding-left: 40px;
  list-style-type: disc;
}
.wysiwyg ol {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: decimal;
}
.wysiwyg blockquote {
  padding-left: 1em;
}
.wysiwyg table {
  font-size: 100%;
  border-collapse: collapse;
}
.wysiwyg hr {
  display: block;
}
.wysiwyg em {
  font-style: italic !important;
}
.wysiwyg strong {
  font-weight: bold !important;
}
.wysiwyg em strong, .wysiwyg strong em {
  font-style: italic !important;
  font-weight: bold !important;
}

/*--------------------------------------------------------
_pagination
----------------------------------------------------------*/
.pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.pagination__num {
  display: block;
  width: 50px;
  height: 50px;
  text-align: center;
  background-color: #dee4eb;
  color: #747b8a;
  font-family: "Hind", sans-serif !important;
  font-weight: 500;
  font-size: 2rem;
  border-radius: 50%;
  padding-top: 9px;
}
@media screen and (max-width: 1400px) {
  .pagination__num {
    padding-top: 12px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .pagination__num {
    font-size: 1.6rem;
    width: 40px;
    height: 40px;
    padding-top: 9px;
  }
}
.pagination__num:hover, .pagination__num.current {
  background-color: #101010;
  color: #fff;
}
.pagination__dot {
  width: 30px;
  display: block;
  text-align: center;
}

/*--------------------------------------------------------
title
----------------------------------------------------------*/
.base-sec-title01 {
  margin-bottom: 35px;
  font-size: 3.6rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 700;
  line-height: 1.3;
  border-left: 4px solid #b6201f;
  padding: 2px 0 5px 20px;
}
@media screen and (max-width: 1024px) {
  .base-sec-title01 {
    font-size: 3.2rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .base-sec-title01 {
    font-size: 2.4rem;
    padding: 2px 0 5px 15px;
    margin-bottom: 25px;
  }
}

.base-sec-title02 {
  margin-bottom: 25px;
  font-size: 3.6rem;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .base-sec-title02 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 599px) {
  .base-sec-title02 {
    font-size: 2.4rem;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
}
.base-sec-title02::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background-color: #b6201f;
}
@media screen and (max-width: 599px) {
  .base-sec-title02::before {
    height: 3px;
  }
}

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

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

.text-color-red {
  color: #e82a2a;
}

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

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

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

/*--------------------------------------------------------
button
----------------------------------------------------------*/
.btn-base {
  display: block;
  background-color: #101010;
  text-align: center;
  font-weight: 600;
  color: #d8d9da;
  line-height: 1.4;
  padding: 16px 40px 17px;
  border-radius: 300px;
  position: relative;
  background-image: url(../img/common/icon_arrow03.png);
  background-repeat: no-repeat;
  background-position: right 20px top 50%;
  background-size: 14px auto;
}
@media screen and (min-width: 1025px) {
  .btn-base:hover {
    transform: translateY(2px);
  }
}
.btn-base--back {
  background-image: url(../img/common/icon_arrow03_back.png);
  background-position: left 20px top 50%;
}
.btn-base--border {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-color: transparent;
  color: #fff;
  background-image: url(../img/common/icon_arrow05.png);
}

/* =====================================================

_form

===================================================== */
/*　全体共通　*/
input,
button,
textarea,
input[type=text],
input[type=search],
input[type=tel],
input[type=email],
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
}
input:focus,
button:focus,
textarea:focus,
input[type=text]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=email]:focus,
select:focus {
  outline: none !important;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
input::-webkit-input-placeholder,
button::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: #a1a1a1;
}
input::-moz-placeholder,
button::-moz-placeholder,
textarea::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=email]::-moz-placeholder,
select::-moz-placeholder {
  color: #a1a1a1;
  opacity: 1;
}
input:-ms-input-placeholder,
button:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: #a1a1a1 !important;
}

textarea {
  resize: vertical;
}

input[type=radio],
input[type=checkbox] {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

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

/*--リセット ここまで--*/
/*お問い合わせ・材料承認願*/
#contact input,
#contact textarea,
#contact select,
#approval input,
#approval textarea,
#approval select {
  width: 100%;
  background-color: #dee4eb;
  padding: 16px;
  font-weight: 500;
  resize: vertical;
  box-sizing: border-box;
  border-radius: 3px;
  /* Edge */
}
#contact input::placeholder,
#contact textarea::placeholder,
#contact select::placeholder,
#approval input::placeholder,
#approval textarea::placeholder,
#approval select::placeholder {
  color: #9da7b3;
}
#contact input::-ms-input-placeholder,
#contact textarea::-ms-input-placeholder,
#contact select::-ms-input-placeholder,
#approval input::-ms-input-placeholder,
#approval textarea::-ms-input-placeholder,
#approval select::-ms-input-placeholder {
  color: #9da7b3;
}
#contact input:focus,
#contact textarea:focus,
#contact select:focus,
#approval input:focus,
#approval textarea:focus,
#approval select:focus {
  outline: none !important;
  box-shadow: none;
}
#contact select,
#approval select {
  background-image: url(../img/common/select_arrow.png);
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  background-size: 14px auto;
  padding-right: 28px;
}
#contact select::-ms-expand,
#approval select::-ms-expand {
  display: none;
}

.form-head-text {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .form-head-text {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .form-head-text {
    margin-bottom: 40px;
  }
}

.form-wrapper {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 50px;
}

.form-tbl-wd400 input {
  width: 100%;
  max-width: 400px;
}
@media screen and (max-width: 599px) {
  .form-tbl-wd400 input {
    max-width: 100%;
  }
}

.form-tbl {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 50px;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .form-tbl {
    margin-bottom: 0;
    border-top: none;
  }
}
.form-tbl th {
  width: 300px;
  text-align: left;
  box-sizing: border-box;
  position: relative;
  font-weight: 600;
  font-size: 1.7rem;
  padding: 25px 25px 25px 0;
  vertical-align: top;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .form-tbl th {
    width: 100%;
    display: block;
    line-height: 1.3;
    padding: 4px 0 13px 16px;
    border-radius: 3px;
    position: relative;
    font-size: 1.8rem;
  }
  .form-tbl th::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: calc(100% - 8px);
    background-color: #101010;
  }
}
@media screen and (max-width: 599px) {
  .form-tbl th {
    font-size: 1.7rem;
  }
}
.form-tbl td {
  padding: 25px 0 25px 25px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .form-tbl td {
    display: block;
    border-bottom: none;
    padding: 15px 0 60px;
  }
}
@media screen and (max-width: 599px) {
  .form-tbl td {
    padding: 4px 0 40px;
  }
}
.form-tbl--conf th {
  font-size: 1.6rem;
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .form-tbl--conf th {
    background-color: #dee4eb;
    padding: 10px 0 10px 16px;
  }
  .form-tbl--conf th::before {
    content: none;
    height: 100%;
  }
}
.form-tbl--conf td {
  word-break: break-all;
  line-height: 1.4;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .form-tbl--conf td {
    padding: 15px 0 40px;
  }
}

/*共通必須項目*/
.form-must {
  margin-left: 12px;
  padding: 2px 12px 3px;
  font-size: 1.3rem;
  line-height: 1.4;
  border-radius: 2px;
  background-color: #b6201f;
  color: #fff;
  display: inline-block;
  vertical-align: text-bottom;
}
.form-must--mgnone {
  margin: 0;
}

/*共通ラジオボタン リスト*/
.form-radio-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form-radio-list > li {
  width: 100%;
  line-height: 1.3;
  margin-bottom: 7px;
}
.form-radio-list > li:last-child {
  margin-bottom: 0;
}
.form-radio-list > li input[type=radio] {
  display: none;
}
.form-radio-list > li label {
  display: block;
  position: relative;
  cursor: pointer;
  padding-left: 35px;
  padding-right: 40px;
}
@media screen and (max-width: 599px) {
  .form-radio-list > li label {
    line-height: 1.5;
    padding-top: 2px;
  }
}
.form-radio-list > li label:before {
  position: absolute;
  content: "";
  top: -2px;
  left: 0;
  width: 26px;
  height: 26px;
  background: #d5dde7;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .form-radio-list > li label:before {
    top: 0;
  }
}
.form-radio-list > li input[type=radio]:checked + label:after {
  position: absolute;
  content: "";
  top: 12px;
  left: 6px;
  width: 14px;
  height: 14px;
  margin-top: -8px;
  border-radius: 50%;
  background: #101010;
}
@media screen and (max-width: 599px) {
  .form-radio-list > li input[type=radio]:checked + label:after {
    top: 14px;
  }
}

/*住所*/
.form-address-list > li {
  margin-bottom: 14px;
}
.form-address-list > li:last-child {
  margin-bottom: 0;
}
.form-address-list__post {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .form-address-list__post {
    flex-wrap: wrap;
  }
}
.form-address-list__post span {
  width: 170px;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .form-address-list__post span {
    width: 100%;
    margin-bottom: 5px;
  }
}
.form-address-list__post input {
  width: calc(100% - 130px);
  max-width: 220px;
}
@media screen and (max-width: 599px) {
  .form-address-list__post input {
    width: 100%;
    max-width: calc(100% - 110px);
  }
}
.form-address-list__post button {
  margin-left: 10px;
  width: 120px;
  background-color: #262626;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  line-height: 1.2;
  padding: 21px 10px;
  font-size: 1.4rem;
}
@media screen and (min-width: 1025px) {
  .form-address-list__post button:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .form-address-list__post button {
    width: 100px;
    height: 59px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    font-size: 1.3rem;
  }
}
.form-address-list__select {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .form-address-list__select {
    flex-wrap: wrap;
  }
}
.form-address-list__select span {
  width: 170px;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .form-address-list__select span {
    width: 100%;
    margin-bottom: 5px;
  }
}
.form-address-list__select select {
  width: calc(100% - 170px) !important;
  max-width: 220px;
}
@media screen and (max-width: 599px) {
  .form-address-list__select select {
    width: 100% !important;
    max-width: 100%;
  }
}
.form-address-list__text {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 599px) {
  .form-address-list__text {
    flex-wrap: wrap;
  }
}
.form-address-list__text span {
  width: 170px;
  display: inline-block;
}
@media screen and (max-width: 599px) {
  .form-address-list__text span {
    width: 100%;
    margin-bottom: 5px;
  }
}
.form-address-list__text input {
  width: calc(100% - 170px) !important;
}
@media screen and (max-width: 599px) {
  .form-address-list__text input {
    width: 100% !important;
    max-width: 100%;
  }
}

/*お名前/フリガナ*/
.form-name-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
}
.form-name-list > li {
  display: flex;
  align-items: center;
}
.form-name-list > li input {
  max-width: 220px !important;
}
.form-name-list > li span {
  margin-right: 5px;
  display: block;
  width: 50px;
  text-align: center;
}

.form-privacy-text {
  text-align: center;
  line-height: 1.4;
  margin-bottom: 35px;
}
@media screen and (max-width: 599px) {
  .form-privacy-text {
    margin-bottom: 30px;
  }
}
.form-privacy-text a {
  color: #6b7c90;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .form-privacy-text a:hover {
    text-decoration: none;
  }
}

.form-btn {
  margin: 0 auto;
  display: block;
  position: relative;
}
.form-btn input[type=submit] {
  max-width: 270px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #101010 !important;
  text-align: center;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  padding: 10px;
  border-radius: 6px;
  font-size: 1.8rem;
  transition: 0.2s;
  background-image: url(../img/common/icon_arrow03.png);
  background-size: 15px auto;
  background-repeat: no-repeat;
  background-position: right 20px top 50%;
}
@media screen and (min-width: 1025px) {
  .form-btn input[type=submit]:hover {
    transform: translateY(2px);
  }
}
.form-btn__corrected {
  width: 210px;
  margin: 20px auto 0;
  padding: 14px 17px;
  background-color: #818181;
  color: #fff;
  text-align: center;
  display: block;
  border-radius: 3px;
  transition: 0.2s;
  line-height: 1.3;
  background-image: url(../img/common/icon_arrow03_back.png);
  background-size: 15px auto;
  background-repeat: no-repeat;
  background-position: left 15px top 50%;
  font-weight: 500;
}
@media screen and (min-width: 1025px) {
  .form-btn__corrected:hover {
    transform: translateY(2px);
  }
}
@media screen and (max-width: 1024px) {
  .form-btn__corrected {
    position: relative;
    margin: 15px auto 0;
    padding: 15px;
  }
}

.form-error {
  margin-bottom: 50px;
  padding: 26px;
  color: #da3131;
  font-weight: 500;
  border-radius: 2px;
  background-color: #f0d2d2;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .form-error {
    padding: 25px;
  }
}
@media screen and (max-width: 599px) {
  .form-error {
    margin-bottom: 20px;
    padding: 15px;
  }
}

.form-error-text {
  margin-bottom: 10px;
  color: #da3131;
  line-height: 1.3;
}

.form-send {
  margin-bottom: 35px;
  background-color: #dee4eb;
  border-radius: 6px;
  text-align: center;
  padding: 70px 20px;
}
@media screen and (max-width: 1024px) {
  .form-send {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 599px) {
  .form-send {
    padding: 40px 20px;
    margin-bottom: 25px;
  }
}
.form-send > dt {
  font-size: 2.7rem;
  color: #101010;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3;
  margin-bottom: 25px;
}
@media screen and (max-width: 599px) {
  .form-send > dt {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
}

.form-send-btn {
  max-width: 210px;
  margin: 0 auto;
}

.list-base-style01 > li {
  line-height: 1.3;
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}
.list-base-style01 > li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #b6201f;
  border-radius: 100px;
}
.list-base-style01 > li:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------
common
----------------------------------------------------------*/
.common-contact {
  background-color: #c6e3de;
  border-radius: 15px;
  padding: 35px 35px 45px;
}
@media screen and (max-width: 1024px) {
  .common-contact {
    padding: 25px;
  }
}
@media screen and (max-width: 599px) {
  .common-contact {
    border-radius: 10px;
    padding: 15px 20px 20px;
  }
}
.common-contact__title {
  margin-bottom: 20px;
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .common-contact__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__title {
    margin-bottom: 15px;
    font-size: 1.8rem;
  }
}
.common-contact__title span {
  color: #08a189;
}
.common-contact__box {
  max-width: 800px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0px 0px 10px 6px rgba(140, 199, 189, 0.25);
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .common-contact__box {
    border-radius: 10px;
  }
}
.common-contact__box__upper-parts01 {
  background-color: #fff;
  padding: 35px 30px 30px;
}
@media screen and (max-width: 834px) {
  .common-contact__box__upper-parts01 {
    padding: 30px 30px 25px;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__upper-parts01 {
    padding: 20px 20px 20px;
  }
}
.common-contact__box__upper-parts01__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 655px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__upper-parts01__inner {
    gap: 30px;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__upper-parts01__inner {
    gap: 15px;
  }
}
.common-contact__box__upper-parts01__inner__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 290px;
}
@media screen and (max-width: 834px) {
  .common-contact__box__upper-parts01__inner__logo {
    width: 230px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__upper-parts01__inner__logo {
    width: 250px;
  }
}
.common-contact__box__upper-parts01__inner__address {
  width: calc(100% - 330px);
  font-size: 1.6rem;
  letter-spacing: -0.05rem;
  line-height: 1.5;
}
@media screen and (max-width: 834px) {
  .common-contact__box__upper-parts01__inner__address {
    width: calc(100% - 260px);
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__upper-parts01__inner__address {
    width: 100%;
    font-size: 1.5rem;
  }
}
.common-contact__box__under-parts01 {
  background-color: #f2f2f2;
  padding: 30px 30px 25px;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__under-parts01 {
    padding: 25px;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts01 {
    padding: 20px;
  }
}
.common-contact__box__under-parts01__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 25px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts01__inner {
    gap: 15px;
  }
}
.common-contact__box__under-parts01__inner__tel {
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .common-contact__box__under-parts01__inner__tel a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts01__inner__tel {
    width: 100%;
  }
}
.common-contact__box__under-parts01__inner__tel__number {
  display: block;
  font-family: "Hind", sans-serif !important;
  font-size: 4.1rem;
  font-weight: 600;
  line-height: 0.9;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__under-parts01__inner__tel__number {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts01__inner__tel__number {
    font-size: 2.9rem;
  }
}
.common-contact__box__under-parts01__inner__tel__number a {
  color: #08a189;
}
.common-contact__box__under-parts01__inner__tel__number__en {
  margin-right: 10px;
  color: #222;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.9rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__under-parts01__inner__tel__number__en {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts01__inner__tel__number__en {
    margin-right: 5px;
    font-size: 1.7rem;
  }
}
.common-contact__box__under-parts01__inner__tel__reception-hours {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.6rem;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts01__inner__tel__reception-hours {
    font-size: 1.5rem;
  }
}
.common-contact__box__under-parts01__inner__mail {
  width: 240px;
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts01__inner__mail {
    width: 100%;
  }
}
.common-contact__box__under-parts01__inner__mail__link {
  display: block;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0px 0px 3px 3px rgba(198, 198, 198, 0.5);
  padding: 13px 15px 15px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .common-contact__box__under-parts01__inner__mail__link:hover {
    transform: translateY(2px);
    opacity: 0.8;
  }
}
.common-contact__box__under-parts01__inner__mail__link__inner {
  position: relative;
  padding-left: 33px;
  color: #222;
  line-height: 1.4;
}
.common-contact__box__under-parts01__inner__mail__link__inner::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 26px;
  height: 21px;
  background-image: url(../img/common/icon_mail.svg);
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts01__inner__mail__link__inner::before {
    top: 2px;
  }
}
.common-contact__box__under-parts02 {
  background-color: #f2f2f2;
  padding: 30px 30px 25px;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__under-parts02 {
    padding: 25px;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02 {
    padding: 20px;
  }
}
.common-contact__box__under-parts02__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 50px;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__under-parts02__inner {
    max-width: 550px;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner {
    gap: 15px;
  }
}
.common-contact__box__under-parts02__inner__left {
  width: calc(53% - 25px);
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .common-contact__box__under-parts02__inner__left a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner__left {
    width: 100%;
  }
}
.common-contact__box__under-parts02__inner__left__number {
  display: block;
  font-family: "Hind", sans-serif !important;
  font-size: 4.1rem;
  font-weight: 600;
  line-height: 0.9;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__under-parts02__inner__left__number {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner__left__number {
    font-size: 2.9rem;
  }
}
.common-contact__box__under-parts02__inner__left__number a {
  color: #08a189;
}
.common-contact__box__under-parts02__inner__left__number__en {
  margin-right: 10px;
  color: #222;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.9rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__under-parts02__inner__left__number__en {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner__left__number__en {
    margin-right: 5px;
    font-size: 1.7rem;
  }
}
.common-contact__box__under-parts02__inner__left__reception-hours {
  display: block;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.6rem;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner__left__reception-hours {
    font-size: 1.5rem;
  }
}
.common-contact__box__under-parts02__inner__left__mail__link {
  display: block;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0px 0px 3px 3px rgba(198, 198, 198, 0.5);
  padding: 10px 15px 12px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .common-contact__box__under-parts02__inner__left__mail__link:hover {
    transform: translateY(2px);
    opacity: 0.8;
  }
}
.common-contact__box__under-parts02__inner__left__mail__link__inner {
  position: relative;
  padding-left: 33px;
  color: #222;
  line-height: 1.4;
}
.common-contact__box__under-parts02__inner__left__mail__link__inner::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 26px;
  height: 21px;
  background-image: url(../img/common/icon_mail.svg);
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner__left__mail__link__inner::before {
    top: 2px;
  }
}
.common-contact__box__under-parts02__inner__right {
  width: calc(47% - 25px);
}
@media screen and (min-width: 1025px) {
  .common-contact__box__under-parts02__inner__right a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner__right {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner__right .text-base {
    text-align: center;
  }
}
.common-contact__box__under-parts02__inner__right__number {
  display: block;
  font-family: "Hind", sans-serif !important;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 0.9;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__under-parts02__inner__right__number {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner__right__number {
    font-size: 2rem;
    text-align: center;
  }
}
.common-contact__box__under-parts02__inner__right__number a {
  color: #08a189;
}
.common-contact__box__under-parts02__inner__right__number__name {
  color: #222;
  font-size: 1.9rem;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .common-contact__box__under-parts02__inner__right__number__name {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 599px) {
  .common-contact__box__under-parts02__inner__right__number__name {
    font-size: 1.7rem;
  }
}

.anchor-base-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
}
.anchor-base-list > li {
  width: calc((100% - 20px) / 2);
  border-bottom: 1px solid #d3d8de;
}
@media screen and (max-width: 599px) {
  .anchor-base-list > li {
    width: 100%;
  }
}
.anchor-base-list > li > a {
  font-weight: 600;
  color: #101010;
  display: block;
  padding: 20px 0 20px 40px;
  background-image: url(../img/common/icon_arrow04.png);
  background-repeat: no-repeat;
  background-size: 30px 30px;
  background-position: left 0 top 16px;
  line-height: 1.3;
}
@media screen and (min-width: 1025px) {
  .anchor-base-list > li > a:hover {
    transform: translateY(2px);
    opacity: 0.7;
  }
}
@media screen and (max-width: 1024px) {
  .anchor-base-list > li > a {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .anchor-base-list > li > a {
    padding: 14px 0 14px 32px;
    background-size: 22px 22px;
    background-position: left 0 top 13px;
  }
}
.anchor-base-list--column3 > li {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 599px) {
  .anchor-base-list--column3 > li {
    width: calc((100% - 20px) / 2);
  }
}
.anchor-base-list--small > li > a {
  padding: 16px 0 16px 40px;
  background-position: left 0 top 12px;
}
@media screen and (max-width: 599px) {
  .anchor-base-list--small > li > a {
    padding: 12px 0 12px 30px;
  }
}

/*--------------------------------------------------------
top
----------------------------------------------------------*/
/* **************** topメイン ******************/
.top-main {
  width: 100%;
  height: 100vh;
  min-height: 910px;
  margin-top: -160px;
  background-image: url(../img/top/main01.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 8% 100px;
  display: flex;
  align-items: flex-end;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .top-main {
    padding: 70px 60px 100px;
    min-height: 700px;
  }
}
@media screen and (max-width: 1024px) {
  .top-main {
    min-height: auto;
    height: 800px;
    padding: 70px 40px 100px;
  }
}
@media screen and (max-width: 599px) {
  .top-main {
    height: 600px;
    padding: 70px 20px 80px;
  }
}
.top-main::before {
  content: "";
  max-width: 70%;
  width: 961px;
  height: 240px;
  background-image: url(../img/top/main_three.webp);
  background-repeat: no-repeat;
  background-position: right 0 bottom 0;
  background-size: contain;
  position: absolute;
  bottom: 0;
  right: 0;
}

.top-main-box {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .top-main-box {
    width: 100%;
  }
}
.top-main-box__en {
  margin-bottom: 40px;
  font-size: 17.6rem;
  color: #fff;
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 1400px) {
  .top-main-box__en {
    font-size: 13rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-main-box__en {
    font-size: 12rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main-box__en {
    font-size: 7rem;
    margin-bottom: 20px;
  }
}
.top-main-box__en span {
  font-size: 12rem;
}
@media screen and (max-width: 599px) {
  .top-main-box__en span {
    font-size: 6rem;
  }
}
.top-main-box__text01 {
  margin-bottom: 13px;
  font-size: 3.2rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (max-width: 1400px) {
  .top-main-box__text01 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 599px) {
  .top-main-box__text01 {
    font-size: 2.2rem;
  }
}
.top-main-box__text02 {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 600;
}

.top-about {
  background-image: url(../img/top/bg_gray.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.top-about__inner {
  padding: 170px 0 540px;
  margin-right: 280px;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .top-about__inner {
    margin-right: 240px;
    padding: 130px 0 410px;
  }
}
@media screen and (max-width: 1024px) {
  .top-about__inner {
    margin-right: 0;
    padding: 130px 0 430px;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner {
    padding: 90px 0 370px;
  }
}
.top-about__inner::before {
  content: "Reliable Quality and Trust";
  position: absolute;
  top: 100px;
  right: 100px;
  color: #a8afb1;
  font-family: "Hind", sans-serif !important;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1400px) {
  .top-about__inner::before {
    top: 70px;
  }
}
@media screen and (max-width: 1024px) {
  .top-about__inner::before {
    right: 40px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-about__inner::before {
    right: 20px;
    font-size: 1.7rem;
    top: 40px;
  }
}

.top-about-photo02 {
  position: absolute;
  left: 16%;
  bottom: 230px;
  width: 24%;
  height: 350px;
  border-radius: 3px;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .top-about-photo02 {
    height: 250px;
    bottom: 240px;
  }
}
@media screen and (max-width: 1024px) {
  .top-about-photo02 {
    width: 35%;
    left: 40px;
    height: 220px;
    bottom: 230px;
  }
}
@media screen and (max-width: 599px) {
  .top-about-photo02 {
    left: 20px;
    width: 50%;
    height: 140px;
    z-index: 1;
  }
}
.top-about-photo02 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.top-about-photo03 {
  position: absolute;
  right: 0;
  bottom: 150px;
  width: 40%;
  height: 400px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .top-about-photo03 {
    height: 270px;
    bottom: 130px;
  }
}
@media screen and (max-width: 1024px) {
  .top-about-photo03 {
    width: 53%;
    bottom: 110px;
  }
}
@media screen and (max-width: 599px) {
  .top-about-photo03 {
    width: 80%;
    height: 200px;
    bottom: 70px;
  }
}
.top-about-photo03 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.top-about-contents {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .top-about-contents {
    flex-wrap: wrap;
  }
}
.top-about-contents__photo {
  width: 48%;
  height: 700px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .top-about-contents__photo {
    height: 540px;
  }
}
@media screen and (max-width: 1024px) {
  .top-about-contents__photo {
    width: 80%;
    height: 300px;
  }
}
@media screen and (max-width: 599px) {
  .top-about-contents__photo {
    width: 88%;
    height: 240px;
  }
}
.top-about-contents__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.top-about-contents__text-box {
  width: 52%;
  padding: 70px 60px 60px;
}
@media screen and (max-width: 1400px) {
  .top-about-contents__text-box {
    padding: 40px 60px 60px;
  }
}
@media screen and (max-width: 1024px) {
  .top-about-contents__text-box {
    width: 100%;
    padding: 50px 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-about-contents__text-box {
    padding: 40px 20px;
  }
}

.top-about-item {
  max-width: 525px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .top-about-item {
    max-width: 100%;
    margin: 0;
  }
}
.top-about-item__title {
  font-family: "Hind", sans-serif !important;
  font-size: 12.3rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 45px;
}
@media screen and (max-width: 1400px) {
  .top-about-item__title {
    font-size: 9rem;
  }
}
@media screen and (max-width: 599px) {
  .top-about-item__title {
    font-size: 6rem;
    margin-bottom: 30px;
  }
}
.top-about-item__title span {
  display: block;
  font-size: 1.7rem;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 700;
  padding: 0 0 0 15px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .top-about-item__title span {
    font-size: 1.6rem;
  }
}
.top-about-item__title span::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 6px;
  left: 0;
  background-color: #b6201f;
  border-radius: 50%;
}
.top-about-item__copy {
  margin-bottom: 25px;
  line-height: 1.4;
  font-size: 2.7rem;
  font-weight: 700;
}
@media screen and (max-width: 1400px) {
  .top-about-item__copy {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-about-item__copy {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.top-about-item__text {
  margin-bottom: 40px;
  font-size: 1.7rem;
  font-weight: 500;
  text-align: justify;
  line-height: 1.9;
}
@media screen and (max-width: 1400px) {
  .top-about-item__text {
    margin-bottom: 30px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-about-item__text {
    line-height: 1.8;
    margin-bottom: 25px;
  }
}
.top-about-item__btn > a {
  max-width: 190px;
  margin: 0 0 0 auto;
}

.top-products {
  background-image: url(../img/top/product_bg.webp);
  background-size: cover;
  background-position: left 50% top 0;
  background-attachment: fixed;
}
.top-products__inner {
  padding: 125px 85px 250px;
  margin-right: 280px;
}
@media screen and (max-width: 1400px) {
  .top-products__inner {
    padding: 125px 45px 140px;
    margin-right: 240px;
  }
}
@media screen and (max-width: 1024px) {
  .top-products__inner {
    margin-right: 0;
    padding: 100px 25px 120px;
  }
}
@media screen and (max-width: 599px) {
  .top-products__inner {
    padding: 60px 0 70px;
  }
}

.top-products-head {
  margin-bottom: 85px;
  padding: 0 15px;
}
@media screen and (max-width: 1400px) {
  .top-products-head {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .top-products-head {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-products-head {
    padding: 0 20px;
    margin-bottom: 40px;
  }
}
.top-products-head__en {
  margin-bottom: 30px;
  font-size: 2.2rem;
  color: rgba(255, 255, 255, 0.2);
  font-family: "Hind", sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .top-products-head__en {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-products-head__en {
    font-size: 1.7rem;
    margin-bottom: 20px;
  }
}
.top-products-head__title {
  margin-bottom: 50px;
  font-size: 12.3rem;
  line-height: 1;
  color: #fff;
  font-family: "Hind", sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 1400px) {
  .top-products-head__title {
    font-size: 9rem;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .top-products-head__title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-products-head__title {
    font-size: min(17vw, 6rem);
  }
}
.top-products-head__title span {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.7rem;
  line-height: 1.3;
  letter-spacing: 0;
  display: block;
  padding: 0 0 0 15px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .top-products-head__title span {
    font-size: 1.6rem;
  }
}
.top-products-head__title span::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 7px;
  left: 0;
  background-color: #b6201f;
  border-radius: 50%;
}
.top-products-head__text {
  font-size: 1.7rem;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .top-products-head__text {
    font-size: 1.6rem;
  }
}

.top-products-slider {
  transition: 0.2s;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .top-products-slider {
    margin-bottom: 30px;
  }
}
.top-products-slider .slick-track {
  display: flex;
  padding-bottom: 3px;
}
.top-products-slider .slick-slide {
  height: auto !important;
}
.top-products-slider .prev-arrow {
  width: 23px;
  position: absolute;
  left: -30px;
  top: 50%;
  margin-top: -20px;
  z-index: 1;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .top-products-slider .prev-arrow:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1400px) {
  .top-products-slider .prev-arrow {
    width: 18px;
    left: -25px;
  }
}
@media screen and (max-width: 1024px) {
  .top-products-slider .prev-arrow {
    left: -15px;
  }
}
@media screen and (max-width: 599px) {
  .top-products-slider .prev-arrow {
    left: 28px;
  }
}
.top-products-slider .next-arrow {
  width: 23px;
  position: absolute;
  right: -30px;
  top: 50%;
  margin-top: -20px;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .top-products-slider .next-arrow:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1400px) {
  .top-products-slider .next-arrow {
    width: 18px;
    right: -25px;
  }
}
@media screen and (max-width: 1024px) {
  .top-products-slider .next-arrow {
    right: -15px;
  }
}
@media screen and (max-width: 599px) {
  .top-products-slider .next-arrow {
    right: 28px;
  }
}

.top-products-slider-item {
  margin: 0 15px;
  background-color: #303030;
  border-radius: 3px;
  padding: 40px 40px 50px;
  transition: 0.3s;
}
@media screen and (min-width: 1025px) {
  .top-products-slider-item:hover {
    opacity: 0.8;
    transform: translateY(3px);
  }
}
@media screen and (max-width: 1400px) {
  .top-products-slider-item {
    padding: 25px 25px 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-products-slider-item {
    padding: 25px 25px 40px;
  }
}
.top-products-slider-item > a {
  display: block;
  width: 100%;
  height: 100%;
}
.top-products-slider-item__photo {
  margin-bottom: 25px;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .top-products-slider-item__photo {
    margin-bottom: 20px;
  }
}
.top-products-slider-item__photo::before {
  content: "";
  display: block;
  padding-top: 66%;
}
.top-products-slider-item__photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
.top-products-slider-item__tag {
  margin-bottom: 13px;
}
.top-products-slider-item__tag span {
  margin: 0 4px 4px 0;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 200px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.3rem;
  padding: 3px 15px;
}
.top-products-slider-item__text {
  font-size: 3rem;
  line-height: 1.2;
  color: #fff;
  font-weight: 500;
  position: relative;
  padding: 4px 0 0 62px;
}
@media screen and (max-width: 1400px) {
  .top-products-slider-item__text {
    font-size: 2.3rem;
    padding: 0 0 0 36px;
  }
}
@media screen and (max-width: 599px) {
  .top-products-slider-item__text {
    font-size: 2.1rem;
  }
}
.top-products-slider-item__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-radius: 200px;
  display: block;
  background-color: #101010;
  background-image: url(../img/common/icon_arrow03.png);
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-position: center;
}
@media screen and (max-width: 1400px) {
  .top-products-slider-item__text::before {
    width: 28px;
    height: 28px;
    top: 1px;
  }
}
@media screen and (max-width: 599px) {
  .top-products-slider-item__text::before {
    top: -1px;
  }
}

.top-products-btn {
  max-width: 190px;
  margin: 0 auto 120px;
}
@media screen and (max-width: 1400px) {
  .top-products-btn {
    margin: 0 auto 70px;
  }
}
@media screen and (max-width: 1024px) {
  .top-products-btn {
    margin: 0 auto 50px;
  }
}

.top-products-other-list {
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 1400px) {
  .top-products-other-list {
    gap: 20px;
  }
}
@media screen and (max-width: 599px) {
  .top-products-other-list {
    padding: 0 20px;
    gap: 15px;
  }
}

.top-products-other-item {
  width: calc((100% - 90px) / 4);
}
@media screen and (max-width: 1400px) {
  .top-products-other-item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .top-products-other-item {
    width: calc((100% - 15px) / 2);
  }
}
.top-products-other-item > a {
  width: 100%;
  height: 100%;
  min-height: 160px;
  background-color: #fff;
  border-radius: 3px;
  padding: 15px;
  display: flex;
  background-image: url(../img/common/icon_arrow06.png);
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-position: right 12px bottom 12px;
}
@media screen and (min-width: 1025px) {
  .top-products-other-item > a:hover {
    transform: translateY(3px);
    opacity: 0.8;
  }
}
@media screen and (max-width: 1400px) {
  .top-products-other-item > a {
    min-height: auto;
  }
}
@media screen and (max-width: 599px) {
  .top-products-other-item > a {
    display: block;
    min-height: auto;
  }
}
.top-products-other-item__photo {
  width: 36%;
  border-radius: 3px;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .top-products-other-item__photo {
    height: 100px;
  }
}
@media screen and (max-width: 599px) {
  .top-products-other-item__photo {
    width: 100%;
  }
}
.top-products-other-item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.top-products-other-item__text-box {
  width: 64%;
  display: flex;
  align-items: center;
  padding: 0 0 0 20px;
  font-size: 2.4rem;
  font-weight: 600;
  color: #101010;
}
@media screen and (max-width: 1400px) {
  .top-products-other-item__text-box {
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-products-other-item__text-box {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-products-other-item__text-box {
    width: 100%;
    padding: 7px 0 10px;
    font-size: 1.9rem;
  }
}
.top-products-other-item__text-box span {
  display: block;
  color: #b1b6b8;
  font-family: "Hind", sans-serif !important;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.05em;
  font-size: 1.4rem;
}
@media screen and (max-width: 599px) {
  .top-products-other-item__text-box span {
    font-size: 1rem;
  }
}

.top-news {
  background-image: url(../img/top/bg_gray2.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.top-news__inner {
  margin-right: 280px;
  padding: 150px 100px;
  display: flex;
}
@media screen and (max-width: 1400px) {
  .top-news__inner {
    margin-right: 240px;
    padding: 120px 60px;
  }
}
@media screen and (max-width: 1024px) {
  .top-news__inner {
    margin-right: 0;
    flex-wrap: wrap;
    padding: 100px 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-news__inner {
    padding: 60px 20px;
  }
}

.top-news-head {
  width: 440px;
}
@media screen and (max-width: 1400px) {
  .top-news-head {
    width: 300px;
  }
}
@media screen and (max-width: 1024px) {
  .top-news-head {
    width: 100%;
  }
}
.top-news-head__title {
  margin-bottom: 65px;
  font-size: 11.3rem;
  line-height: 1;
  font-family: "Hind", sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 1400px) {
  .top-news-head__title {
    font-size: 8.6rem;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .top-news-head__title {
    font-size: 8.4rem;
  }
}
@media screen and (max-width: 599px) {
  .top-news-head__title {
    font-size: 6rem;
    margin-bottom: 30px;
  }
}
.top-news-head__title span {
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.7rem;
  line-height: 1.3;
  letter-spacing: 0;
  display: block;
  padding: 0 0 0 15px;
  position: relative;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .top-news-head__title span {
    font-size: 1.6rem;
  }
}
.top-news-head__title span::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 7px;
  left: 0;
  background-color: #b6201f;
  border-radius: 50%;
}
.top-news-head__btn {
  max-width: 190px;
}
@media screen and (max-width: 1024px) {
  .top-news-head__btn {
    display: none;
  }
}

.top-news-bottom-btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .top-news-bottom-btn {
    display: block;
    width: 100%;
    max-width: 190px;
    margin: 30px auto 0;
  }
}

.top-news-data {
  width: calc(100% - 440px);
}
@media screen and (max-width: 1400px) {
  .top-news-data {
    width: calc(100% - 300px);
  }
}
@media screen and (max-width: 1024px) {
  .top-news-data {
    width: 100%;
  }
}

.top-news-item {
  border-bottom: 1px solid #b9c2cb;
}
.top-news-item:first-child {
  border-top: 1px solid #b9c2cb;
}
.top-news-item > a {
  display: flex;
  align-items: flex-start;
  line-height: 1.3;
  position: relative;
  padding: 55px 0 55px 110px;
}
.top-news-item > a::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 0;
  width: 70px;
  height: 70px;
  background-color: #cfd8e0;
  border-radius: 200px;
  background-image: url(../img/common/icon_arrow02.png);
  background-size: 14px auto;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 1025px) {
  .top-news-item > a:hover {
    transform: translateX(3px);
    opacity: 0.8;
  }
}
@media screen and (max-width: 1400px) {
  .top-news-item > a {
    padding: 38px 0 38px 70px;
    flex-wrap: wrap;
  }
  .top-news-item > a::before {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 599px) {
  .top-news-item > a {
    flex-wrap: wrap;
    padding: 25px 40px 25px 0;
  }
  .top-news-item > a::before {
    width: 30px;
    height: 30px;
    top: 50%;
    left: auto;
    right: 0;
    margin-top: -15px;
    background-size: 10px auto;
  }
}
.top-news-item__date {
  width: 85px;
  color: #798190;
  font-weight: 500;
  font-size: 1.3rem;
  padding: 7px 0 0;
}
@media screen and (max-width: 599px) {
  .top-news-item__date {
    padding: 5px 0 0;
  }
}
.top-news-item__category {
  width: 115px;
  height: 30px;
  text-align: center;
  border-radius: 100px;
  background-color: #cfd8e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #747b8a;
  font-weight: 600;
  font-size: 1.3rem;
}
@media screen and (max-width: 599px) {
  .top-news-item__category {
    height: 26px;
  }
}
.top-news-item__text {
  width: calc(100% - 200px);
  color: #000;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.3;
  padding: 3px 0 0 30px;
}
@media screen and (max-width: 1400px) {
  .top-news-item__text {
    width: 100%;
    font-size: 1.6rem;
    padding: 10px 0 0 0;
  }
}
@media screen and (max-width: 599px) {
  .top-news-item__text {
    width: 100%;
    padding: 10px 0 0 0;
  }
}
.top-news-item__new {
  font-size: 1.3rem;
  color: #d64117;
  font-weight: 600;
  display: inline-block;
  margin-left: 15px;
}

.top-links__inner {
  margin-right: 280px;
  padding: 30px;
}
@media screen and (max-width: 1400px) {
  .top-links__inner {
    margin-right: 240px;
  }
}
@media screen and (max-width: 1024px) {
  .top-links__inner {
    margin-right: 0;
    padding: 40px;
  }
}
@media screen and (max-width: 599px) {
  .top-links__inner {
    padding: 20px;
  }
}

.top-links-list {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .top-links-list {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 599px) {
  .top-links-list {
    gap: 20px;
  }
}

.top-links-item {
  width: calc((100% - 60px) / 3);
  height: 600px;
  border-radius: 3px;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .top-links-item {
    height: 380px;
  }
}
@media screen and (max-width: 1024px) {
  .top-links-item {
    width: 100%;
    height: 220px;
  }
}
@media screen and (max-width: 599px) {
  .top-links-item {
    height: 190px;
  }
}
.top-links-item > a {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .top-links-item > a {
    padding-bottom: 0;
  }
}
.top-links-item > a::before {
  content: "";
  margin-left: -40px;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 50%;
  bottom: 135px;
  display: block;
  z-index: 1;
  border-radius: 50%;
  background-image: url(../img/common/icon_arrow05.png);
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-position: center;
}
@media screen and (max-width: 1400px) {
  .top-links-item > a::before {
    bottom: 80px;
    width: 60px;
    height: 60px;
    margin-left: -30px;
  }
}
@media screen and (max-width: 1024px) {
  .top-links-item > a::before {
    top: 50%;
    left: auto;
    right: 30px;
    bottom: auto;
    margin-left: 0;
    margin-top: -30px;
  }
}
@media screen and (max-width: 599px) {
  .top-links-item > a::before {
    width: 40px;
    height: 40px;
    background-size: 12px auto;
    right: 20px;
    margin-top: -20px;
  }
}
.top-links-item__photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top-links-item__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.3s;
}
@media screen and (min-width: 1025px) {
  .top-links-item__photo:hover img {
    transform: scale(1.1);
  }
}
.top-links-item__text {
  z-index: 1;
  color: #fff;
  font-size: 4.2rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 1400px) {
  .top-links-item__text {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-links-item__text {
    font-size: 3.3rem;
  }
}
@media screen and (max-width: 599px) {
  .top-links-item__text {
    font-size: 2.6rem;
  }
}
.top-links-item__text span {
  margin-top: 20px;
  display: block;
  font-size: 2rem;
  font-family: "Hind", sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1400px) {
  .top-links-item__text span {
    margin-top: 15px;
    font-size: 1.7rem;
    letter-spacing: 0;
    font-weight: 500;
  }
}
@media screen and (max-width: 599px) {
  .top-links-item__text span {
    margin-top: 10px;
    font-size: 1.4rem;
  }
}

.top-recruit {
  background-image: url(../img/top/bg_gray3.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
.top-recruit__inner {
  margin-right: 280px;
  padding: 150px 100px 150px;
  position: relative;
  display: flex;
  z-index: 1;
}
@media screen and (max-width: 1400px) {
  .top-recruit__inner {
    margin-right: 240px;
    padding: 130px 60px 130px;
  }
}
@media screen and (max-width: 1024px) {
  .top-recruit__inner {
    margin-right: 0;
    padding: 120px 40px 90px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit__inner {
    padding: 70px 20px 70px;
  }
}
.top-recruit__inner::before {
  content: "RECRUIT";
  color: rgba(170, 179, 187, 0.2);
  font-size: 30rem;
  font-family: "Hind", sans-serif !important;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  position: absolute;
  top: 72px;
  left: 88px;
  z-index: -1;
}
@media screen and (max-width: 1400px) {
  .top-recruit__inner::before {
    font-size: 20rem;
    left: 55px;
    top: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .top-recruit__inner::before {
    top: 80px;
    left: 32px;
    font-size: 16rem;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit__inner::before {
    font-size: 25vw;
    left: 18px;
    top: 50px;
  }
}

.top-recruit-item {
  width: 570px;
  padding: 25px 60px 85px 0;
}
@media screen and (max-width: 1400px) {
  .top-recruit-item {
    width: 420px;
    padding: 25px 60px 0 0;
  }
}
@media screen and (max-width: 1024px) {
  .top-recruit-item {
    width: 100%;
    padding: 0;
    margin-bottom: 50px;
  }
}
.top-recruit-item__en {
  color: #b1b8bb;
  font-family: "Hind", sans-serif !important;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 30px;
}
@media screen and (max-width: 1400px) {
  .top-recruit-item__en {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .top-recruit-item__en {
    font-size: 2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit-item__en {
    font-size: 1.7rem;
    margin-bottom: 7px;
  }
}
.top-recruit-item__title {
  font-family: "Hind", sans-serif !important;
  font-size: 12.3rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 45px;
}
@media screen and (max-width: 1400px) {
  .top-recruit-item__title {
    font-size: 9rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit-item__title {
    font-size: 6rem;
    margin-bottom: 25px;
  }
}
.top-recruit-item__title span {
  display: block;
  font-size: 1.7rem;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 700;
  padding: 0 0 0 15px;
  position: relative;
}
@media screen and (max-width: 599px) {
  .top-recruit-item__title span {
    font-size: 1.6rem;
  }
}
.top-recruit-item__title span::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 6px;
  left: 0;
  background-color: #b6201f;
  border-radius: 50%;
}
.top-recruit-item__copy {
  margin-bottom: 25px;
  line-height: 1.4;
  font-size: 2.7rem;
  font-weight: 700;
}
@media screen and (max-width: 1400px) {
  .top-recruit-item__copy {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit-item__copy {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.top-recruit-item__text {
  max-width: 470px;
  margin-bottom: 50px;
  font-size: 1.7rem;
  font-weight: 500;
  text-align: justify;
  line-height: 1.9;
}
@media screen and (max-width: 1400px) {
  .top-recruit-item__text {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .top-recruit-item__text {
    max-width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit-item__text {
    line-height: 1.8;
    margin-bottom: 20px;
  }
}
.top-recruit-item__btn > a {
  max-width: 190px;
}
@media screen and (max-width: 1024px) {
  .top-recruit-item__btn > a {
    margin: 0 0 0 auto;
  }
}

.top-recruit-photos {
  width: calc(100% - 570px);
  position: relative;
}
@media screen and (max-width: 1400px) {
  .top-recruit-photos {
    width: calc(100% - 420px);
  }
}
@media screen and (max-width: 1024px) {
  .top-recruit-photos {
    width: 100%;
    height: 500px;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit-photos {
    height: 390px;
  }
}
.top-recruit-photos__item01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 360px;
  border-radius: 3px;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .top-recruit-photos__item01 {
    height: 220px;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit-photos__item01 {
    width: 70%;
    height: 180px;
  }
}
.top-recruit-photos__item01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.top-recruit-photos__item02 {
  position: absolute;
  top: 450px;
  left: 15%;
  width: 33%;
  height: 230px;
  border-radius: 3px;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .top-recruit-photos__item02 {
    height: 160px;
    top: 320px;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit-photos__item02 {
    height: 120px;
    top: 220px;
    left: 0;
  }
}
.top-recruit-photos__item02 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.top-recruit-photos__item03 {
  position: absolute;
  top: 140px;
  left: 54%;
  width: 35%;
  height: 300px;
  border-radius: 3px;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .top-recruit-photos__item03 {
    height: 180px;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit-photos__item03 {
    left: auto;
    top: 100px;
    right: 0;
    width: 45%;
    height: 120px;
  }
}
.top-recruit-photos__item03 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.top-recruit-photos__item04 {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 200px;
  border-radius: 3px;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .top-recruit-photos__item04 {
    height: 160px;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit-photos__item04 {
    display: none;
  }
}
.top-recruit-photos__item04 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.top-recruit-photos__item05 {
  position: absolute;
  top: 490px;
  right: 0;
  width: 17%;
  height: 160px;
  border-radius: 3px;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .top-recruit-photos__item05 {
    width: 20%;
    height: 100px;
    top: 400px;
  }
}
@media screen and (max-width: 599px) {
  .top-recruit-photos__item05 {
    width: 58%;
    top: 260px;
    height: 130px;
  }
}
.top-recruit-photos__item05 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.top-contact {
  background-image: url(../img/common/contact_bg.webp);
  background-size: cover;
  background-position: left 50% top 0;
  background-attachment: fixed;
}
@media screen and (max-width: 599px) {
  .top-contact {
    background-position: right 80% top 0;
  }
}
.top-contact__inner {
  text-align: center;
  padding: 140px 100px 180px;
  margin-right: 280px;
}
@media screen and (max-width: 1400px) {
  .top-contact__inner {
    margin-right: 240px;
    padding: 90px 50px 100px;
  }
}
@media screen and (max-width: 1024px) {
  .top-contact__inner {
    padding: 80px 40px 80px;
    margin-right: 0;
  }
}
@media screen and (max-width: 599px) {
  .top-contact__inner {
    padding: 60px 20px 60px;
  }
}

.top-contact-title {
  font-size: 9.2rem;
  font-family: "Hind", sans-serif !important;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 40px;
}
@media screen and (max-width: 1400px) {
  .top-contact-title {
    font-size: 6.6rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-contact-title {
    font-size: 5.6rem;
  }
}
@media screen and (max-width: 599px) {
  .top-contact-title {
    font-size: 4.2rem;
  }
}
.top-contact-title span {
  display: block;
  font-family: "Noto Sans JP", sans-serif !important;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 599px) {
  .top-contact-title span {
    font-size: 1.5rem;
  }
}

.top-contact-list {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1030px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .top-contact-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.top-contact-item {
  width: calc((100% - 30px) / 2);
  background-color: #fff;
  border-radius: 3px;
  padding: 34px;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .top-contact-item {
    padding: 28px 10px;
  }
}
@media screen and (max-width: 599px) {
  .top-contact-item {
    width: 100%;
  }
}
.top-contact-item__title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
@media screen and (max-width: 1400px) {
  .top-contact-item__title {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-contact-item__title {
    font-size: 1.7rem;
  }
}
.top-contact-item__mail > a {
  width: 100%;
  max-width: 230px;
  background-color: #101010;
  color: #fff;
  display: block;
  margin: 0 auto;
  font-weight: 500;
  border-radius: 100px;
  padding: 18px 15px;
}
.top-contact-item__mail > a > span {
  background-image: url(../img/common/icon_arrow03.png), url(../img/common/icon_contact.png);
  background-repeat: no-repeat;
  background-size: 14px auto, 18px auto;
  background-position: right 0 top 7px, left 0 top 6px;
  padding: 0 27px 0 30px;
}
@media screen and (min-width: 1025px) {
  .top-contact-item__mail > a:hover {
    transform: translateY(2px);
    opacity: 0.8;
  }
}
@media screen and (max-width: 1024px) {
  .top-contact-item__mail > a {
    font-size: 1.5rem;
  }
  .top-contact-item__mail > a span {
    background-position: right 0 top 7px, left 0 top 4px;
  }
}
.top-contact-item__tel {
  margin-bottom: 5px;
}
.top-contact-item__tel > a {
  font-size: 4.6rem;
  font-family: "Hind", sans-serif !important;
  line-height: 0.9;
  color: #000;
  font-weight: 600;
  display: block;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 1400px) {
  .top-contact-item__tel > a {
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-contact-item__tel > a {
    font-size: 3.8rem;
  }
}
.top-contact-item__tel > a span {
  background-image: url(../img/common/icon_tel.svg);
  background-repeat: no-repeat;
  background-size: 29px auto;
  background-position: left 0 top 16px;
  padding: 0 10px 0 33px;
}
@media screen and (max-width: 1024px) {
  .top-contact-item__tel > a span {
    background-size: 20px auto;
    padding: 0 10px 0 25px;
  }
}
.top-contact-item__text01 {
  font-size: 1.5rem;
  font-weight: 700;
}

/*--------------------------------------------------------
news
----------------------------------------------------------*/
.news-anchor {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
@media screen and (max-width: 1400px) {
  .news-anchor {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .news-anchor {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .news-anchor {
    gap: 10px 5px;
    margin-bottom: 40px;
  }
}
.news-anchor > li > a {
  width: 200px;
  height: 50px;
  line-height: 1.2;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #dee4eb;
  border-radius: 200px;
  font-size: 1.5rem;
  color: #747b8a;
  font-weight: 600;
}
.news-anchor > li > a.active {
  background-color: #101010;
  color: #fff;
  position: relative;
}
.news-anchor > li > a.active::before {
  content: "";
  margin-left: -2px;
  position: absolute;
  bottom: -16px;
  border-style: solid;
  border-width: 8px 4px;
  border-color: transparent;
  border-top-color: #101010;
}
@media screen and (min-width: 1025px) {
  .news-anchor > li > a:hover {
    transform: translateY(2px);
    background-color: #101010;
    color: #fff;
  }
}
@media screen and (max-width: 1024px) {
  .news-anchor > li > a {
    width: 120px;
    font-weight: 500;
  }
}
@media screen and (max-width: 599px) {
  .news-anchor > li > a {
    font-size: 1.4rem;
    width: auto;
    height: auto;
    padding: 10px 13px;
    letter-spacing: -0.03em;
  }
}

.news-list {
  margin-bottom: 60px;
}
@media screen and (max-width: 1400px) {
  .news-list {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .news-list {
    margin-bottom: 30px;
  }
}

.news-item {
  border-bottom: 1px solid #d3d8de;
}
.news-item:first-child {
  border-top: 1px solid #d3d8de;
}
.news-item > a {
  display: flex;
  align-items: flex-start;
  line-height: 1.3;
  position: relative;
  padding: 55px 0 55px 110px;
}
.news-item > a::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 0;
  width: 70px;
  height: 70px;
  background-color: #dee4eb;
  border-radius: 200px;
  background-image: url(../img/common/icon_arrow02.png);
  background-size: 14px auto;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 1025px) {
  .news-item > a:hover {
    transform: translateX(3px);
    opacity: 0.8;
  }
}
@media screen and (max-width: 1400px) {
  .news-item > a {
    padding: 45px 0 45px 70px;
  }
  .news-item > a::before {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 599px) {
  .news-item > a {
    flex-wrap: wrap;
    padding: 25px 40px 25px 0;
  }
  .news-item > a::before {
    width: 30px;
    height: 30px;
    top: 50%;
    left: auto;
    right: 0;
    margin-top: -15px;
    background-size: 10px auto;
  }
}
.news-item__date {
  width: 85px;
  color: #798190;
  font-weight: 500;
  font-size: 1.3rem;
  padding: 7px 0 0;
}
@media screen and (max-width: 599px) {
  .news-item__date {
    padding: 5px 0 0;
  }
}
.news-item__category {
  width: 115px;
  height: 30px;
  text-align: center;
  border-radius: 100px;
  background-color: #dee4eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #747b8a;
  font-weight: 600;
  font-size: 1.3rem;
}
@media screen and (max-width: 599px) {
  .news-item__category {
    height: 26px;
  }
}
.news-item__text {
  width: calc(100% - 200px);
  color: #000;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.3;
  padding: 3px 0 0 30px;
}
@media screen and (max-width: 1400px) {
  .news-item__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 599px) {
  .news-item__text {
    width: 100%;
    padding: 10px 0 0 0;
  }
}
.news-item__new {
  font-size: 1.3rem;
  color: #d64117;
  font-weight: 600;
  display: inline-block;
  margin-left: 15px;
}

/* ******* detail ******** */
.news-detail-title {
  padding-bottom: 32px;
  border-bottom: 1px solid #d3d8de;
  position: relative;
  margin-bottom: 45px;
}
@media screen and (max-width: 599px) {
  .news-detail-title {
    padding-bottom: 22px;
    margin-bottom: 35px;
  }
}
.news-detail-title__date {
  font-size: 1.3rem;
  color: #798190;
  font-weight: 600;
  line-height: 1.5;
  display: inline-block;
  margin-right: 8px;
}
@media screen and (max-width: 599px) {
  .news-detail-title__date {
    letter-spacing: 0;
  }
}
.news-detail-title__category {
  width: 115px;
  margin-right: 10px;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", sans-serif !important;
  text-align: center;
  background-color: #dee4eb;
  border-radius: 100px;
  color: #747b8a;
  font-weight: 500;
  padding: 8px;
  line-height: 1;
  display: inline-block;
}
.news-detail-title__new {
  font-size: 1.3rem;
  color: #d64117;
  font-weight: 600;
  display: inline-block;
}
.news-detail-title__text {
  margin-top: 25px;
  font-size: 3.1rem;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 599px) {
  .news-detail-title__text {
    margin-top: 20px;
    font-size: 2.5rem;
  }
}

.news-detail-btn {
  margin-top: 50px;
  border-top: 1px solid #d3d8de;
  padding-top: 50px;
}
.news-detail-btn > a {
  max-width: 250px;
}
@media screen and (max-width: 599px) {
  .news-detail-btn > a {
    margin: 0 auto;
  }
}

/*--------------------------------------------------------
yardstick
----------------------------------------------------------*/
.yardstick-anchor {
  margin-bottom: 110px;
}
@media screen and (max-width: 1024px) {
  .yardstick-anchor {
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 599px) {
  .yardstick-anchor {
    margin-bottom: 60px;
  }
}

.yardstick-sec {
  padding-bottom: 40px;
  border-bottom: 1px solid #c5cbd3;
  margin-bottom: 110px;
}
.yardstick-sec:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 1400px) {
  .yardstick-sec {
    padding-bottom: 20px;
    margin-bottom: 90px;
  }
}
@media screen and (max-width: 599px) {
  .yardstick-sec {
    margin-bottom: 60px;
  }
}

.yardstick-title01 {
  font-size: 4rem;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 700;
  margin-bottom: 55px;
  position: relative;
  padding-top: 40px;
}
.yardstick-title01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 60px;
  height: 4px;
  background-color: #b6201f;
}
@media screen and (max-width: 1400px) {
  .yardstick-title01 {
    font-size: 3.9rem;
  }
}
@media screen and (max-width: 1024px) {
  .yardstick-title01 {
    font-size: 3.7rem;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .yardstick-title01 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    padding-top: 25px;
  }
  .yardstick-title01::before {
    width: 40px;
    height: 3px;
  }
}

.yardstick-title02 {
  font-size: 2.8rem;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 25px;
}
@media screen and (max-width: 599px) {
  .yardstick-title02 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

.yardstick-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .yardstick-table {
    font-size: 1.4rem;
  }
}
.yardstick-table thead th {
  font-weight: 500;
  padding: 10px;
  background-color: #e1e6ec;
  color: #9fa5b1;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .yardstick-table thead th {
    padding: 10px 5px;
    background-color: #303030;
    color: #fff;
    border: 1px solid #5f5f5f;
    font-weight: 400;
  }
}
.yardstick-table thead th.cell_01 {
  width: 30%;
  text-align: left;
  padding-left: 30px;
}
@media screen and (max-width: 1024px) {
  .yardstick-table thead th.cell_01 {
    padding-left: 15px;
  }
}
@media screen and (max-width: 599px) {
  .yardstick-table thead th.cell_01 {
    padding-left: 5px;
    text-align: center;
  }
}
.yardstick-table thead th.cell_02 {
  width: 40%;
  text-align: left;
}
@media screen and (max-width: 599px) {
  .yardstick-table thead th.cell_02 {
    text-align: center;
  }
}
.yardstick-table thead th.cell_03 {
  width: 15%;
}
.yardstick-table thead th.cell_04 {
  width: 15%;
}
.yardstick-table tbody tr th, .yardstick-table tbody tr td {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #d3d8de;
  vertical-align: middle;
}
@media screen and (max-width: 599px) {
  .yardstick-table tbody tr th, .yardstick-table tbody tr td {
    padding: 8px 5px;
    border: 1px solid #d3d8de;
  }
}
.yardstick-table tbody tr th.cell_head, .yardstick-table tbody tr td.cell_head {
  text-align: left;
  padding-left: 30px;
}
@media screen and (max-width: 1024px) {
  .yardstick-table tbody tr th.cell_head, .yardstick-table tbody tr td.cell_head {
    padding-left: 15px;
  }
}
@media screen and (max-width: 599px) {
  .yardstick-table tbody tr th.cell_head, .yardstick-table tbody tr td.cell_head {
    padding-left: 5px;
    background-color: #e1e6ec;
  }
}
.yardstick-table tbody tr th.cell_txt-left, .yardstick-table tbody tr td.cell_txt-left {
  text-align: left;
}
.yardstick-table tbody tr th {
  font-weight: 500;
}
.yardstick-table tbody tr td {
  font-weight: 400;
}

.yardstick-table-notice {
  font-size: 1.4rem;
  color: #747b8a;
  margin-bottom: 70px;
}
@media screen and (max-width: 599px) {
  .yardstick-table-notice {
    margin-bottom: 40px;
  }
}

/*--------------------------------------------------------
contact
----------------------------------------------------------*/
/*--------------------------------------------------------
catalog
----------------------------------------------------------*/
.catalog-head-text {
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  .catalog-head-text {
    margin-bottom: 30px;
  }
}

.catalog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 50px;
}
@media screen and (max-width: 1400px) {
  .catalog-list {
    gap: 40px 20px;
  }
}
@media screen and (max-width: 599px) {
  .catalog-list {
    gap: 15px;
  }
}

.catalog-item {
  width: calc((100% - 100px) / 3);
}
@media screen and (max-width: 1400px) {
  .catalog-item {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .catalog-item {
    width: calc((100% - 15px) / 2);
  }
}
.catalog-item > a {
  width: 100%;
  height: 100%;
  padding: 40px 20px 35px;
  background-color: #fff;
  border-radius: 3px;
  display: block;
}
@media screen and (min-width: 1025px) {
  .catalog-item > a:hover {
    transform: translateY(5px);
  }
}
@media screen and (max-width: 1024px) {
  .catalog-item > a {
    padding: 30px 20px 35px;
  }
}
@media screen and (max-width: 599px) {
  .catalog-item > a {
    padding: 20px 15px 20px;
  }
}
.catalog-item__photo {
  width: 100%;
  max-width: 170px;
  margin: 0 auto;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 599px) {
  .catalog-item__photo {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
  }
}
.catalog-item__photo::before {
  content: "";
  display: block;
  padding-top: 141.18%;
}
.catalog-item__photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
.catalog-item__text {
  font-size: 2.1rem;
  color: #101010;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 17px;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 599px) {
  .catalog-item__text {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 12px;
  }
}
.catalog-item__btn-icon {
  max-width: 190px;
  margin: 0 auto;
  text-align: center;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  font-size: 1.4rem;
  color: #949292;
  font-weight: 600;
  padding: 10px;
  line-height: 1.3;
  background-image: url(../img/common/icon_target.svg), url(../img/common/icon_pdf.svg);
  background-repeat: no-repeat;
  background-size: 15px auto, 16px auto;
  background-position: right 20px top 50%, left 12% top 50%;
  transition: 0.3s;
}
@media screen and (min-width: 1025px) {
  a:hover .catalog-item__btn-icon {
    background-color: #303030;
    border: 1px solid #303030;
    color: #fff;
  }
}
@media screen and (max-width: 599px) {
  .catalog-item__btn-icon {
    font-size: min(3.3vw, 1.3rem);
    background-size: 12px auto, 12px auto;
    background-position: right 6px top 50%, left 7px top 50%;
  }
}

/*--------------------------------------------------------
approval
----------------------------------------------------------*/
.approval-stepper {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .approval-stepper {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .approval-stepper {
    margin-bottom: 50px;
  }
}
.approval-stepper > ol {
  display: flex;
  justify-content: center;
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
}
.approval-stepper > ol > li {
  text-align: center;
  width: 16.6666666667%;
  position: relative;
}
.approval-stepper > ol > li::before {
  content: "";
  position: absolute;
  top: 25px;
  left: -50%;
  width: 100%;
  height: 3px;
  background-color: #d3d8dc;
}
@media screen and (max-width: 599px) {
  .approval-stepper > ol > li::before {
    top: 14px;
  }
}
.approval-stepper > ol > li.current::before {
  background-color: #b6201f;
}
.approval-stepper > ol > li:first-child::before {
  content: none;
}
.approval-stepper__num {
  margin: 0 auto;
  width: 50px;
  height: 50px;
  background-color: #ced4db;
  display: block;
  border-radius: 200px;
  font-size: 2.4rem;
  font-family: "Hind", sans-serif !important;
  color: #fff;
  font-weight: 600;
  padding: 7px 0 0 0;
  margin-bottom: 10px;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .approval-stepper__num {
    font-size: 2rem;
    padding: 10px 0 0 0;
    font-weight: 500;
  }
}
@media screen and (max-width: 599px) {
  .approval-stepper__num {
    font-size: 1.7rem;
    width: 30px;
    height: 30px;
    padding: 3px 0 0 0;
  }
}
.current .approval-stepper__num {
  background-color: #b6201f;
}
.approval-stepper__text {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.2;
  display: block;
}
@media screen and (max-width: 1024px) {
  .approval-stepper__text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 599px) {
  .approval-stepper__text {
    font-size: 1.3rem;
    line-height: 1.1;
  }
}

/* *********** 材料承認願内 共通 ********** */
.approval-title {
  margin-bottom: 25px;
  background-color: #303030;
  border-radius: 3px;
  color: #fff;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.3;
  padding: 18px 25px;
}
@media screen and (max-width: 599px) {
  .approval-title {
    font-size: 1.7rem;
    padding: 12px 10px 12px 15px;
    margin-bottom: 20px;
  }
}

/*必要事項入力のタイトル*/
.approval-title2 {
  margin-bottom: 25px;
  background-color: #303030;
  border-radius: 3px;
  line-height: 1.3;
  padding: 18px 25px;
}
@media screen and (max-width: 599px) {
  .approval-title2 {
    padding: 12px 10px 12px 15px;
    margin-bottom: 20px;
  }
}
.approval-title2__title {
  font-size: 1.9rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .approval-title2__title {
    font-size: 1.7rem;
  }
}
.approval-title2__detail {
  margin-top: 12px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  padding: 20px 25px 13px;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .approval-title2__detail {
    margin-top: 8px;
    padding: 15px 15px 10px;
    font-weight: 400;
  }
}
.approval-title2__detail > dt {
  width: 125px;
  color: #cecece;
  margin-bottom: 7px;
  font-size: 1.5rem;
}
@media screen and (max-width: 599px) {
  .approval-title2__detail > dt {
    width: 95px;
    font-size: 1.4rem;
  }
}
.approval-title2__detail > dd {
  width: calc(100% - 125px);
  margin-bottom: 7px;
  font-size: 1.5rem;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .approval-title2__detail > dd {
    width: calc(100% - 95px);
  }
}

@media screen and (max-width: 599px) {
  .approval-head-text01 {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
.approval-head-text01--notice {
  color: #d01e1d;
  text-indent: -1em;
  padding-left: 1em;
}
.approval-head-text01 > a {
  color: #394882;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .approval-head-text01 > a:hover {
    text-decoration: none;
  }
}

.approval-btn {
  border-top: 1px solid #d3d8dc;
  margin: 70px auto 0;
  padding: 40px 0 0 0;
  display: block;
  position: relative;
}
@media screen and (max-width: 599px) {
  .approval-btn {
    padding: 30px 0 0 0;
    margin: 50px auto 0;
  }
}
.approval-btn--mt-none {
  margin-top: 0;
}
.approval-btn input[type=submit] {
  max-width: 270px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #101010 !important;
  text-align: center;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  padding: 10px;
  border-radius: 6px;
  font-size: 1.8rem;
  transition: 0.2s;
  background-image: url(../img/common/icon_arrow03.png);
  background-size: 15px auto;
  background-repeat: no-repeat;
  background-position: right 20px top 50%;
}
@media screen and (min-width: 1025px) {
  .approval-btn input[type=submit]:hover {
    transform: translateY(2px);
  }
}
.approval-btn--shinsei input[type=submit] {
  background-color: #b6201f !important;
  background-image: url(../img/common/icon_arrow01.png);
}
.approval-btn__corrected {
  width: 210px;
  margin: 20px auto 0;
  padding: 14px 17px;
  background-color: #818181;
  color: #fff;
  text-align: center;
  display: block;
  border-radius: 3px;
  transition: 0.2s;
  line-height: 1.3;
  background-image: url(../img/common/icon_arrow03_back.png);
  background-size: 15px auto;
  background-repeat: no-repeat;
  background-position: left 15px top 50%;
  font-weight: 500;
}
@media screen and (min-width: 1025px) {
  .approval-btn__corrected:hover {
    transform: translateY(2px);
  }
}
@media screen and (max-width: 1024px) {
  .approval-btn__corrected {
    position: relative;
    margin: 15px auto 0;
    padding: 15px;
  }
}

/*step01 材料選択*/
.approval-materials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .approval-materials {
    gap: 15px;
  }
}
@media screen and (max-width: 599px) {
  .approval-materials {
    gap: 10px;
  }
}
.approval-materials > li {
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 1024px) {
  .approval-materials > li {
    width: calc((100% - 15px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .approval-materials > li {
    width: 100%;
  }
}
.approval-materials > li > a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  font-size: 1.9rem;
  color: #101010;
  font-weight: 600;
  border-radius: 3px;
  line-height: 1.3;
  padding: 25px 25px 25px 78px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .approval-materials > li > a:hover {
    transform: translateX(3px);
    opacity: 0.7;
  }
}
@media screen and (max-width: 1024px) {
  .approval-materials > li > a {
    font-size: 1.7rem;
    padding: 22px 22px 22px 55px;
  }
}
@media screen and (max-width: 599px) {
  .approval-materials > li > a {
    font-size: 1.6rem;
    font-weight: 500;
    padding: 15px 15px 15px 38px;
  }
}
.approval-materials > li > a::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 25px;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background-color: #101010;
  background-image: url(../img/common/icon_arrow03.png);
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-position: center;
}
@media screen and (max-width: 1024px) {
  .approval-materials > li > a::before {
    width: 30px;
    height: 30px;
    left: 15px;
    background-size: 12px auto;
  }
}
@media screen and (max-width: 599px) {
  .approval-materials > li > a::before {
    width: 22px;
    height: 22px;
    background-size: 10px auto;
    top: 15px;
    left: 10px;
  }
}

/*step02 材料詳細選択*/
.approval-materials-detail {
  margin-bottom: 10px;
}
.approval-materials-detail select {
  max-width: 500px;
}

.approval-materials-detail-notice {
  color: #d01e1d;
}

/*step03 製品選択*/
.approval-product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.approval-product-list > li {
  width: 100%;
  line-height: 1.3;
  margin-bottom: 7px;
}
.approval-product-list > li:last-child {
  margin-bottom: 0;
}
.approval-product-list > li input[type=radio] {
  display: none;
}
.approval-product-list > li label {
  display: block;
  position: relative;
  cursor: pointer;
  padding-left: 35px;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .approval-product-list > li label {
    line-height: 1.5;
    padding-top: 2px;
  }
}
.approval-product-list > li label:before {
  position: absolute;
  content: "";
  top: -2px;
  left: 0;
  width: 26px;
  height: 26px;
  background: #d5dde7;
  border-radius: 50%;
}
@media screen and (max-width: 599px) {
  .approval-product-list > li label:before {
    top: 0;
  }
}
.approval-product-list > li input[type=radio]:checked + label:after {
  position: absolute;
  content: "";
  top: 12px;
  left: 6px;
  width: 14px;
  height: 14px;
  margin-top: -8px;
  border-radius: 50%;
  background: #101010;
}
@media screen and (max-width: 599px) {
  .approval-product-list > li input[type=radio]:checked + label:after {
    top: 14px;
  }
}

.approval-product-detail {
  background-color: #fff;
  border-radius: 3px;
  margin: 12px 0 10px 0;
  padding: 20px 25px 13px;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.3;
  letter-spacing: 0;
}
@media screen and (max-width: 599px) {
  .approval-product-detail {
    padding: 15px 15px 10px;
    margin: 8px 0 8px 0;
  }
}
.approval-product-detail > dt {
  width: 125px;
  color: #9f9f9f;
  margin-bottom: 7px;
  font-size: 1.4rem;
}
@media screen and (max-width: 599px) {
  .approval-product-detail > dt {
    width: 95px;
  }
}
.approval-product-detail > dd {
  width: calc(100% - 125px);
  margin-bottom: 7px;
  font-size: 1.5rem;
}
@media screen and (max-width: 599px) {
  .approval-product-detail > dd {
    width: calc(100% - 95px);
  }
}

/*step04 必要事項入力*/
.approval-form-text01 {
  font-weight: 400;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .approval-form-text01 {
    font-size: 1.5rem;
  }
}

.approval-checkbox01 > li {
  margin-bottom: 20px;
}
.approval-checkbox01 > li label {
  line-height: 1.3;
  padding: 4px 0 0 37px;
  position: relative;
  letter-spacing: 0;
  display: block;
}
.approval-checkbox01 > li label::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 26px;
  height: 26px;
  background-color: #d5dde7;
  border-radius: 2px;
}
.approval-checkbox01 > li input[type=checkbox]:checked + label {
  color: #101010;
}
.approval-checkbox01 > li input[type=checkbox]:checked + label::before {
  background-color: #303030;
}
.approval-checkbox01 > li input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 9px;
  width: 8px;
  height: 14px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: rotate(-135deg);
}

/*step05 確認*/
.approval-checkbox01-conf > li {
  position: relative;
  padding-left: 1em;
}
.approval-checkbox01-conf > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  color: #c2c2c2;
}

/*step06 完了*/
.approval-download-text {
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 599px) {
  .approval-download-text {
    text-align: justify;
    margin-bottom: 30px;
  }
}

.approval-download {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  gap: 15px;
}
@media screen and (max-width: 599px) {
  .approval-download {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
  }
}
.approval-download__item {
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 599px) {
  .approval-download__item {
    max-width: 100%;
  }
}
.approval-download__item > a {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #b6201f;
  color: #fff;
  padding: 22px 20px 23px;
  border-radius: 5px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  background-image: url(../img/common/icon_pdf_white.svg), url(../img/common/icon_download.png);
  background-repeat: no-repeat;
  background-position: left 25px top 50%, right 20px top 50%;
  background-size: 20px auto, 16px auto;
}
@media screen and (min-width: 1025px) {
  .approval-download__item > a:hover {
    transform: translateY(2px);
    opacity: 0.8;
  }
}
@media screen and (max-width: 599px) {
  .approval-download__item > a {
    padding: 16px 20px 16px;
    font-size: 1.7rem;
  }
}

.approval-download-list {
  background-color: #dee4eb;
  border-radius: 5px;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 30px;
}
@media screen and (max-width: 599px) {
  .approval-download-list {
    padding: 20px 15px;
  }
}

.approval-download-item {
  margin-bottom: 25px;
  background-color: #ebf0f5;
  border-radius: 3px;
  line-height: 1.3;
  padding: 22px 25px 15px;
}
@media screen and (max-width: 599px) {
  .approval-download-item {
    padding: 17px 10px 12px 15px;
    margin-bottom: 10px;
  }
}
.approval-download-item__title {
  font-size: 1.9rem;
  font-weight: 500;
  border-bottom: 1px solid #dcdfe4;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .approval-download-item__title {
    font-size: 1.7rem;
  }
}
.approval-download-item__detail {
  border-radius: 3px;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.3;
  letter-spacing: 0;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .approval-download-item__detail {
    font-weight: 400;
  }
}
.approval-download-item__detail > dt {
  width: 125px;
  margin-bottom: 7px;
  font-size: 1.5rem;
}
@media screen and (max-width: 599px) {
  .approval-download-item__detail > dt {
    width: 95px;
    font-size: 1.4rem;
  }
}
.approval-download-item__detail > dd {
  width: calc(100% - 125px);
  margin-bottom: 7px;
  font-size: 1.5rem;
}
@media screen and (max-width: 599px) {
  .approval-download-item__detail > dd {
    width: calc(100% - 95px);
  }
}

.approval-download-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.4;
}
@media screen and (max-width: 599px) {
  .approval-download-table {
    font-size: 1.4rem;
  }
}
.approval-download-table tr {
  border-bottom: 1px solid #c5cbd3;
}
.approval-download-table tr:last-of-type {
  border-bottom: 0;
}
.approval-download-table th {
  font-weight: 400;
  text-align: left;
  width: 160px;
  padding: 15px;
}
@media screen and (max-width: 599px) {
  .approval-download-table th {
    width: 120px;
    padding: 10px 0;
  }
}
.approval-download-table td {
  padding: 15px 0;
}
@media screen and (max-width: 599px) {
  .approval-download-table td {
    padding: 10px 0;
  }
}

.approval-download-table-list > li {
  position: relative;
  padding-left: 1em;
  margin-bottom: 5px;
}
.approval-download-table-list > li:last-child {
  margin-bottom: 0;
}
.approval-download-table-list > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.approval-modal-btn {
  max-width: 800px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 599px) {
  .approval-modal-btn {
    margin: 0 auto 40px;
  }
}
.approval-modal-btn__item {
  margin-bottom: 10px;
}
.approval-modal-btn__item > button {
  margin: 0 auto;
  border-radius: 3px;
  display: block;
  width: 100%;
  max-width: 500px;
  padding: 13px 10px 13px 45px;
  background-color: #fff;
  color: #101010;
  text-align: left;
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 500;
  position: relative;
  transition: 0.4s;
}
@media screen and (min-width: 1025px) {
  .approval-modal-btn__item > button:hover {
    transform: translateX(2px);
    opacity: 0.6;
  }
}
.approval-modal-btn__item > button::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 15px;
  width: 22px;
  height: 22px;
  border-radius: 100px;
  background-color: #101010;
  background-image: url(../img/common/icon_arrow03.png);
  background-repeat: no-repeat;
  background-size: 10px auto;
  background-position: center;
}

#modal-inspec,
#modal-otherspec {
  width: 90%;
  max-height: 90%;
}
#modal-inspec.hasShadow::after,
#modal-otherspec.hasShadow::after {
  content: none;
}
#modal-inspec .iziModal-content-close,
#modal-otherspec .iziModal-content-close {
  font-size: 2rem;
  margin: 5px 10px 0 0;
  cursor: pointer;
}

/*鋼材検査証・その他資料 共通*/
.approval-modal-wrapper {
  padding: 35px 30px;
}
@media screen and (max-width: 599px) {
  .approval-modal-wrapper {
    padding: 35px 20px;
  }
}
.approval-modal-wrapper__title {
  margin-bottom: 20px;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 599px) {
  .approval-modal-wrapper__title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}
.approval-modal-wrapper__title2 {
  background-color: #303030;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.3;
  border-radius: 3px;
  padding: 11px 20px;
  margin-bottom: 15px;
}
@media screen and (max-width: 599px) {
  .approval-modal-wrapper__title2 {
    font-size: 1.7rem;
    padding: 10px 15px;
  }
}
.approval-modal-wrapper__list {
  margin-bottom: 20px;
}
.approval-modal-wrapper__list > li {
  position: relative;
  padding: 0 0 0 15px;
  line-height: 1.3;
  margin-bottom: 12px;
}
.approval-modal-wrapper__list > li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #b6b6b6;
  border-radius: 10px;
}
.approval-modal-wrapper__list > li > a {
  text-decoration: underline;
  color: #101010;
  display: block;
}
@media screen and (min-width: 1025px) {
  .approval-modal-wrapper__list > li > a:hover {
    text-decoration: none;
  }
}
.approval-modal-wrapper__table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.4;
  margin-bottom: 30px;
}
.approval-modal-wrapper__table th {
  background-color: #ebf0f5;
  padding: 8px 10px;
  border: 1px solid #dde0e4;
  font-weight: 400;
}
.approval-modal-wrapper__table td {
  padding: 8px 10px;
  border: 1px solid #dde0e4;
}

/*--------------------------------------------------------
product
----------------------------------------------------------*/
.product-anchor {
  display: flex;
  margin-bottom: 100px;
}
@media screen and (max-width: 1400px) {
  .product-anchor {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 599px) {
  .product-anchor {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 60px;
  }
}
.product-anchor > li {
  width: 25%;
  border-right: 1px solid #cacfd5;
}
.product-anchor > li:first-child {
  border-left: 1px solid #cacfd5;
}
@media screen and (max-width: 599px) {
  .product-anchor > li {
    width: calc((100% - 10px) / 2);
    border: 1px solid #cacfd5;
    border-radius: 5px;
  }
}
.product-anchor > li > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  line-height: 1.3;
  font-size: 2.3rem;
  color: #101010;
  font-weight: 700;
  padding: 12px 10px 50px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .product-anchor > li > a:hover {
    transform: translateY(3px);
    opacity: 0.8;
  }
}
@media screen and (max-width: 1400px) {
  .product-anchor > li > a {
    font-size: 2.1rem;
    padding: 12px 10px 40px;
  }
}
@media screen and (max-width: 599px) {
  .product-anchor > li > a {
    font-size: 1.8rem;
    padding: 18px 10px 45px;
  }
}
.product-anchor > li > a::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 30px;
  height: 30px;
  background-color: #101010;
  border-radius: 200px;
  margin-left: -15px;
  background-image: url(../img/common/icon_arrow07.png);
  background-repeat: no-repeat;
  background-size: 12px auto;
  background-position: center;
}
@media screen and (max-width: 1400px) {
  .product-anchor > li > a::before {
    width: 24px;
    height: 24px;
    margin-left: -12px;
  }
}
@media screen and (max-width: 599px) {
  .product-anchor > li > a::before {
    bottom: 14px;
  }
}
.product-anchor > li > a span {
  margin-top: 4px;
  font-size: 1.4rem;
  color: #b1b6b8;
  font-family: "Hind", sans-serif !important;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 1400px) {
  .product-anchor > li > a span {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 599px) {
  .product-anchor > li > a span {
    margin-top: 2px;
  }
}

.product-index-sec {
  margin-bottom: 120px;
}
@media screen and (max-width: 1400px) {
  .product-index-sec {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 599px) {
  .product-index-sec {
    margin-bottom: 60px;
  }
}
.product-index-sec:last-of-type {
  margin-bottom: 0;
}
.product-index-sec__title {
  font-size: 4rem;
  text-align: center;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 40px;
  padding-top: 40px;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .product-index-sec__title {
    margin-bottom: 30px;
    padding-top: 30px;
    font-size: 3.7rem;
  }
}
@media screen and (max-width: 1024px) {
  .product-index-sec__title {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 599px) {
  .product-index-sec__title {
    padding-top: 22px;
    font-size: 2.8rem;
    margin-bottom: 25px;
  }
}
.product-index-sec__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 60px;
  height: 4px;
  background-color: #b6201f;
  margin-left: -30px;
}
@media screen and (max-width: 599px) {
  .product-index-sec__title::before {
    width: 40px;
    margin-left: -20px;
  }
}
.product-index-sec__text {
  margin-bottom: 40px;
  line-height: 1.9;
}
@media screen and (max-width: 599px) {
  .product-index-sec__text {
    line-height: 1.8;
    margin-bottom: 30px;
  }
}

.product-common-list {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
}
@media screen and (max-width: 1400px) {
  .product-common-list {
    gap: 20px;
  }
}

.product-common-list-item {
  width: calc((100% - 70px) / 3);
}
@media screen and (max-width: 1400px) {
  .product-common-list-item {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 599px) {
  .product-common-list-item {
    width: 100%;
  }
}
.product-common-list-item > a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 25px 25px 40px;
  background-color: #3b3b3b;
  border-radius: 3px;
  transition: 0.3s;
}
@media screen and (min-width: 1025px) {
  .product-common-list-item > a:hover {
    opacity: 0.8;
    transform: translateY(3px);
  }
}
@media screen and (max-width: 1400px) {
  .product-common-list-item > a {
    padding: 20px 20px 40px;
  }
}
@media screen and (max-width: 599px) {
  .product-common-list-item > a {
    padding: 20px 20px 30px;
  }
}
.product-common-list-item__photo {
  margin-bottom: 20px;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .product-common-list-item__photo {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 599px) {
  .product-common-list-item__photo {
    margin-bottom: 15px;
  }
}
.product-common-list-item__photo::before {
  content: "";
  display: block;
  padding-top: 66%;
}
@media screen and (max-width: 599px) {
  .product-common-list-item__photo::before {
    padding-top: 55%;
  }
}
.product-common-list-item__photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
.product-common-list-item__tag {
  margin-bottom: 13px;
}
@media screen and (max-width: 1024px) {
  .product-common-list-item__tag {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 599px) {
  .product-common-list-item__tag {
    margin-bottom: 5px;
  }
}
.product-common-list-item__tag span {
  margin: 0 4px 4px 0;
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 200px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.3rem;
  padding: 3px 15px;
}
@media screen and (max-width: 599px) {
  .product-common-list-item__tag span {
    padding: 2px 15px;
    font-size: 1.2rem;
  }
}
.product-common-list-item__text {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #fff;
  font-weight: 500;
  position: relative;
  padding: 0 0 0 42px;
}
@media screen and (max-width: 1400px) {
  .product-common-list-item__text {
    font-size: 2.3rem;
    padding: 0 0 0 36px;
  }
}
@media screen and (max-width: 1024px) {
  .product-common-list-item__text {
    padding: 2px 0 0 36px;
    font-size: 2.1rem;
  }
}
@media screen and (max-width: 599px) {
  .product-common-list-item__text {
    padding: 0 0 0 36px;
    font-size: 2.2rem;
  }
}
.product-common-list-item__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border-radius: 200px;
  display: block;
  background-color: #101010;
  background-image: url(../img/common/icon_arrow03.png);
  background-repeat: no-repeat;
  background-size: 12px auto;
  background-position: center;
}
@media screen and (max-width: 1400px) {
  .product-common-list-item__text::before {
    width: 28px;
    height: 28px;
    top: 1px;
  }
}
/* **************** 製品情報詳細 ****************** */
.product-detail-title {
  margin-bottom: 50px;
  position: relative;
  padding: 0 90px 0 25px;
  border-left: 5px solid #b6201f;
}
@media screen and (max-width: 1400px) {
  .product-detail-title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .product-detail-title {
    padding: 0 80px 0 25px;
  }
}
@media screen and (max-width: 599px) {
  .product-detail-title {
    margin-bottom: 30px;
    padding: 0 55px 0 13px;
    text-align: left;
    border-left: 4px solid #b6201f;
  }
}
.product-detail-title__tag {
  margin-bottom: 5px;
}
@media screen and (max-width: 1400px) {
  .product-detail-title__tag {
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 1024px) {
  .product-detail-title__tag {
    margin-bottom: 3px;
  }
}
.product-detail-title__tag span {
  margin: 0 4px 4px 0;
  display: inline-block;
  background-color: #424242;
  border-radius: 200px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.3rem;
  padding: 3px 25px;
}
@media screen and (max-width: 599px) {
  .product-detail-title__tag span {
    padding: 2px 15px;
    font-size: 1.2rem;
  }
}
.product-detail-title__text {
  font-size: 4rem;
  line-height: 1.3;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .product-detail-title__text {
    font-size: 3.7rem;
  }
}
@media screen and (max-width: 1024px) {
  .product-detail-title__text {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 599px) {
  .product-detail-title__text {
    font-size: 2.7rem;
  }
}
.product-detail-title__jis {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 80px;
}
@media screen and (max-width: 1024px) {
  .product-detail-title__jis {
    max-width: 70px;
  }
}
@media screen and (max-width: 599px) {
  .product-detail-title__jis {
    max-width: 50px;
  }
}

.product-detail-main {
  display: flex;
  align-items: flex-start;
  margin-bottom: 90px;
}
@media screen and (max-width: 1400px) {
  .product-detail-main {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 1024px) {
  .product-detail-main {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .product-detail-main {
    flex-wrap: wrap;
  }
}
.product-detail-main__photo {
  width: 49%;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .product-detail-main__photo {
    width: 100%;
    margin-bottom: 20px;
  }
}
.product-detail-main__photo::before {
  content: "";
  display: block;
  padding-top: 66%;
}
.product-detail-main__photo > img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
.product-detail-main__text-box {
  width: 51%;
  padding-left: 50px;
}
@media screen and (max-width: 1024px) {
  .product-detail-main__text-box {
    padding-left: 30px;
  }
}
@media screen and (max-width: 599px) {
  .product-detail-main__text-box {
    width: 100%;
    padding-left: 0;
  }
}
.product-detail-main__text {
  margin-bottom: 30px;
}
.product-detail-main__btn > a {
  background-color: #fff;
  color: #101010;
  font-weight: 500;
  line-height: 1.3;
  display: inline-block;
  padding: 20px 55px 20px 50px;
  border-radius: 3px;
  background-image: url(../img/common/icon_arrow06.png);
  background-repeat: no-repeat;
  background-size: 13px auto;
  background-position: right 20px top 50%;
}
@media screen and (min-width: 1025px) {
  .product-detail-main__btn > a:hover {
    opacity: 0.8;
    transform: translateY(2px);
  }
}
@media screen and (max-width: 599px) {
  .product-detail-main__btn > a {
    padding: 20px 45px 20px 30px;
    background-position: right 15px top 50%;
  }
}

.product-detail-sec {
  margin-bottom: 100px;
}
@media screen and (max-width: 1400px) {
  .product-detail-sec {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 1024px) {
  .product-detail-sec {
    margin-bottom: 60px;
  }
}
.product-detail-sec:last-of-type {
  margin-bottom: 0;
}

.product-detail-sec-title {
  font-size: 3.4rem;
  border-bottom: 1px solid #d3d8de;
  margin-bottom: 25px;
  padding: 0 0 12px 32px;
  position: relative;
}
@media screen and (max-width: 1400px) {
  .product-detail-sec-title {
    font-size: 3rem;
    padding: 0 0 12px 28px;
  }
}
@media screen and (max-width: 599px) {
  .product-detail-sec-title {
    font-size: 2.5rem;
    padding: 0 0 12px 26px;
  }
}
.product-detail-sec-title::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 0;
  width: 17px;
  height: 17px;
  border-radius: 200px;
  border: 5px solid #b6201f;
}
@media screen and (max-width: 1400px) {
  .product-detail-sec-title::before {
    top: 18px;
  }
}
@media screen and (max-width: 599px) {
  .product-detail-sec-title::before {
    top: 16px;
    width: 15px;
    height: 15px;
    border: 4px solid #b6201f;
  }
}

.product-detail-sekou {
  margin-top: 40px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
  padding: 0;
}
@media screen and (max-width: 1400px) {
  .product-detail-sekou {
    margin-top: 35px;
  }
}
@media screen and (max-width: 1024px) {
  .product-detail-sekou {
    gap: 15px;
  }
}
.product-detail-sekou::after {
  content: none;
}
.product-detail-sekou li {
  width: calc((100% - 40px) / 3);
  text-align: center;
}
.product-detail-sekou li img {
  max-width: 100%;
  border-radius: 2px;
}
@media screen and (max-width: 599px) {
  .product-detail-sekou li {
    width: 100%;
    flex: auto;
  }
}
.product-detail-sekou li figcaption {
  margin-top: 5px;
}

.product-detail-download {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media screen and (max-width: 1400px) {
  .product-detail-download {
    margin-top: 35px;
  }
}
@media screen and (max-width: 599px) {
  .product-detail-download {
    margin-top: 30px;
    gap: 12px;
  }
}
.product-detail-download > li {
  width: calc((100% - 20px) / 2);
}
@media screen and (max-width: 599px) {
  .product-detail-download > li {
    width: 100%;
  }
}
.product-detail-download > li > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 3px;
  color: #101010;
  padding: 24px 60px 24px 60px;
  line-height: 1.2;
  font-weight: 500;
  font-size: 1.8rem;
  font-weight: 600;
  background-image: url(../img/common/icon_target.svg), url(../img/common/icon_pdf.svg);
  background-repeat: no-repeat;
  background-size: 20px auto, 25px auto;
  background-position: right 20px top 50%, left 22px top 50%;
}
@media screen and (min-width: 1025px) {
  .product-detail-download > li > a:hover {
    transform: translateY(2px);
  }
}
@media screen and (max-width: 599px) {
  .product-detail-download > li > a {
    font-size: 1.7rem;
    padding: 18px 60px 18px 45px;
    background-size: 16px auto, 20px auto;
    background-position: right 15px top 50%, left 16px top 50%;
  }
}

.product-detail-btn {
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid #d3d8de;
}
@media screen and (max-width: 599px) {
  .product-detail-btn {
    margin-top: 50px;
    padding-top: 35px;
  }
}
.product-detail-btn > a {
  max-width: 280px;
  margin: 0 auto;
}

/*--------------------------------------------------------
service
----------------------------------------------------------*/
.service-head {
  padding: 0 40px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .service-head {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  .service-head {
    padding: 0 20px;
    margin-bottom: 45px;
  }
}
.service-head__copy {
  font-size: 3.5rem;
  text-align: center;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 35px;
}
@media screen and (max-width: 1400px) {
  .service-head__copy {
    font-size: 3.2rem;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .service-head__copy {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 599px) {
  .service-head__copy {
    font-size: 2.2rem;
    text-align: left;
    margin-bottom: 20px;
  }
}
.service-head__text {
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 599px) {
  .service-head__text {
    text-align: justify;
    line-height: 1.7;
  }
}

.service-block {
  display: flex;
  align-items: center;
  margin-bottom: 90px;
}
.service-block:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .service-block {
    flex-wrap: wrap;
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 599px) {
  .service-block {
    margin-bottom: 50px;
  }
}
.service-block__photo {
  width: 57%;
  height: 550px;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .service-block__photo {
    height: 450px;
  }
}
@media screen and (max-width: 1024px) {
  .service-block__photo {
    width: 100%;
    height: 350px;
  }
}
@media screen and (max-width: 599px) {
  .service-block__photo {
    height: 210px;
    border-radius: 0;
  }
}
.reverse .service-block__photo {
  order: 2;
  border-radius: 0;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
@media screen and (max-width: 1024px) {
  .reverse .service-block__photo {
    order: 1;
  }
}
@media screen and (max-width: 599px) {
  .reverse .service-block__photo {
    border-radius: 0;
  }
}
.service-block__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.service-block__text-box {
  width: 43%;
  padding: 50px 50px 0;
}
@media screen and (max-width: 1400px) {
  .service-block__text-box {
    padding: 80px 50px 0;
  }
}
@media screen and (max-width: 1024px) {
  .service-block__text-box {
    background-color: #ebf0f5;
    margin-top: -70px;
    z-index: 1;
    width: 80%;
    margin-left: 10%;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    padding: 110px 50px 0;
  }
}
@media screen and (max-width: 599px) {
  .service-block__text-box {
    margin-top: -40px;
    width: calc(100% - 40px);
    margin-left: 20px;
    padding: 70px 25px 0;
  }
}
.reverse .service-block__text-box {
  order: 1;
}
@media screen and (max-width: 1024px) {
  .reverse .service-block__text-box {
    order: 2;
  }
}

.service-block-item {
  max-width: 470px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .service-block-item {
    max-width: 550px;
  }
}
.service-block-item__title {
  margin-bottom: 35px;
  font-size: 4.5rem;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1400px) {
  .service-block-item__title {
    font-size: 3.9rem;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .service-block-item__title {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 599px) {
  .service-block-item__title {
    font-size: 2.9rem;
    margin-bottom: 20px;
  }
}
.service-block-item__title::before {
  content: "SERVICE";
  position: absolute;
  top: -75px;
  left: 0;
  font-size: min(7.5vw, 12.3rem);
  color: #e1e6ec;
  font-family: "Hind", sans-serif !important;
  z-index: -1;
  font-weight: 600;
}
@media screen and (max-width: 1400px) {
  .service-block-item__title::before {
    top: -45px;
    font-size: min(7.5vw, 8.3rem);
  }
}
@media screen and (max-width: 599px) {
  .service-block-item__title::before {
    font-size: 6rem;
    top: -40px;
  }
}
.service-block-item__title span {
  position: absolute;
  top: -100px;
  left: 0;
  font-size: 2.5rem;
  font-family: "Hind", sans-serif !important;
  font-weight: 600;
  color: #b6201f;
}
@media screen and (max-width: 1400px) {
  .service-block-item__title span {
    top: -70px;
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 599px) {
  .service-block-item__title span {
    top: -42px;
  }
}
.service-block-item__title span::before {
  content: "";
  position: absolute;
  right: -50px;
  top: 12px;
  width: 30px;
  height: 2px;
  background-color: #b6201f;
}
@media screen and (max-width: 599px) {
  .service-block-item__title span::before {
    content: none;
  }
}
.service-block-item__text {
  text-align: justify;
  margin-bottom: 35px;
}
@media screen and (max-width: 1400px) {
  .service-block-item__text {
    margin-bottom: 25px;
  }
}
.service-block-item__btn > a {
  max-width: 190px;
  margin: 0 0 0 auto;
}

/*--------------------------------------------------------
jis
----------------------------------------------------------*/
.jis-section {
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .jis-section {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .jis-section {
    margin-bottom: 40px;
  }
}
.jis-section:last-of-type {
  margin-bottom: 0;
}

.jis-block {
  margin-bottom: 40px;
  display: flex;
  padding-bottom: 40px;
  border-bottom: 1px solid #d3d8de;
}
.jis-block:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
@media screen and (max-width: 599px) {
  .jis-block {
    flex-wrap: wrap;
    padding-bottom: 25px;
  }
}
.jis-block__photo {
  width: 25%;
}
@media screen and (min-width: 1025px) {
  .jis-block__photo > a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 599px) {
  .jis-block__photo {
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
  }
  .jis-block__photo img {
    width: 100%;
    max-width: 150px;
  }
}
.jis-block__box {
  width: 75%;
  padding-left: 50px;
}
@media screen and (max-width: 1024px) {
  .jis-block__box {
    padding-left: 30px;
  }
}
@media screen and (max-width: 599px) {
  .jis-block__box {
    width: 100%;
    padding-left: 0;
  }
}
.jis-block__table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.5;
}
.jis-block__table tr:nth-child(odd) {
  background-color: #dee4eb;
}
@media screen and (max-width: 599px) {
  .jis-block__table tr:nth-child(odd) {
    background-color: transparent;
  }
}
@media screen and (max-width: 599px) {
  .jis-block__table tr {
    width: 100%;
    display: block;
  }
}
.jis-block__table th {
  width: 170px;
  text-align: left;
  padding: 17px 20px;
  color: #101010;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .jis-block__table th {
    width: 130px;
  }
}
@media screen and (max-width: 599px) {
  .jis-block__table th {
    width: 100%;
    display: block;
    padding: 10px;
    background-color: #dee4eb;
  }
}
.jis-block__table td {
  padding: 17px 20px;
}
@media screen and (max-width: 599px) {
  .jis-block__table td {
    width: 100%;
    display: block;
    padding: 12px 0 18px;
  }
}
.jis-block__download-btn > a {
  max-width: 370px;
  text-align: center;
  background-color: #fff;
  border-radius: 3px;
  font-size: 1.5rem;
  color: #101010;
  font-weight: 500;
  padding: 15px 40px 15px 45px;
  line-height: 1.3;
  background-image: url(../img/common/icon_target.svg), url(../img/common/icon_pdf.svg);
  background-repeat: no-repeat;
  background-size: 15px auto, 21px auto;
  background-position: right 15px top 50%, left 12px top 50%;
  transition: 0.3s;
  display: inline-block;
}
@media screen and (min-width: 1025px) {
  .jis-block__download-btn > a:hover {
    transform: translateY(2px);
  }
}
@media screen and (max-width: 599px) {
  .jis-block__download-btn > a {
    width: 100%;
    text-align: left;
  }
}

/*--------------------------------------------------------
access
----------------------------------------------------------*/
.access-map {
  margin-bottom: 70px;
  background-color: #fff;
  border-radius: 3px;
  text-align: center;
  padding: 40px;
}
@media screen and (max-width: 1024px) {
  .access-map {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 599px) {
  .access-map {
    padding: 20px 10px;
    margin-bottom: 40px;
  }
}
.access-map img {
  width: 100%;
  max-width: 600px;
}

.access-section {
  margin-bottom: 80px;
}
@media screen and (max-width: 599px) {
  .access-section {
    margin-bottom: 50px;
  }
}
.access-section:last-of-type {
  margin-bottom: 0;
}

.access-address {
  margin-bottom: 20px;
}
.access-address > a {
  color: #101010;
}

.access-googlemap {
  position: relative;
  aspect-ratio: 16/7;
  border-radius: 3px;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .access-googlemap {
    aspect-ratio: 16/10;
  }
}
.access-googlemap iframe {
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------
company
----------------------------------------------------------*/
.company-section {
  margin-bottom: 80px;
}
.company-section:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  .company-section {
    margin-bottom: 30px;
  }
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.5;
}
.company-table tr:nth-child(odd) {
  background-color: #dee4eb;
}
@media screen and (max-width: 599px) {
  .company-table tr:nth-child(odd) {
    background-color: transparent;
  }
}
@media screen and (max-width: 599px) {
  .company-table tr {
    width: 100%;
    display: block;
  }
}
.company-table th {
  width: 170px;
  text-align: left;
  padding: 22px 25px;
  color: #101010;
  font-weight: 600;
}
@media screen and (max-width: 599px) {
  .company-table th {
    width: 100%;
    display: block;
    padding: 8px 10px;
    background-color: #dee4eb;
  }
}
.company-table td {
  padding: 22px 20px;
}
@media screen and (max-width: 599px) {
  .company-table td {
    width: 100%;
    display: block;
    padding: 12px 0 25px;
  }
}

.company-address > div {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #d3d8de;
  padding: 14px 0 14px;
}
.company-address > div:last-of-type {
  border-bottom: none;
}
@media screen and (max-width: 599px) {
  .company-address > div {
    flex-wrap: wrap;
  }
  .company-address > div:first-of-type {
    padding-top: 5px;
  }
}
.company-address > div > dt {
  width: 120px;
  background-color: #101010;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  padding: 4px;
  font-size: 1.3rem;
}
@media screen and (max-width: 599px) {
  .company-address > div > dt {
    padding: 3px;
    margin-bottom: 4px;
  }
}
.company-address > div > dd {
  width: calc(100% - 120px);
  padding-left: 20px;
}
@media screen and (max-width: 599px) {
  .company-address > div > dd {
    width: 100%;
    padding-left: 0;
  }
}

.company-history > div {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.3;
}
.company-history > div dt {
  width: 120px;
  position: relative;
  font-weight: 500;
}
@media screen and (max-width: 599px) {
  .company-history > div dt {
    width: 80px;
    font-size: 1.5rem;
  }
}
.company-history > div dt::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #b6201f;
  position: absolute;
  top: 5px;
  right: 0;
  z-index: 1;
}
.company-history > div dt::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #c3cad3;
  display: block;
  position: absolute;
  top: 12px;
  right: 6px;
}
.company-history > div dd {
  width: calc(100% - 120px);
  padding-left: 40px;
  padding-top: 2px;
  padding-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .company-history > div dd {
    width: calc(100% - 80px);
    padding-left: 20px;
    padding-top: 0;
  }
}
.company-history > div:last-child dt::after {
  content: none;
}
.company-history > div:last-child dd {
  padding-bottom: 0;
}

/*--------------------------------------------------------
policy
----------------------------------------------------------*/
.policy-block {
  border: 1px solid #d3d8de;
  padding: 40px;
}
@media screen and (max-width: 599px) {
  .policy-block {
    padding: 30px 20px;
  }
}

.policy-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: num;
}
.policy-list > li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 30px;
  line-height: 1.4;
}
.policy-list > li:last-child {
  margin-bottom: 0;
}
.policy-list > li::before {
  content: counter(num);
  counter-increment: num;
  top: -1px;
  left: 0;
  width: 25px;
  height: 25px;
  background-color: #101010;
  position: absolute;
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  padding-top: 3px;
}

.policy-list-sub > li {
  line-height: 1.3;
  margin-bottom: 8px;
  position: relative;
  padding-left: 15px;
}
.policy-list-sub > li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #101010;
  border-radius: 100px;
}
.policy-list-sub > li:last-child {
  margin-bottom: 0;
}/*# sourceMappingURL=style.css.map */