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

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


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

*/
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&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+Sans+JP:wght@300;400;500;600;700;900&display=swap");
.mainColor {
  color: #f16300;
}

.mainColorSub {
  color: #333333;
}

.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: #ffe200;
}

.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: #333333;
}

.bgWhite {
  background: #fff;
}

.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: "Jost", sans-serif;
}

.fontEnSub {
  font-family: "Cormorant Garamond", serif;
}

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

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

.fontNum {
  font-family: "Inter", 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;
  color: #333333;
}

/*==================================================
 * リセット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: #9b9b9b;
}

.red {
  color: #b50d23 !important;
}

.red2 {
  color: #b50d23 !important;
}

.blue {
  color: #333d80;
}

.yellow {
  color: #ffff00;
}

.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;
}

.box-center {
  margin-inline: auto;
}

@media only screen and (max-width: 767px) {
  .box-center_sp {
    margin-inline: auto;
  }
}

@media only screen and (max-width: 959px) {
  .box-center_spTab {
    margin-inline: auto;
  }
}

.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;
  }
}

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

@media screen and (min-width: 768px) and (max-width: 1279px) {
  .text-left-tabNote {
    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: #f16300;
}
.linkA:hover {
  color: #f16300;
  text-decoration: underline;
}

@media screen and (min-width: 959px) {
  .spTab {
    display: none !important;
  }
}
@media screen and (min-width: 1130px) {
  .brakePoint {
    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: 1251px) {
  .pc4 {
    display: none !important;
  }
}
@media screen and (max-width: 959px) {
  .Menu_p {
    display: none !important;
  }
}
.pc5 {
  display: none;
}

@media screen and (max-width: 1250px) {
  .pc5 {
    display: block !important;
  }
}
@media screen and (min-width: 960px) {
  .Menu_s {
    display: none !important;
  }
}
.pc3 {
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 1279px) {
  .pc3 {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .notTab {
    display: none !important;
  }
  .tab {
    display: block !important;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .notNote {
    display: none !important;
  }
  .note {
    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%;
}

.mbM25 {
  margin-bottom: 6%;
}

.mbM3 {
  margin-bottom: 5%;
}

.mbM35 {
  margin-bottom: 4%;
}

.mbS {
  margin-bottom: 3.5%;
}

.mbS25 {
  margin-bottom: 2.5%;
}

.mbS2 {
  margin-bottom: 2%;
}

.mbS35 {
  margin-bottom: 1.5%;
}

.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%;
  }
  .mbSpL5 {
    margin-bottom: 13%;
  }
  .mbSpM {
    margin-bottom: 10%;
  }
  .mbSpM2 {
    margin-bottom: 7.5%;
  }
  .mbSpM3 {
    margin-bottom: 5%;
  }
  .mbSpS {
    margin-bottom: 3.5%;
  }
  .mbSpS1 {
    margin-bottom: 2.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%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .flexTabNote {
    display: block;
  }
}
/*横幅*/
.cnt {
  width: 90%;
  max-width: 1920px;
  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 {
    max-width: 1200px;
  }
  .cnt.cntMS {
    width: 95%;
  }
}

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

.w100 {
  width: 100%;
}

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

.cntXSM {
  max-width: 1260px;
  margin-right: auto;
  margin-left: auto;
}

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

.cntM {
  max-width: 1756px;
  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;
  width: 100% !important;
}

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

:root {
  --spaceSize: clamp(25px, 5vw, 96px);
  --spaceSizeMiddle: clamp(50px, 7.5vw, 144px);
  --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(--spaceSizeMiddle);
  margin-bottom: var(--spaceSizeMiddle);
}

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

.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%;
}

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

.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%, #ffe200 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: #f16300;
  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: #f16300;
  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: #f16300;
  display: block;
  margin-right: 1.5rem;
  max-width: 3rem;
}
.titleBdLeft.white:before {
  background: #fff;
}

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

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

/*ボタン*/
/* ボタンだけに指定する場合は以下 */
.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: 98px;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
  z-index: 997;
}
.change-color .overRayBox {
  top: 56px;
}
.overRayBox > ul {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
.open .overRayBox {
  cursor: url(../images/cross.svg), auto;
  visibility: visible;
  opacity: 1;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .overRayBox {
    top: 118px;
  }
}

.all_fixed_nav_bg {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: fixed;
  top: 36px;
  left: 0;
  z-index: 8888;
  pointer-events: none;
  opacity: 0;
}
.open .all_fixed_nav_bg {
  opacity: 1;
  pointer-events: auto;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .all_fixed_nav_bg {
    top: 64px;
  }
}

html.open {
  overflow-y: hidden;
}

/*ハンバーガーメニュー*/
.menu-btn {
  position: fixed;
  cursor: pointer;
  z-index: 998;
  right: 0;
  top: 32px;
  height: 56px;
  width: 56px;
  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 (max-width: 767px) {
  .menu-btn {
    top: 41px;
    right: 7px;
    height: 56px;
  }
  .change-color .menu-btn {
    top: 3px;
    width: 48px;
    height: 48px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .menu-btn {
    top: 65px;
    right: 7px;
    height: 56px;
  }
  .change-color .menu-btn {
    top: 3px;
    width: 48px;
    height: 48px;
  }
}

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

.menu-trigger {
  position: relative;
  width: 36px;
  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: 5px;
}
.menu-trigger span:nth-of-type(2) {
  top: 15px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: -3px;
}
.menu-trigger.active span {
  background-color: #000;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(10px) 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: #f16300;
}
.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 #f16300;
}

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

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

.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%;
}

/*残す--ここまで*/
/*お問い合わせページ------------------------------------*/
@media only screen and (max-width: 767px) {
  .wpcf7-list-item {
    margin: 0 0 0 0 !important;
  }
}

.contactCard {
  padding: 4em 0;
  background-color: rgb(248, 248, 248);
}

.contactForm {
  padding: 4em;
  background-color: #fff;
  box-shadow: 0 0 8px 8px rgba(204, 86, 5, 0.06);
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .contactForm {
    padding: 2em 1.3em;
  }
}

.cform {
  margin-left: auto;
  margin-right: auto;
}
.cform tr {
  margin-bottom: 1.5em;
  padding-bottom: 1em;
  border-bottom: solid 1px #d3d3d3;
  display: block;
}
.cform tr th,
.cform tr td {
  letter-spacing: 0.01em;
  text-align: left;
}
.cform tr th {
  vertical-align: middle;
  width: 28%;
  margin-bottom: 0.5em;
}
.cform tr th p {
  display: flex;
  justify-content: space-between; /* 左右に分ける */
  align-items: center; /* 高さを揃える */
}
.cform tr td {
  width: 755px;
}
.cform label {
  margin-right: 1.5em;
}
.cform label span {
  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;
  padding: 1em;
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
  letter-spacing: 0.07em;
  line-height: 1.4;
  border-color: rgb(204, 204, 204);
  background: rgb(248, 248, 248);
}
.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: #ececec;
}
.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: #ececec;
}
.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: #ececec;
}
.cform select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #ececec !important;
  border: unset !important;
  border-radius: 2px !important;
  padding: 1.4em 0.5em !important;
  width: 49% !important;
}
.cform input[type=checkbox] + span:before {
  font-family: "Font Awesome 5 Free";
  content: "";
  display: inline-block;
  margin-right: 0.5em;
  font-weight: 400;
  margin-top: -4px;
}
.cform select#select-title {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 1em;
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
  letter-spacing: 0.07em;
  line-height: 1.4;
  background-color: #f6f6f6;
}
.cform .title {
  font-weight: bold;
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
}
.cform .smallText {
  font-size: clamp(1.2rem, 1.1757281553rem + 0.0647249191vw, 1.3rem);
}
@media only screen and (max-width: 767px) {
  .cform tr {
    margin-bottom: 1em;
  }
  .cform tr,
  .cform th,
  .cform td {
    display: block;
    width: 100% !important;
  }
  .cform select {
    width: 100% !important;
  }
  .cform option,
  .cform textarea,
  .cform input[type=text],
  .cform input[type=tel],
  .cform input[type=email],
  .cform input[type=search],
  .cform input[type=url] {
    padding: 0.7em 1em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .cform th {
    width: 290px !important;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .cform th {
    width: 273px !important;
  }
}

/* チェックボックスを非表示にしてカスタム */
.contact_form_checkbox {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid #b50d23; /* 枠の色 */
  cursor: pointer;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .contact_form_checkbox {
    width: 18px;
    height: 18px;
  }
}

/* チェック時の背景色 */
.contact_form_checkbox:checked {
  background-color: #b50d23; /* チェック時の色 */
  border-color: #b50d23;
}

/* チェックマークを作る */
.contact_form_checkbox:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 0px;
  width: 6px;
  height: 12px;
  border-right: 2px solid #fff; /* チェックマークの色 */
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.wpcf7-list-item input {
  margin-top: -3px;
}
.wpcf7-list-item span {
  font-weight: 500;
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
}

.contactText {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  font-weight: 500;
}
.contactText.__small {
  font-size: 13px;
}

.required-srt {
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 0.4em 0.8em 0.5em;
  background-color: #b50d23;
  border-radius: 3px;
  margin: auto 0.7em;
}
@media only screen and (max-width: 767px) {
  .required-srt {
    font-size: 13px;
    border-radius: 2px;
    padding: 0.3em 0.7em 0.4em;
  }
  .checkBox .required-srt {
    padding: 0.18em 0.7em 0.3em;
  }
}

.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;
}

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

.contactAlertTitle {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  line-height: 1.4;
  text-align: center;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .contactAlertTitle {
    text-align: left;
    margin-bottom: 5%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .contactAlertTitle {
    margin-bottom: 2%;
  }
}

.wpcf7-spinner {
  display: none !important;
}

.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 transparent;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .submit-btn input {
    font-size: 14px;
  }
}

.wpcf7-response-output {
  border: none !important;
  line-height: 1.6;
  color: #f16300 !important;
  text-align: center !important;
}

.contactTitle {
  font-size: clamp(1.5rem, 1.427184466rem + 0.1941747573vw, 1.8rem);
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .contactTitle {
    padding-left: 0;
  }
}

.checkWorp p {
  text-align: center;
  margin-bottom: 6%;
}
.checkWorp .checkitem .wpcf7-list-item:nth-child(1) {
  margin-right: 57px;
  position: relative;
  padding-bottom: 11.5em;
}
.checkWorp .checkitem .wpcf7-list-item:nth-child(1)::after {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 69%;
  width: 250px;
  height: 166px;
  transform: translateX(-50%);
  background-image: url(.././img/catalog_shoene.webp);
  background-repeat: no-repeat;
  background-size: contain;
}
.checkWorp .checkitem .wpcf7-list-item:nth-child(2) {
  position: relative;
  padding-bottom: 11.5em;
}
.checkWorp .checkitem .wpcf7-list-item:nth-child(2)::after {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 54%;
  width: 250px;
  height: 166px;
  transform: translateX(-50%);
  background-image: url(.././img/catalog_hojyokin.webp);
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .checkWorp p {
    margin-bottom: 12%;
  }
  .checkWorp .checkitem .wpcf7-list-item {
    margin: 0;
  }
  .checkWorp .checkitem .wpcf7-list-item:nth-child(1) {
    margin-bottom: 11%;
  }
  .checkWorp .checkitem .wpcf7-list-item:nth-child(1)::after {
    bottom: -10px;
  }
  .checkWorp .checkitem .wpcf7-list-item:nth-child(2) {
    position: relative;
  }
  .checkWorp .checkitem .wpcf7-list-item:nth-child(2)::after {
    bottom: -10px;
  }
}

/*下層ページ共通------------------------------------*/
.entry {
  margin-top: 7%;
  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 a {
  display: inline;
  text-decoration: underline;
  word-break: break-all;
  word-wrap: break-word;
  color: #33bad4;
}
.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;
  background: linear-gradient(transparent 40%, #fff7c0 40%);
}
.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: 8% auto 3%;
  background-color: #edeeef;
  padding: 0.5em 1em;
  border-radius: 3px;
  font-weight: bold;
  border-left: 4px solid #f16300;
  padding-left: 0.7em;
}
@media only screen and (max-width: 767px) {
  .entry h2 {
    font-size: 18px;
    margin: 12% auto 6%;
  }
}
.entry h3 {
  margin: 3% auto 3%;
  border-bottom: 1px solid #f16300;
  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 3%;
  padding: 1em;
  font-weight: bold;
  font-size: 17px;
  background-color: #f4f4f4;
  padding-left: 2.6em;
  font-weight: 600;
  position: relative;
}
.entry h4::after {
  position: absolute;
  content: "";
  display: block;
  border-left: 12px solid #f16300;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  top: 25px;
  left: 22px;
}
@media only screen and (max-width: 767px) {
  .entry h4 {
    margin: 6% auto 3%;
    font-size: 16px;
    padding-left: 2.3em;
  }
  .entry h4::after {
    border-left: 12px solid #f16300;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    top: 23px;
    left: 17px;
  }
}
.entry h5 {
  margin: 3% 0;
  color: #f16300;
  padding: 0.5em 2em;
  padding-left: 0;
  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 #f16300;
  border-bottom: 1px solid #f16300;
}
.entry table td:first-child {
  width: 30%;
  background-color: #eef6fa;
  border-left: 1px solid #f16300;
}
.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: #f16300;
  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: #f16300;
}

