@charset "UTF-8";
/*改善点

・768pxまではPC（タブレットも含む）
・767pxからSP


追加ルール
/*==================
 ▼ブレイクポイントのルール▼
 -スマホを基本設計にする-
 *〜479px：SP縦
 *480px〜：SP横
 *600px〜タブレット
 *960px〜小型PC
 *1280px〜大型PC
==================

*/
@import url("https://fonts.googleapis.com/css2?family=Spectral+SC:wght@400;500;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap");
.mainColor {
  color: #d70012;
}

.mainColorSub {
  color: #e0e0e1;
}

.bgmainColor {
  color: #f1f3f3;
}

.mainColorDeep {
  color: #596166;
}

.bgMainColorDeep {
  background-color: #596166;
}

.mainColorExDeep {
  color: #f3efef;
}

.mainColorLight {
  color: #aad1c1;
}

.bgMainColorLight {
  background-color: #aad1c1;
}

.mainColorExLight {
  color: #ededed;
}

.bgMainColorExLight {
  background-color: #ededed;
}

.mainColorUlLight {
  color: #f6f7f9;
}

.cautionColor {
  color: #e60110;
}

.bgMainColorUlLight {
  background-color: #f6f7f9;
}

.subColor {
  color: #443b24;
}

.bgSubColor {
  background-color: #004996;
}

.subColorDeep {
  color: #e3e3fb;
}

.bgSubColorDeep {
  background-color: #e3e3fb;
}

.bgSubColorLight {
  background-color: #e3e2e2;
}

.compColor {
  color: #a9a8a9;
}

.bgCompColor {
  background-color: #a9a8a9;
}

.grayColor {
  color: #cccdcd;
}

.bgGrayColor {
  background-color: #cccdcd;
}

.grayColorLight {
  color: #dcdcdc;
}

.bgGrayColorLight {
  background-color: #dcdcdc;
}

.bgGrayColorExLight {
  background-color: #ececec;
}

.bgWhiteTrans {
  background-color: rgba(255, 255, 255, 0.5);
}

.bgBlackTrans {
  background-color: rgba(0, 0, 0, 0.3);
}

.bgBlack {
  background: #000;
}