.toc_list li:before {
  display: none;
}

.toc_title {
  border-bottom: 1px solid #f16300;
  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: #f16300;
  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 #f16300;
  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: #f16300;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  display: none !important;
}

.lkc-info {
  background-color: #f16300;
  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 {
  transition: 0.3s;
  display: inline-block;
  font-size: 13px;
  background-color: #fff;
  color: #fff;
  background-color: #f16300;
  border-radius: 7px;
  padding: 0.5em 1em;
  text-align: center;
  line-height: 1;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
}
.singleColumnInfoUl .cate:hover {
  opacity: 0.7;
}
.singleColumnInfoUl .cateUl {
  display: inline-block;
  transition: 0.3s;
}
.singleColumnInfoUl .cateUl li {
  display: inline-block;
  font-size: 16px;
  line-height: 0.7;
  background-color: #f16300;
  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: #f16300;
}
.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 #f16300;
}
@media only screen and (max-width: 767px) {
  .singleColumnWriter {
    padding: 8%;
    margin: 12% 0 6% 0;
  }
}

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

.singleColumnWriterButton {
  background: #fff;
  border: 1px solid #f16300;
  border-radius: 25px;
  padding: 0.25em;
  max-width: 280px;
  display: block;
  transition: 0.3s;
  color: #f16300;
}
.singleColumnWriterButton:hover {
  background: #f16300;
  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;
}
@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 {
  transition: 0.3s;
  padding-bottom: 66%;
}
a:hover .cmNewsListImg {
  transform: scale(1.1);
}

.cmNewsListImgWrap {
  overflow: hidden;
  margin-bottom: 6%;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .cmNewsListImgWrap {
    border-radius: 15px;
  }
}

.cmNewsListInfoUl li {
  display: inline-block;
  font-size: 12px;
  background: #f16300;
  display: inline-block;
  color: #fff;
  border-radius: 7px;
  padding: 0.4em 0.8em;
  text-align: center;
  line-height: 0.7;
  transition: 0.3s;
}
.cmNewsListInfoUl li:not(:last-child) {
  margin-right: 5px;
}
.cmNewsListInfoUl li:hover {
  opacity: 0.7;
}
.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: "Jost", sans-serif;
  font-size: 20px;
  margin: 0 0.5%;
  border-radius: 50px;
  border: solid 1px #f16300;
  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: #f16300;
  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: #f16300;
  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: "Jost", 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: #fff;
  background-color: #f16300;
  color: #fff;
  border-radius: 7px;
  padding: 0.7em 1em;
  line-height: 0.6;
  margin-bottom: 1em;
  transition: 0.3s;
  margin-right: 5px;
}
.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: "Jost", sans-serif;
  color: #f16300;
  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: #f16300;
  right: 10px;
  top: 10px;
  position: absolute;
  font-size: 14px;
}

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

.sidebarTagWrap a {
  font-size: 14px !important;
  color: #f16300;
}
.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;
  }
}

/* reCAPTCHAバッジを非表示にする */
body .grecaptcha-badge {
  visibility: hidden !important;
}

.reCAPTCHA-txt {
  margin-top: 16px;
}

.reCAPTCHA-txt p {
  font-size: clamp(1.3rem, 1.2757281553rem + 0.0647249191vw, 1.4rem);
  font-weight: 500;
  text-align: center;
  margin-top: 5px;
}

.reCAPTCHA-txt a {
  text-decoration: underline;
}

/*==================================================
 * 当サイトのみ共通
 *================================================*/
.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}
.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.logoBox {
  width: 300px;
  margin-inline: auto;
  padding: 0.5em;
  border-radius: 5px;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .logoBox {
    width: 250px;
  }
}

.loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background: #f16300;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}
.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

.loadTitle {
  font-size: clamp(1.7rem, 1.2631067961rem + 1.1650485437vw, 3.5rem);
  letter-spacing: 0.06em;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}

address {
  font-style: normal;
}

.headerInner {
  margin-right: auto;
  margin-left: auto;
  width: 95%;
}
@media only screen and (max-width: 959px) {
  .headerInner {
    width: 100%;
  }
}