.bgGrad {
  background: rgb(255, 174, 86);
  background: linear-gradient(to right, #efe590 0%, #ffae56 100%);
}

.bgGradafter {
  background: rgb(239, 229, 144);
  background: linear-gradient(to left, #efe590 0%, #ffae56 100%);
}

.bgTexture {
  background-image: url(../img/bg_texture_light.gif);
}

.grayLight {
  color: #9a9a9a;
}

.white {
  color: #fff;
}

/*フォント系*/
.fontEn {
  font-family: "Spectral SC", sans-serif;
}

.fontEnSub {
  font-family: "Heebo", sans-serif;
}

.fontNumSub {
  font-family: "Barlow Condensed", sans-serif;
}

.fontNumSubA {
  font-family: "Didact Gothic", sans-serif;
}

.fontNum {
  font-family: "Inter", sans-serif;
}

.fontJP {
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝体", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
}

.serif {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

/*==================================================
 * リセットcss
 *================================================*/
/* a modern css reset*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

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

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

del {
  text-decoration: line-through;
}

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

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

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

input,
select {
  vertical-align: middle;
}

li {
  list-style-type: none;
}

/*==================================================
 * フォント
 *================================================*/
.italic {
  font-style: italic;
}

html {
  font-size: 10px;
}

html,
body {
  font-feature-settings: "palt";
}

body {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
h6,
h7,
p,
span,
div {
  line-height: 1.8;
  font-weight: 400;
}

.lh_xxl {
  line-height: 2.5;
}
.lh_xxl * {
  line-height: 2.5;
}

.lh_xl {
  line-height: 2;
}
.lh_xl * {
  line-height: 2;
}

.lh_l {
  line-height: 1.8;
}
.lh_l * {
  line-height: 1.8;
}

.lh_m {
  line-height: 1.5;
}
.lh_m * {
  line-height: 1.5;
}

.lh_s {
  line-height: 1.1;
}
.lh_s * {
  line-height: 1.1;
}

.lh_xs {
  line-height: 0.7;
}
.lh_xs * {
  line-height: 0.7;
}

.ls_xl {
  letter-spacing: 0.3em;
}

.ls_l {
  letter-spacing: 0.2em;
}

.ls_m {
  letter-spacing: 0.1em;
}

.ls_s {
  letter-spacing: 0.05em;
}

.ls_xs {
  letter-spacing: 0.01em;
}

.ls_0 {
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.bold {
  font-weight: 700 !important;
}

.bold900 {
  font-weight: 900 !important;
}

.thin {
  font-weight: 100;
}

.nowrap {
  white-space: nowrap;
}

.white {
  color: #fff;
}

.black {
  color: #000;
}

.gray {
  color: #686868;
}

.red {
  color: #ff4501 !important;
}

.red2 {
  color: #b50d23 !important;
}

.blue {
  color: #333d80;
}

.fsL {
  font-size: 100px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL {
    font-size: 64px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL {
    font-size: 42px;
  }
}

.fsL2 {
  font-size: 64px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL2 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL2 {
    font-size: 36px;
  }
}

.fsL3 {
  font-size: 56px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL3 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL3 {
    font-size: 36px;
  }
}

.fsL35 {
  font-size: 50px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL35 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL35 {
    font-size: 30px;
  }
}

.fsL45 {
  font-size: 45px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL45 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL45 {
    font-size: 27px;
  }
}

.fsL4 {
  font-size: 42px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL4 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL4 {
    font-size: 22px;
  }
}

.fsM {
  font-size: 34px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM {
    font-size: 21px;
  }
}

.fsML {
  font-size: 32px;
}
@media only screen and (max-width: 767px) {
  .fsML {
    font-size: 20px;
  }
}

.fsMM {
  font-size: 30px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsMM {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .fsMM {
    font-size: 22px;
  }
}

.fsM2 {
  font-size: 28px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM2 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM2 {
    font-size: 20px;
  }
}

.fsM3 {
  font-size: 28px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM3 {
    font-size: 18px;
  }
}

.fsM26 {
  font-size: 26px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM26 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM26 {
    font-size: 17px;
  }
}

.fsM25 {
  font-size: 25px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM25 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM25 {
    font-size: 17px;
  }
}

.fsM25s {
  font-size: 24px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM25s {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM25s {
    font-size: 17px;
  }
}

.fsM36 {
  font-size: 23px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM36 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM36 {
    font-size: 17px;
  }
}

.fsM36m {
  font-size: 23px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM36m {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM36m {
    font-size: 18px;
  }
}

.fsM36s {
  font-size: 22px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM36s {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM36s {
    font-size: 18px;
  }
}

.fsM36 {
  font-size: 20px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM36 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM36 {
    font-size: 20px;
  }
}

.fsM4 {
  font-size: 18px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM4 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM4 {
    font-size: 16px;
  }
}

.fsM45 {
  font-size: 17px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM45 {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM45 {
    font-size: 15px;
  }
}

.fsM5 {
  font-size: 16px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM5 {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM5 {
    font-size: 14px;
  }
}

.fsS {
  font-size: 14px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsS {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .fsS {
    font-size: 13px;
  }
}

.fsS1 {
  font-size: 14px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsS1 {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .fsS1 {
    font-size: 13px;
    line-height: 1.7;
  }
}

.fsS2 {
  font-size: 13px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsS2 {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .fsS2 {
    font-size: 12px;
  }
}

.fsS3 {
  font-size: 12px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsS3 {
    font-size: 11px;
  }
}
@media only screen and (max-width: 767px) {
  .fsS3 {
    font-size: 11px;
  }
}

.fsS4 {
  font-size: 10px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsS4 {
    font-size: 9px;
  }
}
@media only screen and (max-width: 767px) {
  .fsS4 {
    font-size: 9px;
  }
}

.h000 {
  font-size: 100px;
}

.h00 {
  font-size: 64px;
}

.h0 {
  font-size: 42px;
}

.h1 {
  font-size: 32px;
}

.h2 {
  font-size: 28px;
}

.h3 {
  font-size: 24px;
}

.h4 {
  font-size: 18px;
}

.h5 {
  font-size: 16px;
}

.text_m {
  font-size: 14px;
}

.text_sm {
  font-size: 13px;
}

.text_s {
  font-size: 12px;
}

.text_ss {
  font-size: 10px;
}

@media screen and (min-width: 768px) and (max-width: 959px) {
  body {
    font-size: 14px;
  }
  .h000 {
    font-size: 64px;
  }
  .h00 {
    font-size: 36px;
  }
  .h0 {
    font-size: 25px;
  }
  .h1 {
    font-size: 24px;
  }
  .h2 {
    font-size: 24px;
  }
  .h3 {
    font-size: 20px;
  }
  .h4 {
    font-size: 15px;
  }
  .h5 {
    font-size: 14px;
  }
  .text_m {
    font-size: 13px;
  }
  .text_s {
    font-size: 11px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
  .h000 {
    font-size: 42px;
  }
  .h00 {
    font-size: 36px;
  }
  .h0 {
    font-size: 24px;
  }
  .h1 {
    font-size: 22px;
  }
  .h2 {
    font-size: 20px;
  }
  .h3 {
    font-size: 17px;
  }
  .h4 {
    font-size: 15px;
  }
  .h5 {
    font-size: 15px;
  }
  .text_m {
    font-size: 13px;
  }
  .text_s {
    font-size: 11px;
  }
}
/*==================================================
 * 独自リセット
 *================================================*/
/*リセット関係*/
*,
*:before,
*:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

ul {
  padding: 0;
  list-style-type: none;
  margin: 0;
}

/*
a:hover{
	opacity: 0.8;
	transition:0.3s;
}
*/
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 0;
  font-weight: 100;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

hr {
  margin: 10px auto;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

/*==================================================
 * 独自クラス（どのサイトでも）
 *================================================*/
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.remove {
  text-indent: -9999px;
  overflow: hidden;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  height: 0;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.relapadding {
  padding-right: 80px;
}

.inline {
  display: inline;
}

.block {
  display: block;
}

.inlineBlock {
  display: inline-block;
}

.inlineBlockUl li {
  display: inline-block;
}

.disNone {
  display: none !important;
}

.bgCenter {
  background-position: center center;
  background-size: cover;
}

.opa {
  transition: 0.3s;
  opacity: 1;
}

a:hover .opa {
  transition: 0.3s;
  opacity: 0.7;
}

.tra,
.tra:hover {
  transition: 0.3s;
}

.verticalMiddle {
  vertical-align: middle;
}

.verticalBottom {
  vertical-align: bottom;
}

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

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

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

@media only screen and (max-width: 767px) {
  .text-center-sp {
    text-align: center;
  }
}

@media only screen and (max-width: 767px) {
  .text-right-sp {
    text-align: right;
  }
}

@media only screen and (max-width: 767px) {
  .text-left-sp {
    text-align: left;
  }
}

.writting-rl {
  writing-mode: vertical-rl;
  font-feature-settings: normal;
}

/*
p {
    margin-bottom: 10px;
}
*/
.linkA {
  text-decoration: underline;
  transition: 0.3s;
  color: #d70012;
}
.linkA:hover {
  color: #d70012;
  text-decoration: underline;
}

@media screen and (min-width: 959px) {
  .spTab {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media screen and (max-width: 1355px) {
  .Menu_p {
    display: none !important;
  }
}
@media screen and (min-width: 1355px) {
  .Menu_s {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .notTab {
    display: none !important;
  }
  .tab {
    display: block !important;
  }
}
/*余白*/
.m0 {
  margin: 0;
}

.p0 {
  padding: 0;
}

.mb0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .mb30 {
    margin-bottom: 20px;
  }
}

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

.mb50 {
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .mb50 {
    margin-bottom: 30px;
  }
}

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

.mb70 {
  margin-bottom: 70px;
}
@media only screen and (max-width: 767px) {
  .mb70 {
    margin-bottom: 40px;
  }
}

.mb80 {
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .mb80 {
    margin-bottom: 40px;
  }
}

.mb80 {
  margin-bottom: 90px;
}
@media only screen and (max-width: 767px) {
  .mb80 {
    margin-bottom: 50px;
  }
}

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

.mb200 {
  margin-bottom: 200px;
}
@media only screen and (max-width: 767px) {
  .mb200 {
    margin-bottom: 70px;
  }
}

.ml0 {
  margin-left: 0;
}

.mbL {
  margin-bottom: 30%;
}

.mbL2 {
  margin-bottom: 25%;
}

.mbL3 {
  margin-bottom: 20%;
}

.mbL4 {
  margin-bottom: 15%;
}

.mbL5 {
  margin-bottom: 12%;
}

.mbM {
  margin-bottom: 10%;
}

.mbM2 {
  margin-bottom: 7.5%;
}

.mbM3 {
  margin-bottom: 5%;
}

.mbS {
  margin-bottom: 3.5%;
}

.mbS2 {
  margin-bottom: 2%;
}

.mbS3 {
  margin-bottom: 1%;
}

.mbS4 {
  margin-bottom: 0.5%;
}

@media only screen and (max-width: 767px) {
  .mbSpL {
    margin-bottom: 30%;
  }
  .mbSpL2 {
    margin-bottom: 25%;
  }
  .mbSpL3 {
    margin-bottom: 20%;
  }
  .mbSpL4 {
    margin-bottom: 15%;
  }
  .mbSpM {
    margin-bottom: 10%;
  }
  .mbSpM2 {
    margin-bottom: 7.5%;
  }
  .mbSpM3 {
    margin-bottom: 5%;
  }
  .mbSpS {
    margin-bottom: 3.5%;
  }
  .mbSpS2 {
    margin-bottom: 2%;
  }
  .mbSpS3 {
    margin-bottom: 1%;
  }
}
/*flex・グリッド系*/
.flex {
  display: flex;
}

.justCenter {
  justify-content: center;
}

.justEnd {
  justify-content: flex-end;
}

.justBetween {
  justify-content: space-between;
}

.alignCenter {
  align-items: center;
}

.alignStart {
  align-items: flex-start;
}

.alignEnd {
  align-items: flex-end;
}

.flexReverse {
  flex-flow: row-reverse;
}

.flexWrap {
  flex-wrap: wrap;
}

.col {
  padding-left: 15px;
  padding-right: 15px;
}

.flexCol {
  width: 100%;
}

.col1 {
  width: 100%;
}

.col2 {
  width: 50%;
}

.col3 {
  width: 33.3333%;
}

.col-3 {
  width: 66.6666%;
}

.col4 {
  width: 25%;
}

.col-4 {
  width: 75%;
}

.col5 {
  width: 20%;
}

.col-5 {
  width: 80%;
}

.col6 {
  width: 16.666%;
}

.col-6 {
  width: 83.333%;
}

.col3-2 {
  width: 60%;
}

.col-3-2 {
  width: 40%;
}

@media screen and (max-width: 767px) {
  .flexSplit {
    width: 100%;
  }
  .flexPc {
    display: block;
  }
  .flexWrapSp {
    flex-wrap: wrap;
  }
  .bgFixed {
    background-attachment: unset;
  }
  .flexReverse {
    flex-flow: row;
  }
  .flexSp {
    display: flex;
  }
  .colSp1 {
    width: 100%;
  }
  .colSp2 {
    width: 50%;
  }
  .colSp3 {
    width: 33.3333%;
  }
  .colSp-3 {
    width: 66.6666%;
  }
  .colSp4 {
    width: 25%;
  }
  .colSp-4 {
    width: 75%;
  }
  .colSp5 {
    width: 20%;
  }
  .colSp-5 {
    width: 80%;
  }
  .colSp6 {
    width: 16.666%;
  }
  .colSp-6 {
    width: 83.333%;
  }
  .colSp3-2 {
    width: 60%;
  }
  .colSp-3-2 {
    width: 40%;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .flexTab {
    display: block;
  }
  .colMd1 {
    width: 100%;
  }
  .colMd2 {
    width: 50%;
  }
  .colMd3 {
    width: 33.3333%;
  }
  .colMd-3 {
    width: 66.6666%;
  }
  .colMd4 {
    width: 25%;
  }
  .colMd-4 {
    width: 75%;
  }
  .colMd5 {
    width: 20%;
  }
  .colMd-5 {
    width: 80%;
  }
  .colMd6 {
    width: 16.666%;
  }
  .colMd-6 {
    width: 83.333%;
  }
  .colMd3-2 {
    width: 60%;
  }
  .colMd-3-2 {
    width: 40%;
  }
}
/*横幅*/
.cnt {
  width: 90%;
  max-width: 1728px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 959px) {
  .cnt {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .cnt.cntMS {
    width: 95%;
  }
}

.cn .cntInnerWide {
  margin-left: -15px;
  margin-right: -15px;
}
@media only screen and (min-width: 1201px) {
  .cn .cntInnerWide {
    margin-left: calc((100vw - 1200px) / -2 - 15px);
    width: 100vw;
    padding-left: 0;
    padding-right: 0;
  }
}

.w100 {
  width: 100%;
}

.cntS {
  max-width: 1366px;
  margin-right: auto;
  margin-left: auto;
}

.cntXS {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.cntMSub {
  max-width: 1540px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1426px) {
  .cntMSub {
    width: 95%;
  }
}
@media only screen and (max-width: 767px) {
  .cntMSub {
    width: 63%;
    margin-left: 3%;
  }
}

.cntM {
  max-width: 1600px;
  margin-right: auto;
  margin-left: auto;
}

.cntMS {
  max-width: 1660px;
  margin-right: auto;
  margin-left: auto;
}

.cntMM {
  max-width: 1718px;
  margin-right: auto;
  margin-left: auto;
}

.cntL {
  max-width: 1730px;
  margin-right: auto;
  margin-left: auto;
}

.cntWide {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.rw {
  margin-left: -15px;
  margin-right: -15px;
}

:root {
  --spaceSize: clamp(50px, 3.5vw, 63px);
  --spaceSizeMiddle: clamp(75px, 8vw, 150px);
  --spaceSizeSMiddle: clamp(65px, 4.5vw, 90px);
  --spaceSizeWide: clamp(135px, 14vw, 270px);
}

.padding {
  padding-top: var(--spaceSize);
  padding-bottom: var(--spaceSize);
}

.paddingW {
  padding-top: var(--spaceSizeWide);
  padding-bottom: var(--spaceSizeWide);
}

.margin {
  margin-top: var(--spaceSize);
  margin-bottom: var(--spaceSize);
}

.marginSM {
  margin-top: var(--spaceSizeSMiddle);
  margin-bottom: var(--spaceSize);
}

.marginM {
  margin-top: var(--spaceSizeSMiddle);
  margin-bottom: var(--spaceSizeMiddle);
}

.margi-top {
  margin-top: var(--spaceSize);
}

.marginW {
  margin-top: var(--spaceSizeWide);
  margin-bottom: var(--spaceSizeWide);
}

/*背景系*/
.bgImg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.bgImgHeight {
  padding-bottom: 67%;
}

.bgFixed {
  background-attachment: fixed;
}
@media only screen and (max-width: 767px) {
  .bgFixed {
    background-attachment: inherit;
  }
}

.bgImgCircle {
  border-radius: 50%;
  padding-bottom: 100%;
}

.bgBlur {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.bgBlur:before {
  content: "";
  background: inherit;
  filter: blur(3px);
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
}

.bgWhite {
  background-color: #ffffff;
}

.bgZoom {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.bgZoomImg {
  width: 100%;
  transition: all 0.5s ease-out;
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  will-change: transform;
  height: 100%;
  top: 0;
  left: 0;
}

a:hover .bgZoomImg {
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0.9);
}

.bgZoomText {
  position: relative;
  pointer-events: none;
  width: 100%;
  z-index: 1;
}

/*テーブルboostrap*/
table {
  border-collapse: collapse;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}
.table th {
  text-align: inherit;
  font-weight: normal;
}
.table td,
.table th {
  padding: 1.2rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #e8edf0;
}

.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered td,
.table-bordered th {
  border: 1px solid #dee2e6;
}

/*マスクアニメーション*/
.maskCenter .maskWrap {
  margin-left: auto;
  margin-right: auto;
}

.maskWrap {
  display: table;
  overflow: hidden;
}

.maskWrap .mask {
  display: table;
  position: relative;
  margin-bottom: 0.25em;
  left: -100%;
  overflow: hidden;
}

.maskWrap .maskBg {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ae9373;
}

/*角丸*/
.radiusS {
  border-radius: 5px;
}

.radiusM {
  border-radius: 10px;
}

.radiusL {
  border-radius: 20px;
}

.radiusXl {
  border-radius: 30px;
}

/*影*/
.shadowS {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
@media only screen and (max-width: 767px) {
  .shadowS {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  }
}

.shadowM {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}
@media only screen and (max-width: 767px) {
  .shadowM {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.5) 0px 30px 60px -30px;
  }
}

.shadowL {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 30px -30px, rgba(0, 0, 0, 0.1) 0px 30px 60px -30px;
}
@media only screen and (max-width: 767px) {
  .shadowL {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 30px 90px;
  }
}

.shadowLL {
  box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
}

/*FVスライダー(CSS)*/
.mainImgBox,
.mainImg {
  padding-bottom: 65vw;
}
@media only screen and (max-width: 767px) {
  .mainImgBox,
  .mainImg {
    padding-bottom: 120vw;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .mainImgBox,
  .mainImg {
    padding-bottom: 95vw;
  }
}

.mainImgBox {
  overflow: hidden;
  position: relative;
  z-index: -1;
}

.mainImg {
  z-index: 10;
  opacity: 0;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  /*1枚6秒で×枚数*/
  animation: anime 18s 0s infinite;
}

/*2枚目以降6秒遅れてアニメーションスタート*/
.mainImg:nth-of-type(2) {
  animation-delay: 6s;
}

.mainImg:nth-of-type(3) {
  animation-delay: 12s;
}

/*
.mainImg:nth-of-type(4) {
    animation-delay: 18s;
}
.mainImg:nth-of-type(5) {
    animation-delay: 24s;
}

.mainImg:nth-of-type(6) {
    animation-delay: 30s;
}
*/
@keyframes anime {
  0% {
    opacity: 0;
  }
  /*3秒：フェードイン.3/alls*/
  16% {
    opacity: 1;
  }
  /*6秒：次のスライド再生.6/alls*/
  33% {
    opacity: 1;
  }
  /*9秒：フェードアウト&次のスライドフェードイン*/
  50% {
    opacity: 0;
    transform: scale(1.2);
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
/*FVスライダー(CSS)ここまで*/
/*==================================================
 * 独自クラス（このサイトだけ）
 *================================================*/
/*線系*/
.titleLine {
  /*
  background: linear-gradient(transparent 50%, #f4d862 0%);
  display: inline;
  */
  position: relative;
  display: inline-block;
  z-index: 10;
  /*
  &.white{
      background: linear-gradient(transparent 70%, $subColorDeep 0%);
  }
  */
}
.titleLine:after {
  content: "";
  display: inline-block;
  background-color: #a9a8a9;
  position: absolute;
  bottom: 0;
  left: -2.5%;
  width: 105%;
  height: 0.3em;
  z-index: 0;
}
.titleLine.sub {
  background: linear-gradient(transparent 70%, #443b24 0%);
}

.titleBd {
  position: relative;
  margin-bottom: 7rem;
  display: inline-block;
}
.titleBd:before {
  position: absolute;
  content: " ";
  display: block;
  width: 5rem;
  margin: 0 auto;
  text-align: center;
  left: 0;
  right: 0;
  bottom: -1.5rem;
  height: 2px;
  background-color: #d70012;
  border-radius: 50px;
}
.titleBd.compColor:before {
  background-color: #a9a8a9;
}
.titleBd.white:before {
  background-color: #fff;
}
.titleBd.sub {
  display: block;
}
.titleBd.sub:before {
  width: 23rem;
  height: 2px;
  bottom: -7px;
}
@media only screen and (max-width: 767px) {
  .titleBd {
    margin-bottom: 3rem;
  }
  .titleBd:before {
    width: 2.5rem;
  }
}

.titleBdCenter {
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
}
.titleBdCenter:after {
  content: "";
  position: absolute;
  bottom: -10px;
  display: inline-block;
  width: 80px;
  height: 4px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #d70012;
  border-radius: 2px;
}
.titleBdCenter.mini:after {
  bottom: -15px;
  width: 40px;
  height: 1.5px;
  border-radius: 0px;
}

.titleBdLeft {
  display: flex;
  align-items: center;
}
.titleBdLeft:before {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #d70012;
  display: block;
  margin-right: 1.5rem;
  max-width: 3rem;
}
.titleBdLeft.white:before {
  background: #fff;
}

.titleBdLight {
  border-bottom: 1px solid #d70012;
  display: inline-block;
}

.bdBox {
  border: 2px solid #d70012;
}

/*ボタン*/
/* ボタンだけに指定する場合は以下 */
.button {
  display: inline-block;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  border: 1px solid #333;
  padding: 0.5em 1em;
  letter-spacing: 0.1em;
  line-height: 1.4;
  box-shadow: 4px 4px 0px 0 #596166;
  font-size: 21px;
  background-color: #fff;
}
.button:hover {
  color: #596166;
  background-color: #fff;
}
.button.small {
  font-size: 16px;
}
.button.insta {
  box-shadow: 4px 4px 0px 0 #e264af;
}
.button.line {
  box-shadow: 4px 4px 0px 0 #4caa4d;
}
.button.mono {
  box-shadow: 4px 4px 0px 0 #c4c4c4;
}
/*==================================================
 * header
 *================================================*/
/*------------モーダルウィンドウ------------*/
/*オーバーレイメニュー*/
.overRayBox {
  position: fixed;
  top: 57px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(.././img/back_gr.webp);
  overflow-y: scroll;
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
  z-index: 999;
}
.overRayBox > ul {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
.open .overRayBox {
  cursor: url(../images/cross.svg), auto;
  visibility: visible;
  opacity: 1;
}

html.open {
  overflow-y: hidden;
}

/*ハンバーガーメニュー*/
.menu-btn {
  position: fixed;
  cursor: pointer;
  z-index: 998;
  right: 9px;
  top: 0;
  height: 58px;
  width: 67px;
  border: none;
  background-color: transparent;
}
.menu-btn span:after {
  content: attr(data-txt-menu);
}
.open .menu-btn span:after {
  content: attr(data-txt-close);
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .menu-btn {
    top: 8px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .menu-btn {
    top: 8px;
  }
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 42px;
  height: 24px;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
}
.menu-trigger span:nth-of-type(1) {
  top: 6px;
}
.menu-trigger span:nth-of-type(2) {
  top: 17px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: -6px;
}
.menu-trigger.active span {
  background-color: #000;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(11px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: active-menu-bar02 0.8s forwards;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
}
.menu-trigger.active span:nth-of-type(4) {
  background: none !important;
}
@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
/*------------モーダルウィンドウ終わり------------*/
/*==================================================
 * footer
 *================================================*/
/*スマホfooter追従問い合わせ*/
.footerTelSpFlexLi {
  width: 50%;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  background-color: #a9946c;
}
.footerTelSpFlexLi:last-child {
  border-right: none;
  background-color: #d70012;
}
.footerTelSpFlexLi a {
  display: block;
  padding: 9px 0;
}
.footerTelSpFlexLi a i {
  font-size: 16px;
}

.footerTelSpText {
  font-size: 16px;
  line-height: 1.5;
}

.footerTelSp {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 100;
}

/*フッター追従コンタクト*/
.fixBarContact {
  padding: 1rem 2rem;
}

.fixBar {
  position: fixed;
  z-index: 10;
  right: 2%;
  bottom: 2%;
}
.fixBar .button {
  padding: 0.7rem 3rem;
  border: 1px solid #d70012;
}

.fixBarA {
  margin-right: 10px;
}
.fixBarA:hover {
  background-color: #fff;
  color: #d70012;
}

.fixBarTop {
  height: 44px;
  width: 44px;
  cursor: pointer;
  border: 1px solid #d70012;
  border-radius: 50px;
}
.fixBarTop:hover {
  background-color: #fff;
  border: 1px solid #d70012;
  color: #d70012;
}

.fixBar i,
.fixBar span {
  vertical-align: middle;
}

.fixBarTop i {
  margin-top: 14px;
}

/*==================================================
 * トップページ
 *================================================*/
/*Q&Aここから*/
.topQaBoxUl li:nth-child(2) hr {
  border-top: 1px solid #dadada;
}

.topQaBoxUl li {
  display: inline-block;
  vertical-align: middle;
}

.topQaBoxDl {
  width: 48%;
  display: inline-block;
  margin-right: 1%;
  vertical-align: top;
}

.topQaBoxDl dd {
  display: none;
  margin-top: 3%;
}

.topQaBoxDl dt {
  font-weight: normal;
}

.topQaBoxDl dt:hover {
  background: rgba(242, 203, 149, 0.3);
  border-radius: 5px;
  cursor: pointer;
}

.topQaBoxUl li:nth-child(3) {
  width: 74%;
}

.topQaBoxUl li:nth-child(1) {
  margin-right: 2%;
}

.topQaBoxUl li:nth-child(2) {
  width: 8%;
  margin-right: 2%;
}

/*Q&Aここまで*/
@media screen and (max-width: 767px) {
  /*Q&Aのスマホここから*/
  .topQaBoxDl {
    width: 100%;
  }
  /*Q&Aのスマホここまで*/
}
/*==================================================
 * 下層ページ
 *================================================*/
/*共通部分------------------------------------*/
/*パンくず*/
/*パンくず終わり*/
/*about-us------------------------------------*/
/*残す--ここから*/
.pageAboutCompanyUl ul {
  display: flex;
}
.pageAboutCompanyUl li {
  padding: 0.5em 0;
}
@media only screen and (max-width: 767px) {
  .pageAboutCompanyUl li {
    padding: 0.8em 0;
    font-size: 13px;
  }
}
.pageAboutCompanyUl li:nth-child(1) {
  width: 30%;
  text-align: left;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .pageAboutCompanyUl li:nth-child(1) {
    font-size: 15px;
  }
}
.pageAboutCompanyUl li:nth-child(2) {
  width: 70%;
}
.fa-map-marker {
  color: #d9534f;
  font-size: 20px;
  margin-left: 1%;
}

/*残す--ここまで*/
/*お問い合わせページ------------------------------------*/
/*お問い合わせページ------------------------------------*/
.cform {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.cform tr {
  margin-bottom: 1.5em;
  display: block;
}
.cform tr th,
.cform tr td {
  letter-spacing: 0.01em;
  text-align: left;
  display: block;
  width: 100%;
}
.cform tr th {
  margin-bottom: 0.5em;
}
.cform label {
  margin-right: 1.5em;
}
.cform label span {
  vertical-align: middle;
  line-height: 1;
  display: inline-block;
}
.cform option,
.cform textarea,
.cform input[type=text],
.cform input[type=tel],
.cform input[type=email],
.cform input[type=search],
.cform input[type=url] {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 1em;
  font-size: 15px;
  letter-spacing: 0.07em;
  line-height: 1.4;
  background-color: #f6f6f6;
}
.cform option::-moz-placeholder,
.cform textarea::-moz-placeholder,
.cform input[type=text]::-moz-placeholder,
.cform input[type=tel]::-moz-placeholder,
.cform input[type=email]::-moz-placeholder,
.cform input[type=search]::-moz-placeholder,
.cform input[type=url]::-moz-placeholder {
  color: #c1c1c1;
}
.cform option::-moz-placeholder, .cform textarea::-moz-placeholder, .cform input[type=text]::-moz-placeholder, .cform input[type=tel]::-moz-placeholder, .cform input[type=email]::-moz-placeholder, .cform input[type=search]::-moz-placeholder, .cform input[type=url]::-moz-placeholder {
  color: #c1c1c1;
}
.cform option::placeholder,
.cform textarea::placeholder,
.cform input[type=text]::placeholder,
.cform input[type=tel]::placeholder,
.cform input[type=email]::placeholder,
.cform input[type=search]::placeholder,
.cform input[type=url]::placeholder {
  color: #c1c1c1;
}
.cform input[type=checkbox] + span:before {
  font-family: "Font Awesome 5 Free";
  content: "";
  display: inline-block;
  margin-right: 0.5em;
  font-weight: 400;
}
.cform .title {
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .cform tr {
    margin-bottom: 2em;
  }
}

.thcomment {
  font-weight: normal;
  font-size: 14px;
  line-height: 1.2;
}

#productName {
  background-color: unset;
  padding: unset;
}

.mwform-radio-field input {
  margin: 0;
  margin-right: 0 !important;
  display: inline-block;
  vertical-align: middle;
}

.required-srt {
  color: #f04876;
  margin-left: 0.7em;
}

.required-text {
  color: #fff;
  font-size: 13px;
  padding: 0.3em 0.5em;
  background-color: #d70012;
  border-radius: 5px;
  margin-left: 0.7em;
}

.cform [type=submit] {
  display: inline-block;
  font-size: 20px;
  padding: 10px 30px;
  text-decoration: none;
  background: #ff8f00;
  color: #fff;
  border-bottom: solid 4px #b17c00;
  border-radius: 3px;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

.contactAlertBox {
  border: 1px solid #dcdcdc;
  padding: 8% 5%;
  margin: 3% 0;
}
@media only screen and (max-width: 767px) {
  .contactAlertBox {
    padding: 12% 5%;
    margin: 13% 0;
  }
}

.contactAlertTitle {
  font-size: 20px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 1.5em;
}

.submit-btn {
  text-align: center;
}
.submit-btn input {
  transition: 0.3s;
  font-size: 16px;
  letter-spacing: 0.07em;
  padding: 1.25em 2em;
  background-color: #2c2c2c;
  color: #fff;
  cursor: pointer;
  border: 1px solid #2c2c2c;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .submit-btn input {
    font-size: 14px;
  }
}

.contactHr {
  margin: 7% 0;
}
@media only screen and (max-width: 767px) {
  .contactHr {
    margin: 12% 0;
  }
}

/*下層ページ共通------------------------------------*/
/*投稿詳細ページ------------------------------------*/
li.widget {
  list-style-type: none;
  margin-bottom: 20%;
}

.widgettitle {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 3%;
}

li.widget li {
  color: #a7a7a7;
  margin-bottom: 3%;
}

/*タグクラウド*/
.tagCloud li {
  list-style: none;
  background: #db4a39;
  display: inline-block;
  color: #fff;
  padding: 0.5% 2%;
  font-size: 12px;
}

.tagCloud li .glyphicon {
  right: 5px;
}

.tagCloud li a {
  color: #fff;
  font-weight: 100;
  text-decoration: none;
}

.tagcloud a {
  color: #808080;
  border: 1px solid #808080;
  border-radius: 25px;
  padding: 2%;
  margin-bottom: 5%;
  display: inline-block;
}

.entry {
  line-height: 1.8;
  letter-spacing: 0.15em;
  float: none;
  max-width: 1366px;
  margin-left: auto;
  margin-right: auto;
}
.entry figcaption {
  font-size: 13px;
  color: gray;
}
.entry .btnWrap {
  margin: 5% 0;
}
.entry a {
  display: inline-block;
  line-height: 1;
  color: #fff;
  padding: 1.5em 4em;
  font-size: 18px;
  background-color: #231815;
  transition: 0.3s;
  position: relative;
}
.entry a:hover {
  background-color: #d70012;
  color: #fff;
}
@media screen and (max-width: 1465px) {
  .entry a {
    padding: 1em 1.5em;
  }
}
@media only screen and (max-width: 767px) {
  .entry a {
    font-size: 15px;
    padding: 0.6em 1.5em;
  }
}
.entry blockquote {
  padding: 2em 4em;
  box-sizing: border-box;
  border: 1px solid #e6e6e6;
  color: #7b7b7b;
  background-color: #f6f7f9;
  font-style: italic;
  margin-bottom: 1.5em;
}
.entry blockquote p {
  font-size: 14px;
}
.entry strong {
  font-style: normal;
  font-weight: bold;
}
.entry p {
  margin: 0.5em 0 1.3em 0;
  line-height: 2.2;
  letter-spacing: 0.1em;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .entry p {
    font-size: 14px;
  }
}
.entry h2,
.entry h3,
.entry h4,
.entry h5 {
  font-weight: bold;
}
.entry h2 {
  font-size: 20px;
  margin: 90px auto 0.7%;
  background-color: #ededed;
  padding: 0.5em 1em;
  border-radius: 3px;
  font-weight: bold;
  border-left: 4px solid #d70012;
  padding-left: 0.7em;
}
@media only screen and (max-width: 767px) {
  .entry h2 {
    font-size: 18px;
    margin: 12% auto 2%;
  }
}
.entry h3 {
  margin: 5% auto 0;
  border-bottom: 1px solid #d70012;
  padding-bottom: 0.4em;
  font-weight: bold;
  font-size: 18px;
  padding-left: 0.5em;
}
@media only screen and (max-width: 767px) {
  .entry h3 {
    margin: 6% auto 3%;
    font-size: 16px;
  }
}
.entry h4 {
  margin: 3% auto 0;
  font-weight: bold;
  font-size: 17px;
  /* background-color: #f4f4f4; */
  padding-left: 1.6em;
  font-weight: 600;
  position: relative;
}
.entry h4::after {
  position: absolute;
  content: "▶";
  color: #d70012;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media only screen and (max-width: 767px) {
  .entry h4 {
    margin: 6% auto 3%;
    font-size: 16px;
  }
}
.entry h5 {
  margin: 1% 0 0;
  color: #d70012;
  font-size: 16px;
  line-height: 1.4;
  display: inline-block;
  font-weight: 700;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .entry h5 {
    font-size: 15px;
  }
}
.entry table {
  width: 100%;
}
.entry table td {
  border-right: 1px solid #d70012;
  border-bottom: 1px solid #d70012;
}
.entry table td:first-child {
  width: 30%;
  background-color: #eef6fa;
  border-left: 1px solid #d70012;
}
.entry table td:last-child {
  width: auto;
}
.entry table th,
.entry table td {
  padding: 1.5rem 2rem;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .entry table th,
  .entry table td {
    padding: 1rem 1.5rem;
    font-size: 14px;
  }
}
.entry ul {
  margin-bottom: 2%;
}
.entry li {
  list-style-type: none;
  line-height: 1.7;
  font-weight: normal;
  margin-bottom: 0.3em;
  position: relative;
  padding-left: 1.5em;
  font-weight: bold;
}
.entry li:before {
  font-family: "Font Awesome 5 Pro";
  content: "\f14a";
  color: #d70012;
  position: absolute;
  left: 0;
  font-weight: 400;
}
.entry figure {
  width: min(100%, 1366px);
  margin-right: auto;
  margin-left: auto;
}

/*目次*/
.toc_number {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1;
  color: #cacaca;
  font-weight: normal;
}

#toc_container {
  background: #ececec;
  border: none !important;
  margin: 0 auto;
  padding: 4% 6%;
  border-radius: 10px;
}
#toc_container a {
  color: #d70012;
}

.toc_list li:before {
  display: none;
}

.toc_title {
  border-bottom: 1px solid #d70012;
  font-size: 21px;
  font-weight: bold;
  padding-bottom: 0.3em;
}

.toc_toggle {
  font-size: 14px;
}

.wp-caption {
  max-width: 100% !important;
  padding: 2%;
  margin: auto auto 3% auto;
}

.wp-caption-text {
  background: rgba(195, 184, 177, 0.67);
  width: 100%;
  text-align: left;
  padding: 1% 3%;
  word-wrap: break-word;
  font-size: 10px;
  color: white !important;
  position: relative !important;
  z-index: 1;
  top: -35px;
  display: block;
  left: 5%;
}

.wp-caption-text a {
  color: white;
}

@media screen and (max-width: 767px) {
  .wp-caption-text {
    background: hsla(330, 50%, 60%, 0.48);
    width: 100%;
    text-align: left;
    padding: 1% 3%;
    word-wrap: break-word;
    font-size: 10px;
    color: white !important;
    position: relative !important;
    z-index: 1;
    top: -50px;
    display: block;
    left: 5%;
  }
}
/*リンクカードプラグイン*/
.lkc-title-text {
  font-weight: normal;
  letter-spacing: 0.15em;
  transition: 0.3s;
}
a:hover .lkc-title-text {
  color: #d70012;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .lkc-title-text {
    font-size: 14px;
    line-height: 1.5;
  }
}

.lkc-excerpt {
  display: none;
}

.lkc-url {
  display: none;
}

.lkc-external-wrap,
.lkc-internal-wrap {
  box-shadow: none;
  border: 2px solid #d70012;
  border-radius: 10px;
  background-color: #aad1c1;
}

.lkc-external-wrap,
.lkc-internal-wrap,
.lkc-this-wrap {
  max-width: none;
}

.lkc-thumbnail-img {
  border: none;
  box-shadow: none;
  border-radius: 10px;
  transition: 0.3s;
}
a:hover .lkc-thumbnail-img {
  opacity: 0.7;
}

.lkc-thumbnail {
  margin-right: 3%;
}

.lkc-date {
  position: absolute;
  bottom: 10%;
  right: 3%;
  color: #d70012;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  display: none !important;
}

.lkc-info {
  background-color: #d70012;
  display: inline-block !important;
  position: absolute;
  right: 3%;
  top: -5%;
  padding: 0.5em 1em;
  border-radius: 5px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .lkc-info {
    top: -11%;
  }
}

.lkc-domain {
  color: #fff;
}

.lkc-card {
  padding: 2rem 1rem 1rem;
}
.lkc-card img {
  vertical-align: middle;
}

.lkc-content {
  overflow: auto !important;
  height: inherit !important;
}

.lkc-sns-fb {
  padding: 1%;
}

/*コメント*/
div#respond textarea,
div#respond input {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #cacaca;
  padding: 10px;
}

#respond input#submit {
  background: #0a0a0a;
  color: #fff;
  border-radius: 0;
  font-size: 12px;
  transition: 0.3s;
}

#respond input#submit:hover {
  background: #cc6699;
  transition: 0.3s;
}

/*記事詳細-----------------------------------*/
/*記事コンテンツ周り*/
.singleColumnArticle {
  margin-bottom: 10%;
}

.singleColumnArticleContent {
  margin: auto;
}

.singleColumnTitle {
  border-bottom: 1px solid;
  padding-bottom: 0.4em;
  margin-bottom: 0.8em;
  font-size: 21px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .singleColumnTitle {
    font-size: 18px;
  }
}

.singleColumnInfoUl .date {
  margin-right: 1em;
}
.singleColumnInfoUl .cate {
  display: inline-block;
  font-size: 13px;
  background-color: #d70012;
  color: #fff;
  border-radius: 5px;
  padding: 0.5em 0.5em;
  text-align: center;
  line-height: 1;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
}
.singleColumnInfoUl .cateUl {
  display: inline-block;
  transition: 0.3s;
}
.singleColumnInfoUl .cateUl li {
  display: inline-block;
  font-size: 16px;
  line-height: 0.7;
  background-color: #d70012;
  color: #fff;
  border-radius: 5px;
  padding: 1em;
  text-align: center;
}
.singleColumnInfoUl .typeUl {
  display: inline-block;
  transition: 0.3s;
}
.singleColumnInfoUl .typeUl li {
  display: inline-block;
  font-size: 16px;
  line-height: 0.7;
  background-color: #7c0710;
  color: #fff;
  border-radius: 5px;
  padding: 1em;
  text-align: center;
}
.singleColumnInfoUl .typeUl.__cate li {
  background-color: #d70012;
}
.singleColumnInfoUl .typeUl.__cate:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .singleColumnInfoUl .cateUl li {
    font-size: 12px;
  }
  .singleColumnInfoUl .type li {
    font-size: 12px;
  }
}

/*この記事をシェアするボタン*/
.singleColumnShare {
  padding: 3% 6%;
}
@media only screen and (max-width: 767px) {
  .singleColumnShare {
    padding: 6% 9%;
  }
}

.singleColumnShareButton {
  padding: 0.7rem 1rem;
  width: 20%;
  margin-right: 3%;
  text-align: center;
  transition: 0.3s;
}
@media only screen and (max-width: 959px) {
  .singleColumnShareButton {
    width: 45%;
    margin-right: 2.5%;
  }
}
.singleColumnShareButton > * {
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .singleColumnShareButton > * {
    font-size: 12px;
  }
}
.singleColumnShareButton i {
  font-size: 22px;
  margin-right: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .singleColumnShareButton i {
    font-size: 16px;
  }
}
.singleColumnShareButton.twitter {
  background: #1da1f2;
  border: 1px solid #1da1f2;
}
.singleColumnShareButton.twitter:hover {
  background: #fff;
  color: #1da1f2;
}
.singleColumnShareButton.facebook {
  background: #1877f2;
  border: 1px solid #1877f2;
}
.singleColumnShareButton.facebook:hover {
  background: #fff;
  color: #1877f2;
}

.singleColumnShareTitle {
  width: 50%;
}
@media only screen and (max-width: 959px) {
  .singleColumnShareTitle {
    width: 100%;
    margin-bottom: 6% !important;
  }
}

/*この記事を書いた人*/
.singleColumnWriterImg {
  padding-bottom: 100%;
  border-radius: 50%;
}

@media only screen and (max-width: 767px) {
  .singleColumnWriterImgBox {
    max-width: 140px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4%;
  }
}

.singleColumnWriter {
  padding: 3% 3%;
  margin: 6% 0 6% 0;
  border: 1px solid #d70012;
}
@media only screen and (max-width: 767px) {
  .singleColumnWriter {
    padding: 8%;
    margin: 12% 0 6% 0;
  }
}

.singleColumnWriterTitle {
  border-bottom: 1px solid #d70012;
}

.singleColumnWriterButton {
  background: #fff;
  border: 1px solid #d70012;
  border-radius: 25px;
  padding: 0.25em;
  max-width: 280px;
  display: block;
  transition: 0.3s;
  color: #d70012;
}
.singleColumnWriterButton:hover {
  background: #d70012;
  color: #fff;
}

.sidebarWriterSns li {
  display: inline-block;
  margin-right: 3%;
  margin-bottom: 4%;
}
.sidebarWriterSns li a {
  border: 1px solid #d2d2d2;
  padding: 0.4em 1em;
  border-radius: 35px;
  background: #fff;
  letter-spacing: 0.05em;
}
.sidebarWriterSns li a:hover {
  background-color: #f1f1f1;
}
.sidebarWriterSns li a .fa-instagram {
  color: #fd1d1d;
}
.sidebarWriterSns li a .fa-twitter {
  color: #00acee;
}
.sidebarWriterSns li a .fa-facebook {
  color: #3b5998;
}
.sidebarWriterSns li a .fa-comment {
  color: #00b900;
}

/*次のページを見る*/
.singleColumnPreNextBox {
  padding: 5%;
  position: relative;
  transition: 0.3s;
  background-color: #e9eef0;
  border-radius: 10px;
}
.singleColumnPreNextBox.pre {
  margin-right: 1.5%;
}
.singleColumnPreNextBox.next {
  margin-left: 1.5%;
}

.singleClumnPreNextDescri {
  color: #727171;
}

.singleColumnPrevNextArrow {
  position: absolute;
  top: 20px;
  right: 15px;
  width: 33px;
  height: 1px;
  background: #727171;
}
.singleColumnPrevNextArrow::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 2px;
  width: 1px;
  height: 5px;
  border-top: 1px solid #727171;
  border-left: 1px solid #727171;
  transform: rotate(45deg);
}
.next .singleColumnPrevNextArrow {
  transform: scale(-1, 1);
  left: 15px;
  right: auto;
}

/*アーカイブページ------------------------------------*/
.cmNewsListUl {
  display: flex;
  flex-wrap: wrap;
}
.cmNewsListUl > li {
  width: 46%;
  margin: 0 2%;
  margin-bottom: 6%;
}
@media only screen and (max-width: 767px) {
  .cmNewsListUl > li {
    width: 100%;
    margin: 0 2%;
    margin-bottom: 10%;
  }
}

.cmNewsListCard {
  transition: 0.3s;
}
a:hover .cmNewsListCard {
  opacity: 0.7;
}

.cmNewsTitle {
  font-size: 17px;
  line-height: 1.5;
  padding-bottom: 0.75em;
  margin-bottom: 0.75em;
  font-weight: 600;
  border-bottom: 1px solid #596166;
}
.cmNewsTitle.__none {
  border-bottom: unset;
  line-height: 1.3;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .cmNewsTitle {
    font-size: 16px;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
  }
}

.cmNewsDescri {
  font-size: 13px;
  margin-bottom: 3%;
  color: #9d9d9d;
}
@media only screen and (max-width: 767px) {
  .cmNewsDescri {
    font-size: 13px;
    line-height: 1.5;
  }
}

.cmNewsListImg {
  background-size: contain !important;
  transition: 0.3s;
  padding-bottom: 67%;
  background-color: #e9e9e9;
  background-size: contain;
}
a:hover .cmNewsListImg {
  transform: scale(1.1);
}

.cmkatalogListImg {
  transition: 0.3s;
  padding-bottom: 143%;
}

.cmNewsListImgWrap {
  overflow: hidden;
  margin-bottom: 6%;
}

.cmNewsListInfoUl li {
  display: inline-block;
  font-size: 12px;
  background: #d70012;
  display: inline-block;
  color: #fff;
  border-radius: 5px;
  padding: 0.4em;
  text-align: center;
  line-height: 0.7;
}
.cmNewsListInfoUl li:not(:last-child) {
  margin-right: 5px;
}
.cmNewsListInfoUl.nofover {
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .cmNewsListInfoUl li {
    font-size: 12px;
  }
}

/*Pagenation*/
.pagenation {
  margin: 1em 0;
}
.pagenation ul {
  display: flex;
  justify-content: center;
}
.pagenation li {
  font-family: "Spectral SC", sans-serif;
  font-size: 20px;
  margin: 0 0.5%;
  border-radius: 50px;
  border: solid 1px #d70012;
  color: #707070;
  text-align: center;
  width: 43px;
  height: 55px;
  border-radius: 5px;
  position: relative;
}
.pagenation li a {
  width: 43px;
  height: 55px;
  display: block;
}
.pagenation li.active {
  cursor: not-allowed;
  display: inline-block;
  line-height: 0.7;
  color: #fff;
  background: #b9bec3;
  border: solid 1px #b9bec3;
}
.pagenation li.active span {
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pagenation li.prev {
  display: none;
}
.pagenation li.next {
  display: none;
}
.pagenation li.activeno {
  background: #d70012;
  border: solid 1px bold;
  transition: 0.3s;
  color: #fff;
}
.pagenation li.activeno span {
  font-weight: 700;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pagenation li.activeno:hover {
  opacity: 0.7;
  border-radius: 5px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .pagenation li {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pagenation li {
    width: 50px;
    height: 50px;
  }
}

/*ページャー、ページネーション------------------------------------*/
.page-numbers {
  padding: 0.7% 1%;
}

span.page-numbers {
  color: #d70012;
  font-weight: bold;
}

a.page-numbers {
  color: #c5c5c5;
}

/*==================================================
 * サイドバー
 *================================================*/
@media only screen and (max-width: 767px) {
  #sidebar {
    margin-top: 15%;
  }
}

.sidebarBox {
  margin-bottom: 15%;
  margin-left: 5%;
}
@media only screen and (max-width: 767px) {
  .sidebarBox {
    margin-left: 0;
    margin-bottom: 8%;
  }
}

.sidebarNewsUl .cat-item {
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}
.sidebarNewsUl .cat-item .date {
  font-family: "Spectral SC", sans-serif;
  font-size: 12px;
}
.sidebarNewsUl .cat-item .title {
  font-size: 14px;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .sidebarNewsUl .cat-item {
    padding-bottom: 0.25em;
    margin-bottom: 0.25em;
  }
  .sidebarNewsUl .cat-item .date {
    font-size: 13px;
  }
  .sidebarNewsUl .cat-item .title {
    font-size: 14px;
  }
}

.sidebarCategoryBlock li {
  display: inline-block;
  font-size: 14px;
  background-color: #d70012;
  color: #fff;
  border-radius: 5px;
  padding: 0.5em;
  line-height: 1;
  margin-bottom: 1em;
  transition: 0.3s;
}
.sidebarCategoryBlock li:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .sidebarCategoryBlock li {
    font-size: 12px;
  }
}

.sidebarTitle {
  font-size: 27px;
  line-height: 1;
  font-family: "Spectral SC", sans-serif;
  color: #d70012;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-bottom: 1px solid;
  padding-bottom: 0.25em;
  margin-bottom: 0.75em;
}
@media only screen and (max-width: 767px) {
  .sidebarTitle {
    padding-bottom: 0.25em;
    margin-bottom: 1em;
    font-size: 26px;
  }
}

.sidebarRankingImg {
  width: 30%;
  padding-bottom: 30%;
  margin-right: 5%;
  border-radius: 5px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .sidebarRankingImg {
    display: none;
  }
}

.sidebarRankingText {
  width: 65%;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .sidebarRankingText {
    width: 100%;
  }
}

.sidebarRankingNum {
  background: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  color: #d70012;
  right: 10px;
  top: 10px;
  position: absolute;
  font-size: 14px;
}

#sidebar select {
  width: 100%;
  padding: 0.7em;
}

.sidebarTagWrap a {
  font-size: 14px !important;
  color: #d70012;
}
.sidebarTagWrap a:before {
  content: "#";
}
.sidebarTagWrap a:after {
  content: "/";
  display: inline-block;
  margin-left: 0.5em;
  margin-right: 0.5em;
  color: #cccdcd;
}
@media only screen and (max-width: 767px) {
  .sidebarTagWrap a {
    font-size: 12px !important;
  }
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/*==================================================
 * 全サイト共通
 *================================================*/
/*共通部分*/
:root {
  --header: 100px;
  scroll-padding: var(--header);
}

/*パンくず*/
/*パンくず終わり*/
.vertical {
  writing-mode: vertical-rl;
  font-feature-settings: normal;
  white-space: nowrap;
}

.verticalReverse {
  writing-mode: vertical-lr;
}

@media only screen and (max-width: 767px) {
  .verticalPc {
    writing-mode: horizontal-tb;
  }
}

.swiper-container .swiper-pagination {
  position: absolute !important;
  bottom: 0 !important;
  left: auto !important;
  right: 0 !important;
  width: 100% !important;
}
@media only screen and (max-width: 767px) {
  .swiper-container .swiper-pagination {
    bottom: -1 !important;
  }
}
.swiper-container .swiper-pagination-bullet-active {
  background-color: #3e3a39 !important;
}
.swiper-container .swiper-pagination-bullet {
  width: 11px !important;
  height: 11px !important;
}
.swiper-container .swiperContWrap {
  margin-top: 19px;
  margin-right: 33px;
}
@media only screen and (max-width: 767px) {
  .swiper-container .swiperContWrap {
    margin-top: 9px;
  }
}
.swiper-container .swiperPageBlock {
  width: 6%;
}
@media only screen and (max-width: 767px) {
  .swiper-container .swiperPageBlock {
    width: 22%;
    top: 2px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .swiper-container .swiperPageBlock {
    width: 10%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .swiper-container .swiperPageBlock {
    width: 10%;
  }
}
.swiper-container .swiperContBlock {
  width: 3%;
}
@media only screen and (max-width: 767px) {
  .swiper-container .swiperContBlock {
    width: 14%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .swiper-container .swiperContBlock {
    width: 6%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .swiper-container .swiperContBlock {
    width: 6%;
  }
}
.swiper-container .swiper_pause {
  cursor: pointer !important;
  border: none;
  background: unset;
}
.swiper-container .swiper_pause span {
  padding: 0 0.5em;
  position: relative;
  transition: 0.3s;
}
.swiper-container .swiper_pause span::after {
  position: absolute;
  content: "";
  display: block;
  width: 13px;
  height: 14px;
  top: 62%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(.././img/stop.svg);
  background-repeat: no-repeat;
  background-size: 13px;
}
.swiper-container .swiper_pause:hover::after {
  opacity: 0.7;
}
.swiper-container .swiper_start {
  margin-right: 4px;
  cursor: pointer !important;
  border: none;
  background: unset;
}
.swiper-container .swiper_start span {
  padding: 0 0.5em;
  position: relative;
  transition: 0.3s;
}
.swiper-container .swiper_start span::after {
  position: absolute;
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(.././img/play.svg);
  background-repeat: no-repeat;
  background-size: 13px;
}
.swiper-container .swiper_start:hover::after {
  opacity: 0.7;
}

/*==================================================
 * 当サイトのみ共通
 *================================================*/
body {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  min-height: 100vh;
}

main {
  margin-top: 88px;
}
@media only screen and (max-width: 767px) {
  main {
    margin-top: 58px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  main {
    margin-top: 78px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  main {
    margin-top: 77px;
  }
}

.submit-btn input,
.submit-btn button {
  margin-top: 4%;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 1.4em 4em;
  border: solid 2px #d70012;
  color: #d70012;
  background: #f1f1f1;
  border-radius: 10px;
  font-size: 16px;
  display: inline-block;
  transition: 0.3s;
  letter-spacing: 0.2em;
  font-weight: 500;
  cursor: pointer;
  width: auto;
}
.submit-btn input:hover,
.submit-btn button:hover {
  background: #d70012;
  border: solid 2px #d70012;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .submit-btn input,
  .submit-btn button {
    font-size: 12px;
    letter-spacing: 0.08em;
    padding: 1em 2em;
    height: 50px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .submit-btn input,
  .submit-btn button {
    font-size: 13px;
    padding: 1.4em 4em;
  }
}

.boxSadow {
  box-shadow: 2px 1px 6px 1px rgba(0, 0, 0, 0.06);
}

.boxSadow_b {
  position: relative;
}
.boxSadow_b::after {
  position: absolute;
  content: "";
  display: block;
  top: 1%;
  left: 1%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  filter: blur(15px);
  z-index: -1;
}
.boxSadow_b.__ww::after {
  border-radius: 50px;
  filter: blur(5px);
}

.textSadow {
  text-shadow: 3px 2px 8px rgb(0, 0, 0);
}

.textSadowB {
  text-shadow: 3px 3px 3px #333d80, -3px -3px 3px #333d80, -3px 3px 3px #333d80, 3px -3px 3px #333d80, 3px 0px 3px #333d80, -3px 0px 3px #333d80, 0px 3px 3px #333d80, 0px -3px 3px #333d80;
}

.textSadowR {
  text-shadow: 3px 3px 3px #610a2b, -3px -3px 3px #610a2b, -3px 3px 3px #610a2b, 3px -3px 3px #610a2b, 3px 0px 3px #610a2b, -3px 0px 3px #610a2b, 0px 3px 3px #610a2b, 0px -3px 3px #610a2b;
}

.commonBtn {
  display: inline-block;
  line-height: 1;
  color: #fff;
  padding: 1.5em 4em;
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
  background-color: #231815;
  transition: 0.3s;
  position: relative;
}
.commonBtn.__small {
  padding: 0.6em 2em;
}
.commonBtn.__translate {
  background-color: unset;
  border: solid 2px #fff;
  padding: 1.2em 3em;
}
.commonBtn.__witharrow {
  background-color: #d70012;
  font-size: clamp(1.4rem, 1.3757281553rem + 0.0647249191vw, 1.5rem);
  line-height: 1;
  padding: 1.1em 5em 1.1em 1.5em;
  position: relative;
}
.commonBtn.__witharrow::after {
  position: absolute;
  display: block;
  content: "";
  width: 13px;
  height: 21px;
  top: 50%;
  transform: translateY(-50%);
  right: 21px;
  background-image: url(.././img/arrow_w.svg);
  background-repeat: no-repeat;
  background-size: 13px;
  transition: 0.3s;
}
.commonBtn.__witharrow span {
  padding-right: 1em;
}
@media only screen and (max-width: 767px) {
  .commonBtn.__witharrow {
    padding: 0.8em 4em 0.8em 1.5em;
  }
  .commonBtn.__witharrow.__translate {
    padding: 0.8em 3em;
  }
}
.commonBtn:hover {
  background-color: #d70012;
  color: #fff;
}
a:hover .commonBtn {
  background-color: #d70012;
  color: #fff;
}
.commonBtn.__witharrow:hover {
  background-color: #443b24;
  color: #fff;
}
.commonBtn.__witharrow:hover::after {
  right: 18px;
}
a:hover .commonBtn.__witharrow {
  background-color: #443b24;
  color: #fff;
}
a:hover .commonBtn.__witharrow::after {
  right: 18px;
}
.commonBtn.__translate:hover {
  background-color: #443b24;
  border: solid 2px #443b24;
  color: #fff;
}
.commonBtn.__translate:hover::after {
  right: 18px;
}
@media screen and (max-width: 1465px) {
  .commonBtn {
    padding: 1em 1.5em;
  }
}
@media only screen and (max-width: 767px) {
  .commonBtn.commonBtn_ss {
    font-size: 15px;
    padding: 0.7em 0.9em;
  }
}

.closeBtn {
  display: inline-block;
  padding: 0.6em 6em;
  background: #d70012;
  color: #fff;
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
}
.__his .closeBtn {
  background-color: #000;
  padding: 0.6em 4em;
}
.closeBtn:hover {
  color: #fff;
  opacity: 0.7;
}

.commonText {
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
  line-height: 1.6;
}
.commonText.__lh {
  line-height: 1.9;
}
.commonText.__small {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .commonText.__small {
    line-height: 1.8;
  }
}

.back {
  background-image: url(.././img/back.webp);
}

.commonTitleEn {
  font-size: clamp(4.5rem, 1.1262135922rem + 8.996763754vw, 18.4rem);
  font-weight: bold;
  line-height: 0.8;
  color: rgba(89, 87, 87, 0.03);
}
.__contact .commonTitleEn {
  font-size: clamp(6.9rem, 6.1475728155rem + 2.0064724919vw, 10rem);
  color: rgba(255, 255, 255, 0.3);
}
.picupBCard .commonTitleEn {
  color: rgba(255, 0, 0, 0.03);
}
@media only screen and (max-width: 767px) {
  .commonTitleEn {
    line-height: 0.8;
  }
}

.commonTitleJp {
  font-size: clamp(2.5rem, 2.2330097087rem + 0.71197411vw, 3.6rem);
  font-weight: bold;
}
.__contact .commonTitleJp {
  color: #fff;
  padding-left: 0.3em;
  font-size: clamp(3rem, 2.9029126214rem + 0.2588996764vw, 3.4rem);
  line-height: 1;
}

.commonMidashiTitleEn {
  font-size: clamp(3rem, 2.6116504854rem + 1.0355987055vw, 4.6rem);
  font-weight: bold;
  line-height: 1;
}
.commonMidashiTitleEn.__small {
  font-size: clamp(3rem, 2.7572815534rem + 0.6472491909vw, 4rem);
}
.commonMidashiTitleEn.__comming {
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .commonMidashiTitleEn.__sp {
    font-size: 38px;
  }
}

.__line {
  position: relative;
  padding-bottom: 26px;
  margin-bottom: 26px;
}
.__line::after {
  position: absolute;
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  background: #d70012;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .__line {
    padding-bottom: 18px;
    margin-bottom: 18px;
  }
}

.commonMidashiTitleJp {
  font-size: clamp(1.8rem, 1.8rem + 0vw, 1.8rem);
  font-weight: 500;
  line-height: 1;
}

.commonMidashi_2 {
  padding-bottom: 0.3em;
  border-bottom: solid 1px #000;
  position: relative;
}
.commonMidashi_2.__small span {
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
  display: inline-block;
  line-height: 1.6;
  padding-left: 1em;
  font-weight: normal;
}
.commonMidashi_2 span {
  font-size: clamp(1.8rem, 1.7029126214rem + 0.2588996764vw, 2.2rem);
  display: inline-block;
  line-height: 1.4;
  padding-left: 1em;
  font-weight: 500;
}
.commonMidashi_2::after {
  position: absolute;
  content: "";
  display: block;
  width: 5px;
  height: 100%;
  background-color: #d70012;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.commonMidashi_3 {
  font-size: clamp(1.6rem, 1.454368932rem + 0.3883495146vw, 2.2rem);
  line-height: 1.2;
  position: relative;
}
.commonMidashi_3.__small {
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
}
.commonMidashi_3 span {
  display: inline-block;
  padding-left: 20px;
  font-weight: 500;
}
.commonMidashi_3::after {
  position: absolute;
  content: "";
  display: block;
  width: 5px;
  height: 90%;
  top: 50%;
  background-color: #d70012;
  left: 0;
  transform: translateY(-50%);
}
.westCard .commonMidashi_3::after {
  background-color: #171c61;
}

.commonMidashi_4 {
  font-size: clamp(2rem, 1.6116504854rem + 1.0355987055vw, 3.6rem);
  line-height: 1;
  font-weight: bold;
  position: relative;
}
.commonMidashi_4::after {
  position: absolute;
  content: "";
  display: block;
  width: 120px;
  height: 5px;
  background-color: #d70012;
  bottom: -31px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 767px) {
  .commonMidashi_4::after {
    width: 60px;
    height: 2px;
    bottom: -15px;
  }
}

.commonMidashi_5 {
  font-size: clamp(2rem, 1.9029126214rem + 0.2588996764vw, 2.4rem);
  line-height: 1;
  font-weight: 600;
  padding: 1.5em 1em 1.5em 1.5em;
  background-color: #f7f7f7;
  position: relative;
}
.commonMidashi_5.__small {
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
  padding: 1em 1em 1em 2.5em;
}
.commonMidashi_5.__cate {
  margin-top: 7%;
  font-size: clamp(2rem, 1.9029126214rem + 0.2588996764vw, 2.4rem);
}
.commonMidashi_5::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #d70012;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .commonMidashi_5::after {
    height: 2px;
  }
  .commonMidashi_5.__cate {
    padding: 0.5em;
  }
}

.commonMidashi_6 {
  font-size: clamp(1.8rem, 1.654368932rem + 0.3883495146vw, 2.4rem);
  line-height: 1;
  padding: 1.2em 1em 1.2em 2em;
  background-color: #f7f7f7;
  position: relative;
}
.commonMidashi_6.__back {
  margin-top: 10%;
  background-color: #d70012;
  color: #fff;
}
.commonMidashi_6.__back::after {
  background: rgba(255, 255, 255, 0.5);
}
.commonMidashi_6.__cate {
  margin-top: 5%;
}
.commonMidashi_6 span {
  font-weight: 500;
}
.commonMidashi_6::after {
  position: absolute;
  content: "";
  display: block;
  width: 6px;
  height: 50%;
  background: #d70012;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .commonMidashi_6 {
    padding: 1em 1em 1em 2em;
  }
  .commonMidashi_6 span {
    line-height: 1.3;
  }
}

.picupBCard {
  z-index: 9;
}

.commonTitleWrap {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.picupBCard .commonTitleWrap {
  top: 38%;
}
.proBCard .commonTitleWrap {
  top: 64%;
}
.__contact .commonTitleWrap {
  top: unset;
  left: 0;
  bottom: -17px;
  transform: unset;
}
@media only screen and (max-width: 767px) {
  .picupBCard .commonTitleWrap {
    top: 50%;
  }
}

.alink {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #d70012;
  text-decoration-color: #d70012;
  transition: 0.3s;
}
.alink:hover {
  color: #cccdcd;
  text-decoration-color: unset;
}
a:hover .alink {
  opacity: 0.7;
}

ul {
  list-style-type: disc !important;
}

.text_Indent {
  text-indent: -1.5em;
  padding-left: 3.5em;
}

.listNm_2 > li {
  font-size: clamp(1.4rem, 1.3514563107rem + 0.1294498382vw, 1.6rem);
  line-height: 1.6;
}

.commonList > ol {
  padding-left: 1.5em;
}
.commonList > ol > li {
  list-style-type: decimal !important;
}

.commonList_small {
  padding-left: 1.5em;
}
.commonList_small.__big > li {
  list-style-type: disc !important;
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
}
.commonList_small > li {
  list-style-type: disc !important;
}
.__big .commonList_small > li {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
}

.contactBlock {
  padding: 3em 3em 3em;
  border: solid 1px #000;
}
@media only screen and (max-width: 767px) {
  .contactBlock {
    padding: 2em 1em;
  }
}

.contactList > li {
  position: relative;
}
.contactList > li::after {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #000;
  border-radius: 50%;
  top: 10px;
  left: 0;
}
.contactList > li span {
  display: inline-block;
  padding-left: 1.2em;
}
.contactList > li span.__nopadding {
  padding-left: 0;
}

/*==================================================
 * ヘッダー
 *================================================*/
header {
  position: fixed;
  z-index: 998;
  width: 100%;
  padding: 5.5em 0 0;
  background-color: #fff;
}
@media print, screen and (min-width: 768px) {
  .change-color header {
    background-color: rgba(255, 255, 255, 0.9);
  }
}
@media only screen and (max-width: 767px) {
  header {
    padding: 3.5em 0 0;
  }
  .change-color header {
    background-color: rgba(255, 255, 255, 0.9);
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  header {
    padding: 4.8em 0 0;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  header {
    padding: 4.8em 0 0;
  }
}

.ahover {
  transition: 0.3s;
}
a:hover .ahover {
  opacity: 0.7;
}

.headerlogoBlock {
  position: absolute;
  width: 34%;
  left: 28px;
  top: 23px;
}
@media only screen and (max-width: 767px) {
  .headerlogoBlock {
    width: 100%;
    left: 14px;
    top: 12px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerlogoBlock {
    width: 52%;
    top: 18px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerlogoBlock {
    width: 52%;
  }
}

.headerMenuBlock {
  position: absolute;
  width: 66%;
  padding: 16px 0;
  top: 0;
  right: 0;
  background-color: #d70012;
}
@media screen and (max-width: 1300px) {
  .headerMenuBlock {
    width: 62%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerMenuBlock {
    width: 60%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerMenuBlock {
    width: 64%;
  }
}

.megaMenu {
  width: 265px;
  position: absolute;
  padding: 1.4em 1.2em 2em 1.2em;
  background: #f0f0f0;
  z-index: 999;
  left: 2px;
  top: 95%;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: 0.5s;
}
.megaMenu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: inherit;
}

.megaMenuListCard > li {
  border-bottom: solid 1px #000;
  position: relative;
}
.megaMenuListCard > li::after {
  transition: 0.3s;
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  content: "\f054";
  font-weight: 900;
  font-size: 10px;
}
.megaSubMenu .megaMenuListCard > li::after {
  color: #000;
}
.megaMenuListCard > li span {
  line-height: 1.4;
  font-size: 14px;
  padding: 0.5em 2.5em 0.5em 0;
  display: inline-block;
}
.megaMenuListCard > li > a:hover {
  color: #d70012;
}
.megaMenuListCard > li:hover::after {
  right: 20px;
  color: #d70012;
}
.megaMenuListCard > li .megaSubMenu {
  width: 265px;
  position: absolute;
  padding: 1.4em 1.2em 2em;
  background: #f0f0f0;
  z-index: 999;
  right: -260px;
  top: -23px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: 0.5s;
}
.megaMenuListCard > li .megaSubMenu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: inherit;
}
.megaMenuListCard > li:nth-child(11) .megaSubMenu, .megaMenuListCard > li:nth-child(12) .megaSubMenu, .megaMenuListCard > li:nth-child(13) .megaSubMenu, .megaMenuListCard > li:nth-child(14) .megaSubMenu {
  top: unset;
  bottom: -32px;
}

.headerlogoCard {
  width: 42%;
  margin-right: 6%;
  z-index: 1;
}
@media only screen and (max-width: 959px) {
  .headerlogoCard {
    width: 61%;
    margin-right: 0;
  }
}

.headreName {
  font-size: clamp(1.4rem, 1.3757281553rem + 0.0647249191vw, 1.5rem);
  line-height: 1;
}

.headerInfoBlock {
  position: absolute;
  width: 100%;
  right: 15px;
  top: 14px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerInfoBlock {
    right: 17px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerInfoBlock {
    right: 15px;
  }
}

.headerMenuCardBlock {
  margin-right: 24px;
}
@media screen and (max-width: 1865px) {
  .headerMenuCardBlock {
    margin-right: 15px;
  }
}

.topCntBtn {
  font-size: 15px;
  color: #fff;
  display: inline-block;
  line-height: 1;
  transition: 0.3s;
  padding: 0.5em 1em 0.6em 1.2em;
  background-color: #d70012;
  position: relative;
}
.topCntBtn.__contact {
  padding: 1.1em 1em 1.2em 1.2em;
}
.topCntBtn.__contact span {
  padding-left: 34px;
  line-height: 1.2;
  display: inline-block;
  position: relative;
}
.topCntBtn.__contact span::after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  font-family: "Font Awesome 6 Sharp";
  content: "\f0e0";
  color: #fff;
  font-size: 20px;
  left: 0;
  font-weight: 900;
  top: 50%;
  transform: translateY(-50%);
}
.topCntBtn.__file span {
  display: inline-block;
  line-height: 1.2;
  padding-left: 2em;
  position: relative;
}
.topCntBtn.__file span::after {
  position: absolute;
  display: block;
  content: "";
  width: 20px;
  height: 28px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-image: url(.././img/file.svg);
  background-repeat: no-repeat;
  background-size: 20px;
}
.topCntBtn:hover {
  background-color: #443b24;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .footerContact .topCntBtn {
    font-size: 14px;
    padding: 0.5em 2em 0.5em 2.5em;
  }
}

.headerMenuCard > li > a {
  position: relative;
  display: inline-block;
  font-weight: 500;
  padding: 0.9em 1em;
  transition: 0.3s;
  font-size: clamp(1.3rem, 1.227184466rem + 0.1941747573vw, 1.6rem);
}
.headerMenuCard > li > a:hover {
  color: #d70012;
}
@media screen and (max-width: 1825px) {
  .headerMenuCard > li > a {
    padding: 0.9em 0.6em;
    font-size: 15px;
  }
}

.overRayMenuUl > li {
  position: relative;
  padding: 2rem 3rem;
}
.overRayMenuUl > li:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.08);
}
.overRayMenuUl > li a {
  display: block;
  transition: 0.3s;
  position: relative;
}
.overRayMenuUl > li a::before, .overRayMenuUl > li a::after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  font-size: 22px;
  line-height: 1;
  width: 25px;
  height: 25px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-weight: 100;
  z-index: 1;
  transition: 0.3s;
  opacity: 1;
}
.overRayMenuUl > li a::before {
  content: "\f138";
}
.overRayMenuUl > li a.hasMegaMenuA::before {
  content: "\f13a";
}
.overRayMenuUl > li a.hasMegaMenuA.on {
  padding-bottom: 5%;
}
.overRayMenuUl > li a.hasMegaMenuA.on::after {
  content: "\f139";
}
.overRayMenuUl > li a.hasMegaMenuA.on::before {
  opacity: 0;
}
.overRayMenuUl > li a:hover {
  opacity: 0.5;
}
.overRayMenuUl > li a > ul:not(:last-child) > li {
  padding: 30em;
}
@media only screen and (max-width: 959px) {
  .overRayMenuUl {
    padding-bottom: 20%;
  }
  .overRayMenuUl > li {
    padding: 1.3rem 1rem;
  }
  .overRayMenuUl > li a {
    line-height: 1.3;
    font-weight: 500;
  }
  .overRayMenuUl > li a span {
    font-size: 13px;
    line-height: 1.3;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .overRayMenuUl > li a.hasMegaMenuA.on {
    padding-bottom: 2%;
  }
  .overRayMenuUl > li a.hasMegaMenuA.on::after {
    top: 33%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .overRayMenuUl {
    padding-bottom: 20%;
  }
  .overRayMenuUl > li {
    padding: 0.9em;
  }
  .overRayMenuUl > li a.hasMegaMenuA.on {
    padding-bottom: 2%;
  }
  .overRayMenuUl > li a.hasMegaMenuA.on::after {
    top: 33%;
  }
}

.hasMegaMenuLiList {
  display: none;
}
.hasMegaMenuLiList.hasMegaMenuBack {
  position: relative;
}
.hasMegaMenuLiList.hasMegaMenuBack::after {
  position: absolute;
  content: "";
  display: block;
  width: 110%;
  height: 102.3%;
  top: 0;
  left: -5%;
  padding: 0 5%;
  background: rgba(0, 0, 0, 0.08);
  z-index: -1;
}
.hasMegaMenuLiList > li {
  padding: 0.6em 0;
  position: relative;
}
.hasMegaMenuLiList > li:last-child {
  padding: 0.6em 0 0;
}
.hasMegaMenuLiList > li::after {
  position: absolute;
  content: "";
  display: block;
  width: 105%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.08);
  left: -0.5em;
  top: 0;
}

.overRayBlock {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
}

.overRayImgCard {
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .overRayImgCard {
    width: 30%;
  }
}

.overRayTextCard {
  width: 30%;
  padding: 70px 50px;
}
@media only screen and (max-width: 767px) {
  .overRayTextCard {
    padding: 150px 50px;
    width: 100%;
    padding: 0 25px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .overRayTextCard {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 25px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .overRayTextCard {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 25px;
  }
}

.splist {
  display: none;
  width: 110%;
  margin-left: -5%;
  padding: 0 5%;
  background: rgba(0, 0, 0, 0.08);
}
.splist > li {
  position: relative;
  padding: 0.6em 0;
}
.splist > li:not(:last-child)::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: #fff;
}

.infoBlock_sp {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.infoText_sp {
  font-size: 14px;
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {
  .search-form {
    width: 280px;
  }
}

.search-form input {
  width: 168px;
  height: 38px;
  padding: 1em 3.8em 1em 1em;
  border: solid 2px #a6a6a7;
}
@media only screen and (max-width: 767px) {
  .search-form input {
    width: 308px;
    height: 48px;
    padding: 0.3em 4em 0.3em 0.5em;
  }
}
@media screen and (max-width: 1355px) {
  .search-form input {
    width: 280px;
  }
}

.search-form button {
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 15px;
  color: #fff;
  height: 38px;
  width: 48px;
  background-color: #000;
}
@media only screen and (max-width: 767px) {
  .search-form button {
    height: 48px;
    font-size: 14px;
    width: 62px;
  }
}

@media screen and (max-width: 1355px) {
  .headerSpBtnList {
    margin-bottom: 33px;
  }
}

.headerMenu_search {
  margin-right: 14px;
}
@media screen and (max-width: 1355px) {
  .headerMenu_search {
    width: 280px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
  }
}

.headerBtntBlock:nth-child(1) {
  margin-right: 10px;
}
@media screen and (max-width: 1645px) {
  .Menu_p .headerBtntBlock:nth-child(1) {
    display: none;
  }
}
@media screen and (max-width: 1470px) {
  .Menu_p .headerBtntBlock:nth-child(2) {
    display: none;
  }
}

/*==================================================
 * header
 *================================================*/
/*==================================================
 * pagenation*/
:root {
  --swiper-theme-color: #fff;
}

/*==================================================
 * フッター
 *================================================*/
footer {
  padding: 2% 0 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  footer {
    padding-top: 10%;
  }
}

.footerBtn {
  cursor: pointer;
  position: fixed;
  right: 2%;
  bottom: 6%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #000;
  transition: 0.3s;
  z-index: 9999;
}
.footerBtn::after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f077";
  font-weight: 900;
  font-size: 23px;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 959px) {
  .footerBtn {
    display: none;
  }
}

@media screen and (max-width: 1390px) {
  .footerWrap {
    display: block;
  }
}

.footerInfoUnit {
  width: 70%;
  margin-right: 5%;
  display: grid;
  grid-template-columns: 35% 65%;
  -moz-column-gap: 60px;
  column-gap: 60px;
  row-gap: 20px;
}
@media only screen and (max-width: 959px) {
  .footerInfoUnit {
    display: block;
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 1390px) {
  .footerInfoUnit {
    margin-bottom: 5%;
  }
}

@media only screen and (max-width: 767px) {
  .footerInfoBlock {
    padding: 0 1em;
  }
}

.footerMenueUnit {
  width: 25%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 60% 40%;
  -moz-column-gap: 10px;
  column-gap: 10px;
  row-gap: 8px;
}
.footerMenueUnit > li > a {
  display: block;
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  position: relative;
  transition: 0.3s;
}
.footerMenueUnit > li > a::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 2px;
  background-color: #d70012;
  top: 14px;
  left: 0;
}
.footerMenueUnit > li > a span {
  display: block;
  font-weight: 500;
  padding-left: 0.8em;
}
.footerMenueUnit > li:hover {
  color: #d70012;
}
@media only screen and (max-width: 959px) {
  .footerMenueUnit {
    width: 100%;
    padding: 0 1em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .footerMenueUnit {
    width: 60%;
    grid-template-columns: 50% 35%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .footerMenueUnit {
    width: 40%;
    grid-template-columns: 50% 35%;
  }
}

.footerlogoImg {
  width: 100%;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .footerlogoImg {
    width: 92%;
    margin-bottom: 5%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .footerlogoImg {
    width: 47%;
    margin-bottom: 5%;
  }
}

.footerInfoText {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .footerInfoText {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10%;
  }
}

.footerCopy {
  border-top: solid 1px #717071;
  margin-top: 2%;
  padding: 10px 0;
}
@media only screen and (max-width: 767px) {
  .footerCopy {
    margin-top: 9%;
    padding: 15px 0;
  }
}

.copylight {
  font-size: 12px;
  letter-spacing: 0.08em;
}
@media only screen and (max-width: 767px) {
  .copylight {
    font-size: 10px;
  }
}

/*==================================================
 * 矢印
 *================================================*/
/*==================================================
 * 下層section
 *================================================*/
/*トップページ
*================================================*/
.breadcrumbs {
  color: #d70012;
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
}
.breadcrumbs #text {
  display: none;
}
.breadcrumbs .current-item {
  color: #777778;
}
.breadcrumbs a {
  transition: 0.3s;
}
.breadcrumbs a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .breadcrumbs {
    font-size: 13px;
  }
}

.topFvImg {
  padding-bottom: clamp(308px, 37%, 710px);
}
@media only screen and (max-width: 767px) {
  .topFvImg {
    padding-bottom: 120%;
  }
}

.topFvTextWrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .topFvTextWrap {
    width: 100%;
  }
}

.topTitleJp {
  font-size: clamp(2.6rem, 2.1631067961rem + 1.1650485437vw, 4.4rem);
  line-height: 1.3;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝体", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
  font-weight: 500;
}

.topTitleEn {
  font-size: clamp(1.2rem, 1.054368932rem + 0.3883495146vw, 1.8rem);
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝体", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", sans-serif;
}

.swiperProBlock,
.swiperPro2Block {
  position: relative;
  margin-top: -15px;
  z-index: 0;
  padding: 2em 4em 2.5em;
}
.swiperProBlock::after,
.swiperPro2Block::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(.././img/back.webp);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 959px) {
  .swiperProBlock,
  .swiperPro2Block {
    padding: 2em 1em 2em;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .swiperProBlock,
  .swiperPro2Block {
    padding: 2em 1em 2em;
  }
}

.swiperPro,
.swiperPro2,
.swiperMaker,
.swiperMaker2 {
  overflow: hidden;
}

.swiperProWrap,
.swiperPro2Wrap,
.swiperMakerWrap,
.swiperMakerWrap2 {
  position: relative;
}
.swiperProWrap .swiper-pagination,
.swiperPro2Wrap .swiper-pagination,
.swiperMakerWrap .swiper-pagination,
.swiperMakerWrap2 .swiper-pagination {
  position: static !important;
  margin-top: 23px;
}
.swiperProWrap .swiper-pagination-bullet,
.swiperPro2Wrap .swiper-pagination-bullet,
.swiperMakerWrap .swiper-pagination-bullet,
.swiperMakerWrap2 .swiper-pagination-bullet {
  border-radius: unset !important;
  top: 0 !important;
  width: 12px !important;
  height: 12px !important;
}
.swiperProWrap .swiper-pagination-bullet-active,
.swiperPro2Wrap .swiper-pagination-bullet-active,
.swiperMakerWrap .swiper-pagination-bullet-active,
.swiperMakerWrap2 .swiper-pagination-bullet-active {
  background-color: #3e3a39 !important;
}
.swiperProWrap .swiper-button-prev,
.swiperProWrap .swiper-button-prev2,
.swiperPro2Wrap .swiper-button-prev,
.swiperPro2Wrap .swiper-button-prev2,
.swiperMakerWrap .swiper-button-prev,
.swiperMakerWrap .swiper-button-prev2,
.swiperMakerWrap2 .swiper-button-prev,
.swiperMakerWrap2 .swiper-button-prev2 {
  left: -3%;
}
.swiperProWrap .swiper-button-prev:after,
.swiperProWrap .swiper-button-prev2:after,
.swiperPro2Wrap .swiper-button-prev:after,
.swiperPro2Wrap .swiper-button-prev2:after,
.swiperMakerWrap .swiper-button-prev:after,
.swiperMakerWrap .swiper-button-prev2:after,
.swiperMakerWrap2 .swiper-button-prev:after,
.swiperMakerWrap2 .swiper-button-prev2:after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f104";
  color: #000;
  font-size: 30px;
  font-weight: 500;
}
.swiperProWrap .swiper-button-next,
.swiperProWrap .swiper-button-next2,
.swiperPro2Wrap .swiper-button-next,
.swiperPro2Wrap .swiper-button-next2,
.swiperMakerWrap .swiper-button-next,
.swiperMakerWrap .swiper-button-next2,
.swiperMakerWrap2 .swiper-button-next,
.swiperMakerWrap2 .swiper-button-next2 {
  right: -3%;
}
.swiperProWrap .swiper-button-next:after,
.swiperProWrap .swiper-button-next2:after,
.swiperPro2Wrap .swiper-button-next:after,
.swiperPro2Wrap .swiper-button-next2:after,
.swiperMakerWrap .swiper-button-next:after,
.swiperMakerWrap .swiper-button-next2:after,
.swiperMakerWrap2 .swiper-button-next:after,
.swiperMakerWrap2 .swiper-button-next2:after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f105";
  color: #000;
  font-size: 30px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .swiperProWrap .swiper-button-prev,
  .swiperProWrap .swiper-button-prev2,
  .swiperPro2Wrap .swiper-button-prev,
  .swiperPro2Wrap .swiper-button-prev2,
  .swiperMakerWrap .swiper-button-prev,
  .swiperMakerWrap .swiper-button-prev2,
  .swiperMakerWrap2 .swiper-button-prev,
  .swiperMakerWrap2 .swiper-button-prev2 {
    left: -9%;
    top: 42%;
  }
  .swiperProWrap .swiper-button-next,
  .swiperProWrap .swiper-button-next2,
  .swiperPro2Wrap .swiper-button-next,
  .swiperPro2Wrap .swiper-button-next2,
  .swiperMakerWrap .swiper-button-next,
  .swiperMakerWrap .swiper-button-next2,
  .swiperMakerWrap2 .swiper-button-next,
  .swiperMakerWrap2 .swiper-button-next2 {
    right: -9%;
    top: 42%;
  }
  .swiperProWrap .swiper-pagination,
  .swiperPro2Wrap .swiper-pagination,
  .swiperMakerWrap .swiper-pagination,
  .swiperMakerWrap2 .swiper-pagination {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .swiperProWrap .swiper-button-prev,
  .swiperProWrap .swiper-button-prev2,
  .swiperPro2Wrap .swiper-button-prev,
  .swiperPro2Wrap .swiper-button-prev2,
  .swiperMakerWrap .swiper-button-prev,
  .swiperMakerWrap .swiper-button-prev2,
  .swiperMakerWrap2 .swiper-button-prev,
  .swiperMakerWrap2 .swiper-button-prev2 {
    left: -6%;
  }
  .swiperProWrap .swiper-button-next,
  .swiperProWrap .swiper-button-next2,
  .swiperPro2Wrap .swiper-button-next,
  .swiperPro2Wrap .swiper-button-next2,
  .swiperMakerWrap .swiper-button-next,
  .swiperMakerWrap .swiper-button-next2,
  .swiperMakerWrap2 .swiper-button-next,
  .swiperMakerWrap2 .swiper-button-next2 {
    right: -6%;
  }
}

.swiperMakerWrap .swiper-button-prev2,
.swiperMakerWrap .swiper-button-next2 {
  top: 41%;
}

.topProductBlock {
  padding: 1em 1.5em 1.2em;
  background-color: #fff;
}
@media only screen and (max-width: 959px) {
  .topProductBlock {
    padding: 1em 0.8em 1.2em;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topProductBlock {
    padding: 1em 0.8em 1.2em;
  }
}

.swiperProBlock .swiper-slide {
  background-color: #fff;
}

.swiperPro2Block .swiper-slide {
  background-color: #fff;
}

.topProductImg {
  padding-bottom: 87%;
}

.productName {
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
  line-height: 1.4;
}

.makerName {
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
  line-height: 1.4;
}

.moreBtn {
  font-size: 15px;
  color: #d70012;
  font-weight: 500;
  padding-right: 2em;
  padding-bottom: 0.5em;
  position: relative;
}
.moreBtn::after {
  transition: 0.3s;
  position: absolute;
  content: "";
  display: block;
  width: 12px;
  height: 22px;
  top: 44%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(.././img/arrow.svg);
  background-repeat: no-repeat;
  background-size: 12px;
}
.moreBtn::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #d70012;
  bottom: 0;
}
a:hover .moreBtn::after {
  right: -3px;
}

.topProLineCard {
  background-color: rgba(215, 0, 18, 0.05);
  padding: 3em 0 7em;
}

.topProList {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  -moz-column-gap: 20px;
  column-gap: 25px;
  row-gap: 25px;
}
.topProList > li {
  background-color: #fff;
  border: solid 2px #d70012;
  transition: 0.3s;
}
.topProList > li > a {
  padding: 0.5em 0.5em 1.5em;
  display: block;
  transition: 0.3s;
}
.topProList > li > a .white_icon {
  display: none;
}
.topProList > li > a:hover {
  color: #fff;
}
.topProList > li:hover {
  background-color: #d70012;
}
.topProList > li:hover > a {
  color: #fff;
}
.topProList > li:hover .white_icon {
  display: block;
}
.topProList > li:hover .black_icon {
  display: none;
}
@media only screen and (max-width: 767px) {
  .topProList {
    position: static;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topProList {
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topProList {
    grid-template-columns: repeat(5, 1fr);
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
  }
}

.pro_iconImg {
  width: 60%;
}

.topProTitle {
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
  line-height: 1.3;
}

.topProTitleWrap {
  position: absolute;
  width: 100%;
  left: 50%;
  bottom: -26px;
  transform: translateX(-50%);
}

.proMenu {
  width: 100%;
  position: absolute;
  padding: 2.4em 1.2em 4em;
  background: #fff;
  border-radius: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: 0.5s;
  z-index: 999;
}
.__his .proMenu {
  padding: 3.5em 3em 4em;
  border-radius: unset;
  width: 97%;
}
.proMenu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: inherit;
}
@media only screen and (max-width: 767px) {
  .proMenu {
    position: fixed;
    top: 55%;
    width: 90%;
  }
  .__his .proMenu {
    padding: 2em 1em 3em;
    width: 100%;
  }
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(35, 24, 21, 0.8); /* 半透明の黒 */
  z-index: 998; /* モーダルよりも上位に表示 */
  display: none; /* 最初は非表示 */
}

.overlay.active {
  display: block; /* active クラスが追加されたら表示 */
}

.closeMenuImg {
  width: 25px;
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .closeMenuImg {
    width: 22px;
  }
}

.closeMenuWrap {
  position: absolute;
  top: -39px;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .closeMenuWrap {
    top: -34px;
    right: 5px;
  }
}

.proMenuTitle {
  font-size: clamp(3rem, 2.9029126214rem + 0.2588996764vw, 3.4rem);
  line-height: 1;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}
.proMenuTitle::after {
  position: absolute;
  content: "";
  display: block;
  width: 98%;
  height: 2px;
  background: #d70012;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
}
@media only screen and (max-width: 767px) {
  .proMenuTitle {
    margin-bottom: 14%;
  }
}

.proMenuList {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 30px;
  column-gap: 20px;
  row-gap: 20px;
}
.proMenuList > li a {
  transition: 0.3s;
  padding: 0 1em;
  display: block;
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
  position: relative;
}
.proMenuList > li a::after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f105";
  font-size: 25px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #d70012;
}
.proMenuList > li a span {
  display: inline-block;
  padding-left: 3px;
}
.proMenuList > li:hover {
  color: #d70012;
}
@media only screen and (max-width: 767px) {
  .proMenuList {
    display: block;
  }
  .proMenuList > li:not(:last-child) {
    margin-bottom: 5%;
  }
}

.swiperMakerWrap {
  max-width: 1198px;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .swiperMakerWrap {
    width: 90%;
    margin: auto;
  }
}

.mekerlogoBlock,
.mekerTextBlock {
  display: flex;
  align-items: center;
  justify-content: center;
}

.MakerCard {
  padding: 0.5em 1em 1.3em;
  border: solid 2px #a6a6a7;
}

.makerlogoImg {
  width: 54%;
}
.makerlogoImg.__small {
  width: 62%;
}

.makerTitle {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  line-height: 1.4;
}

.topaboutCard {
  background-image: url(.././img/companybk.webp);
  background-repeat: no-repeat;
  width: 100%;
  background-size: cover;
  padding: 7.8em 0em 14em;
  position: relative;
  z-index: 0;
  margin-bottom: 7%;
}
.topaboutCard::after {
  position: absolute;
  content: "";
  display: block;
  width: 95%;
  height: 74px;
  background-color: #d70012;
  bottom: -74px;
  right: 0;
  z-index: -1;
}
@media only screen and (max-width: 959px) {
  .topaboutCard {
    padding: 2em 0em 4em;
    margin-bottom: 22%;
    background-image: url(.././img/companybk_sp.webp);
  }
  .topaboutCard::after {
    height: 25px;
    bottom: -25px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topaboutCard::after {
    height: 55px;
    bottom: -55px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topaboutCard {
    padding: 2em 0em 4em;
    margin-bottom: 10%;
  }
  .topaboutCard::after {
    height: 35px;
    bottom: -35px;
  }
}

.topaboutTitleWrap_1 {
  margin-right: 39px;
}
@media only screen and (max-width: 767px) {
  .topaboutTitleWrap_1 {
    margin-right: 0;
    margin-bottom: 5%;
  }
}

.aboutText {
  font-size: clamp(1.5rem, 1.4514563107rem + 0.1294498382vw, 1.7rem);
  line-height: 2.3;
}
@media only screen and (max-width: 767px) {
  .aboutText {
    line-height: 1.8;
  }
}

.topaboutMidashi {
  font-size: clamp(2.6rem, 1.0466019417rem + 4.142394822vw, 9rem);
  font-weight: bold;
  line-height: 1;
  color: rgba(255, 255, 255, 0.33);
}

.topaboutBackBlock {
  position: absolute;
  bottom: -48px;
  right: 30px;
}
@media only screen and (max-width: 767px) {
  .topaboutBackBlock {
    bottom: -12px;
    right: 4px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topaboutBackBlock {
    bottom: -21px;
  }
}

.topInfoTitleBlock {
  width: 18%;
  position: relative;
}
.topInfoTitleBlock::after {
  position: absolute;
}
@media screen and (max-width: 1440px) {
  .topInfoTitleBlock {
    display: none;
  }
}

.topInfoList {
  width: 82%;
}
@media screen and (max-width: 1440px) {
  .topInfoList {
    width: 100%;
  }
}

.topInfoTitleEn {
  position: absolute;
  bottom: -32px;
  width: 63%;
  writing-mode: vertical-rl;
}
.topInfoTitleEn span {
  font-size: clamp(3rem, 3.0970873786rem - 0.2588996764vw, 2.6rem);
  color: #d70012;
  line-height: 2;
  font-weight: bold;
  position: relative;
}
.topInfoTitleEn span::after {
  position: absolute;
  content: "";
  display: block;
  width: 2px;
  height: 90%;
  top: -95%;
  right: 50%;
  z-index: -1;
  background-color: #d70012;
}

.topInfoList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
@media only screen and (max-width: 767px) {
  .topInfoList {
    display: block;
  }
  .topInfoList > li:not(:last-child) {
    margin-bottom: 10%;
  }
}

.topInfoImg {
  padding-bottom: 71%;
}
@media only screen and (max-width: 767px) {
  .topInfoImg {
    padding-bottom: 92%;
  }
  .topInfoImg.__sp {
    padding-bottom: 122%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topInfoImg {
    padding-bottom: 119%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topInfoImg {
    padding-bottom: 98%;
  }
}

.topInfoInnerWrap {
  position: absolute;
  width: 80%;
  top: 12%;
  left: 10%;
}
@media only screen and (max-width: 767px) {
  .topInfoInnerWrap {
    top: 6%;
    left: 6%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topInfoInnerWrap {
    top: 8%;
    left: 6%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topInfoInnerWrap {
    top: 8%;
    left: 6%;
  }
}

.topInfoSubTitleEn {
  font-size: clamp(1.6rem, 0.8233009709rem + 2.071197411vw, 4.8rem);
  line-height: 1;
}
.topInfoSubTitleEn.__small {
  font-size: clamp(2rem, 1.7572815534rem + 0.6472491909vw, 3rem);
}
@media screen and (max-width: 1700px) {
  .topInfoSubTitleEn {
    font-size: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .topInfoSubTitleEn {
    margin-bottom: 7%;
    line-height: 1.3;
  }
}

@media screen and (max-width: 1700px) {
  .topInfoSubTitlWrap {
    margin-bottom: 25px;
  }
}

.topInfoSubTitleJp {
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
  line-height: 1;
}

.topInfobtanWrap {
  position: absolute;
  bottom: 0;
  right: 0;
}

.topRecruitWrap {
  background: linear-gradient(to right, #b90000 0%, #f32a13 100%);
  padding: 2em 4.5em 2em 7em;
}
@media screen and (max-width: 1465px) {
  .topRecruitWrap {
    padding: 2em 5em 2em 2em;
  }
}
@media only screen and (max-width: 767px) {
  .topRecruitWrap {
    padding: 1em 1em 9em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topRecruitWrap {
    padding: 1em;
  }
}

@media only screen and (max-width: 767px) {
  .topRecruitBtnWrap {
    position: absolute;
    width: 90%;
    text-align: center;
    bottom: 53px;
  }
}

.topRecruitInfoBlock {
  margin-top: 10px;
  width: 25%;
  margin-top: 4%;
  margin-right: 3%;
}
@media screen and (max-width: 1465px) {
  .topRecruitInfoBlock {
    width: 30%;
  }
}
@media only screen and (max-width: 767px) {
  .topRecruitInfoBlock {
    width: 100%;
    margin-right: 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topRecruitInfoBlock {
    width: 60%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topRecruitInfoBlock {
    width: 38%;
  }
}

.topRecruitImgBlock {
  width: 72%;
}
@media only screen and (max-width: 767px) {
  .topRecruitImgBlock {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .topRecruitInner {
    padding: 0 0.2em 0 1em;
  }
}

.topRecruitImgList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 13px;
  column-gap: 13px;
  row-gap: 13px;
}
@media only screen and (max-width: 767px) {
  .topRecruitImgList {
    -moz-column-gap: 15px;
    column-gap: 10px;
    row-gap: 10px;
  }
}

.recruitImg {
  padding-bottom: 40%;
}
@media only screen and (max-width: 767px) {
  .recruitImg {
    padding-bottom: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .recruitImg {
    padding-bottom: 59%;
  }
}

.topRecruitBack {
  font-size: clamp(3rem, 2.5631067961rem + 1.1650485437vw, 4.8rem);
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  font-weight: bold;
  writing-mode: vertical-rl;
}
@media only screen and (max-width: 959px) {
  .topRecruitBack {
    display: none;
  }
}

.topRecruitBackWrap {
  position: absolute;
  width: 47px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.topNewsInfoBlock {
  width: 9%;
}

.topNewsTable {
  width: 100%;
}
.topNewsTable td {
  padding: 1.5em 0.5em;
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
  border-bottom: solid 1px #babbbc;
}
.topNewsTable td.topNewsCate span {
  padding: 0.5em 1em;
  background-color: #e9e9e9;
  font-size: 15px;
  line-height: 1;
  color: #d70012;
}

.topNewsList > li {
  border-bottom: solid 1px #babbbc;
}
.topNewsList > li > a {
  padding: 2.3em 2em;
  display: block;
}
.topNewsList > li dd {
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
}
@media screen and (max-width: 1385px) {
  .topNewsList > li dl {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .topNewsList > li > a {
    padding: 1em 0;
  }
}

.topNewsList_left {
  width: 18%;
  margin-right: 10px;
}
@media screen and (max-width: 1440px) {
  .topNewsList_left {
    width: 100%;
    margin-bottom: 1%;
  }
}
@media only screen and (max-width: 767px) {
  .topNewsList_left {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2.5%;
  }
}

.topNewsList_right {
  width: 78%;
}
@media screen and (max-width: 1440px) {
  .topNewsList_right {
    width: 100%;
  }
}

@media screen and (max-width: 1440px) {
  .topNewsWrap {
    display: block;
  }
}

.topNewsDay {
  width: 109px;
  margin-right: 10px;
}

.topNewsCate {
  width: clac(16% -103px);
}
.topNewsCate span {
  font-size: clamp(1.3rem, 1.2514563107rem + 0.1294498382vw, 1.5rem);
  line-height: 1;
  padding: 0.5em 1em;
  background-color: #e9e9e9;
  color: #d70012;
}

.topNewsTitle {
  width: 80%;
}

.topNewsBtn {
  transition: 0.3s;
  display: block;
  padding: 0.3em 3em 0.3em 0.4em;
  font-weight: 500;
  display: inline-block;
  position: relative;
}
.topNewsBtn::after, .topNewsBtn::before {
  position: absolute;
  display: block;
  content: "";
}
.topNewsBtn::before {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  transition: 0.3s;
  content: "\f054";
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  font-weight: 900;
  font-size: 15px;
}
.topNewsBtn::after {
  width: 97%;
  height: 2px;
  background: #d70012;
  bottom: 0;
  left: -5px;
}
.topNewsBtn:hover::before {
  right: 5px;
}

.topConCard {
  margin-top: 7%;
  background-color: #d70012;
  padding: 2.5em 0em 3.2em 10em;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1426px) {
  .topConCard {
    padding: 2em 0.8em 4.3em;
  }
}
@media only screen and (max-width: 767px) {
  .topConCard {
    margin-top: 20%;
  }
}
@media only screen and (max-width: 959px) {
  .topConCard {
    padding: 2em 0.8em 4.3em;
  }
}

.topConInfoBlock {
  width: 40%;
  margin-right: 3%;
}
@media screen and (max-width: 1420px) {
  .topConInfoBlock {
    width: 32%;
  }
}
@media only screen and (max-width: 767px) {
  .topConInfoBlock {
    width: 100%;
    margin-right: 0;
    margin-bottom: 12%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topConInfoBlock {
    width: 45%;
  }
}

.topConImg {
  width: 20%;
}

.topConBtnList {
  width: 57%;
  margin-top: 2%;
}
.topConBtnList > li {
  width: calc((100% - 56px) / 3);
}
.topConBtnList > li:not(:last-child) {
  margin-right: 28px;
}
.topConBtnList > li > a {
  display: block;
  padding-top: 1em;
  background-color: #fff;
  border-radius: 30px;
  border: solid 2px #fff;
}
@media only screen and (max-width: 959px) {
  .topConBtnList {
    width: 100%;
  }
  .topConBtnList > li {
    margin-bottom: 20px;
    width: calc((100% - 20px) / 2);
  }
  .topConBtnList > li:not(:last-child) {
    margin-right: 0;
  }
  .topConBtnList > li:nth-child(1) {
    margin-right: 20px;
  }
  .topConBtnList > li > a {
    border-radius: 20px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topConBtnList {
    width: 66%;
  }
  .topConBtnList > li {
    width: calc((100% - 20px) / 3);
  }
  .topConBtnList > li:not(:last-child) {
    margin-right: 10px;
  }
}

.topConTextWrap {
  width: 91%;
  max-width: 551px;
}
@media only screen and (max-width: 767px) {
  .topConTextWrap {
    width: 100%;
  }
}

.topConText {
  font-size: clamp(1.6rem, 1.454368932rem + 0.3883495146vw, 2.2rem);
  line-height: 1.8;
}

.contactBtn {
  display: inline-block;
  line-height: 1;
  padding: 0.7em 2em 0.7em 1em;
  background-color: #fff;
  border-radius: 50px;
  position: relative;
  transition: 0.3s;
}
.contactBtn span {
  font-size: clamp(1.4rem, 1.3757281553rem + 0.0647249191vw, 1.5rem);
  font-weight: 500;
  display: block;
  padding-left: 44px;
}
.contactBtn::after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f0e0";
  font-weight: 100;
  font-size: 25px;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
}
.contactBtn:hover {
  background-color: #443b24;
  color: #fff;
}
.contactBtn:hover::after {
  color: #fff;
}
@media only screen and (max-width: 959px) {
  .contactBtn {
    padding: 1em 1.3em 1em 1em;
  }
  .contactBtn span {
    padding-left: 34px;
  }
  .contactBtn::after {
    font-size: 20px;
    left: 18px;
  }
}

.eigoImgWrap {
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  z-index: 1;
  overflow: hidden;
}
@media only screen and (max-width: 959px) {
  .eigoImgWrap {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
  }
}

.eigoImg {
  padding-bottom: 49%;
}

.topConBtnTitle {
  font-size: clamp(1.4rem, 1.3029126214rem + 0.2588996764vw, 1.8rem);
  font-weight: 500;
}

/*==================================================
 * 商品別
 *================================================*/
.productTypeTitle {
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
  display: inline-block;
  line-height: 1;
  padding: 0.6em 1em;
  border-radius: 5px;
  background-color: #d70012;
  color: #fff;
}

.makerList > li {
  position: relative;
}
.makerList > li:last-child::after {
  display: none;
}
.makerList > li span {
  padding: 0 1em 0 0.8em;
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
}
.makerList > li::after {
  position: absolute;
  content: "/";
  display: block;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .makerList {
    display: block;
  }
  .makerList > li span {
    padding: 0;
  }
  .makerList > li::after {
    display: none;
  }
}

.blandList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 40px;
}
.blandList > li {
  padding: 1em;
}
@media only screen and (max-width: 767px) {
  .blandList {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 5px;
    column-gap: 5px;
  }
  .blandList > li {
    padding: 1em 0.5em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .blandList {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 15px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .blandList {
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 15px;
  }
}

.archiveProduct_ul {
  background-color: #f4f3f3;
  padding: 2em 4em 2.5em;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 30px;
  column-gap: 10px;
  row-gap: 20px;
}
@media only screen and (max-width: 767px) {
  .archiveProduct_ul {
    padding: 1em;
    display: block;
  }
  .archiveProduct_ul > li:not(:last-child) {
    margin-bottom: 13%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .archiveProduct_ul {
    grid-template-columns: repeat(3, 1fr);
  }
}

.makerCatelogo {
  width: 15%;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .makerCatelogo {
    width: 40%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .makerCatelogo {
    width: 26%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .makerCatelogo {
    width: 26%;
  }
}

.blandNmTitle {
  position: relative;
}
.blandNmTitle::after {
  position: absolute;
  content: "";
  display: block;
  width: 5px;
  height: 90%;
  background-color: #d70012;
  left: 0;
  top: 0;
}
.blandNmTitle span {
  font-size: clamp(1.8rem, 1.7514563107rem + 0.1294498382vw, 2rem);
  display: inline-block;
  line-height: 1;
  padding-left: 13px;
}

.archiveBland_ul > li {
  border-bottom: solid 1px #babbbc;
  padding: 0.8em 0;
}
.archiveBland_ul > li dl {
  display: inline-block;
}
.archiveBland_ul > li dl dd {
  padding: 0 0.5em 1em;
}

.blandTitleBlock {
  width: 35%;
  margin-right: 3%;
}
@media only screen and (max-width: 767px) {
  .blandTitleBlock {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5%;
  }
}

.blandcate {
  width: 62%;
}
@media only screen and (max-width: 767px) {
  .blandcate {
    width: 100%;
  }
}

.blandTitle {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
}

.blandType > li {
  width: 200px;
  margin-right: 17px;
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  display: inline-block;
  text-align: center;
  padding: 0.5em;
  color: #fff;
  background-color: #d70012;
  border-radius: 7px;
}

.blandcateList > li {
  position: relative;
}
.blandcateList > li:last-child::after {
  display: none;
}
.blandcateList > li span {
  padding: 0 1em 0 0.8em;
  font-size: clamp(1.4rem, 1.3757281553rem + 0.0647249191vw, 1.5rem);
}
.blandcateList > li::after {
  position: absolute;
  content: "/";
  display: block;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .blandcateList > li {
    line-height: 1.4;
  }
  .blandcateList > li span {
    line-height: 1.4;
  }
}

.blandName_ul .slick-slide {
  width: 70px !important;
  margin-bottom: 10px;
  background-color: #000;
  color: #fff;
  margin-right: 10px;
  text-align: center;
  cursor: pointer;
  line-height: 1;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.3029126214rem + 0.2588996764vw, 1.8rem);
  padding: 0.5em 0;
  border-radius: 5px;
  transition: 0.3s;
}
.blandName_ul .slick-slide:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .blandName_ul .slick-slide {
    padding: 0.6em 0;
  }
}

/*==================================================
 * Base
 *================================================*/
.commonFvTitleBlock {
  width: 40%;
  background: linear-gradient(to right, #b80d23 0%, #dd0113 100%);
}
@media only screen and (max-width: 767px) {
  .commonFvTitleBlock {
    width: 100%;
  }
}

.commonFvImg {
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .commonFvImg {
    width: 100%;
    padding-bottom: 36%;
  }
}

.commonFvTitleWrap {
  padding-left: 13%;
  padding-right: 1.5em;
  padding-top: clamp(10%, 18%, 138px);
  padding-bottom: clamp(12%, 21%, 161px);
}
@media only screen and (max-width: 767px) {
  .commonFvTitleWrap {
    padding: 1.5em 0.8em;
    display: flex;
    align-items: flex-end;
  }
}

.commonFvTitleJp {
  font-size: clamp(2.4rem, 2.0116504854rem + 1.0355987055vw, 4rem);
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .commonFvTitleJp {
    margin-right: 10px;
    margin-bottom: 0;
  }
}

.commonFvTitleEn {
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
  line-height: 1;
}

.topBackWrap {
  position: absolute;
  width: 100%;
  bottom: 0;
  text-align: center;
}

.topBackTitle {
  font-size: clamp(22px, 3vw, 60px);
  font-weight: bold;
  line-height: 1;
  color: rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 767px) {
  .topBackTitle {
    font-size: 20px;
  }
}

.mapImg {
  width: 100%;
}

.eigyoTitle {
  font-size: clamp(1.8rem, 1.654368932rem + 0.3883495146vw, 2.4rem);
  line-height: 1;
  font-weight: 600;
  color: #171c61;
}
.__east .eigyoTitle {
  color: #d70012;
}

.eigyoList > li:not(:last-child) {
  margin-bottom: 16px;
}
@media screen and (max-width: 1278px) {
  .eigyoList > li:not(:last-child) {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1220px) {
  .eigyoList > li:not(:last-child) {
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 1145px) {
  .eigyoList > li:not(:last-child) {
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 960px) {
  .eigyoList > li:not(:last-child) {
    margin-bottom: 4.5px;
  }
}

@media only screen and (max-width: 767px) {
  .eigyoBlock.__west {
    margin-right: 2%;
  }
  .eigyoBlock.__east {
    margin-left: 2%;
  }
}

.eigyoBtn {
  width: 222px;
  border-radius: 7px;
  line-height: 1;
  color: #fff;
  padding: 1em 2em 1em 1em;
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
  display: inline-block;
  background-color: #171c61;
  position: relative;
  transition: 0.3s;
}
.__east .eigyoBtn {
  background-color: #d70012;
}
.eigyoBtn::after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f105";
  right: 15px;
  font-size: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.eigyoBtn:hover {
  color: #fff;
  background-color: #aaa9a6;
}
.eigyoBtn:hover::after {
  right: 10px;
}
@media screen and (max-width: 1145px) {
  .eigyoBtn {
    width: 160px;
    padding: 0.8em 2em 0.8em 1em;
  }
  .eigyoBtn::after {
    font-size: 16px;
  }
}
@media only screen and (max-width: 959px) {
  .eigyoBtn {
    width: 160px;
  }
  .eigyoBtn::after {
    font-size: 16px;
  }
}

@media screen and (min-width: 1400px) {
  .baseInfoWrap.__small {
    display: none;
  }
}
@media screen and (max-width: 1399px) {
  .baseInfoWrap {
    display: flex;
    justify-content: center;
  }
  .baseInfoWrap.__big {
    display: none;
  }
  .baseInfoWrap .eigyoBlock {
    padding: 0 1em;
  }
}
@media only screen and (max-width: 959px) {
  .baseInfoWrap {
    display: flex;
    justify-content: center;
  }
  .baseInfoWrap .eigyoBlock {
    padding: 0;
  }
}

@media only screen and (max-width: 767px) {
  .eastCard {
    margin-bottom: 20%;
  }
}

.baseInfoTitle {
  font-size: clamp(2rem, 1.7572815534rem + 0.6472491909vw, 3rem);
  font-weight: bold;
  line-height: 1;
  padding-bottom: 1.2em;
  border-bottom: solid 2px #909091;
}
.eastCard .baseInfoTitle {
  color: #d70012;
}
.westCard .baseInfoTitle {
  color: #171c61;
}
@media only screen and (max-width: 767px) {
  .baseInfoTitle {
    padding-bottom: 0.8em;
    margin-bottom: 40px;
  }
}

.baseMapList > li {
  position: relative;
}
.baseMapList > li:not(:last-child) {
  margin-bottom: 18px;
}
.baseMapList > li::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  top: -9px;
  left: 0;
}
.baseMapList > li:last-child::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  bottom: -9px;
  left: 0;
}

.baseAreaHead {
  cursor: pointer;
  position: relative;
  padding: 1em 5.7em 1em 7px;
}
.baseAreaHead.__gray {
  background-color: #f7f7f7;
}
.baseAreaHead.__cate {
  padding: 2em 5.7em 2em 7px;
}
.baseAreaHead.__cate::after, .baseAreaHead.__cate::before {
  display: none;
}
.baseAreaHead::before {
  opacity: 0;
}
.baseAreaHead::after, .baseAreaHead::before {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  right: 37px;
  top: 50%;
  color: #d70012;
  transform: translateY(-50%);
  font-weight: 300;
  font-size: 30px;
}
.westCard .baseAreaHead::after, .westCard .baseAreaHead::before {
  color: #171c61;
}
.baseAreaHead::after {
  content: "\f078";
}
.baseAreaHead::before {
  content: "\f077";
}
.baseAreaHead.on.__top {
  margin-bottom: 5%;
}
.baseAreaHead.on::before {
  opacity: 1;
}
.baseAreaHead.on::after {
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .baseAreaHead {
    margin-bottom: 5.3%;
    padding: 0.7em 2em 0.7em 0.6em;
    margin-bottom: 2%;
  }
  .baseAreaHead::after, .baseAreaHead::before {
    top: 48%;
    right: 9px;
    font-size: 20px;
  }
  .baseAreaHead.on::after, .baseAreaHead.on::before {
    top: 48%;
  }
}

.baseAreaInner {
  padding: 2em 2em 2em 5em;
  border: solid 1px #e9e9e9;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .baseAreaInner {
    padding: 1em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .baseAreaInner {
    padding: 1.5em;
  }
}

.baseAreaInfoBlock {
  width: 47%;
  margin-right: 10%;
}
@media only screen and (max-width: 767px) {
  .baseAreaInfoBlock {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .baseAreaInfoBlock {
    margin-right: 3%;
  }
}

.baseAreaMapBlock {
  width: 43%;
}
@media only screen and (max-width: 767px) {
  .baseAreaMapBlock {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .baseAreaMapBlock {
    width: 50%;
  }
}

.baseAreaMap iframe {
  width: 100%;
  height: 370px;
}
@media only screen and (max-width: 767px) {
  .baseAreaMap iframe {
    height: 250px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .baseAreaMap iframe {
    height: 300px;
  }
}

/*==================================================
 * company
 *================================================*/
.companyList {
  width: 95%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 100px;
  column-gap: 60px;
  row-gap: 48px;
}
@media only screen and (max-width: 767px) {
  .companyList {
    display: block;
  }
  .companyList > li:not(:last-child) {
    margin-bottom: 15%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .companyList {
    -moz-column-gap: 60px;
    column-gap: 30px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .companyList {
    -moz-column-gap: 60px;
    column-gap: 30px;
  }
}

.companyImg {
  padding-bottom: 60%;
}

.commpanyInner {
  padding: 1.2em 0.8em 0;
}

.companyTitle {
  font-size: clamp(2.1rem, 1.8815533981rem + 0.5825242718vw, 3rem);
  line-height: 1;
  font-weight: bold;
}

/*==================================================
 * iso
 *================================================*/
.isoInfoBlock {
  width: 70%;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .isoInfoBlock {
    width: 100%;
    margin-right: 0;
  }
}

.isoImgBlock {
  width: 25%;
}
.isoImgBlock img {
  margin: 0;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .isoImgBlock {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5%;
  }
}

/*==================================================
 * about
 *================================================*/
.aboutImgBlock {
  width: 40%;
  margin-right: 5%;
}
.__reverse .aboutImgBlock {
  margin-right: 0;
  margin-left: 5%;
}
@media only screen and (max-width: 767px) {
  .aboutImgBlock {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .__reverse .aboutImgBlock {
    width: 100%;
    margin-left: 0;
    margin-bottom: 15px;
  }
}

.aboutInfoBlock {
  width: 55%;
}
@media only screen and (max-width: 767px) {
  .aboutInfoBlock {
    width: 100%;
  }
}

.aboutImg {
  padding-bottom: 75%;
}

.aboutList > li:not(:last-child) {
  margin-bottom: 7%;
}
@media only screen and (max-width: 767px) {
  .aboutList > li:not(:last-child) {
    margin-bottom: 15%;
  }
}

/*==================================================
 *挨拶
 *================================================*/
.greetImgBlock {
  width: 45%;
  margin-left: 3%;
}
@media only screen and (max-width: 767px) {
  .greetImgBlock {
    width: 100%;
    margin-left: 0;
    margin-bottom: 5%;
  }
}

.greetInfoBlock {
  width: 52%;
}
@media only screen and (max-width: 767px) {
  .greetInfoBlock {
    width: 100%;
  }
}

.ceoImg {
  padding-bottom: 74%;
}

.greetKeieiBack {
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.greetKeieiBack.__his {
  bottom: 0;
  right: 0;
}

.backImg {
  width: 70%;
  position: relative;
  z-index: -1;
}
.__his .backImg {
  position: absolute;
  width: 60%;
  right: 0;
  top: 46%;
}
.__his2 .backImg {
  top: 8%;
}
.__his3 .backImg {
  top: -60%;
}
.__his4 .backImg {
  top: 44%;
}
.__his5 .backImg {
  top: 0;
}

.greetKeieiWrap {
  margin-left: auto;
  margin-right: auto;
}
.greetKeieiWrap.__small {
  width: 19%;
}
@media only screen and (max-width: 767px) {
  .greetKeieiWrap.__small {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .greetKeieiWrap.__small {
    width: 100%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .greetKeieiWrap.__small {
    width: 100%;
  }
}

.keieiText {
  font-size: clamp(1.6rem, 1.454368932rem + 0.3883495146vw, 2.2rem);
  line-height: 2;
  font-weight: 500;
}

/*==================================================
 *沿革
 *================================================*/
.bannerArrowWrap {
  position: absolute;
  right: 0;
  bottom: 0;
}

.bannerBlock {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .bannerBlock {
    width: 100%;
  }
}

.bannerArrow {
  width: 60px;
  height: 50px;
  background-color: #d70012;
  position: relative;
}
.bannerArrow::after {
  transition: 0.3s;
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f105";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
}
a:hover .bannerArrow {
  background-color: #443b24;
}
a:hover .bannerArrow::after {
  left: 60%;
}
@media only screen and (max-width: 767px) {
  .bannerArrow {
    width: 39px;
    height: 29px;
  }
  .bannerArrow::after {
    font-size: 16px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .bannerArrow {
    width: 40px;
    height: 30px;
  }
  .bannerArrow::after {
    font-size: 16px;
  }
}

.outlineTable {
  width: 80%;
  margin: auto;
}
.outlineTable td {
  padding: 0.5em 0.5em 0.5em 0;
  border-bottom: solid 1px #babbbc;
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
  line-height: 1.4;
  vertical-align: middle;
}
.outlineTable td.table-content {
  padding-left: 1.2em;
}
.outlineTable td img {
  width: 60%;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .outlineTable {
    width: 900px;
  }
  .outlineTable.__overview {
    width: 700px;
  }
  .outlineTable td img {
    width: 50%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .outlineTable {
    width: 100%;
  }
  .outlineTable td {
    font-size: 15px;
  }
  .outlineTable td img {
    width: 80%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .outlineTable {
    width: 100%;
  }
  .outlineTable td img {
    width: 90%;
  }
}

/*==================================================
 *概要
 *================================================*/
.overImg {
  padding-bottom: 134%;
}

.overImgBlock {
  width: 30%;
  margin-left: 5%;
}
@media only screen and (max-width: 767px) {
  .overImgBlock {
    width: 100%;
    margin-left: 0;
    margin-bottom: 5%;
  }
}

.overTableBlock {
  width: 65%;
}
@media only screen and (max-width: 767px) {
  .overTableBlock {
    width: 100%;
  }
}

/*==================================================
 *提案事例
 *================================================*/
.caseCateBlock {
  padding: 2em 2em 3.5em;
  border: solid 6px #e0e0e1;
}
@media only screen and (max-width: 767px) {
  .caseCateBlock {
    padding: 1em 1em 2em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .caseCateBlock {
    padding: 1.3em 1.3em 2em;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .caseCateBlock {
    padding: 1.3em 1.3em 2em;
  }
}

.caseCateList {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 20px;
}
.caseCateList.__grid3 {
  grid-template-columns: repeat(3, 1fr);
}
.caseCateList.__grid2 {
  grid-template-columns: repeat(2, 1fr);
}
.caseCateList > li {
  padding: 1em 1em 1em 0.5em;
  border-bottom: solid 2px #d70012;
  position: relative;
}
.caseCateList > li::after {
  transition: 0.3s;
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f105";
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.caseCateList > li > a {
  display: block;
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
}
.caseCateList > li:hover {
  background-color: #fff3e6;
}
.caseCateList > li:hover::after {
  right: 5px;
}
@media only screen and (max-width: 767px) {
  .caseCateList {
    width: 100%;
    display: block;
  }
  .caseCateList.__grid3 {
    display: block;
  }
  .caseCateList.__grid3 > li {
    padding: 0.5em 1em 0.5em 0.5em;
  }
  .caseCateList > li {
    padding: 0.5em 1em 0.5em 0.5em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .caseCateList {
    width: 95%;
  }
}

.caseInfoList > li {
  position: relative;
}
.caseInfoList > li:not(:last-child) {
  margin-bottom: 18px;
}
.caseInfoList > li::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  bottom: 0;
  left: 0;
}

.caseAreaHead {
  cursor: pointer;
  position: relative;
  padding: 1em 5.7em 1em 7px;
}
.caseAreaHead::before {
  opacity: 0;
}
.caseAreaHead::after, .caseAreaHead::before {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  right: 37px;
  top: 50%;
  color: #d70012;
  transform: translateY(-50%);
  font-weight: 300;
  font-size: 30px;
}
.caseAreaHead::after {
  content: "\f078";
}
.caseAreaHead::before {
  content: "\f077";
}
.caseAreaHead.on::before {
  opacity: 1;
}
.caseAreaHead.on::after {
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .caseAreaHead::after, .caseAreaHead::before {
    font-size: 20px;
    right: 11px;
  }
}

.caseAreaInner {
  display: none;
  padding: 1.8em;
}
@media only screen and (max-width: 767px) {
  .caseAreaInner {
    padding: 1em 0 1.5em;
  }
}

.caseTitleBlock {
  width: 20%;
  margin-right: 0.5%;
  padding: 2em;
  background-color: #fff3e6;
}
@media only screen and (max-width: 767px) {
  .caseTitleBlock {
    padding: 0.5em;
    width: 40%;
    margin-right: 1.5%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .caseTitleBlock {
    padding: 1em;
    width: 30%;
  }
}

.caseInfoBlock {
  width: 79.5%;
  padding: 1.5em;
  background-color: #f7f7f7;
}
@media only screen and (max-width: 767px) {
  .caseInfoBlock {
    padding: 0.5em;
  }
}

.caseTitleWrap {
  padding-left: 3em;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .caseTitleWrap {
    padding-left: 0.5em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .caseTitleWrap {
    padding-left: 1em;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .caseTitleWrap {
    padding-left: 1em;
  }
}

.caseInnerList > li:not(:last-child) {
  margin-bottom: 0.5%;
}
@media only screen and (max-width: 767px) {
  .caseInnerList > li:not(:last-child) {
    margin-bottom: 1.5%;
  }
}

/*==================================================
 *受託試験サービス
 *================================================*/
.testInfoList > li {
  position: relative;
}
.testInfoList > li:not(:last-child) {
  margin-bottom: 5px;
}
.testInfoList > li::after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f058";
  font-weight: 900;
  font-size: 20px;
  left: 0;
  top: -3px;
}
.testInfoList > li span {
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
  display: inline-block;
  padding-left: 1.6em;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .testInfoList > li::after {
    font-size: 16px;
  }
}

.testAreaHead {
  cursor: pointer;
  position: relative;
  padding: 0.6em 1em 0.6em 7px;
}
.testAreaHead.__none {
  pointer-events: none;
}
.testAreaHead.__none::after, .testAreaHead.__none::before {
  display: none;
}
.testAreaHead::before {
  opacity: 0;
}
.testAreaHead::after, .testAreaHead::before {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  right: 37px;
  top: 50%;
  color: #171c61;
  transform: translateY(-50%);
  font-weight: 300;
  font-size: 25px;
}
.testAreaHead::after {
  content: "\f078";
}
.testAreaHead::before {
  content: "\f077";
}
.testAreaHead.on::before {
  opacity: 1;
}
.testAreaHead.on::after {
  opacity: 0;
}
@media only screen and (max-width: 959px) {
  .testAreaHead {
    padding: 0.6em 0.6em 0.6em 7px;
  }
  .testAreaHead::after, .testAreaHead::before {
    font-size: 18px;
    right: 11px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .testAreaHead::after, .testAreaHead::before {
    font-size: 18px;
    right: 11px;
  }
}

.testAreaInner {
  display: none;
  padding: 0 0 1em 2.5em;
}
@media only screen and (max-width: 767px) {
  .testAreaInner {
    padding: 1em 1em 1.5em;
  }
}

.testList {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 20px;
}
.testList > li {
  padding: 2em;
  background: #f7f7f7;
  border-radius: 5px;
}
@media only screen and (max-width: 767px) {
  .testList {
    display: block;
  }
  .testList > li {
    padding: 1em;
  }
  .testList > li:not(:last-child) {
    margin-bottom: 5%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .testList {
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
  .testList > li {
    padding: 1em;
  }
}

.testGroupList > li {
  position: relative;
}
.testGroupList > li::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #171c61;
  left: 0;
  bottom: 0;
}

.testTitle {
  position: relative;
}
.testTitle::after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f058";
  font-weight: 900;
  font-size: 20px;
  color: #171c61;
  left: 0;
  top: -2px;
}
.testTitle span {
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
  display: inline-block;
  padding-left: 1.9em;
}
@media only screen and (max-width: 767px) {
  .testTitle span {
    padding-left: 1.4em;
  }
  .testTitle::after {
    font-size: 16px;
    top: 2px;
  }
}

.testInnerList > li {
  position: relative;
}
.testInnerList > li::after {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #171c61;
  left: 0;
  top: 10px;
}
.testInnerList > li span {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  display: inline-block;
  padding-left: 1.2em;
}

/*==================================================
 *カタログ
 *================================================*/
.archiveBlog_ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 40px;
}
@media only screen and (max-width: 767px) {
  .archiveBlog_ul {
    display: block;
  }
  .archiveBlog_ul > li:not(:last-child) {
    margin-bottom: 15%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .archiveBlog_ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .archiveBlog_ul {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}

.catalogDayTitle {
  font-size: clamp(1.3rem, 1.2757281553rem + 0.0647249191vw, 1.4rem);
  padding: 0.5em;
  line-height: 1;
  border: solid 1px #000;
  margin-right: 10px;
}

/*==================================================
 *60 years
 *================================================*/
.yearsTitleJp {
  font-size: clamp(2.1rem, 1.6388349515rem + 1.2297734628vw, 4rem);
  font-weight: 600;
  line-height: 1.6;
}

.yearsTitleEn {
  font-size: clamp(1.3rem, 1.1786407767rem + 0.3236245955vw, 1.8rem);
  font-weight: 600;
  color: #d70012;
  line-height: 0.6;
}

.yearsTitleWrap {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .yearsTitleWrap {
    width: 90%;
  }
}

.memoInner {
  padding: 0 2.5em;
}
@media only screen and (max-width: 767px) {
  .memoInner {
    padding: 0;
  }
}

.yearsSubTitle {
  font-size: clamp(1.8rem, 1.4116504854rem + 1.0355987055vw, 3.4rem);
  line-height: 1.6;
  font-weight: 600;
}
.yearsSubTitle span {
  font-weight: 600;
}

.memoImgBlock {
  width: 27%;
}
@media only screen and (max-width: 767px) {
  .memoImgBlock {
    width: 70%;
    margin: auto;
    margin-bottom: 5%;
  }
}

.memoInfoBlock {
  width: 68%;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .memoInfoBlock {
    width: 100%;
    margin-right: 0;
  }
}

.memoCeoImg {
  padding-bottom: 143%;
}

.yearsText {
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
  line-height: 2;
}

.logoWrap {
  position: absolute;
  bottom: -65px;
  right: 0;
  width: 28%;
}
@media only screen and (max-width: 767px) {
  .logoWrap {
    bottom: -10px;
    width: 40%;
  }
}

.history_yearWrap {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.history_year {
  color: #fff;
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  line-height: 1;
  padding: 0.7em;
  background: linear-gradient(to right, rgb(215, 0, 18), rgba(0, 0, 0, 0) 90%);
  position: relative;
  z-index: 9;
}

.history_overlay {
  position: absolute;
  width: 88%;
  bottom: -5%;
  left: 9%;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 9;
}

.historyList {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  -moz-column-gap: 5px;
  column-gap: 7px;
  row-gap: 4px;
}
.historyList > li > a {
  display: block;
  position: relative;
  transition: 0.3s;
}
.historyList > li > a::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 0.3s;
  background-color: rgba(35, 24, 21, 0.8);
  z-index: 1;
  opacity: 0;
}
.historyList > li > a:hover::before {
  opacity: 1;
}
.historyList > li > a:hover .history_overlay {
  opacity: 1;
  bottom: 35%;
  left: 9%;
}
@media screen and (max-width: 1399px) {
  .historyList {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .historyList {
    position: static;
    display: block;
  }
  .historyList > li {
    position: relative;
  }
  .historyList > li:not(:last-child) {
    margin-bottom: 10%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .historyList {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .historyList {
    grid-template-columns: repeat(4, 1fr);
  }
}

.yearImg {
  padding-bottom: 228%;
}
@media only screen and (max-width: 767px) {
  .yearImg {
    padding-bottom: 65%;
  }
}

.history_overTitle {
  font-size: clamp(1.6rem, 1.527184466rem + 0.1941747573vw, 1.9rem);
  font-weight: 600;
  color: #fff;
}

.hisBtn {
  transition: 0.3s;
  display: inline-block;
  padding: 0.7em 5em 0.7em 1em;
  font-weight: 600;
  font-size: clamp(1.3rem, 1.2757281553rem + 0.0647249191vw, 1.4rem);
  background-color: #fff;
  color: #d70012;
  position: relative;
}
.hisBtn::after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  transition: 0.3s;
  content: "\f054";
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  font-weight: 900;
  font-size: 15px;
}

.hisInnerImg {
  padding-bottom: 63%;
}
.__inner01 .hisInnerImg {
  border: solid 1px #cdcece;
}
.__inner03 .hisInnerImg {
  padding-bottom: 159%;
}
.__inner06 .hisInnerImg {
  padding-bottom: 146%;
}
.__inner08 .hisInnerImg {
  border: solid 1px #cdcece;
  padding-bottom: 78%;
}
.__inner09 .hisInnerImg {
  padding-bottom: 91%;
}
.__inner12 .hisInnerImg {
  padding-bottom: 86%;
  width: 81%;
  margin-left: auto;
  margin-right: auto;
}

.hisInnerImgBlock {
  width: 35%;
  margin-right: 5%;
}
.hisInnerImgBlock.__inner03 {
  width: 24%;
  margin-left: 7%;
  margin-right: 8%;
}
.hisInnerImgBlock.__inner06 {
  width: 27%;
  margin-right: 10%;
  margin-left: 7%;
}
.hisInnerImgBlock.__inner08 {
  width: 30%;
  margin-right: 6%;
  margin-left: 2%;
}
.hisInnerImgBlock.__inner09 {
  width: 30%;
  margin-right: 6%;
  margin-left: 2%;
}
.hisInnerImgBlock.__inner12 {
  width: 30%;
}
@media only screen and (max-width: 767px) {
  .hisInnerImgBlock {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15%;
  }
  .hisInnerImgBlock.__inner03 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .hisInnerImgBlock.__inner06 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .hisInnerImgBlock.__inner08 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .hisInnerImgBlock.__inner09 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .hisInnerImgBlock.__inner12 {
    width: 100%;
  }
}

.hisInnerInfoBlock {
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .hisInnerInfoBlock {
    width: 100%;
  }
}

.hisInner_year {
  position: relative;
  margin-bottom: 2.5em;
}
.hisInner_year span {
  font-size: clamp(2.2rem, 1.8601941748rem + 0.9061488673vw, 3.6rem);
  font-weight: 600;
  display: inline-block;
  line-height: 1;
  padding-left: 0.5em;
  color: #d70012;
}
.hisInner_year::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  bottom: -9px;
  left: 0;
  background-color: #d70012;
}

.hisInnerTitle {
  font-size: clamp(1.9rem, 1.6330097087rem + 0.71197411vw, 3rem);
  font-weight: 600;
  line-height: 1.4;
}

@media only screen and (max-width: 767px) {
  .featureImg {
    background-image: url(.././img/feature_back_sp.webp) !important;
    margin: 0 -5%;
  }
}

.hisInnerInfoWrap {
  padding: 0 1em;
}

.hisInnerImgName {
  font-size: clamp(1.4rem, 1.3514563107rem + 0.1294498382vw, 1.6rem);
  line-height: 1.6;
}

.futureInfoWrap {
  padding: 0 3.5em 27%;
}
@media only screen and (max-width: 767px) {
  .futureInfoWrap {
    padding: 0 1em 139%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .futureInfoWrap {
    padding: 0 1.5em 22%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .futureInfoWrap {
    padding: 0 2em 22%;
  }
}

.futureText {
  font-size: clamp(1.6rem, 1.5029126214rem + 0.2588996764vw, 2rem);
  line-height: 2.5;
}
@media only screen and (max-width: 767px) {
  .futureText {
    line-height: 2.5;
  }
}

.productImg {
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .productImg {
    width: 80%;
  }
}

.product_btnWrap {
  margin-top: 5%;
}

.makerImg {
  width: 20%;
}
@media only screen and (max-width: 767px) {
  .makerImg {
    width: 50%;
  }
}

.infoBlock {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

.imgList {
  width: 65%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 0.99fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.imgList > li > a {
  display: block;
  position: relative;
  transition: 0.3s;
}
.imgList > li > a::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 0.3s;
  background-color: rgba(35, 24, 21, 0.8);
  z-index: 1;
  opacity: 0;
}
.imgList > li > a:hover::before {
  opacity: 0;
}
.imgList > li > a:hover .history_overlay {
  opacity: 1;
  bottom: 35%;
  left: 9%;
}
@media only screen and (max-width: 767px) {
  .imgList {
    position: static;
    display: block;
    width: 80%;
  }
  .imgList > li {
    position: relative;
  }
  .imgList > li:not(:last-child) {
    margin-bottom: 10%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .imgList {
    width: 90%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .imgList {
    width: 80%;
  }
}

.pageSupport i,
.pageSupport em {
  font-style: normal;
}
.pageSupport .__inline-block {
  display: inline-block;
}

.pageSupport_h2::after {
  left: 0;
  transform: none;
}
@media only screen and (min-width: 959px) {
  .pageSupport_h2 {
    margin-bottom: 120px;
    margin-left: 40px;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport_h2 {
    margin-bottom: 40px;
    line-height: 1.33;
  }
}

.pageSupport_bgGrad {
  background: linear-gradient(150deg, rgb(255, 255, 255) 36%, rgb(233, 233, 233) 100%);
}

.pageSupportFv {
  position: relative;
  background: url("../img/support/support_fv_bg.webp");
}
@media only screen and (min-width: 959px) {
  .pageSupportFv {
    margin-bottom: 129px;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupportFv {
    margin-bottom: 60px;
    padding-bottom: 105px;
  }
}

@media only screen and (min-width: 959px) {
  .pageSupportFv__bg {
    height: 100%;
    position: absolute;
    z-index: 1;
    right: 0;
    top: 0;
  }
  .pageSupportFv__bg img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left;
       object-position: left;
  }
}
@media only screen and (min-width: 1281px) {
  .pageSupportFv__bg {
    width: 56.5%;
    min-width: 900px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1280px) {
  .pageSupportFv__bg {
    width: 80%;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupportFv__bg {
    width: 100%;
  }
}

.pageSupportFv__cnt {
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 959px) {
  .pageSupportFv__cnt {
    padding-top: 80px;
    padding-bottom: 94px;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupportFv__cnt {
    padding-top: 70px;
  }
}

.pageSupportFv__h2 {
  position: relative;
  font-weight: 500;
  line-height: 1;
}
.pageSupportFv__h2::after {
  display: block;
  width: 58px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #d70012;
  content: "";
}
@media only screen and (min-width: 959px) {
  .pageSupportFv__h2 {
    font-size: 22px;
    padding-bottom: 50px;
    margin-bottom: 30px;
    margin-left: 18px;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupportFv__h2 {
    font-size: 22px;
    padding-bottom: 45px;
    margin-bottom: 30px;
    margin-left: 18px;
  }
}

.pageSupportFv__leadTxt {
  font-weight: 700;
  letter-spacing: 0.04em;
}
.pageSupportFv__leadEm {
  background-color: #d70012;
  color: #fff;
}
@media only screen and (min-width: 959px) {
  .pageSupportFv__lead {
    margin-bottom: 82px;
    max-width: 60%;
  }
  .pageSupportFv__leadTxt {
    font-size: clamp(32px, 3.28vw, 42px);
    line-height: 1.83;
  }
  .pageSupportFv__leadTxt.__1stRow {
    padding-left: 16px;
  }
  .pageSupportFv__leadEm {
    display: inline-block;
    line-height: 1.52;
    padding: 0 16px;
  }
}
@media only screen and (min-width: 959px) and (max-width: 1280px) {
  .pageSupportFv__leadEm {
    display: block;
    width: -moz-max-content;
    width: max-content;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupportFv__lead {
    margin-bottom: 30px;
    padding: 0 2.5%;
  }
  .pageSupportFv__leadTxt {
    font-size: 32px;
    line-height: 1.81;
  }
  .pageSupportFv__leadEm {
    line-height: 1.62;
    padding: 0 0.25em;
  }
  .pageSupportFv__lead br {
    display: none;
  }
}

.pageSupportFv__main {
  position: relative;
}
.pageSupportFv__mainHead {
  color: #fff;
}
.pageSupportFv__mainHeadLg {
  font-weight: 700;
  line-height: 1;
}
.pageSupportFv__mainHeadSm {
  font-weight: 500;
  letter-spacing: 0.08em;
}
.pageSupportFv__mainBody {
  background-color: #fff;
}
.pageSupportFv__mainBodyDt {
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.75;
  padding-left: 1.25em;
  position: relative;
}
.pageSupportFv__mainBodyDt .__dt_head {
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  left: 0;
  top: 0.375em;
  background-color: #d70012;
  clip-path: polygon(0 0, 90% 50%, 0 100%);
}
.pageSupportFv__mainBodyDd {
  font-weight: 500;
  white-space: pre-wrap;
}
@media only screen and (min-width: 959px) {
  .pageSupportFv__mainHead {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 441px;
    height: 378px;
    background: linear-gradient(30deg, rgb(181, 13, 35) 0%, rgb(35, 24, 21) 54.31%);
    clip-path: polygon(40% 0, 100% 0, 60% 100%, 0 100%);
  }
  .pageSupportFv__mainHeadLg {
    font-size: 34px;
    margin-bottom: 1em;
  }
  .pageSupportFv__mainHeadSm {
    font-size: 16px;
  }
  .pageSupportFv__mainHeadSm span {
    display: block;
  }
  .pageSupportFv__mainHeadSm .__indent {
    padding-left: 2em;
  }
  .pageSupportFv__mainBody {
    width: 70%;
    max-width: 947px;
    min-width: 660px;
    position: absolute;
    left: 222px;
    top: 34px;
    z-index: 1;
    padding: 40px 0 20px;
    clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
  }
  .pageSupportFv__mainBodyDl {
    margin-bottom: 20px;
  }
  .pageSupportFv__mainBodyDl.__1strow {
    padding-left: 220px;
  }
  .pageSupportFv__mainBodyDl.__2ndrow {
    padding-left: 170px;
  }
  .pageSupportFv__mainBodyDl.__3rdrow {
    padding-left: 120px;
  }
  .pageSupportFv__mainBodyDt {
    font-size: clamp(16px, 1.56vw, 20px);
  }
  .pageSupportFv__mainBodyDd {
    font-size: clamp(14px, 1.4vw, 18px);
    padding-left: 1em;
  }
}
@media only screen and (min-width: 1281px) {
  .pageSupportFv__mainBodyDl {
    padding-right: 100px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1280px) {
  .pageSupportFv__mainBodyDl {
    padding-right: 50px;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupportFv__main {
    background: linear-gradient(90deg, rgb(181, 13, 35) 0%, rgb(35, 24, 21) 54.31%);
  }
  .pageSupportFv__mainHead {
    padding: 20px 30px;
  }
  .pageSupportFv__mainHeadLg {
    font-size: 30px;
    margin-bottom: 0.25em;
  }
  .pageSupportFv__mainHeadSm {
    font-size: 16px;
  }
  .pageSupportFv__mainBody {
    padding: 27px 0.5em 27px 27px;
  }
  .pageSupportFv__mainBodyDl {
    margin-bottom: 20px;
  }
  .pageSupportFv__mainBodyDt {
    font-size: 20px;
  }
  .pageSupportFv__mainBodyDd {
    font-size: 16px;
  }
}

.pageSupportFv_catch {
  width: 98%;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
}
.pageSupportFv_catch img {
  width: 100%;
}
@media only screen and (min-width: 959px) {
  .pageSupportFv_catch {
    transform: translate(-50%, 50%);
  }
}
@media only screen and (max-width: 959px) {
  .pageSupportFv_catch {
    max-width: 330px;
    transform: translate(-50%, -30%);
  }
}

.pageSupportNav {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  border: 5px solid #e0e0e1;
}
.pageSupportNav__link {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  padding-top: 1em;
  padding-bottom: 1em;
  border-bottom: 1px solid #d70012;
}
.pageSupportNav__link::after {
  transition: 0.3s;
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  content: "\f105";
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
@media (hover: hover) {
  .pageSupportNav__link:hover {
    background-color: #fff3e6;
  }
  .pageSupportNav__link:hover::after {
    right: 5px;
  }
}
@media only screen and (min-width: 959px) {
  .pageSupportNav {
    justify-content: center;
    -moz-column-gap: 5%;
         column-gap: 5%;
    row-gap: 30px;
    position: relative;
    padding: 25px 0 40px;
  }
  .pageSupportNav__link {
    flex-basis: 335px;
    flex-shrink: 0;
    padding-left: 12px;
  }
  .pageSupportNav::after {
    display: block;
    width: 335px;
    height: 0;
    content: "";
  }
}
@media only screen and (max-width: 959px) {
  .pageSupportNav {
    justify-content: center;
    -moz-column-gap: 5%;
         column-gap: 5%;
    row-gap: 14px;
    position: relative;
    padding: 25px;
  }
  .pageSupportNav__link {
    flex-basis: 100%;
    flex-shrink: 0;
    padding-left: 10px;
    padding-right: 20px;
  }
}

.pageSupport__container {
  display: flex;
}
@media only screen and (min-width: 959px) {
  .pageSupport__container {
    justify-content: space-between;
    padding-left: 40px;
  }
  .pageSupport__container.__reverse {
    flex-direction: row-reverse;
  }
  .pageSupport__container:not(.__reverse) .pageSupport__cntTxt {
    padding-left: 1.7%;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport__container {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 30px;
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 959px) {
  .pageSupport__cntTxt {
    flex-basis: 58%;
    flex-shrink: 0;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport__cntTxt {
    flex-basis: 100%;
  }
}

.pageSupport__cntH3 {
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.56;
  margin-bottom: 1em;
}
@media only screen and (min-width: 959px) {
  .pageSupport__cntH3 {
    font-size: clamp(26px, 2.5vw, 35px);
  }
  .pageSupport__list + .pageSupport__cntH3 {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport__cntH3 {
    font-size: 22px;
  }
}

.pageSupport__cntPic img {
  width: 100%;
}
@media only screen and (min-width: 959px) {
  .pageSupport__cntPic {
    flex-basis: 38%;
    flex-shrink: 0;
    position: relative;
  }
  .pageSupport__cntPicWrap {
    width: 40vw;
    position: absolute;
    top: 0;
  }
  .pageSupport__cntPicWrap.__left {
    right: 0;
  }
  .pageSupport__cntPicWrap.__right {
    left: 0;
  }
  .pageSupport__cntPicWrap img {
    max-height: 570px;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport__cntPic {
    flex-basis: 100%;
  }
}

.pageSupport__list li {
  position: relative;
  font-weight: 500;
  padding-left: 37px;
  margin-bottom: 1em;
}
.pageSupport__list li::before {
  display: block;
  width: 20px;
  height: 3px;
  position: absolute;
  left: 0;
  background-color: #d70012;
  content: "";
}
@media only screen and (min-width: 959px) {
  .pageSupport__list li {
    font-size: 20px;
    line-height: 1.88;
  }
  .pageSupport__list li::before {
    top: 0.9em;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport__list li {
    font-size: 18px;
    line-height: 1.52;
  }
  .pageSupport__list li::before {
    top: 0.76em;
  }
}

.pageSupport__bottom {
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}
.pageSupport__bottom.__white {
  color: #fff;
}
.pageSupport__bottom.__grey {
  color: #f7f7f7;
}
@media only screen and (min-width: 959px) {
  .pageSupport__bottom {
    text-align: center;
    white-space: nowrap;
  }
}

@media only screen and (min-width: 959px) {
  .pageSupport__development {
    margin-top: 140px;
    padding-top: 73px;
    padding-bottom: 25px;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport__development {
    margin-top: 60px;
    padding-top: 47px;
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 959px) {
  .pageSupport__development .pageSupport__bottom {
    font-size: 5.05vw;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport__development .pageSupport__bottom {
    font-size: 11vw;
    line-height: 1.07;
  }
}

@media only screen and (min-width: 959px) {
  .pageSupport__terminal {
    padding-top: 133px;
    padding-bottom: 100px;
  }
  .pageSupport__terminal .pageSupport__bottom {
    font-size: 4.36vw;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport__terminal {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .pageSupport__terminal .pageSupport__bottom {
    font-size: 8.5vw;
    padding: 0 1%;
  }
}

.pageSupport__terminalProducts {
  background-color: #f7f7f7;
}
.pageSupport__terminalProducts .pageSupport__productsTitle {
  font-weight: 700;
  margin-bottom: 1em;
}
.pageSupport__terminalProducts .pageSupport__productsList {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
}
.pageSupport__terminalProducts .pageSupport__productsDl dt {
  width: -moz-max-content;
  width: max-content;
  font-weight: 700;
}
.pageSupport__terminalProducts .pageSupport__productsDl dd {
  font-weight: 500;
  padding-left: 1em;
}
@media only screen and (min-width: 959px) {
  .pageSupport__terminalProducts {
    padding: 30px;
    margin-bottom: 45px;
  }
  .pageSupport__terminalProducts .pageSupport__productsTitle {
    font-size: 22px;
  }
}
@media only screen and (min-width: 959px) and (min-width: 1281px) {
  .pageSupport__terminalProducts .pageSupport__productsList {
    justify-content: space-evenly;
  }
}
@media only screen and (min-width: 959px) and (min-width: 960px) and (max-width: 1280px) {
  .pageSupport__terminalProducts .pageSupport__productsList {
    justify-content: center;
    -moz-column-gap: 5%;
         column-gap: 5%;
  }
}
@media only screen and (min-width: 959px) {
  .pageSupport__terminalProducts .pageSupport__productsDl {
    width: -moz-max-content;
    width: max-content;
    flex-shrink: 0;
  }
}
@media only screen and (min-width: 959px) and (min-width: 960px) and (max-width: 1280px) {
  .pageSupport__terminalProducts .pageSupport__productsDl {
    min-width: 140px;
    flex-basis: 40%;
  }
}
@media only screen and (min-width: 959px) {
  .pageSupport__terminalProducts .pageSupport__productsDl dt {
    font-size: 18px;
  }
  .pageSupport__terminalProducts .pageSupport__productsDl dd {
    font-size: 16px;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport__terminalProducts {
    padding: 25px 16px;
    margin-bottom: 30px;
  }
  .pageSupport__terminalProducts .pageSupport__productsTitle {
    font-size: 18px;
  }
  .pageSupport__terminalProducts .pageSupport__productsList {
    justify-content: center;
    -moz-column-gap: 5%;
         column-gap: 5%;
  }
  .pageSupport__terminalProducts .pageSupport__productsDl {
    min-width: 130px;
    flex-shrink: 0;
  }
  .pageSupport__terminalProducts .pageSupport__productsDl dt {
    font-size: 18px;
  }
  .pageSupport__terminalProducts .pageSupport__productsDl dd {
    font-size: 16px;
  }
}

@media only screen and (min-width: 959px) {
  .pageSupport__management {
    padding-top: 73px;
    padding-bottom: 25px;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport__management {
    padding-top: 47px;
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 959px) {
  .pageSupport__management .pageSupport__bottom {
    font-size: 5.05vw;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport__management .pageSupport__bottom {
    font-size: 11vw;
    line-height: 1.07;
  }
}

.pageSupport__managementNote {
  font-weight: 500;
  letter-spacing: 0;
}
@media only screen and (min-width: 959px) {
  .pageSupport__managementNote {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport__managementNote {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 959px) {
  .pageSupport__cording {
    padding-top: 133px;
    padding-bottom: 70px;
  }
  .pageSupport__cording .pageSupport__bottom {
    font-size: 4.9vw;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport__cording {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .pageSupport__cording .pageSupport__bottom {
    font-size: 8.5vw;
    padding: 0 1%;
  }
}

.pageSupport__cordingNote {
  font-weight: 500;
  letter-spacing: 0;
}
@media only screen and (min-width: 959px) {
  .pageSupport__cordingNote {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport__cordingNote {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.pageSupport__cordingBlock {
  background-color: #f4f4f4;
}
.pageSupport__cordingBlockHead {
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1em;
}
.pageSupport__cordingBlockHead .__triangle {
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #d70012;
  clip-path: polygon(0 0, 90% 50%, 0 100%);
}
.pageSupport__cordingBlockTxt {
  font-weight: 500;
  margin-bottom: 1em;
  padding-left: 1.2em;
}
@media only screen and (min-width: 959px) {
  .pageSupport__cordingBlock {
    width: 95%;
    max-width: 556px;
    padding: 24px 30px;
  }
  .pageSupport__cordingBlockHead {
    font-size: 20px;
  }
  .pageSupport__cordingBlockTxt {
    font-size: 18px;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport__cordingBlock {
    padding: 25px 16px;
  }
  .pageSupport__cordingBlockHead {
    font-size: 18px;
  }
  .pageSupport__cordingBlockTxt {
    font-size: 16px;
  }
}

@media only screen and (min-width: 959px) {
  .pageSupport__macro {
    padding-top: 73px;
    padding-bottom: 25px;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport__macro {
    padding-top: 47px;
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 959px) {
  .pageSupport__macro .pageSupport__bottom {
    font-size: 5.05vw;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport__macro .pageSupport__bottom {
    font-size: 11vw;
    line-height: 1.07;
  }
}

.pageSupport__macroNote {
  font-weight: 500;
  margin-bottom: 1.5em;
}
@media only screen and (min-width: 959px) {
  .pageSupport__macroNote {
    font-size: 22px;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport__macroNote {
    font-size: 18px;
  }
}

@media only screen and (min-width: 959px) {
  .pageSupport__transfer {
    padding-top: 133px;
    padding-bottom: 70px;
  }
  .pageSupport__transfer .pageSupport__bottom {
    font-size: 4.9vw;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport__transfer {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .pageSupport__transfer .pageSupport__bottom {
    font-size: 8.5vw;
    padding: 0 1%;
  }
}

.pageSupport__transferNote {
  font-weight: 500;
  letter-spacing: 0;
}
@media only screen and (min-width: 959px) {
  .pageSupport__transferNote {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport__transferNote {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 959px) {
  .pageSupport__ocr {
    padding-top: 73px;
    padding-bottom: 25px;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport__ocr {
    padding-top: 47px;
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 959px) {
  .pageSupport__ocr .pageSupport__bottom {
    font-size: 4.74vw;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport__ocr .pageSupport__bottom {
    font-size: 11vw;
    line-height: 1.07;
  }
}

.pageSupport__ocrH3 {
  font-weight: 500;
  margin-bottom: 1em;
  position: relative;
}
@media only screen and (min-width: 959px) {
  .pageSupport__ocrH3 {
    font-size: clamp(31px, 3.08vw, 37px);
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport__ocrH3 {
    font-size: 22px;
  }
}

.pageSupport__ocrNote {
  font-weight: 500;
  margin-bottom: 1.5em;
}
@media only screen and (min-width: 959px) {
  .pageSupport__ocrNote {
    font-size: 22px;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport__ocrNote {
    font-size: 18px;
  }
}

@media only screen and (min-width: 959px) {
  .pageSupport__manual {
    padding-top: 133px;
    padding-bottom: 70px;
    margin-bottom: 50px;
  }
  .pageSupport__manual .pageSupport__bottom {
    font-size: 4.81vw;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport__manual {
    padding-top: 50px;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .pageSupport__manual .pageSupport__bottom {
    font-size: 8.5vw;
    padding: 0 1%;
  }
}

.pageSupport__manualList dd {
  font-weight: 700;
  padding-left: 1em;
}
.pageSupport__manualList dt {
  position: relative;
  font-weight: 500;
  padding-left: 1em;
}
.pageSupport__manualList dt .__triangle {
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  left: 0;
  top: 0.4em;
  background-color: #d70012;
  clip-path: polygon(0 0, 90% 50%, 0 100%);
}
@media only screen and (min-width: 959px) {
  .pageSupport__manualList {
    margin-bottom: 30px;
  }
  .pageSupport__manualList dt {
    font-size: 22px;
  }
  .pageSupport__manualList dd {
    font-size: 30px;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport__manualList {
    margin-bottom: 20px;
  }
  .pageSupport__manualList dt {
    font-size: 18px;
  }
  .pageSupport__manualList dd {
    font-size: 22px;
  }
}

.pageSupport__contact {
  display: block;
  position: relative;
  background: url("../img/support/support_contact.webp") no-repeat;
}
.pageSupport__contact::before {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-color: rgba(35, 24, 21, 0.8);
  transition: opacity ease 0.4s;
  content: "";
}
@media (hover: hover) {
  .pageSupport__contact:hover::before {
    opacity: 0.7;
  }
}
.pageSupport__contactInner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
}
.pageSupport__contactTxtLg, .pageSupport__contactTxtSm {
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.66;
  text-align: center;
}
.pageSupport__contactArrow {
  display: block;
  position: absolute;
  width: 2px;
  height: 12px;
  bottom: 50%;
  background-color: #fff;
  transform: rotate(-35deg);
  transform-origin: right bottom;
}
.pageSupport__contactArrow::before {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  transform: rotate(70deg);
  transform-origin: right top;
  content: "";
}
@media only screen and (min-width: 959px) {
  .pageSupport__contact {
    width: 560px;
    height: 140px;
    margin: 52px auto 0;
  }
  .pageSupport__contactTxtLg {
    font-size: 24px;
  }
  .pageSupport__contactTxtSm {
    font-size: 18px;
  }
  .pageSupport__contactArrow {
    right: 30px;
  }
}
@media only screen and (max-width: 959px) {
  .pageSupport__contact {
    width: 100%;
    max-width: 560px;
    height: 100px;
    margin: 30px auto 0;
  }
  .pageSupport__contactTxtLg {
    font-size: 18px;
  }
  .pageSupport__contactTxtSm {
    font-size: 16px;
  }
  .pageSupport__contactArrow {
    right: 16px;
  }
}/*# sourceMappingURL=import.css.map */