main {
  margin-top: 109px;
}
.home main {
  margin-top: 108px;
}
@media only screen and (max-width: 1500px) {
  main {
    margin-top: 84px;
  }
  .home main {
    margin-top: 84px;
  }
}
@media only screen and (max-width: 767px) {
  main {
    margin-top: 62px;
  }
  .home main {
    margin-top: 62px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  main {
    margin-top: 55px;
  }
  .home main {
    margin-top: 55px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  main {
    margin-top: 80px;
  }
  .home main {
    margin-top: 80px;
  }
}

.submit-btn input,
.submit-btn button {
  margin-top: 5%;
  max-width: 400px;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #f16300;
  border: solid 1px #f16300;
  color: #fff;
  padding: 1em 4em 0.8em;
  border-radius: 5px;
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
  box-shadow: 5px 5px 15px -13px rgba(0, 0, 0, 0.93);
  height: 70px;
  line-height: 1;
  display: inline-block;
  transition: 0.3s;
  font-weight: bold;
  cursor: pointer;
}
.confirm .submit-btn input,
.confirm .submit-btn button {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
}
.submit-btn input:hover,
.submit-btn button:hover {
  background: #333333;
  border: solid 1px #333333;
}
@media only screen and (max-width: 767px) {
  .submit-btn input,
  .submit-btn button {
    margin-top: 6%;
    font-size: 12px;
    letter-spacing: 0.06em;
    padding: 0 4em;
    height: 47px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .submit-btn input,
  .submit-btn button {
    margin-top: 3%;
    padding: 0 4em;
    height: 50px;
  }
}

.submit-back {
  margin-right: 7px;
  margin-top: 2%;
}
.submit-back input,
.submit-back button {
  height: 60px;
  color: #fff;
  background: #606060;
  border: solid 1px #606060;
}
.submit-back input:hover,
.submit-back button:hover {
  background: #f16300;
  border: solid 1px #f16300;
}

.submit-next {
  margin-left: 7px;
  margin-top: 2%;
}
.submit-next input,
.submit-next button {
  height: 60px;
  color: #fff;
  background: #f16300;
  border: solid 1px #f16300;
}
.submit-next input:hover,
.submit-next button:hover {
  background: #333333;
  border: solid 1px #333333;
}

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

.textSadow2 {
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.4);
}

.textSadow {
  text-shadow: 3px 3px 3px #fff, -3px -3px 3px #fff, -3px 3px 3px #fff, 3px -3px 3px #fff, 3px 0px 3px #fff, -3px 0px 3px #fff, 0px 3px 3px #fff, 0px -3px 3px #fff;
}
@media only screen and (max-width: 767px) {
  .textSadow {
    text-shadow: 2px 2px 2px #fff, -2px -2px 2px #fff, -2px 2px 2px #fff, 2px -2px 2px #fff, 2px 0px 2px #fff, -2px 0px 2px #fff, 0px 2px 2px #fff, 0px -2px 2px #fff;
  }
}

.commonTitleBlock {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  padding-top: 2.5em;
}
.topContactCard .commonTitleBlock::after {
  background-image: url(.././img/contact_letter.svg);
  top: -13px;
  width: 197px;
  height: 92px;
}
.topWhenUnit .commonTitleBlock::after {
  background-image: url(.././img/when_letter.svg);
  width: 213px;
  height: 116px;
}
.topWorkCard .commonTitleBlock::after {
  background-image: url(.././img/works_letter.svg);
  width: 188px;
  height: 100px;
}
.topFlowCard .commonTitleBlock::after {
  background-image: url(.././img/flow_letter.svg);
  width: 133px;
  height: 70px;
}
.commonTitleBlock::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 190px;
  height: 112px;
  transform: translateY(-50%);
  background-image: url(.././img/whats_letter.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media only screen and (max-width: 767px) {
  .topContactCard .commonTitleBlock::after {
    top: 12px;
    width: 130px;
    height: 60px;
  }
  .topWhenUnit .commonTitleBlock::after {
    width: 115px;
    height: 63px;
  }
  .topWorkCard .commonTitleBlock::after {
    width: 108px;
    height: 57px;
  }
  .topFlowCard .commonTitleBlock::after {
    width: 86px;
    height: 46px;
  }
  .commonTitleBlock::after {
    top: 15px;
    width: 100px;
    height: 60px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .topContactCard .commonTitleBlock::after {
    top: 12px;
    width: 150px;
    height: 71px;
  }
  .topWhenUnit .commonTitleBlock::after {
    width: 163px;
    height: 94px;
  }
  .topWorkCard .commonTitleBlock::after {
    width: 140px;
    height: 87px;
  }
  .topFlowCard .commonTitleBlock::after {
    width: 110px;
    height: 61px;
  }
  .commonTitleBlock::after {
    top: 15px;
    width: 150px;
    height: 110px;
  }
}

.commonTitle.__orange span::after, .commonTitle.__orange span::before {
  background-image: url(.././img/line_3.svg);
}
.commonTitle span {
  display: block;
  font-size: clamp(2.4rem, 1.9145631068rem + 1.2944983819vw, 4.4rem);
  letter-spacing: 0.06em;
  padding: 0 2em;
  font-style: italic;
  line-height: 1.3;
  font-weight: 900;
  position: relative;
}
.commonTitle span::after, .commonTitle span::before {
  content: "";
  display: block;
  position: absolute;
  top: 73%;
  width: 46px;
  height: 82px;
  transform: translateY(-50%);
  background-image: url(.././img/line_2.svg);
  background-repeat: no-repeat;
  background-size: 46px;
}
.commonTitle span::before {
  left: 0;
}
.commonTitle span::after {
  right: 0;
}
@media only screen and (max-width: 767px) {
  .commonTitle span {
    padding: 0 1.8em;
  }
  .commonTitle span::after, .commonTitle span::before {
    width: 24px;
    height: 43px;
    background-size: 24px;
  }
  .__sp .commonTitle span::after, .__sp .commonTitle span::before {
    top: 56%;
  }
}

.commonBtn {
  font-size: clamp(1.3rem, 1.227184466rem + 0.1941747573vw, 1.6rem);
  margin-inline: auto;
  font-weight: 500;
  text-align: center;
  display: block;
  letter-spacing: 0.2em;
  line-height: 1;
  color: #fff;
  width: 184px;
  background-color: #f16300;
  box-shadow: 5px 5px 15px -13px rgba(0, 0, 0, 0.93);
  padding: 1em 0.5em;
  border-radius: 5px;
  line-height: 1;
  transition: 0.3s;
  font-weight: 500;
}
.commonBtn:hover {
  background-color: #333333;
  color: #fff;
}

.commonMidashi_1 {
  font-size: clamp(1.8rem, 1.5087378641rem + 0.7766990291vw, 3rem);
  padding: 0.6em 0 0.6em 1em;
  font-weight: 500;
  display: block;
  color: #fff;
  position: relative;
}
.commonMidashi_1::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  background-image: url(.././img/title.webp);
  border-radius: 10px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.commonText {
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
  font-weight: 500;
  line-height: 2;
}
.commonText span {
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
  font-weight: 500;
}

.textComent {
  text-indent: 1em;
  margin-left: 1em;
  font-size: clamp(1.3rem, 1.2757281553rem + 0.0647249191vw, 1.4rem);
  line-height: 1.4;
}

.commonComent {
  line-height: 1.3;
  letter-spacing: 0.06em;
  font-size: clamp(1.2rem, 1.1757281553rem + 0.0647249191vw, 1.3rem);
}
.commonComent.__top {
  margin-top: 5px;
}

.textLink {
  transition: 0.3s;
}
.textLink:hover {
  opacity: 0.7;
}

.alink2 {
  color: #036ea9;
  font-weight: 500;
  transition: 0.3s;
}
.alink2:hover {
  opacity: 0.7;
}

.alink {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.alink:hover {
  color: #cccdcd;
  text-decoration-color: unset;
}

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

.comment {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  line-height: 1.6;
  text-indent: -1.2em;
  padding-left: 1.4em;
}
.comment.__large {
  font-size: clamp(1.5rem, 1.4514563107rem + 0.1294498382vw, 1.7rem);
  line-height: 1.6;
  text-indent: -0.7em;
  padding-left: 0.9em;
}
.comment.__small {
  font-size: clamp(1.3rem, 1.2757281553rem + 0.0647249191vw, 1.4rem);
  line-height: 1.2;
  text-indent: -0.7em;
  padding-left: 0.9em;
}

.commonList {
  row-gap: 10px;
  flex-direction: column;
}
.commonList span {
  display: block;
  font-size: clamp(1.4rem, 1.3757281553rem + 0.0647249191vw, 1.5rem);
  line-height: 1.4;
  font-weight: 500;
  position: relative;
  padding-left: 0.8em;
}
.commonList span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: #f16300;
  border-radius: 50%;
}

.commontitle_line span {
  padding: 4px 7px;
  background: linear-gradient(transparent 6%, rgb(251, 255, 111) 0%);
}

.center_position {
  position: absolute;
  width: 95%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.videoBlock {
  width: 70%;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .videoBlock {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .videoBlock {
    width: 80%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .videoBlock {
    width: 90%;
  }
}

.videoWrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.videoWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*==================================================
 * ヘッダー
 *================================================*/
.cf7msm-ro {
  text-transform: none !important;
}

header {
  position: fixed;
  top: 42px; /* margin-top の代わりに top を使う */
  left: 0;
  z-index: 998;
  width: 100%;
}
.change-color header {
  top: 0; /* margin-top の代わりに top を使う */
  padding: 0;
  background-color: rgba(255, 255, 255, 0.9);
}
.open header {
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  header {
    top: 36px;
    padding: 0 0 5em;
    background-color: #fff;
  }
  .change-color header {
    padding: 2.2em 1em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  header {
    top: 64px;
    padding: 0 0 4em;
    background-color: #fff;
  }
  .open header {
    left: auto;
    right: 0;
    width: 442px;
  }
  .change-color header {
    padding: 0 0 4em;
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  header {
    top: 69px;
  }
}

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

.headerCopy {
  width: 100%;
  padding: 0.5em;
  background-color: #231815;
}
.headerCopy span {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  font-weight: 500;
  color: #fff;
  line-height: 1;
}

.wrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.loop_text {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  overflow: hidden;
  padding-left: 20px;
  color: #fff;
}

.loop_text:nth-child(odd) {
  animation: loop 50s -25s linear infinite;
}

.loop_text:nth-child(even) {
  animation: loop2 50s linear infinite;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.headerlogoBlock {
  position: absolute;
  top: 0;
  width: 176px;
}
.home .headerlogoBlock {
  width: 240px;
}
.change-color .headerlogoBlock {
  top: 0;
  width: 160px;
}
@media only screen and (max-width: 1500px) {
  .home .headerlogoBlock {
    width: 160px;
  }
}
@media only screen and (max-width: 767px) {
  .headerlogoBlock {
    top: 13px;
    left: 14px;
    width: 275px;
  }
  .home .headerlogoBlock {
    width: 275px;
  }
  .change-color .headerlogoBlock {
    top: 9px;
    left: 14px;
    width: 243px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerlogoBlock {
    left: 12px;
    top: 11px;
    width: 240px;
  }
  .home .headerlogoBlock {
    width: 240px;
  }
  .change-color .headerlogoBlock {
    top: 15px;
    left: 16px;
    width: 218px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerlogoBlock {
    width: 124px;
  }
  .home .headerlogoBlock {
    width: 124px;
  }
  .change-color .headerlogoBlock {
    width: 124px;
  }
}

.change-color .headerTopMenuBlock {
  top: 5px;
}
@media only screen and (max-width: 1430px) {
  .headerTopMenuBlock {
    right: 22px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerTopMenuBlock {
    width: 100%;
    right: 12px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerTopMenuBlock {
    right: 25px;
  }
}

.headerTopMenuWrap {
  -moz-column-gap: 29px;
       column-gap: 29px;
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerTopMenuWrap {
    -moz-column-gap: 0;
         column-gap: 0;
  }
}

.herderTopBtnList > li {
  width: 210px;
  padding: 1.8em 0.5em 2em;
  position: relative;
}
.herderTopBtnList > li:nth-child(1)::before {
  transition: 0.3s;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1036ae;
  z-index: -1;
}
.herderTopBtnList > li:nth-child(1)::after {
  transition: 0.3s;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  width: 87px;
  height: 97px;
  transform: translateY(-50%);
  background-image: url(.././img/file.svg);
  background-repeat: no-repeat;
  background-size: 87px;
  z-index: -1;
}
.herderTopBtnList > li:nth-child(2)::before {
  transition: 0.3s;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #b50d23;
  z-index: -1;
}
.herderTopBtnList > li:nth-child(2)::after {
  transition: 0.3s;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  width: 90px;
  height: 64px;
  transform: translateY(-50%);
  background-image: url(.././img/mail.svg);
  background-repeat: no-repeat;
  background-size: 90px;
  z-index: -1;
}
.herderTopBtnList > li > a {
  display: block;
}
.herderTopBtnList > li:hover::before {
  background-color: #333333;
}
.herderTopBtnList > li:hover:nth-child(1)::after {
  background-image: url(.././img/file_b.svg);
}
.herderTopBtnList > li:hover:nth-child(2)::after {
  background-image: url(.././img/mail_b.svg);
}
.change-color .herderTopBtnList > li {
  width: 167px;
  padding: 1.3em 0.5em 1.6em;
}
.change-color .herderTopBtnList > li:nth-child(1)::after {
  width: 50px;
  height: 52px;
  background-size: 50px;
}
.change-color .herderTopBtnList > li:nth-child(2)::after {
  width: 50px;
  height: 36px;
  background-size: 50px;
}
@media only screen and (max-width: 1500px) {
  .herderTopBtnList > li {
    width: 167px;
    padding: 1.3em 0.5em 1.6em;
  }
  .herderTopBtnList > li:nth-child(1)::after {
    width: 50px;
    height: 52px;
    background-size: 50px;
  }
  .herderTopBtnList > li:nth-child(2)::after {
    width: 50px;
    height: 36px;
    background-size: 50px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .herderTopBtnList > li {
    width: 138px;
    padding: 1.3em 0.5em 1.6em;
  }
  .herderTopBtnList > li:nth-child(1)::after {
    width: 30px;
    height: 34px;
    background-size: 30px;
  }
  .herderTopBtnList > li:nth-child(2)::after {
    width: 30px;
    height: 27px;
    background-size: 30px;
  }
  .change-color .herderTopBtnList > li {
    width: 138px;
    padding: 1.3em 0.5em 1.6em;
  }
  .change-color .herderTopBtnList > li:nth-child(1)::after {
    width: 30px;
    height: 34px;
    background-size: 30px;
  }
  .change-color .herderTopBtnList > li:nth-child(2)::after {
    width: 30px;
    height: 27px;
    background-size: 30px;
  }
}

.topBtnText {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  font-weight: bold;
  line-height: 1;
}
.change-color .topBtnText {
  font-size: clamp(1.4rem, 1.3757281553rem + 0.0647249191vw, 1.5rem);
}
@media only screen and (max-width: 1500px) {
  .topBtnText {
    font-size: clamp(1.4rem, 1.3757281553rem + 0.0647249191vw, 1.5rem);
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topBtnText {
    font-size: 12px;
  }
  .change-color .topBtnText {
    font-size: 12px;
  }
}

.topBtnTitle {
  font-size: clamp(1.8rem, 1.7029126214rem + 0.2588996764vw, 2.2rem);
  font-weight: bold;
  line-height: 1;
}
.change-color .topBtnTitle {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
}
@media only screen and (max-width: 1500px) {
  .topBtnTitle {
    font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topBtnTitle {
    font-size: 15px;
  }
}

.topTelWrap {
  -moz-column-gap: 12px;
       column-gap: 12px;
  margin-right: 37px;
}

.topTel {
  font-size: clamp(2rem, 1.8058252427rem + 0.5177993528vw, 2.8rem);
  line-height: 1;
  font-weight: bold;
}
.topTel span {
  font-size: clamp(1.8rem, 1.7514563107rem + 0.1294498382vw, 2rem);
  line-height: 1;
  font-weight: bold;
}
.change-color .topTel {
  font-size: clamp(1.8rem, 1.7514563107rem + 0.1294498382vw, 2rem);
}
@media only screen and (max-width: 1500px) {
  .topTel {
    font-size: clamp(1.8rem, 1.7514563107rem + 0.1294498382vw, 2rem);
  }
}

.topinfoText {
  font-size: clamp(1.3rem, 1.2757281553rem + 0.0647249191vw, 1.4rem);
  line-height: 1;
  font-weight: 500;
}

.headerTopInfoBlock {
  margin-top: 14px;
}
.change-color .headerTopInfoBlock {
  margin-top: 10px;
}
@media only screen and (max-width: 1500px) {
  .headerTopInfoBlock {
    margin-top: 10px;
  }
}

.headerMenuCard > li {
  transition: 0.3s;
}
.headerMenuCard > li.current > a {
  color: #333333;
}
.headerMenuCard > li > a {
  display: inline-block;
  width: 198px;
  display: block;
  padding: 0.9em 0.5em 3em;
  font-weight: bold;
  transition: 0.3s;
  position: relative;
}
.headerMenuCard > li > a span {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 100%;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
.headerMenuCard > li > a::before {
  content: "";
  position: absolute;
  left: 10%;
  bottom: -2px;
  width: 80%;
  height: 3px;
  background: #333333;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s;
}
.headerMenuCard > li > a:hover::before {
  transform: scaleX(1);
}
.change-color .headerMenuCard > li > a {
  width: 175px;
  padding: 0.5em 0.5em 2em;
}
.change-color .headerMenuCard > li > a span {
  font-size: clamp(1.4rem, 1.3757281553rem + 0.0647249191vw, 1.5rem);
}
.change-color .headerMenuCard > li > a::before {
  bottom: -5px;
}
@media only screen and (max-width: 1500px) {
  .headerMenuCard > li > a {
    width: 175px;
    padding: 0.5em 0.5em 2em;
  }
  .headerMenuCard > li > a span {
    font-size: clamp(1.4rem, 1.3757281553rem + 0.0647249191vw, 1.5rem);
  }
  .headerMenuCard > li > a::before {
    bottom: -5px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerMenuCard > li > a {
    font-size: 14px;
    padding: 0.5em 0.7em;
  }
  .change-color .headerMenuCard > li > a {
    font-size: 13px;
    padding: 0.8em 0.4em;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .headerMenuCard > li > a {
    width: 128px;
    padding: 1.5em 0.5em;
  }
  .headerMenuCard > li > a span {
    font-size: 14px;
  }
  .change-color .headerMenuCard > li > a {
    width: 128px;
    padding: 1.5em 0.5em;
  }
  .change-color .headerMenuCard > li > a span {
    font-size: 14px;
  }
}

.overRayMenuUl {
  margin-bottom: 11%;
}
.overRayMenuUl > li {
  position: relative;
  padding: 1.6rem 0.8rem;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: #231815;
}
.overRayMenuUl > li:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #babbbc;
}
.overRayMenuUl > li a {
  display: block;
  transition: 0.3s;
  position: relative;
  font-weight: 500;
}
.overRayMenuUl > li a::before, .overRayMenuUl > li a::after {
  position: absolute;
  display: block;
  font-family: "Font Awesome 6 Pro";
  font-size: 20px;
  line-height: 1;
  width: 25px;
  height: 25px;
  top: 50%;
  right: -7px;
  transform: translateY(-50%);
  font-weight: 100;
  z-index: 1;
  transition: 0.3s;
  opacity: 1;
}
.overRayMenuUl > li a::before {
  content: "\f105";
  right: -7px;
}
.overRayMenuUl > li a.hasMegaMenuA::before {
  content: "\f107";
  right: -5px;
}
.overRayMenuUl > li a.hasMegaMenuA.on {
  padding-bottom: 5%;
}
.overRayMenuUl > li a.hasMegaMenuA.on::after {
  content: "\f077";
  right: -5px;
}
.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 (min-width: 767px) and (max-width: 959px) {
  .overRayMenuUl > li {
    padding: 1.6rem 1rem;
  }
}

.overRayBlock {
  display: flex;
  width: 442px;
  margin-left: auto;
  overflow-y: scroll;
  position: relative;
  z-index: 9999;
}
@media only screen and (max-width: 767px) {
  .overRayBlock {
    width: 100%;
  }
}

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

.overRayBtn {
  display: block;
  width: 80%;
  margin-inline: auto;
  padding: 1em;
  text-align: center;
  background-color: #e50000;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border-radius: 50px;
}

.overRayTextCard {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
  overflow-y: scroll;
  padding: 0 15px 70px;
  position: relative;
}
.overRayTextCard::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(.././img/back.webp);
  background-repeat: repeat;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}
@media only screen and (max-width: 1366px) {
  .overRayTextCard {
    padding-top: 33px;
  }
}
@media only screen and (max-width: 767px) {
  .overRayTextCard {
    width: 100%;
    padding: 26px 22px 0;
    padding-bottom: 40%;
  }
}

/*==================================================
 * header
 *================================================*/
.topFvImg {
  padding-bottom: clamp(350px, 42%, 806px);
  position: relative;
  z-index: -2;
}
@media only screen and (max-width: 767px) {
  .topFvImg {
    padding-bottom: 130%;
    background-image: url(.././img/topFv_sp.webp) !important;
  }
}

.topFvTextWrap {
  position: absolute;
  top: 17em;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .topFvTextWrap {
    top: 8.7em;
    left: 50%;
    right: unset;
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topFvTextWrap {
    top: 12em;
    right: 42px;
  }
}

.topFvWrap {
  max-width: 886px;
  padding: 0 97px;
  position: absolute;
  top: 51%;
  left: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 1480px) {
  .topFvWrap {
    width: 49%;
    padding: 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .topFvWrap {
    width: 100%;
    padding: 0 15px;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topFvWrap {
    width: 49%;
    top: 50%;
    left: 0;
    padding: 0 15px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topFvWrap {
    width: 49%;
    top: 48%;
    left: 0;
    padding: 0 15px;
  }
}

@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .topFvTitleWrap {
    margin-bottom: 4%;
  }
}

.topAwardBlock {
  width: 65%;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .topAwardBlock {
    width: 79%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topAwardBlock {
    width: 70%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topAwardBlock {
    width: 66%;
  }
}

.topFvTitle {
  font-size: clamp(2.8rem, 2.0961165049rem + 1.8770226537vw, 5.7rem);
  line-height: 1.4;
  font-weight: 600;
}

.toplogoBlock {
  width: 686px;
  background-color: #fff;
  padding: 1.3em;
  border-radius: 5px;
}
@media only screen and (max-width: 767px) {
  .toplogoBlock {
    width: 100%;
    padding: 0.5em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .toplogoBlock {
    width: 87%;
    padding: 0.5em;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .toplogoBlock {
    width: 87%;
    padding: 0.5em;
  }
}

.topFvBtnWrap {
  position: absolute;
  padding: 0 87px;
  right: 0;
  bottom: 11%;
}
@media only screen and (max-width: 1480px) {
  .topFvBtnWrap {
    padding: 0 15px;
    bottom: 7%;
  }
}
@media only screen and (max-width: 767px) {
  .topFvBtnWrap {
    left: 50%;
    bottom: 0;
    width: 100%;
    transform: translateX(-50%);
    padding: 0 15px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .topFvBtnWrap {
    padding: 0 15px;
    bottom: 7%;
  }
}

.topFvBtn {
  display: block;
  font-size: clamp(2.8rem, 2.5815533981rem + 0.5825242718vw, 3.7rem);
  padding: 0.5em 3.6em 0.7em 1em;
  border-radius: 50px;
  background: linear-gradient(to right, #af0000 0%, #e50000 100%);
  box-shadow: inset 0 -8px 8px -4px rgba(0, 0, 0, 0.3);
  line-height: 1;
  font-weight: bold;
  transition: 0.3s;
}
.topFvBtn::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(to right, #480000 0%, #e50000 100%);
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.3s;
}
.topFvBtn sub {
  color: #ffe600;
  font-weight: bold;
  line-height: 1;
}
.topFvBtn:hover {
  color: #fff;
  background: #232323;
}
.topFvBtn:hover::after {
  top: 7px;
}
@media only screen and (max-width: 767px) {
  .topFvBtn {
    padding: 0.5em 1em 0.7em 1em;
  }
}

.topbtnImgWrap {
  position: absolute;
  width: 279px;
  top: -79px;
  right: -16px;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .topbtnImgWrap {
    width: 79%;
    top: unset;
    right: -13px;
    bottom: 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topbtnImgWrap {
    width: 64%;
    top: -73px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .topbtnImgWrap {
    width: 64%;
    top: -77px;
  }
}

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

/*==================================================
 * フッター
 *================================================*/
footer {
  padding: 3.7em 0 0;
}
@media only screen and (max-width: 767px) {
  footer {
    padding: 2em 0 0;
  }
}

.footerlogoImg {
  width: 45%;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .footerlogoImg {
    width: 90%;
    margin-inline: auto;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .footerlogoImg {
    width: 50%;
  }
}

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

.footerInfoText {
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  letter-spacing: 0.03em;
  line-height: 1.6;
  font-weight: 500;
}

.footerMenueList {
  -moz-column-gap: 50px;
       column-gap: 50px;
  width: 80%;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .footerMenueList {
    width: 85%;
    row-gap: 20px;
    justify-content: flex-start;
    -moz-column-gap: 50px;
         column-gap: 50px;
    flex-direction: column;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .footerMenueList {
    width: 100%;
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}

.footerMenue {
  -moz-column-gap: 50px;
       column-gap: 50px;
}
.footerMenue > li > a {
  display: block;
  transition: 0.3s;
}
.footerMenue > li > a span {
  display: block;
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  font-weight: 600;
  line-height: 1.4;
  padding-left: 1.1em;
  position: relative;
}
.footerMenue > li > a span::after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 12px;
  height: 12px;
  background-image: url(.././img/arrow_left.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.footerMenue > li:hover {
  color: #f16300;
}
@media only screen and (max-width: 767px) {
  .footerMenue {
    row-gap: 11px;
    -moz-column-gap: 27px;
         column-gap: 27px;
    justify-content: flex-start;
  }
  .__second .footerMenue {
    -moz-column-gap: 53px;
         column-gap: 53px;
  }
  .footerMenue > li > a span {
    font-size: 16px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .footerMenue {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}

.footerCopy {
  padding: 3.7em 0 10.2em;
}
@media only screen and (max-width: 767px) {
  .footerCopy {
    padding: 2em 0 7.5em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .footerCopy {
    padding: 2em 0 8.5em;
  }
}

.copylight {
  font-size: clamp(1rem, 0.9514563107rem + 0.1294498382vw, 1.2rem);
  letter-spacing: 0.01em;
  font-weight: 500;
}

.footerConBlock {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  background-color: #333333;
  padding: 0.8em 0;
  opacity: 0;
  transition: 0.3s;
}
.footerConBlock.visible {
  opacity: 1;
}

.spFooterLink {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 1000;
  opacity: 0;
  transition: 0.3s;
  background-color: #333333;
  padding: 1em;
  -moz-column-gap: 9px;
       column-gap: 9px;
}
.open .spFooterLink {
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}
.spFooterLink > li {
  width: calc((100% - 18px) / 3);
  position: relative;
}
.spFooterLink > li::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 8px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background-image: url(.././img/tel.svg);
  background-repeat: no-repeat;
  background-size: 20px;
}
.spFooterLink > li:nth-child(2) > a {
  background-color: #1036ae;
}
.spFooterLink > li:nth-child(2)::after {
  left: 12px;
  width: 16px;
  height: 20px;
  background-image: url(.././img/file_w.svg);
  background-size: 16px;
}
.spFooterLink > li:nth-child(3) > a {
  background-color: #b50d23;
}
.spFooterLink > li:nth-child(3)::after {
  left: 15px;
  width: 19px;
  height: 15px;
  background-image: url(.././img/mail_w.svg);
  background-size: 19px;
}
.spFooterLink > li > a {
  display: block;
  text-align: center;
  padding: 1em 0.5em 1em 2em;
  background-color: #fff;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  transition: 0.3s;
}
.spFooterLink > li > a:hover {
  opacity: 0.7;
}
.spFooterLink.visible {
  opacity: 1;
}

.footerConList {
  -moz-column-gap: 19px;
       column-gap: 19px;
  margin-inline: auto;
}
@media print, screen and (min-width: 768px) {
  .footerConList > li:nth-child(1) {
    pointer-events: none;
  }
}
.footerConList > li {
  width: 340px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.footerConList > li:nth-child(1) > a {
  background-color: #fff;
  position: relative;
}
.footerConList > li:nth-child(1) > a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 30px;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%);
  background-image: url(.././img/tel.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.footerConList > li:nth-child(2) > a {
  background-color: #1036ae;
}
.footerConList > li:nth-child(3) > a {
  background-color: #b50d23;
}
.footerConList > li > a {
  border-radius: 8px;
  flex-grow: 1;
  padding: 1em 0.5em 0.8em;
  display: block;
  transition: 0.3s;
}
.footerConList > li > a:hover {
  opacity: 0.8;
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .footerConList {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .footerConList > li {
    width: calc((100% - 20px) / 3);
  }
  .footerConList > li:nth-child(1) > a::after {
    width: 20px;
    height: 20px;
  }
}

.footerTelBlock {
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 4em;
  transform: translateY(-50%);
}

.footerBtnImg {
  width: 22px;
  margin-right: 10px;
}
.footerBtnImg.__mail {
  width: 27px;
  margin-top: 4px;
}

.footerTel {
  font-size: clamp(1.8rem, 1.6058252427rem + 0.5177993528vw, 2.6rem);
  line-height: 1;
  font-weight: bold;
}

.footerInfo {
  font-size: clamp(1.1rem, 1.0757281553rem + 0.0647249191vw, 1.2rem);
  line-height: 1.4;
  font-weight: 500;
}

.footerBtnText {
  font-size: clamp(1.3rem, 1.2514563107rem + 0.1294498382vw, 1.5rem);
  line-height: 1;
  font-weight: 500;
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .footerBtnText {
    font-size: 12px;
  }
}

.footerBtnTitle {
  font-size: clamp(1.8rem, 1.7029126214rem + 0.2588996764vw, 2.2rem);
  line-height: 1;
  font-weight: bold;
}

/*==================================================
 * 下層section
 *================================================*/
/*トップページ
*================================================*/
@media only screen and (max-width: 767px) {
  .commonFvImg {
    background-image: url(.././img/commonFv_sp.webp) !important;
    position: relative;
  }
}

.commonFvWrap {
  position: relative;
  padding: 6.2em 0;
  z-index: 9;
}
@media only screen and (max-width: 767px) {
  .commonFvWrap {
    padding: 2.5em 0 12.2em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .commonFvWrap {
    padding: 2.5em 1em;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .commonFvWrap {
    padding: 3.2em 0;
  }
}

.commonFvTitleJp {
  font-size: clamp(2.8rem, 2.5087378641rem + 0.7766990291vw, 4rem);
  line-height: 1.6;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .commonFvTitleJp {
    line-height: 1.6;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
  }
}

.commonFvTitleEn {
  font-size: clamp(1.6rem, 1.5029126214rem + 0.2588996764vw, 2rem);
  line-height: 0.6;
  font-weight: 500;
}

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

.breadcrumbs {
  font-size: 12px;
  font-weight: 500;
}
.breadcrumbs .current-item {
  color: #f16300;
}
.breadcrumbs a {
  transition: 0.3s;
}
.breadcrumbs a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .breadcrumbs {
    font-size: 13px;
  }
}

/*==================================================
 * 工事金額にご不満ではないですか？
 *================================================*/
@media only screen and (max-width: 767px) {
  .secTopCard {
    margin-top: -5%;
  }
}

.contactImg {
  padding-bottom: 46%;
}

.topBlock .topConCard {
  margin-top: -8%;
}

.topConInner {
  padding: 4em 0 6em;
  position: relative;
  z-index: 2;
}
.topBlock .topConInner {
  padding: 10em 0 5em;
}
@media only screen and (max-width: 767px) {
  .topConInner {
    padding: 2em 0 3em;
  }
  .topBlock .topConInner {
    padding: 3em 0 3em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topConInner {
    padding: 2em 0 3em;
  }
  .topBlock .topConInner {
    padding: 4.6em 0 2em;
  }
}

.secTopBox {
  max-width: 1252px;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .secTopBox {
    width: calc(100% - 30px);
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .secTopBox {
    width: 100%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .secTopBox {
    width: 90%;
  }
}

.secTopTextWrap {
  position: absolute;
  width: 100%;
  padding: 0 1em;
  top: 37%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .secTopTextWrap {
    top: 43%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .secTopTextWrap {
    padding: 2em 1em;
  }
}

.secTopText {
  font-size: clamp(1.9rem, 1.6330097087rem + 0.71197411vw, 3rem);
  letter-spacing: 0.06em;
  line-height: 1.2;
  font-weight: bold;
  font-style: italic;
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .secTopText {
    font-size: 18px;
  }
}

.secTopTitle {
  font-size: clamp(2.2rem, 1.9087378641rem + 0.7766990291vw, 3.4rem);
  letter-spacing: 0.06em;
  line-height: 1;
  font-weight: bold;
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  .secTopTitle {
    line-height: 1.4;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .secTopTitle {
    font-size: 21px;
  }
}

/*==================================================
 * contact
 *================================================*/
.topBlock .topConTextWrap dt {
  font-size: clamp(2.8rem, 2.3873786408rem + 1.1003236246vw, 4.5rem);
}
.topBlock .topConTextWrap dt::after {
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 577px;
  background-size: 577px;
}
.topBlock .topConTextWrap dd {
  font-size: clamp(2rem, 1.854368932rem + 0.3883495146vw, 2.6rem);
  line-height: 1;
  font-weight: bold;
}
.topConTextWrap dd {
  font-size: clamp(2rem, 1.7087378641rem + 0.7766990291vw, 3.2rem);
  line-height: 1;
  font-weight: bold;
}
.topConTextWrap dt {
  font-size: clamp(2.8rem, 2.1446601942rem + 1.7475728155vw, 5.5rem);
  line-height: 1;
  font-style: italic;
  font-weight: bold;
  margin: 0 20px;
  position: relative;
}
.topConTextWrap dt::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 678px;
  height: 27px;
  background-image: url(.././img/line_1.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media only screen and (max-width: 767px) {
  .topConTextWrap {
    flex-direction: column;
  }
  .topPointCard .topConTextWrap dt {
    font-size: 27px;
  }
  .topPointCard .topConTextWrap dt::after {
    bottom: -29px;
  }
  .topBlock .topConTextWrap dd {
    line-height: 2.2;
  }
  .topBlock .topConTextWrap dt {
    margin: 0;
    margin-bottom: 14px;
  }
  .topBlock .topConTextWrap dt::after {
    bottom: -26px;
    width: 350px;
    height: 24px;
    background-size: 350px;
  }
  .topConTextWrap dd {
    line-height: 2.2;
  }
  .topConTextWrap dt {
    margin: 0;
    margin-bottom: 14px;
  }
  .topConTextWrap dt::after {
    bottom: -26px;
    width: 350px;
    height: 24px;
    background-size: 350px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .topConTextWrap {
    margin-bottom: 7%;
  }
  .topPointCard .topConTextWrap {
    margin-bottom: 3%;
  }
  .topBlock .topConTextWrap dd {
    font-size: 18px;
  }
  .topBlock .topConTextWrap dt {
    font-size: 27px;
  }
  .topBlock .topConTextWrap dt::after {
    bottom: -25px;
    width: 349px;
  }
  .topConTextWrap dd {
    font-size: 18px;
  }
  .topConTextWrap dt {
    font-size: 27px;
  }
  .topConTextWrap dt::after {
    bottom: -25px;
    width: 349px;
  }
}

.conList {
  -moz-column-gap: 27px;
       column-gap: 27px;
  position: relative;
  z-index: 2;
}
.overRayBox .conList {
  row-gap: 25px;
}
.overRayBox .conList > li > a {
  padding: 5.6em 2em;
  width: 330px;
}
.overRayBox .conList > li:nth-child(2) > a::after {
  width: 116px;
  height: 128px;
  background-size: 116px;
}
.overRayBox .conList > li:nth-child(3) > a::after {
  width: 113px;
  height: 80px;
  background-size: 113px;
}
.overRayBox .conList > li:nth-child(2)::after, .overRayBox .conList > li:nth-child(3)::after {
  width: 23px;
  height: 13px;
  background-size: 23px;
}
.conList > li {
  display: flex;
  flex-direction: column;
  position: relative;
}
.conList > li:nth-child(1) > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: solid 3px #333333;
  border-radius: 10px;
  z-index: -1;
}
.conList > li:nth-child(2), .conList > li:nth-child(3) {
  position: relative;
}
.conList > li:nth-child(2)::after, .conList > li:nth-child(3)::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 21px;
  right: 23px;
  width: 26px;
  height: 14px;
  background-image: url(.././img/arrow.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  transition: 0.3s;
}
.conList > li:nth-child(2) > a::before, .conList > li:nth-child(3) > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1036ae;
  border-radius: 10px;
  z-index: -1;
}
.conList > li:nth-child(2) > a::after, .conList > li:nth-child(3) > a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 20px;
  width: 118px;
  height: 130px;
  transform: translateY(-50%);
  background-image: url(.././img/file.svg);
  background-repeat: no-repeat;
  background-size: 118px;
  z-index: -1;
}
.conList > li:nth-child(3) > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #b50d23;
  border-radius: 10px;
  z-index: -1;
}
.conList > li:nth-child(3) > a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 20px;
  width: 127px;
  height: 90px;
  transform: translateY(-50%);
  background-image: url(.././img/mail.svg);
  background-repeat: no-repeat;
  background-size: 127px;
  z-index: -1;
}
.conList > li > a {
  flex-grow: 1;
  display: block;
  position: relative;
  padding: 6.4em 2em;
  width: 370px;
  border-radius: 10px;
  transition: 0.3s;
}
.conList > li > a:hover {
  opacity: 0.9;
}
.conList > li:hover:nth-child(2)::after, .conList > li:hover:nth-child(3)::after {
  right: 15px;
}
@media only screen and (max-width: 767px) {
  .conList {
    row-gap: 25px;
  }
  .conList > li > a {
    width: 330px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .conList {
    -moz-column-gap: 10px;
         column-gap: 10px;
    width: 100%;
    padding: 0 15px;
  }
  .overRayBox .conList > li {
    width: 100%;
  }
  .overRayBox .conList > li > a {
    margin-inline: auto;
  }
  .overRayBox .conList > li:nth-child(2)::after, .overRayBox .conList > li:nth-child(3)::after {
    right: 40px;
  }
  .conList > li {
    width: calc((100% - 20px) / 3);
  }
  .conList > li > a {
    padding: 4.9em 2em;
    width: 100%;
  }
  .conList > li:nth-child(2)::after, .conList > li:nth-child(3)::after {
    height: 12px;
    width: 20px;
  }
}

.telTitle {
  font-size: clamp(1.7rem, 1.627184466rem + 0.1941747573vw, 2rem);
  font-weight: bold;
  line-height: 1;
}
.overRayBox .telTitle {
  font-size: 17px;
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .telTitle {
    font-size: 16px;
  }
}

.telImg {
  width: 34px;
  margin-right: 15px;
}
.overRayBox .telImg {
  width: 30px;
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .telImg {
    width: 20px;
    margin-right: 5px;
  }
}

@media print, screen and (min-width: 768px) {
  .telNb {
    pointer-events: none;
  }
}

.telNbText {
  font-size: clamp(3rem, 2.9029126214rem + 0.2588996764vw, 3.4rem);
  font-weight: bold;
  line-height: 1;
}
.overRayBox .telNbText {
  font-size: 30px;
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .telNbText {
    font-size: 25px;
  }
}

.telText {
  font-size: clamp(1.4rem, 1.4rem + 0vw, 1.4rem);
  font-weight: 500;
  line-height: 1.4;
}
.overRayBox .telText {
  font-size: 14px;
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .telText {
    font-size: 12px;
  }
}

.btnTextWrap {
  position: absolute;
  padding: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.btnText {
  font-size: clamp(1.9rem, 1.827184466rem + 0.1941747573vw, 2.2rem);
  font-weight: bold;
  line-height: 1;
}
.overRayBox .btnText {
  font-size: 19px;
}

.btnTitle {
  font-size: clamp(2.6rem, 2.5514563107rem + 0.1294498382vw, 2.8rem);
  font-weight: bold;
  line-height: 1;
}
.overRayBox .btnTitle {
  font-size: 26px;
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .btnTitle {
    font-size: 20px;
  }
}

/*==================================================
 * contact form
 *================================================*/
.contactBox {
  background-color: #e0f5ff;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 1.6em;
}
.contactBox span {
  font-size: clamp(1.6rem, 1.454368932rem + 0.3883495146vw, 2.2rem);
  line-height: 1.4;
  color: #171c72;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .contactBox {
    padding: 1em 1.3em;
  }
}

.policy {
  margin: 32px auto 30px;
  width: 100%;
  overflow: auto;
  padding: 20px 20px;
  box-sizing: border-box;
  border: solid 1px #cccccc;
  height: 300px;
  letter-spacing: 0.16em;
  background: #f8f8f8;
}
.policy p {
  font-size: clamp(1.3rem, 1.2757281553rem + 0.0647249191vw, 1.4rem);
  font-weight: 500;
  line-height: 1.6;
}
.policy .p-title {
  font-size: clamp(1.8rem, 1.727184466rem + 0.1941747573vw, 2.1rem);
  text-align: center;
  font-weight: 600;
  margin-bottom: 3%;
}
.policy h4 {
  margin: 1.4em 0 0.6em;
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  line-height: 1.2;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .policy {
    height: 250px;
  }
}

.commonNblist {
  padding-left: 1.7em;
}
.commonNblist > li {
  list-style-type: decimal;
}

/*==================================================
 * 分電盤劣化診断とは？
 *================================================*/
.topWhatInner {
  padding: 6em 0 11em;
}
@media only screen and (max-width: 767px) {
  .topWhatInner {
    padding: 2.2em 0 2em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .topWhatInner {
    padding: 4.2em 0 3em;
  }
}

.whats_backImg {
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .whats_backImg {
    background-image: url(.././img/trouble_back_sp.webp) !important;
  }
}

.commonTitleImg {
  position: absolute;
  width: 190px;
  top: 0;
  right: 0;
}

.commonSubTitle span {
  display: block;
  font-size: clamp(2rem, 1.6116504854rem + 1.0355987055vw, 3.6rem);
  letter-spacing: 0.06em;
  color: #fff;
  line-height: 1.5;
  font-weight: 900;
  padding-left: 1.2em;
  position: relative;
}
.commonSubTitle span::after {
  content: "";
  display: block;
  position: absolute;
  width: 9px;
  height: 100%;
  background-color: #ffff1d;
  left: 0;
  top: 50%;
  border-radius: 10px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .commonSubTitle span {
    padding-left: 0.7em;
  }
  .commonSubTitle span::after {
    width: 5px;
  }
}

.topWhatWrap {
  padding: 0 2.5em;
}
@media only screen and (max-width: 767px) {
  .topWhatWrap {
    padding: 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topWhatWrap {
    display: block;
  }
}

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

.topWhatInfoTextWrap {
  padding-left: 2.3em;
}
@media only screen and (max-width: 767px) {
  .topWhatInfoTextWrap {
    padding-left: 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topWhatInfoTextWrap {
    margin-bottom: 5%;
  }
}

.topWhatImgBlock {
  width: 43%;
}
@media only screen and (max-width: 767px) {
  .topWhatImgBlock {
    margin-top: -5%;
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topWhatImgBlock {
    margin-top: -10%;
    width: 70%;
    margin-inline: auto;
  }
}

.topWhatImg {
  padding-bottom: 71%;
  border-radius: 10px;
}

.yearBoxWrap {
  margin-right: 45px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 959px) {
  .yearBoxWrap {
    justify-content: center;
    margin-right: 0;
  }
}

.yearBox {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 0;
  background-color: #fff;
  padding: 0.6em 2.4em;
  position: relative;
}
.yearBox::after {
  content: "";
  display: block;
  position: absolute;
  left: 10px;
  top: 10px;
  width: 100%;
  height: 100%;
  background-color: #860600;
  z-index: -1;
}
.yearBox dd {
  font-size: clamp(2.5rem, 2.427184466rem + 0.1941747573vw, 2.8rem);
  line-height: 1.2;
  font-weight: bold;
}
.yearBox dt {
  font-size: clamp(6.5rem, 6.3300970874rem + 0.4530744337vw, 7.2rem);
  margin-left: 10px;
  line-height: 1.2;
  color: #b50d23;
  font-weight: bold;
}
.yearBox dt span {
  font-size: clamp(2rem, 1.8058252427rem + 0.5177993528vw, 2.8rem);
  margin-left: 5px;
  line-height: 1.2;
  color: #333333;
  font-weight: bold;
}

/*==================================================
 * 皆様、こんなお悩みございませんか？
 *================================================*/
.topTroubleCard {
  margin-top: 3em;
}
@media only screen and (max-width: 767px) {
  .topTroubleCard {
    margin-top: 0;
  }
}

.topTroubleInner {
  padding: 4em 0;
}
@media only screen and (max-width: 767px) {
  .topTroubleInner {
    padding: 3em 0 2em;
  }
}

.checkBoxImg {
  position: relative;
}
.checkBoxImg::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 25px;
  width: 48px;
  height: 48px;
  transform: translateY(-50%);
  background-image: url(.././img/check2.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media only screen and (max-width: 959px) {
  .checkBoxImg::after {
    left: 20px;
    width: 30px;
    height: 30px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .checkBoxImg::after {
    left: 23px;
    width: 30px;
    height: 30px;
  }
}

.topWhenList {
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 30px;
  max-width: 1160px;
  margin-inline: auto;
}
.topWhenList > li {
  width: calc((100% - 30px) / 2);
}
@media only screen and (max-width: 767px) {
  .topWhenList {
    row-gap: 15px;
  }
  .topWhenList > li {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .topWhenList {
    row-gap: 10px;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .topWhenList > li {
    width: calc((100% - 10px) / 2);
  }
}

@media only screen and (max-width: 767px) {
  .checkImg {
    width: 96%;
  }
}

.topWhenTitleWarp {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.topWhenTitle {
  padding: 0 0.5em 0 3.5em;
  letter-spacing: 0.06em;
  font-size: clamp(1.6rem, 1.3087378641rem + 0.7766990291vw, 2.8rem);
  color: #fff;
  line-height: 1.2;
  font-weight: bold;
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .topWhenTitle {
    padding-left: 3.1em;
  }
}

.topTroubleTitle {
  font-size: clamp(2rem, 1.5145631068rem + 1.2944983819vw, 4rem);
  letter-spacing: 0.1em;
  font-style: italic;
  color: #fff;
  line-height: 1.2;
  font-weight: 900;
  position: relative;
  padding-bottom: 1em;
}
.topTroubleTitle::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 683px;
  height: 25px;
  transform: translateX(-50%);
  background-image: url(.././img/text_line.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.topTroubleTitle span {
  font-size: clamp(2rem, 1.5145631068rem + 1.2944983819vw, 4rem);
  font-style: italic;
  color: #fff;
  line-height: 1.2;
  font-weight: 900;
  position: relative;
}
.topTroubleTitle span::after {
  content: "";
  display: block;
  position: absolute;
  top: -6px;
  left: 50%;
  width: 9px;
  height: 9px;
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: #ffe200;
}
@media only screen and (max-width: 767px) {
  .topTroubleTitle span::after {
    top: -6px;
    width: 6px;
    height: 6px;
  }
  .topTroubleTitle::after {
    bottom: -15px;
    width: 351px;
    height: 25px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .topTroubleTitle {
    margin-bottom: 5%;
  }
  .topTroubleTitle span::after {
    top: -6px;
    width: 6px;
    height: 6px;
  }
  .topTroubleTitle::after {
    bottom: -15px;
    width: 438px;
    height: 25px;
  }
}

.topTroubleBlock {
  -moz-column-gap: 111px;
       column-gap: 111px;
}
@media only screen and (max-width: 767px) {
  .topTroubleBlock {
    row-gap: 26px;
    justify-content: flex-start;
    margin-bottom: 10%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topTroubleBlock {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .topTroubleBlock > li {
    width: calc((100% - 10px) / 2);
  }
}

.topTroubleList {
  flex-direction: column;
  row-gap: 37px;
}
.topTroubleList > li span {
  padding-left: 1.8em;
  font-size: clamp(1.9rem, 1.6330097087rem + 0.71197411vw, 3rem);
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: #fff;
  font-weight: bold;
  display: block;
  position: relative;
}
.topTroubleList > li span::after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 36px;
  height: 36px;
  background-image: url(.././img/qa.svg);
  background-repeat: no-repeat;
  background-size: 36px;
}
@media only screen and (max-width: 959px) {
  .topTroubleList {
    row-gap: 26px;
  }
  .topTroubleList > li span {
    line-height: 1.5;
  }
  .topTroubleList > li span::after {
    width: 24px;
    height: 24px;
    background-size: 24px;
  }
}

.topTroubleText {
  font-size: clamp(2.4rem, 2.1087378641rem + 0.7766990291vw, 3.6rem);
  letter-spacing: 0.1em;
  line-height: 1.4;
  font-weight: bold;
}

.topPointCard {
  position: relative;
}
.topPointCard::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #000000;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 190px;
  height: 190px;
  clip-path: polygon(50% 32%, 0 0, 100% 0);
}
@media only screen and (max-width: 767px) {
  .topPointCard::after {
    width: 140px;
    height: 140px;
  }
}

/*==================================================
 * 分電盤の劣化診断は、すべておまかせください！
 *================================================*/
.topPointInner {
  padding: 7em 0 8em;
}
@media only screen and (max-width: 767px) {
  .topPointInner {
    padding: 4.5em 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .topPointInner {
    padding: 5em 0 3em;
  }
}

.topCopyText {
  font-size: clamp(2rem, 1.6116504854rem + 1.0355987055vw, 3.6rem);
  font-weight: bold;
  color: #231815;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.topPointList {
  -moz-column-gap: 52px;
       column-gap: 52px;
  row-gap: 36px;
  padding: 0 2em;
  counter-reset: number;
}
.topPointList > li {
  counter-increment: number 1;
  width: calc((100% - 52px) / 2);
  background-color: #fff;
  border-radius: 10px;
  position: relative;
}
.topPointList > li::after {
  content: "";
  display: block;
  position: absolute;
  content: "0" counter(number);
  font-family: "Jost", sans-serif;
  font-style: italic;
  bottom: 9px;
  right: 32px;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: clamp(6rem, 4.9563106796rem + 2.783171521vw, 10.3rem);
  line-height: 1;
  color: #ffedcb;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .topPointList {
    padding: 0;
    row-gap: 27px;
  }
  .topPointList > li {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topPointList {
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 20px;
  }
  .topPointList > li {
    width: calc((100% - 20px) / 2);
  }
}

.topPointImg {
  padding: 17%;
  position: relative;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.topPointImg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: rgba(0, 0, 0, 0.6);
}

.topPointTitleWrap {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.topPointTitle {
  font-size: clamp(2.5rem, 2.2330097087rem + 0.71197411vw, 3.6rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
}

.topPoinSubTitle {
  font-size: clamp(2.8rem, 2.5572815534rem + 0.6472491909vw, 3.8rem);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.topPointTextBox {
  padding: 1.3em 4em 2.7em;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .topPointTextBox {
    padding: 1.2em 1em 2.5em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .topPointTextBox {
    padding: 1.2em 1.5em 2.5em;
  }
}

/*==================================================
 * 分電盤劣化診断ドットコムの強み
 *================================================*/
.topStrongCard {
  margin-bottom: 3.5%;
}
@media only screen and (max-width: 767px) {
  .topStrongCard {
    margin-bottom: 9%;
  }
}

.strongTitle {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .strongTitle {
    width: 332px;
    margin-inline: auto;
  }
}

.stronginfoBlock {
  margin-left: 275px;
  margin-top: 3%;
  width: 849px;
}
@media only screen and (max-width: 1600px) {
  .stronginfoBlock {
    margin-left: 5%;
    margin-right: 5%;
    width: 47%;
  }
}
@media only screen and (max-width: 767px) {
  .stronginfoBlock {
    margin-top: 12%;
    margin-left: 0;
    width: 100%;
  }
}

.strongImgBlock {
  width: calc(100% - 1124px);
}
@media only screen and (max-width: 1600px) {
  .strongImgBlock {
    width: 43%;
  }
}
@media only screen and (max-width: 767px) {
  .strongImgBlock {
    width: 100%;
  }
}

.strongImg {
  padding-bottom: 108%;
}
@media only screen and (max-width: 767px) {
  .strongImg {
    background-image: url(.././img/strongImg_sp.webp) !important;
    padding-bottom: 35%;
  }
}

.stronginfoInner {
  padding: 0 7em;
}
@media only screen and (max-width: 1600px) {
  .stronginfoInner {
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .stronginfoInner {
    padding: 0 15px;
  }
}

.strongList {
  row-gap: 18px;
  flex-direction: column;
  max-width: 641px;
}
.strongList > li {
  padding: 2em 0.5em 2em 2em;
  background-color: #f7f7f7;
}
.strongList > li span {
  padding-left: 1.7em;
  display: block;
  font-size: clamp(1.8rem, 1.5572815534rem + 0.6472491909vw, 2.8rem);
  line-height: 1;
  font-weight: 900;
  position: relative;
}
.strongList > li span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  background-image: url(.././img/check.svg);
  background-repeat: no-repeat;
  background-size: 32px;
}
@media only screen and (max-width: 767px) {
  .strongList {
    width: 100%;
    row-gap: 15px;
  }
  .strongList > li {
    padding: 1.3em 0.8em;
  }
  .strongList > li span {
    letter-spacing: 0.03em;
    padding-left: 0;
  }
  .strongList > li span::after {
    top: -27px;
    left: 0;
    width: 20px;
    height: 20px;
    background-size: 20px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .strongList > li {
    padding: 1.3em 0.8em;
  }
  .strongList > li span {
    font-size: 18px;
    padding-left: 0;
  }
  .strongList > li span::after {
    top: -27px;
    left: 0;
    width: 20px;
    height: 20px;
    background-size: 20px;
  }
}

.strongTextWrap {
  padding-left: 7em;
}
@media only screen and (max-width: 959px) {
  .strongTextWrap {
    padding-left: 0;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .strongTextWrap {
    padding-left: 0;
  }
}

.strongText {
  font-size: clamp(1.8rem, 1.654368932rem + 0.3883495146vw, 2.4rem);
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 2;
}
.strongText span {
  font-size: clamp(1.8rem, 1.654368932rem + 0.3883495146vw, 2.4rem);
  line-height: 2;
  font-weight: bold;
}

.strongTextImgWrap {
  width: 344px;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .strongTextImgWrap {
    margin-top: -13%;
    width: 50%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .strongTextImgWrap {
    width: 50%;
    margin-right: 3%;
  }
}

/*==================================================
 * 　施工実績
 *================================================*/
.topWorkSwipeBlock {
  padding: 2em 0 3em;
  background-color: #ffeac2;
}
@media only screen and (max-width: 767px) {
  .topWorkSwipeBlock {
    padding: 1.5em 0 2em;
  }
}

.swiper-wrapper {
  counter-reset: number;
}

.swiper-slide {
  counter-increment: number 1;
  background-color: #ffffff;
  box-shadow: 5px 5px 6px 2px rgba(211, 173, 113, 0.3);
  border-radius: 10px;
}

.swiperWorks {
  overflow: hidden;
  position: relative;
  padding: 1em;
  margin-inline: auto;
}

.swiperWorksWrap {
  position: relative;
}
.swiperWorksWrap .swiper-button-prev {
  display: block;
  width: 72px;
  height: 72px;
  background: #333333;
  border-radius: 50%;
}
.swiperWorksWrap .swiper-button-prev:after {
  content: "\f060";
  font-size: clamp(1.2rem, 1.1757281553rem + 0.0647249191vw, 1.3rem);
  position: absolute;
  font-weight: 900;
  font-family: "Font Awesome 6 Pro";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.swiperWorksWrap .swiper-button-next {
  display: block;
  width: 72px;
  height: 72px;
  background: #333333;
  border-radius: 50%;
  right: 0;
}
.swiperWorksWrap .swiper-button-next:after {
  content: "\f061";
  font-size: clamp(1.2rem, 1.1757281553rem + 0.0647249191vw, 1.3rem);
  position: absolute;
  font-weight: 900;
  font-family: "Font Awesome 6 Pro";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .swiperWorksWrap .swiper-button-prev,
  .swiperWorksWrap .swiper-button-next {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .swiperWorksWrap .swiper-button-prev,
  .swiperWorksWrap .swiper-button-next {
    width: 50px;
    height: 50px;
  }
}

.swiperWorksWrap .swiper-button-prev {
  top: 42%;
  left: 7%;
}
@media only screen and (max-width: 767px) {
  .swiperWorksWrap .swiper-button-prev {
    top: 50%;
    left: 2%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .swiperWorksWrap .swiper-button-prev {
    top: 41%;
    left: 2%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .swiperWorksWrap .swiper-button-prev {
    top: 36%;
    left: 2%;
  }
}

.swiperWorksWrap .swiper-button-next {
  right: 7%;
  top: 42%;
}
@media only screen and (max-width: 767px) {
  .swiperWorksWrap .swiper-button-next {
    right: 2%;
    top: 50%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .swiperWorksWrap .swiper-button-next {
    right: 1.5%;
    top: 41%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .swiperWorksWrap .swiper-button-next {
    top: 36%;
    right: 2%;
  }
}

.caseTextWrap {
  padding-bottom: 0.5em;
  border-bottom: solid 2px #333333;
}

.caseText {
  padding: 1em 2em 1em;
}
.caseText dt {
  font-size: clamp(1.4rem, 1.3029126214rem + 0.2588996764vw, 1.8rem);
  line-height: 1;
  font-weight: 500;
  margin-top: 10px;
  margin-right: 5px;
}
.caseText dd {
  font-style: italic;
  font-size: clamp(2.6rem, 2.4058252427rem + 0.5177993528vw, 3.4rem);
  line-height: 1;
  font-weight: 500;
}

.swiperWorkInner {
  padding: 1em 1em 2em;
}

.workImg {
  padding-bottom: 67%;
}

.swiperWorkTextBox {
  padding: 0 0.5em;
}

.workTextWrap dd {
  width: 19%;
  font-size: clamp(1.2rem, 1.1514563107rem + 0.1294498382vw, 1.4rem);
  font-weight: 500;
  line-height: 1.2;
  padding: 0.4em 0.5em;
  background-color: #ffeac2;
  margin-right: 10px;
  text-align: center;
}
.workTextWrap dt {
  font-size: clamp(1.6rem, 1.5029126214rem + 0.2588996764vw, 2rem);
  font-weight: 500;
  line-height: 1.3;
}

.worksTable {
  display: block;
  width: 100%;
}
.worksTable th,
.worksTable td {
  font-size: clamp(1.2rem, 1.1514563107rem + 0.1294498382vw, 1.4rem);
  font-weight: 500;
  line-height: 1.3;
  padding: 0.4em 1em;
  border-bottom: solid 21px #fff;
}
.worksTable th {
  vertical-align: middle;
  width: 32%;
  background-color: #ffeac2;
}
.worksTable td {
  width: 68%;
}
@media only screen and (max-width: 767px) {
  .worksTable td,
  .worksTable th {
    border-bottom: solid 15px #fff;
  }
}

.topWorksText {
  font-size: clamp(1.6rem, 1.5514563107rem + 0.1294498382vw, 1.8rem);
  width: 100%;
  font-weight: 500;
}

/*==================================================
 * 　ご依頼の流れ
 *================================================*/
.topFlowInfo {
  font-size: clamp(1.6rem, 1.4058252427rem + 0.5177993528vw, 2.4rem);
  line-height: 2;
  font-weight: bold;
}
.topFlowInfo span {
  font-size: clamp(1.6rem, 1.4058252427rem + 0.5177993528vw, 2.4rem);
  line-height: 2;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .topFlowInfo {
    letter-spacing: 0.03em;
  }
  .topFlowInfo span {
    letter-spacing: 0.03em;
  }
}

.topFlowInfoBlock {
  padding: 4em 0 4em;
  background-color: #f16300;
}
@media only screen and (max-width: 767px) {
  .topFlowInfoBlock {
    padding: 5em 0 4em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .topFlowInfoBlock {
    padding: 5em 0 4em;
  }
}

.flowList {
  width: 95%;
  margin-inline: auto;
  -moz-column-gap: 19px;
       column-gap: 19px;
  padding-bottom: 3.5%;
}
.flowList > li {
  width: calc((100% - 95px) / 6);
  background-color: #fff;
  border: solid 2px #333333;
  padding: 1.3em 1em 3em;
  border-radius: 15px;
}
.flowList > li:nth-child(6) {
  position: relative;
}
.flowList > li:nth-child(6)::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #000000;
  bottom: -57px;
  left: -92px;
  width: 253px;
  height: 57px;
  clip-path: polygon(0 100%, 39% 0, 84% 0);
}
@media only screen and (max-width: 1360px) {
  .flowList {
    width: 100%;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
  .flowList > li {
    width: calc((100% - 50px) / 6);
  }
}
@media only screen and (max-width: 767px) {
  .flowList {
    width: 100%;
    margin-inline: auto;
    flex-direction: column;
    row-gap: 40px;
  }
  .flowList > li {
    width: 100%;
    padding: 1.3em 1em;
  }
  .flowList > li:nth-child(6)::after {
    bottom: -61px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    clip-path: polygon(50% 32%, 0 0, 100% 0);
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .flowList {
    width: 80%;
    margin-inline: auto;
    flex-direction: column;
    row-gap: 40px;
  }
  .flowList > li {
    width: 100%;
    padding: 1.3em 1em;
  }
  .flowList > li:nth-child(6)::after {
    bottom: -61px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    clip-path: polygon(50% 32%, 0 0, 100% 0);
  }
}

@media only screen and (max-width: 767px) {
  .flowUnit {
    display: flex;
    align-items: center;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .flowUnit {
    display: flex;
    align-items: center;
  }
}

.flowIconWrap {
  width: 54%;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .flowIconWrap {
    width: 25%;
    margin-inline: unset;
    margin-right: 3%;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .flowIconWrap {
    width: 16%;
    margin-inline: unset;
    margin-right: 3%;
    margin-bottom: 0;
  }
}

@media only screen and (max-width: 767px) {
  .flowTextBlock {
    width: 72%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .flowTextBlock {
    width: 79%;
  }
}

@media only screen and (max-width: 767px) {
  .flowNbWrap {
    position: absolute;
    left: 0;
    top: -30px;
    color: #fff;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .flowNbWrap {
    position: absolute;
    left: 0;
    top: -35px;
    color: #fff;
  }
}

.flowNb dd {
  font-size: clamp(1.8rem, 1.7514563107rem + 0.1294498382vw, 2rem);
  line-height: 1;
  font-weight: 500;
  margin-right: 5px;
  margin-top: 7px;
}
.flowNb dt {
  font-size: clamp(2rem, 1.7087378641rem + 0.7766990291vw, 3.2rem);
  line-height: 1;
  font-style: italic;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .flowNb dd {
    font-size: 18px;
    margin-top: 0;
  }
  .flowNb dt {
    font-size: 22px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .flowNb dd {
    font-size: 18px;
    margin-top: 0;
  }
  .flowNb dt {
    font-size: 22px;
  }
}

.flowTitle {
  font-size: clamp(1.8rem, 1.7514563107rem + 0.1294498382vw, 2rem);
  line-height: 1;
  color: #f16300;
  font-weight: bold;
}
@media only screen and (max-width: 1400px) {
  .flowTitle {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .flowTitle {
    text-align: left;
    margin-bottom: 3%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .flowTitle {
    font-size: 21px;
    text-align: left;
    margin-bottom: 2%;
  }
}

.flowText {
  font-size: clamp(1.5rem, 1.5rem + 0vw, 1.5rem);
  font-weight: 500;
  line-height: 1.5;
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .flowText {
    font-size: 16px;
  }
}

.flowImgBlock {
  width: 160px;
  margin-right: 28px;
}
@media only screen and (max-width: 767px) {
  .flowImgBlock {
    width: 160px;
    margin-right: 0;
    margin-inline: auto;
  }
}

.flowkoujiBlock {
  width: 36%;
  background-color: #fff;
  padding: 2.5em 2em;
  border: solid 2px #333333;
  border-radius: 15px;
}
@media only screen and (max-width: 1360px) {
  .flowkoujiBlock {
    width: 39%;
  }
}
@media only screen and (max-width: 767px) {
  .flowkoujiBlock {
    width: 100%;
    padding: 1.5em 2em;
    margin-top: -10px;
    border-radius: 13px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .flowkoujiBlock {
    width: 60%;
  }
}

.flowkoujiText {
  font-size: clamp(2.4rem, 2.3029126214rem + 0.2588996764vw, 2.8rem);
  font-weight: bold;
  color: #f16300;
  line-height: 1.4;
}

.koujiImgBlock {
  width: 15%;
  margin-right: 32px;
}
@media only screen and (max-width: 767px) {
  .koujiImgBlock {
    width: 32%;
  }
}

/*==================================================
 * 　会社概要
 *================================================*/
.topOutlineCard {
  background-color: #ffeac2;
  padding: 3em 0;
}
@media only screen and (max-width: 767px) {
  .topOutlineCard {
    padding: 2em 0;
  }
}

.outLineBox {
  padding: 1em 4em 2.2em;
  background-color: #fff;
  border-radius: 10px;
  width: 80%;
  margin-inline: auto;
}
@media only screen and (max-width: 767px) {
  .outLineBox {
    width: 100%;
    padding: 0 1em 1.8em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .outLineBox {
    width: 98%;
    padding: 0 1em 1.8em;
  }
}

.outLineTable {
  width: 100%;
}
.outLineTable th,
.outLineTable td {
  text-align: left;
  font-size: clamp(1.5rem, 1.4757281553rem + 0.0647249191vw, 1.6rem);
  line-height: 1.6;
  font-weight: 500;
  border-bottom: solid 1px #cdcece;
}
.outLineTable th {
  vertical-align: middle;
  width: 21%;
  padding: 1.5em 0.5em 1.5em 2em;
}
.outLineTable td {
  padding: 1.5em 0.5em 1.5em 0;
}
@media only screen and (max-width: 767px) {
  .outLineTable th,
  .outLineTable td {
    display: block;
    width: 100%;
    font-size: 16px;
    letter-spacing: 0.08em;
  }
  .outLineTable th {
    border-bottom: unset;
    padding: 1em 0 0.5em;
  }
  .outLineTable td {
    padding: 0 0 1em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1279px) {
  .outLineTable th {
    width: 24%;
    padding: 1.5em 0.5em 1.5em 1em;
  }
}/*# sourceMappingURL=import.css.map */