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

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


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

*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@600;700&display=swap");
.mainColor {
  color: #191970;
}

.mainColorLight {
  color: #2990c7;
}

.bgMainColor {
  background-color: #191970;
}

.mainColorExLight {
  color: #e9f1f6;
}

.bgMainColorExLight {
  background-color: #e9f1f6;
}

.mainColorDeep {
  color: #00488c;
}

.bgMainColorDeep {
  background-color: #00488c;
}

.mainColorExDeep {
  color: #03312e;
}

.bgMainColorLight {
  background-color: #2990c7;
}

.subColor {
  color: #c3b060;
}

.bgSubColor {
  background-color: #c3b060;
}

.subColorLight {
  color: #f5b30c;
}

.bgSubColorLight {
  background-color: #f5b30c;
}

.subColorExLight {
  color: #eaeae5;
}

.bgSubColorExLight {
  background-color: #eaeae5;
}

.subColorDeep {
  color: #498693;
}

.Deep {
  background-color: #498693;
}

.compColor {
  color: #d14726;
}

.bgCompColor {
  background-color: #d14726;
}

.SubCompColor {
  color: #ffb000;
}

.bgSubCompColor {
  background-color: #ffb000;
}

.subCompColorDeep {
  color: #ffa500;
}

.grayColor {
  color: #808080;
}

.grayColorLight {
  color: #f0f2f4;
}

.bgGrayColorLight {
  background-color: #f0f2f4;
}

.bgGrayColorExLight {
  background-color: #f7f8f8;
}

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

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

.bgBlack {
  background: #000;
}

.bgGrad {
  background: linear-gradient(to left, #1473af, #7cbf88);
}

.bgGradLight {
  background: #fff;
  background: linear-gradient(white 0%, white 50%, #ffe0ae 50%, #ffe0ae 95%, white 95%, white 100%);
}

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

.grayLight {
  color: #9a9a9a;
}

body {
  color: #1a1f2e;
}

.bgTransparent {
  background-color: transparent;
}

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

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

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

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

.fontJp {
  font-family: "Noto Sans JP", sans-serif;
}

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

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

/*==================================================
 * リセットcss
 *================================================*/
/* a modern css reset*/
/* 
html5doctor.com Reset Stylesheetﾀbｪ^
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: 16px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  font-weight: 300;
}

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

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

.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_ms {
  line-height: 1.4;
}
.lh_ms * {
  line-height: 1.4;
}

.lh_s {
  line-height: 1;
}
.lh_s * {
  line-height: 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;
}

@media only screen and (max-width: 767px) {
  .lh_msSp {
    line-height: 1.4;
  }
  .lh_msSp * {
    line-height: 1.4;
  }
}

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

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

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

.normal {
  font-weight: normal;
}

.thin {
  font-weight: 100;
}

.nowrap {
  white-space: nowrap;
}

.white {
  color: #fff;
}

.black {
  color: #000;
}

.gray {
  color: #686868;
}

.red {
  color: #ff4501 !important;
}

.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: 50px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsL3 {
    font-size: 38px;
  }
}
@media only screen and (max-width: 767px) {
  .fsL3 {
    font-size: 28px;
  }
}

.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: 24px;
  }
}

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

.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: 24px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsM3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .fsM3 {
    font-size: 20px;
  }
}

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

.fsM4 {
  font-size: 17px;
}
@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;
  }
}

.fsM5 {
  font-size: 15px;
}
@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;
  }
}

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

.fsS35 {
  font-size: 11px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .fsS35 {
    font-size: 9px;
  }
}
@media only screen and (max-width: 767px) {
  .fsS35 {
    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;
  }
}
/*==================================================
 * Sass関数
 *================================================*/
/*==================================================
 * 独自リセット
 *================================================*/
/*リセット関係*/
*,
*:before,
*:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

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

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

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

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

hr {
  margin: 10px auto;
}

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

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

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

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.relapadding {
  padding-right: 80px;
}

.inline {
  display: inline;
}

.block {
  display: block;
}

.inlineBlock {
  display: inline-block;
}

.inlineBlockUl li {
  display: inline-block;
}

.disNone {
  display: none !important;
}

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

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

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

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

.verticalMiddle {
  vertical-align: middle;
}

.verticalBottom {
  vertical-align: bottom;
}

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

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

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

@media only screen and (max-width: 767px) {
  .text-left-sp {
    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;
  }
}

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

.linkA {
  text-decoration: underline;
  transition: 0.3s;
  color: #191970;
}
.linkA:hover {
  color: #191970;
  text-decoration: underline;
}

.tab {
  display: none;
}

@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .note {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .notTab {
    display: none !important;
  }
  .tab {
    display: block !important;
  }
}
/*余白*/
.mb5 {
  margin-bottom: clamp(30px, 5vw, 60px);
}

.mAuto {
  margin: auto;
}

.m0 {
  margin: 0;
}

.p0 {
  padding: 0;
}

.mb0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.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: 767px) {
  .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%;
}

.mbM {
  margin-bottom: 10%;
}

.mbM2 {
  margin-bottom: 7.5%;
}

.mbM3 {
  margin-bottom: 5%;
}

.mbS {
  margin-bottom: 3.5%;
}

.mbS2 {
  margin-bottom: 2%;
}

.mbS3 {
  margin-bottom: 1%;
}

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

.justCenter {
  justify-content: center;
}

.justSelfCenter {
  justify-self: 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;
}

.flexColumn {
  flex-direction: column;
}

.flexColReverse {
  flex-direction: column-reverse;
}

.flexColReverse {
  flex-direction: column-reverse;
}

.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;
  }
  .flexReverseSp {
    flex-flow: row-reverse;
  }
  .flexColumnSp {
    flex-direction: column;
  }
  .flexColReverseSp {
    flex-direction: column-reverse;
  }
  .bgFixed {
    background-attachment: unset;
  }
  .flexReverse {
    flex-flow: row-reverse;
  }
  .flexSp {
    display: flex;
  }
  .justEndSp {
    justify-content: flex-end;
  }
  .alignCenterSp {
    align-items: center;
  }
  .alignEndSp {
    align-items: flex-end;
  }
  .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) {
  .colMd1 {
    width: 100%;
  }
  .colMd2 {
    width: 50%;
  }
  .colMd3 {
    width: 33.3333%;
  }
  .colMd-3 {
    width: 66.6666%;
  }
  .colMd4 {
    width: 25%;
  }
  .colMd-4 {
    width: 75%;
  }
  .colMd5 {
    width: 20%;
  }
  .colMd-5 {
    width: 80%;
  }
  .colMd6 {
    width: 16.666%;
  }
  .colMd-6 {
    width: 83.333%;
  }
  .colMd3-2 {
    width: 60%;
  }
  .colMd-3-2 {
    width: 40%;
  }
}
/*横幅*/
.cnt {
  width: 100%;
  max-width: 1280px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .cnt {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media only screen and (min-width: 767px) and (max-width: 959px) {
  .cntTab {
    max-width: 720px;
  }
}

.w100 {
  width: 100%;
}

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

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

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

.cntXl {
  max-width: 1240px;
}
@media screen and (min-width: 1740px) {
  .cntXl {
    margin-right: auto;
    margin-left: auto;
  }
}

@media only screen and (max-width: 767px) {
  .cntFluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 1281px) {
  .wideNoFluid {
    width: 100%;
    margin: auto;
    max-width: 1500px;
  }
}

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

.padding {
  padding-top: clamp(60px, 10vw, 100px);
  padding-bottom: clamp(60px, 10vw, 100px);
}

.paddingS {
  padding-top: clamp(45px, 6vw, 60px);
  padding-bottom: clamp(45px, 6vw, 60px);
}

.paddingW {
  padding-top: 20%;
  padding-bottom: 20%;
}

.margin {
  margin-top: clamp(50px, 10vw, 100px);
  margin-bottom: clamp(50px, 10vw, 100px);
}

.marginS {
  margin-top: clamp(45px, 6vw, 60px);
  margin-bottom: clamp(45px, 6vw, 60px);
}

.marginW {
  margin-top: 20%;
  margin-bottom: 20%;
}

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

.bgImgHeight {
  padding-bottom: 67%;
}

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

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

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

.bgBlur:before {
  content: "";
  background: inherit;
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
  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 {
  position: absolute;
  width: 101%;
  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: 8px;
}

.radiusM {
  border-radius: 10px;
}

.radiusL {
  border-radius: clamp(8px, 1.5vw, 15px);
}

.radiusXl {
  border-radius: clamp(15px, 2.2vw, 25px);
}

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

.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.3) 0px 30px 60px -30px;
  }
}

.shadowL {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 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;
}

/*==================================================
 * 独自クラス（このサイトだけ）
 *================================================*/
.titleLine {
  position: relative;
  display: inline-block;
  z-index: 10;
}
.titleLine:after {
  content: "";
  display: inline-block;
  background-color: #d14726;
  position: absolute;
  bottom: 0;
  left: -2.5%;
  width: 105%;
  height: 0.3em;
  z-index: 0;
}
.titleLine.sub {
  background: linear-gradient(transparent 70%, #c3b060 0%);
}

.titleBd {
  position: relative;
}
.titleBd::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #1a1f2e;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.titleMarker {
  background: linear-gradient(transparent 60%, #90d0d6 60%);
  padding: 0 0.3em 0.1em;
}

/*ボタン*/
.btn {
  padding: 0.6em 1.5em;
  position: relative;
  display: inline-block;
  transition: 0.8s;
  width: 260px;
  background-color: #c3b060;
}
.btn span {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}
.btn:hover {
  color: #fff;
  background-color: #191970;
}
.btn:hover .linkArrow {
  right: -5%;
}
.btn.btn--auto {
  width: auto;
  padding-right: 4em;
}
.btn.btn--auto .linkArrow {
  right: 0;
}
.btn.btn--auto:hover .linkArrow {
  margin-right: -3%;
}
.pageCompanyOutlineBtnWrap .btn {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .pageCompanyOutlineBtnWrap .btn {
    width: 230px;
  }
}
.btn.btnWide {
  display: block;
  width: 100%;
  padding: 1em 2em;
}
.btn.btnWide span {
  font-size: 21px;
}
.btn.btnWide:hover .linkArrow {
  margin-right: 3%;
}
@media only screen and (max-width: 959px) {
  .btn {
    text-align: left;
    width: 230px;
  }
  .btn span {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .btn.btnWide {
    padding: 1em 1em;
  }
  .btn.btnWide span {
    font-size: 16px;
  }
  .btn.btnSp--s {
    padding: 0.3em 1.2em;
    width: 180px;
  }
  .btn.btnSp--s span {
    font-size: 12px;
  }
}

.button,
.submit-btn input {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  color: #fff;
  padding: 0.7em 4em 0.7em 2em;
  letter-spacing: 0.03em;
  line-height: 1.7;
  font-size: 20px;
  border: 1px solid #c3b060;
}
.button:before, .button:after,
.submit-btn input:before,
.submit-btn input:after {
  width: calc(100% - 20px);
  height: 0;
  display: block;
  position: absolute;
  left: 0;
  content: "";
}
.button:before,
.submit-btn input:before {
  border-bottom: solid 20px #191970;
  border-right: solid 20px transparent;
  bottom: 100%;
}
.button:after,
.submit-btn input:after {
  border-top: solid 20px #191970;
  border-left: solid 20px transparent;
  top: 100%;
}
.button:hover,
.submit-btn input:hover {
  background-color: #fff;
  color: #c3b060;
}

.submit-btn {
  text-align: center;
  margin-top: 4%;
}
.submit-btn input {
  transition: 0.3s;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.07em;
  padding: 1.5rem 3rem;
  cursor: pointer;
  background-color: #c3b060;
}

/*==================================================
 * header
 *================================================*/
/*------------モーダルウィンドウ------------*/
/*オーバーレイメニュー*/
.overRayBox {
  position: fixed;
  display: table;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}
.overRayBox > ul {
  vertical-align: middle;
  width: 100%;
  display: block;
}
.open .overRayBox {
  cursor: url(../images/cross.svg), auto;
  transition: 0.5s;
  visibility: visible;
  opacity: 1;
}

html.open {
  overflow-y: hidden;
}

.overRayWrap {
  padding: 25% 10%;
  position: fixed;
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  height: calc(100vh - 40px);
  height: calc(var(--vh, 1vh) * 100);
  background-color: #fff;
}

/*ハンバーガーメニュー*/
.menu-btn {
  position: absolute;
  cursor: pointer;
  z-index: 1001;
  right: 0;
  margin-top: 3.5%;
  margin-right: 5%;
}
.menu-btn span {
  color: #fff;
}
.menu-btn span:after {
  content: attr(data-txt-menu);
}
.open .menu-btn span:after {
  content: attr(data-txt-close);
}

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

.menu-trigger {
  position: relative;
  width: 33px;
  height: 20px;
  z-index: 1001;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1a1f2e;
  border-radius: 2px;
}

.menu-trigger-white {
  background-color: #fff !important;
}

.menu-trigger-inColor {
  background-color: #d14726 !important;
}

.menu-trigger span:nth-of-type(1) {
  top: 0;
}

.menu-trigger span:nth-of-type(2) {
  top: 9px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.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;
}
@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-8px) rotate(45deg);
}

.menu-trigger span:nth-of-type(4) {
  background: none !important;
}

/*------------モーダルウィンドウ終わり------------*/
/*==================================================
 * 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: #191970;
}
.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 #191970;
}

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

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

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

/*残す--ここまで*/
/*お問い合わせページ------------------------------------*/
.contactForm {
  width: 100%;
  margin: 0 auto;
}

.contactForm textarea {
  width: 100%;
  height: 14rem !important;
}

.contactForm input[type=checkbox] {
  width: auto;
}

.contactTelIcon {
  margin-right: 0.4em;
}

.mw_wp_form button {
  max-width: 70%;
  color: #fff;
  border-radius: 0;
  background: #deba29;
}

.cform {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.cform tr {
  border-bottom: solid 1px #eee;
}
.cform th {
  font-size: 17px;
  font-family: bold;
  width: 35%; /*変なところで改行される場合はここの数字を変更します。*/
  padding: 10px 0 10px 15px;
  font-weight: normal;
  vertical-align: middle;
  text-align: left;
  position: relative;
}
.cform th .title {
  width: 72%;
  display: inline-block;
  font-size: 15px;
}
@media only screen and (max-width: 767px) {
  .cform th .title {
    vertical-align: bottom;
    width: auto;
    margin-right: 5%;
  }
}
.cform th .required-srt {
  font-size: 12px;
  padding: 0.5em 1em;
  background: #ce0000;
  color: #fff;
  border-radius: 3px;
  margin-right: 0;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}
tr:last-child .cform th .required-srt {
  top: 41%;
}
@media only screen and (max-width: 767px) {
  .cform th .required-srt {
    top: auto;
    bottom: 10%;
  }
}
.cform td {
  font-size: 15px;
  line-height: 150%;
  padding: 2.5% 0;
}
.cform td .error {
  font-size: 14px;
}
.cform td input::-moz-placeholder,
.cform td textarea::-moz-placeholder {
  color: #ddd;
}
.cform td input::-moz-placeholder, .cform td textarea::-moz-placeholder {
  color: #ddd;
}
.cform td input::placeholder,
.cform td textarea::placeholder {
  color: #ddd;
}
.cform td span label span {
  font-size: 15px;
}
@media only screen and (max-width: 767px) {
  .cform td,
  .cform th {
    padding-bottom: 0;
    padding-top: 10px;
    font-size: 15px;
  }
  .cform td {
    padding: 5px 0;
  }
  .cform th .required-srt {
    padding: 0.1em 0.4em;
  }
  .contact .cform tr {
    border-bottom: none;
  }
}

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

.cform option,
.cform textarea,
.cform input[type=text],
.cform input[type=email],
.cform input[type=search],
.cform input[type=url] {
  width: 100%;
  height: 4rem;
  font-size: 14px;
  padding: 2.5rem;
  background-color: #f7f8f8;
  border: 1px solid transparent;
  border-radius: 5px;
}
@media only screen and (max-width: 767px) {
  .cform option,
  .cform textarea,
  .cform input[type=text],
  .cform input[type=email],
  .cform input[type=search],
  .cform input[type=url] {
    padding: 2rem;
  }
}

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

.contactFormPrivacyAlertBox {
  background-color: #f7f8f8;
  padding: 5%;
}

@media only screen and (max-width: 767px) {
  .cform th,
  .cform td {
    width: 100%;
    display: block;
    border-top: none;
  }
}
/*下層ページ共通------------------------------------*/
/*投稿詳細ページ------------------------------------*/
li.widget {
  list-style-type: none;
  margin-bottom: 20%;
}

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

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

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

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

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

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

.entry {
  line-height: 1.8;
  letter-spacing: 0.15em;
  float: none;
  max-width: 870px;
  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 a.wp-element-button {
  background-color: #191970;
  color: #fff;
  padding: 0.5em;
}
.entry blockquote {
  padding: 2em 4em;
  box-sizing: border-box;
  border: 1px solid #e6e6e6;
  color: #7b7b7b;
  background-color: #f6f7f9;
  font-style: italic;
  margin-bottom: 1.5em;
}
.entry blockquote p {
  font-size: 14px;
}
.entry strong {
  font-style: normal;
  font-weight: bold;
  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 span,
.entry h3 span,
.entry h4 span,
.entry h5 span {
  font-weight: bold;
}
.entry h2 {
  font-size: 24px;
  margin: 8% auto 3%;
  background-color: #e9f1f6;
  padding: 0.5em 1em;
  border-radius: 3px;
  font-weight: bold;
  border-left: 4px solid #191970;
  padding-left: 0.7em;
}
@media only screen and (max-width: 767px) {
  .entry h2 {
    font-size: 18px;
    margin: 12% auto 6%;
  }
}
.entry h3 {
  font-size: 22px;
  margin: 4% auto 3%;
  font-weight: bold;
  line-height: 1.7;
  border-left: 4px solid #191970;
  padding-left: 0.7em;
}
@media only screen and (max-width: 767px) {
  .entry h3 {
    font-size: 18px;
    margin: 12% auto 6%;
  }
}
.entry h4 {
  margin: 3% auto 3%;
  border-bottom: 1px solid #191970;
  padding-bottom: 0.4em;
  color: #191970;
  font-weight: bold;
  font-size: 21px;
  padding-left: 0.5em;
}
@media only screen and (max-width: 767px) {
  .entry h4 {
    margin: 15% auto 8%;
    font-size: 16px;
  }
}
.entry h5 {
  font-weight: bold;
  margin-bottom: 10px;
  color: #2990c7;
  font-size: 20px;
}
.entry h6 {
  font-weight: bold;
  margin-bottom: 10px;
}
.entry table td {
  border-right: 1px solid #191970;
  border-bottom: 1px solid #191970;
}
.entry table td:first-child {
  width: 30%;
  background-color: #eef6fa;
  color: #191970;
  font-weight: bold;
  border-left: 1px solid #191970;
}
.entry table td:last-child {
  width: auto;
  border-right: 1px solid #191970;
}
.entry table th,
.entry table td {
  padding: 1.5rem 2rem;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.entry table tr:first-child td,
.entry table tr:first-child th {
  border-top: 1px solid #191970;
}
.entry table tr:last-child td {
  border-bottom: 1px solid #191970;
}
@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 6 Pro";
  content: "\f14a";
  color: #191970;
  position: absolute;
  left: 0;
  font-weight: 400;
}
.entry figure {
  width: min(100%, 700px);
  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: #f7f8f8;
  border: none !important;
  margin: 0 auto;
  padding: 4% 6%;
  border-radius: 10px;
}
#toc_container a {
  color: #191970;
}

.toc_list li:before {
  display: none;
}

.toc_title {
  border-bottom: 1px solid #191970;
  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%;
  }
}
.entry img {
  margin: 2% auto 5%;
}

/*リンクカードプラグイン*/
.lkc-title-text {
  font-weight: normal;
  letter-spacing: 0.15em;
  transition: 0.3s;
}
a:hover .lkc-title-text {
  color: #191970;
  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 #191970;
  border-radius: 10px;
  background-color: #2990c7;
}

.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: #191970;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  display: none !important;
}

.lkc-info {
  background-color: #191970;
  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;
}

/*記事詳細-----------------------------------*/
/*記事コンテンツ周り*/
@media only screen and (max-width: 767px) {
  .singleColumnArticle {
    margin-bottom: 10%;
  }
}

.singleColumnTitle {
  display: flex;
  align-items: center;
  padding-bottom: 0.4em;
}

.singleColumnArticleTitleWrap {
  padding-left: 4%;
  border-left: 3px solid #191970;
}

.singleColumnInfoUl .cate {
  background-color: #c3b060;
  color: #fff;
  padding: 0.1em 0.7em;
}
.singleColumnInfoUl .date {
  margin-right: 1em;
}

/*この記事をシェアするボタン*/
.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;
  }
}

/*解体のことなら、どんな些細なことでもご相談ください*/
.singleContactBlock {
  border: 2px solid #191970;
}

.singleContactBlockTitle {
  background-color: #191970;
  color: #fff;
  text-align: center;
  font-size: clamp(16px, 2vw, 25px) !important;
  font-weight: 600;
  line-height: 1.4 !important;
  padding: 2.5% 1% !important;
  margin: auto !important;
}
@media only screen and (max-width: 767px) {
  .singleContactBlockTitle {
    text-align: left;
  }
}

.singleContactBlockInner {
  padding: 4% 2%;
  position: relative;
}
.singleContactBlockInner::before, .singleContactBlockInner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.singleContactBlockInner::before {
  background-image: url(../img/singleContactBgImg.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.singleContactBlockInner:after {
  background-color: rgba(255, 255, 255, 0.8);
}

.sCB-innerTitle {
  font-weight: 600;
  letter-spacing: 0.07em !important;
  margin: auto !important;
  margin-bottom: 3% !important;
  line-height: 1.8 !important;
}
.sCB-innerTitle span {
  background: linear-gradient(transparent 40%, rgba(192, 176, 107, 0.6) 40%);
  font-weight: 600;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .sCB-innerTitle {
    font-size: 13px !important;
  }
}

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

.otherContactBtn {
  background-color: #f0f2f3;
  transition: 0.3s;
  margin-inline: 1%;
  width: 30%;
}
.otherContactBtn a {
  display: flex !important;
  justify-content: space-between !important;
  text-decoration: none !important;
  word-break: normal;
  word-wrap: normal;
}
.otherContactBtn p {
  font-size: clamp(11px, 1.5vw, 17px);
  line-height: 1.3;
  font-weight: 600;
  color: #191970;
  padding-block: 5%;
  padding-inline: 6% 0;
  margin: auto !important;
  width: calc(100% - 72px);
}
.otherContactBtn p span {
  font-weight: 600;
  line-height: 1;
  font-size: 12px;
}
.singleotherLinkBox .otherContactBtn {
  margin-inline: 1%;
  margin-bottom: 2%;
  width: 46%;
}
.singleotherLinkBox .otherContactBtn p {
  font-size: clamp(12px, 1.5vw, 19px);
}
.singleotherLinkBox .otherContactBtn p span {
  font-size: 13px;
}
.otherContactBtn:hover {
  opacity: 0.8;
}
@media print, screen and (min-width: 768px) {
  .otherContactBtn:hover:last-of-type {
    opacity: 1;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .otherContactBtn p {
    width: calc(100% - 50px);
  }
  .otherContactBtn p span {
    font-size: 8px;
  }
  .singleotherLinkBox .otherContactBtn p {
    font-size: 14px;
  }
  .singleotherLinkBox .otherContactBtn p span {
    font-size: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .otherContactBtn {
    margin-inline: 0;
    height: 100%;
    width: 33.3%;
  }
  .otherContactBtn p {
    padding-block: 3%;
    padding-inline: 3% 0;
    width: calc(100% - 68px);
  }
  .otherContactBtn p span {
    font-size: 10px;
  }
  .singleotherLinkBox .otherContactBtn {
    margin-inline: auto;
    width: 48%;
  }
  .singleotherLinkBox .otherContactBtn p {
    padding-block: 5%;
    padding-inline: 0;
    letter-spacing: 0;
  }
  .singleotherLinkBox .otherContactBtn p span {
    font-size: 12px;
  }
}

.otherContactBtnIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
}
.otherContactBtnIcon img {
  margin: auto;
  transition: 0.3s;
  width: 55%;
}
.otherContactBtnIcon.__mail {
  background-color: #c3b060;
}
.otherContactBtnIcon.__ai {
  background-color: #d66120;
}
.otherContactBtnIcon.__line {
  background-color: #06c755;
}
.otherContactBtnIcon.__tel {
  background-color: #191970;
}
.otherContactBtn:hover .otherContactBtnIcon img {
  width: 60%;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .otherContactBtnIcon {
    width: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .otherContactBtnIcon {
    display: block;
    text-align: center;
    padding-block: 5px 2px;
    width: 100%;
  }
  .otherContactBtnIcon img {
    width: 20px;
  }
  .otherContactBtnIcon p {
    margin-top: 2%;
    color: #fff;
    width: 100%;
    line-height: 1.2;
  }
  .singleotherLinkBox .otherContactBtnIcon {
    width: 40px;
  }
  .singleotherLinkBox .otherContactBtnIcon img {
    width: 55%;
  }
  .otherContactBtn:hover .otherContactBtnIcon img {
    width: 20px;
  }
}

/*この記事を書いた人*/
.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: 9px solid #f0f2f4;
}
@media only screen and (max-width: 767px) {
  .singleColumnWriter {
    padding: 8%;
    margin: 12% 0 6% 0;
  }
}

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

.singleColumnWriterButton {
  background: #191970;
  border: 1px solid #191970;
  padding: 0.25em;
  padding-bottom: 0.1em;
  max-width: 280px;
  display: block;
  color: #fff;
}
.singleColumnWriterButton:hover {
  background: #fff;
  color: #191970;
}
.singleColumnWriterButton:hover .awesomeIcon.awesomeIcon--arrowRight:before {
  right: -2em;
}

.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: 2% 4% 4%;
  position: relative;
  transition: 0.3s;
  background-color: #f0f2f4;
}
.singleColumnPreNextBox:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  .singleColumnPreNextBox {
    width: 100%;
    display: block;
  }
  .singleColumnPreNextBox.pre {
    margin-bottom: 3%;
  }
}
@media print, screen and (min-width: 768px) {
  .singleColumnPreNextBox.pre {
    margin-right: 1.5%;
  }
  .singleColumnPreNextBox.next {
    margin-left: 1.5%;
  }
}

.singleColumnPreNextDescri {
  color: #727171;
  border-bottom: 1px solid #1a1f2e;
  display: inline-block;
  position: relative;
}
.singleColumnPreNextDescri.prev {
  padding-left: 0.7em;
}
.singleColumnPreNextDescri.prev:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 2px;
  display: inline-block;
  height: 0.5em;
  width: 1px;
  background-color: #1a1f2e;
  transform: rotate(35deg);
}
.singleColumnPreNextDescri.next {
  padding-right: 0.7em;
}
.singleColumnPreNextDescri.next:before {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 2px;
  display: inline-block;
  height: 0.5em;
  width: 1px;
  background-color: #1a1f2e;
  transform: rotate(-35deg);
}

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

/*アーカイブページ------------------------------------*/
.articleListCardImgBox {
  overflow: hidden;
}

.articleListCardImg {
  padding-bottom: 66%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .articleListCardImg {
    padding-bottom: 60%;
  }
}

.articleListCard_text {
  padding: 3% 5%;
}

.excerpt {
  color: #777777;
}

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

.archivePostUnit__blog .articleListCardWrap {
  width: 33%;
}
@media only screen and (max-width: 767px) {
  .archivePostUnit__blog .articleListCardWrap {
    width: 100%;
  }
}

.articleListCard {
  margin-bottom: 10%;
  position: relative;
}
.articleListCard:hover .linkArrow {
  margin-right: -2%;
}
@media only screen and (max-width: 767px) {
  .articleListCard {
    padding-right: 3%;
    padding-left: 3%;
    margin-bottom: 9%;
  }
  .articleListCard .linkArrow {
    right: -6%;
  }
}
@media only screen and (max-width: 959px) {
  .articleListCard .topColumnCardTextBox {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .articleListCard .topColumnCardTextBox {
    padding-right: 3%;
    padding-left: 3%;
  }
  .articleListCard .linkArrow {
    right: -7%;
  }
}

.articleListCardLink {
  display: block;
  border-bottom: 2px solid #191970;
}
.articleListCardLink:hover .articleListCardImg {
  transform: scale(1.1);
}

.articleListCardTextBox.topColumnCardTextBox {
  background-color: #f9f9f9;
}
.articleListCardTextBox .topColumnCardTagUl li {
  background-color: #c3b060;
  color: #fff;
}

/*Pagenation*/
.pagenation {
  margin: 1em 0;
}
.pagenation ul {
  display: flex;
  justify-content: center;
}
.pagenation li {
  font-family: "Inter", sans-serif;
  font-size: 2rem;
  margin: 0 1%;
  color: #191970;
  background: #f0f2f4;
  line-height: 1.3;
}
.pagenation li.active {
  cursor: not-allowed;
  color: #fff;
  padding: 0.5em 0.7em;
  background: #191970;
}
.pagenation li.prev {
  display: none;
}
.pagenation li.next {
  display: none;
}
.pagenation li a {
  font-family: "Inter", sans-serif;
  display: block;
  padding: 0.5em 0.7em;
  transition: 0.3s;
  border: 2px solid #f0f2f4;
}
.pagenation li a:hover {
  background: #fff;
  border: 2px solid #f0f2f4;
}
@media only screen and (max-width: 767px) {
  .pagenation li {
    font-size: 1.5rem;
  }
  .pagenation li.active {
    padding: 7px 12px;
  }
  .pagenation li a {
    padding: 7px 12px;
  }
}

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

span.page-numbers {
  color: #191970;
  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%;
}
.sidebarBox .cat-item {
  font-size: 14px;
}
.sidebarBox .cat-item:not(:last-child) {
  margin-bottom: 1.3rem;
  border-bottom: 1px solid #d8d8d8;
  padding-bottom: 1.3rem;
}
@media only screen and (max-width: 767px) {
  .sidebarBox {
    margin-left: 0;
  }
}

.sidebarNewsUl .cat-item:not(:last-child) {
  margin-bottom: 1.2rem;
  padding-bottom: 0.5em;
}
.sidebarNewsUl .cat-item p.mainColor {
  transition: 0.3s;
}
.sidebarNewsUl .cat-item a:hover p.mainColor {
  color: #2990c7;
}
.sidebarNewsUl .cat-item .date {
  font-weight: bold;
  color: #191970;
  font-family: "Inter", sans-serif;
}

.sidebarRankingUl.sidebarNewsUl .cat-item:not(:last-child) {
  padding-bottom: 1rem;
}

.sidebarTitle {
  font-size: 14px;
  border-bottom: 2px solid #191970;
  display: inline-block;
  margin-bottom: 7%;
}

.sidebarTitle__En {
  font-size: 32px;
  color: #191970;
  font-weight: bold;
  margin-right: 0.4em;
  letter-spacing: 0;
  font-family: "Inter", sans-serif;
  line-height: 1.5;
}

.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: #191970;
  right: 10px;
  top: 10px;
  position: absolute;
  font-size: 14px;
}

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

.sidebarTagWrap li a {
  font-size: 14px !important;
  color: #2990c7;
  font-weight: bold;
}
.sidebarTagWrap li a:before {
  content: "#";
}
.sidebarTagWrap li:not(:last-child) a:after {
  content: "/";
  display: inline-block;
  margin-left: 0.2em;
  margin-right: 0.2em;
  color: #808080;
}
.sidebarTagWrap a {
  font-size: 14px !important;
  color: #2990c7;
  font-weight: bold;
}
.sidebarTagWrap a:before {
  content: "#";
}
.sidebarTagWrap a:not(:last-child):after {
  content: "/";
  display: inline-block;
  margin-left: 0.2em;
  margin-right: 0.2em;
  color: #808080;
}
@media only screen and (max-width: 767px) {
  .sidebarTagWrap a {
    font-size: 12px !important;
  }
}

/* ==========================================================================
Author's custom styles
========================================================================== */
/*==================================================
* 共通
*================================================*/
/*共通部分*/
body {
  width: 100%;
  letter-spacing: 0.1em;
}

.mAuto {
  margin-right: auto;
  margin-left: auto;
}

.bgCover-mainColor {
  background-color: #191970;
  opacity: 0.7;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}

.bgCover-white {
  background-color: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 100%;
  transition: 0.3s;
}

.bgCover-gradient {
  background: linear-gradient(to left, rgba(20, 115, 175, 0.7), rgba(124, 191, 136, 0.7));
}

.titleBg {
  background: linear-gradient(180deg, transparent 0%, transparent 10%, #fff 10%, #fff 100%);
  display: inline;
}

.border:before {
  content: "";
  display: block;
  height: 100%;
  width: 2px;
  background: #191970;
  position: absolute;
  left: 7.7%;
  top: 4.7em;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .border:before {
    left: 2.2em;
    top: 4em;
  }
}

.verticalBorder {
  height: 115%;
  width: 2px;
  background-color: #191970;
  position: absolute;
  left: 22px;
  top: 44px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .verticalBorder {
    height: 100%;
  }
}

.titleDeco {
  position: relative;
  padding: 0 0.6em;
}
.titleDeco::before, .titleDeco::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #1a1f2e;
  width: 0.07em;
  height: 1.1em;
  vertical-align: middle;
  transform: translateY(-50%);
}
.titleDeco:before {
  transform: rotate(-30deg);
  left: 0;
}
.titleDeco:after {
  transform: rotate(30deg);
  right: 0;
}

.awesomeIcon:before {
  transition: 0.3s;
  font-family: "Font Awesome 6 Pro";
  position: absolute;
}
.awesomeIcon.awesomeIcon--line:before {
  font-weight: 100;
  content: "\f3c0";
  font-size: clamp(25px, 3vw, 30px);
  font-family: "Font Awesome 6 Brands";
}
.awesomeIcon.awesomeIcon--laptop:before {
  font-weight: 600;
  content: "\f390";
  font-size: clamp(20px, 2.5vw, 25px);
}
.awesomeIcon.awesomeIcon--comment:before {
  font-weight: 100;
  content: "\f4a3";
}
.awesomeIcon.awesomeIcon--tel:before {
  content: "\f879";
  font-weight: 100;
}
.awesomeIcon.awesomeIcon--x:before {
  content: "\f00d";
  font-weight: 400;
}
.awesomeIcon.awesomeIcon--arrow:before {
  content: "\f107";
  font-weight: 400;
}
.awesomeIcon.awesomeIcon--arrowRight:before {
  content: "\f054";
  font-weight: 400;
}
.singleColumnWriterButton .awesomeIcon.awesomeIcon--arrowRight {
  position: relative;
}
.singleColumnWriterButton .awesomeIcon.awesomeIcon--arrowRight:before {
  font-size: 10px;
  right: -1.5em;
  top: 50%;
  transform: translateY(-50%);
}
.commonContactBtn .awesomeIcon {
  color: #fff;
  font-size: 20px;
}
.commonContactBtn .awesomeIcon:before {
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}

.QaArrow:before {
  right: 1em;
  transition: 0.3s;
}
.QaArrow.on:before {
  content: "\f00d";
}

.estimateIcon {
  position: relative;
  border-radius: 30px;
  background-color: #191970;
  width: 27px;
  height: 27px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
}
.estimateIcon::after {
  color: #fff;
  font-family: "Font Awesome 6 Pro";
  font-weight: bold;
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  right: -1px;
  left: 0;
  line-height: 1;
}
.estimateIcon.estimateIcon__tel:after {
  content: "\f879";
  font-size: 14px;
}
.estimateIcon.estimateIcon__tel.estimateIcon__tel--colorReverse {
  background-color: #fff;
}
.estimateIcon.estimateIcon__tel.estimateIcon__tel--colorReverse:after {
  color: #191970;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .estimateIcon {
    width: 20px;
    height: 20px;
  }
  .estimateIcon.estimateIcon__tel:after {
    content: "\f879";
    font-size: 10px;
  }
}

#estimate-section {
  margin-bottom: 200px;
}

.hexagon {
  position: relative;
  padding-left: 1.7em;
}
.hexagon::before, .hexagon::after {
  content: "";
  display: inline-block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.3em;
  height: 1.3em;
  position: absolute;
  left: 0em;
  top: 0.3em;
}
.hexagon::before {
  background-image: url(../img/hexagon.svg);
}
.hexagon.hexagon--both::after {
  left: auto;
  right: -1.5em;
  background-image: url(../img/hexagon.svg);
}
@media only screen and (max-width: 767px) {
  .hexagon::before, .hexagon::after {
    top: 0.2em;
  }
  .hexagon:before {
    left: 0.1em;
  }
  .hexagon.hexagon--both:after {
    right: -1.3em;
  }
}

.arrow {
  position: relative;
  display: block;
}
.arrow:before, .arrow:after {
  position: absolute;
  display: inline-block;
  content: "";
  right: 0;
  transition: 0.3s;
}
.arrow:before {
  background-color: #fff;
  height: 1px;
  top: 0px;
  width: 18px;
}
.arrow:after {
  top: -2px;
  width: 5px;
  height: 5px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
}

.circle:before {
  position: absolute;
  content: "";
  display: inline-block;
  border: 1px solid #fff;
  width: 15px;
  height: 15px;
  border-radius: 10px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}

.linkArrow {
  position: absolute;
  display: block;
  right: 2%;
  transition: 0.2s;
  top: 50%;
  transform: translateY(-50%);
}
.linkArrow .arrow:before, .linkArrow .arrow:after {
  right: 1.6em;
}
.linkArrow .circle:before {
  right: 1.3em;
  opacity: 0.5;
}
.linkArrow.linkArrow--l .arrow:before, .linkArrow.linkArrow--l .arrow:after {
  right: 1.3em;
}
.linkArrow.linkArrow--l .arrow:before {
  width: 22px;
}
.linkArrow.linkArrow--l .arrow:after {
  top: -3px;
  width: 7px;
  height: 7px;
}
.linkArrow.linkArrow--l .circle:before {
  right: 0.9em;
  width: 20px;
  height: 20px;
}
.topAboutLinkCard .linkArrow {
  top: 90%;
  right: 4%;
}
.topColumnCardTextBox .linkArrow {
  top: 80%;
  margin-right: 5%;
}
.topColumnCardTextBox .linkArrow .circle:before {
  border: 1px solid #191970;
}
.topColumnCardTextBox .linkArrow .arrow:before {
  background-color: #191970;
}
.topColumnCardTextBox .linkArrow .arrow:after {
  border-right: 1px solid #191970;
  border-top: 1px solid #191970;
}
@media only screen and (max-width: 767px) {
  .topAboutLinkCard .linkArrow {
    top: 80%;
    right: 0%;
  }
}

.ribbon {
  display: inline-block;
  position: relative;
  height: 50px; /*リボンの高さ*/
  line-height: 50px; /*リボンの高さ*/
  text-align: center;
  padding: 0 30px; /*横の大きさ*/
  font-size: 18px; /*文字の大きさ*/
  background: #191970; /*塗りつぶし色*/
  color: #fff; /*文字色*/
  box-sizing: border-box;
}
.ribbon:before, .ribbon:after {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  z-index: 1;
}
.ribbon:before {
  top: 0;
  left: 0;
  border-width: 25px 0px 35px 10px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}
.ribbon:after {
  top: 0;
  right: 0;
  border-width: 25px 10px 35px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}
@media only screen and (max-width: 959px) {
  .ribbon {
    height: 40px;
    line-height: 40px;
    padding: 0 25px;
  }
  .ribbon:before {
    border-width: 20px 0px 20px 8px;
  }
  .ribbon:after {
    border-width: 20px 8px 20px 0px;
  }
}

.slick-prev,
.slick-next {
  z-index: 100;
  transition: 0.3s;
  width: min(5vw, 65px);
  height: min(9vw, 105px);
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%);
}
.slick-prev:before,
.slick-next:before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 2em;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  opacity: 0.8;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .slick-prev,
  .slick-next {
    width: 8vw;
    height: 11vw;
  }
}

.slick-prev {
  left: 0;
}
.slick-prev:before {
  background-image: url(../img/prev_arrow.svg);
}

.slick-next {
  right: 0;
}
.slick-next:before {
  background-image: url(../img/next_arrow.svg);
}

.slick-dots {
  bottom: -13%;
}
.slick-dots li {
  margin: 0 2px;
}
.slick-dots li button:before {
  content: "";
  display: block;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  background-color: #191970;
  opacity: 1;
}
.slick-dots li.slick-active button:before {
  background-color: #c3b060 !important;
}
@media only screen and (max-width: 767px) {
  .slick-dots {
    bottom: -16%;
  }
  .slick-dots li button:before {
    width: 8px !important;
    height: 8px !important;
  }
}

.gMapFrame iframe {
  width: 100%;
  border-radius: 15px;
  height: 550px;
}
@media only screen and (max-width: 767px) {
  .gMapFrame iframe {
    height: 300px;
  }
}

.gmapIframe {
  width: 360px;
  height: 270px;
}
@media only screen and (max-width: 767px) {
  .gmapIframe {
    width: 100%;
    height: 200px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .gmapIframe {
    width: 240px;
    height: 180px;
  }
}

.snsLink {
  display: inline-block;
  margin-right: 1em;
}
.snsLink:hover {
  color: #c3b060;
  opacity: 0.7;
}
@media only screen and (max-width: 959px) {
  .snsLink:last-child:before {
    padding-bottom: 0;
  }
  .snsLink:not(:last-child) {
    margin-bottom: 0em;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .snsLink:last-child:before {
    padding-bottom: 0;
  }
  .snsLink:not(:last-child) {
    margin-bottom: 0em;
  }
}

.snsIcon {
  transition: 0.3s;
  color: #191970;
}
.snsIcon:before {
  display: inline-block;
  font-family: "Font Awesome 6 Brands";
  font-size: 31px;
  line-height: 1;
}
.snsIcon:after {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1;
  display: flex;
  align-items: flex-end;
}
.snsIcon.snsIcon--line:before {
  content: "\f3c0";
}
.snsIcon.snsIcon--instagram:before {
  content: "\f16d";
}
.snsIcon.snsIcon--facebook:before {
  content: "\f39e";
}
.snsIcon.snsIcon--twitter:before {
  content: "\f099";
}
@media only screen and (max-width: 767px) {
  .snsIcon:before {
    font-size: 32px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .snsIcon {
    font-size: 11px;
  }
  .snsIcon:before {
    font-size: 26px;
  }
  .snsIcon:after {
    display: none;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .snsIcon {
    font-size: 11px;
  }
  .snsIcon:before {
    font-size: 26px;
  }
  .snsIcon:after {
    display: none;
  }
}

.commonUnit {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 7px;
}
@media only screen and (max-width: 767px) {
  .commonUnit {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  }
}

.commonUl li {
  position: relative;
  padding: 1em 0;
  border-bottom: 1px solid #eee;
}
.commonUl li:before {
  content: "\f058";
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  color: #191970;
  font-size: 24px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 959px) {
  .commonUl li:before {
    font-size: 18px;
  }
}
.commonUl li span {
  font-size: 18px;
  margin-left: 45px;
  display: inline-block;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 959px) {
  .commonUl li span {
    font-size: 14px;
    margin-left: 30px;
  }
}
.commonUl.white li:before {
  color: #fff;
}

.commonUlDisc li {
  position: relative;
  padding-left: 1.3em;
}
.commonUlDisc li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.7em;
  left: 0.4em;
  width: 0.4em;
  height: 0.4em;
  background-color: #1a1f2e;
  border-radius: 50px;
}

.pageHeader {
  padding-top: clamp(25px, 5vw, 50px);
  padding-bottom: clamp(25px, 5vw, 50px);
  position: relative;
}
.pageHeader.pageHeader__likeLp {
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .pageHeader {
    padding-top: 10vw;
    padding-bottom: 10vw;
  }
  .pageHeader.pageHeader__likeLp {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }
}

.pageHeaderTitleWrap {
  padding: 3em 2em;
  padding-left: 6em;
  display: inline-block;
  position: relative;
  z-index: 10;
}
.pageHeaderTitleWrap:before, .pageHeaderTitleWrap:after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
}
.pageHeaderTitleWrap:before {
  left: -200%;
  width: 305%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: -1;
  right: 0;
  transform: skew(-20deg);
}
.pageHeader__likeLp .pageHeaderTitleWrap {
  width: 37%;
  padding: 1.5em 0;
  padding-left: 4em;
}
@media only screen and (max-width: 767px) {
  .pageHeaderTitleWrap {
    padding: 1em;
    padding-left: 2em;
  }
  .pageHeader__likeLp .pageHeaderTitleWrap {
    width: 71%;
    padding-left: 2em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pageHeaderTitleWrap {
    padding: 2em;
    padding-left: 4em;
  }
}

.pageHeaderHexImg {
  max-width: 220px;
  margin-left: 0;
  margin-top: 20px;
  width: 60%;
}
@media only screen and (max-width: 767px) {
  .pageHeaderHexImg {
    width: 120px;
    position: absolute;
    right: -95px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
  }
}

@media print, screen and (min-width: 768px) {
  .pageHeaderCopyWrap {
    width: 67%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .pageHeaderCopyWrap {
    padding-left: 2em;
    margin-top: 1em;
  }
}

.pageHeaderCopy {
  color: #1a1f2e !important;
}
.pageHeaderCopy span {
  font-weight: 900;
  background-color: rgba(255, 255, 255, 0.8);
}

.vertical {
  writing-mode: vertical-rl;
  font-feature-settings: normal;
  white-space: nowrap;
  text-orientation: upright;
}

.vertical {
  writing-mode: vertical-rl;
}

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

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

.commonTitle {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 767px) {
  .commonTitle {
    line-height: 1.5;
  }
}

.commonTitle_xs {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 2vw, 18px);
}
@media only screen and (max-width: 767px) {
  .commonTitle_xs {
    line-height: 1.5;
  }
}

.commonTitle_s {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 2.1vw, 22px);
}
@media only screen and (max-width: 767px) {
  .commonTitle_s {
    line-height: 1.5;
  }
}

.commonTitle_m {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 3vw, 29px);
}
@media only screen and (max-width: 767px) {
  .commonTitle_m {
    line-height: 1.5;
  }
}

.commonTitle_ml {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  color: #191970;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 900;
  font-size: clamp(21px, 2.7vw, 34px);
}
@media only screen and (max-width: 767px) {
  .commonTitle_ml {
    line-height: 1.5;
  }
}

.commonTitle_l {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  color: #191970;
  font-size: clamp(28px, 4.2vw, 45px);
  letter-spacing: 0.05em;
  line-height: 1.3;
  font-weight: 900;
}
@media only screen and (max-width: 767px) {
  .commonTitle_l {
    line-height: 1.5;
  }
}
@media only screen and (max-width: 767px) {
  .commonTitle_l {
    font-size: 6.5vw;
    line-height: 1.5;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .commonTitle_l {
    line-height: 1.5;
  }
}

.commonTitleEn {
  font-family: "Inter", sans-serif;
  font-size: clamp(27px, 5vw, 52px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
}
.commonTitleEn:first-letter {
  color: #c3b060;
}
.commonTitleEn.mainColor--first::first-letter {
  color: #191970;
}
.pageHeader__likeLp .commonTitleEn {
  font-size: 38px !important;
}
@media only screen and (max-width: 767px) {
  .commonTitleEn {
    font-size: 7.5vw;
  }
  .commonTitleEn.sp_s {
    font-size: 5.5vw;
  }
  .pageHeader__likeLp .commonTitleEn {
    font-size: 24px !important;
  }
}

.commonTitleEn_m {
  font-family: "Inter", sans-serif;
  font-size: clamp(27px, 5vw, 52px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  font-size: clamp(27px, 4.5vw, 45px);
}
.commonTitleEn_m:first-letter {
  color: #c3b060;
}

.commonTitleEn_s {
  font-family: "Inter", sans-serif;
  font-size: clamp(27px, 5vw, 52px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  font-size: clamp(19px, 3vw, 30px);
  transition: 0.3s;
}
.commonTitleEn_s:first-letter {
  color: #c3b060;
}
@media only screen and (max-width: 767px) {
  .commonTitleEn_s {
    font-size: 5.5vw;
  }
}

.commonTitleEn_xs {
  font-family: "Inter", sans-serif;
  font-size: clamp(27px, 5vw, 52px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  font-size: 12px;
}
.commonTitleEn_xs:first-letter {
  color: #c3b060;
}
.commonTitleEn_xs:first-letter {
  color: #1a1f2e;
}

.commonTitleJp {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(15px, 1.9vw, 23px);
}
@media only screen and (max-width: 767px) {
  .commonTitleJp {
    line-height: 1.5;
  }
}
.pageHeader__likeLp .commonTitleJp {
  font-size: 18px !important;
}
@media only screen and (max-width: 767px) {
  .pageHeader__likeLp .commonTitleJp {
    font-size: 14px !important;
  }
}

.commonTitleJp_s {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(13px, 1.5vw, 15px);
}
@media only screen and (max-width: 767px) {
  .commonTitleJp_s {
    line-height: 1.5;
  }
}

.commonTitleJp_m {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 3vw, 32px);
}
@media only screen and (max-width: 767px) {
  .commonTitleJp_m {
    line-height: 1.5;
  }
}

.commonUnitLinkTitleWrap {
  position: relative;
  right: 0;
  left: 0;
  z-index: 10;
  margin-bottom: -2em;
}
.commonUnitLinkTitleWrap.commonUnitLinkTitleWrap--l {
  margin-bottom: -3.5em;
}
@media only screen and (max-width: 959px) {
  .commonUnitLinkTitleWrap {
    margin-bottom: -2em;
  }
}
@media only screen and (max-width: 767px) {
  .commonUnitLinkTitleWrap.commonUnitLinkTitleWrap--l {
    margin-bottom: -2.5em;
  }
}

.commonUnitLinkTitle {
  line-height: 1.8;
  font-size: 27px;
}
@media only screen and (max-width: 767px) {
  .commonUnitLinkTitle {
    font-size: 20px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .commonUnitLinkTitle {
    font-size: 19px;
  }
}

.commonTitleDecoWrap {
  text-align: center;
  padding: 0 1.3em 0.6em;
  position: relative;
  background-color: #fff;
  display: inline-block;
}
.commonTitleDecoWrap:before, .commonTitleDecoWrap:after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  top: 0px;
  border-top: 0px solid transparent;
  border-bottom: 71px solid transparent;
}
.commonTitleDecoWrap:before {
  border-right: 27px solid #fff;
  left: -27px;
}
.commonTitleDecoWrap:after {
  border-left: 27px solid #fff;
  right: -27px;
}
.commonTitleDecoWrap.commonTitleDecoWrap--l {
  padding-bottom: 1.5em;
}
.commonTitleDecoWrap.commonTitleDecoWrap--l:before, .commonTitleDecoWrap.commonTitleDecoWrap--l:after {
  border-bottom: 121px solid transparent;
}
.commonTitleDecoWrap.commonTitleDecoWrap--l:before {
  border-right: 64px solid #fff;
  left: -64px;
}
.commonTitleDecoWrap.commonTitleDecoWrap--l:after {
  border-left: 64px solid #fff;
  right: -64px;
}
.commonTitleDecoWrap.commonTitleDecoWrap--l .commonTitleEn {
  font-size: 55px;
}
.commonTitleDecoWrap.commonTitleDecoWrap--l .commonTitleJp {
  font-size: 23px;
}
@media only screen and (max-width: 767px) {
  .commonTitleDecoWrap:before, .commonTitleDecoWrap:after {
    border-bottom: 57px solid transparent;
  }
  .commonTitleDecoWrap.commonTitleDecoWrap--l {
    padding-bottom: 0.5em;
  }
  .commonTitleDecoWrap.commonTitleDecoWrap--l .commonTitleEn {
    font-size: 29px;
  }
  .commonTitleDecoWrap.commonTitleDecoWrap--l .commonTitleJp {
    font-size: 15px;
    line-height: 1.8;
  }
  .commonTitleDecoWrap.commonTitleDecoWrap--l:before, .commonTitleDecoWrap.commonTitleDecoWrap--l:after {
    border-bottom: 63px solid transparent;
  }
}
@media only screen and (max-width: 959px) {
  .commonTitleDecoWrap.commonTitleDecoWrap--l:before {
    border-right: 24px solid #fff;
    left: -24px;
  }
  .commonTitleDecoWrap.commonTitleDecoWrap--l:after {
    border-left: 24px solid #fff;
    right: -24px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .commonTitleDecoWrap:before, .commonTitleDecoWrap:after {
    border-bottom: 54px solid transparent;
  }
  .commonTitleDecoWrap.commonTitleDecoWrap--l {
    padding-bottom: 0.5em;
  }
  .commonTitleDecoWrap.commonTitleDecoWrap--l:before, .commonTitleDecoWrap.commonTitleDecoWrap--l:after {
    border-bottom: 73px solid transparent;
  }
  .commonTitleDecoWrap.commonTitleDecoWrap--l:before {
    border-right: 27px solid #fff;
    left: -27px;
  }
  .commonTitleDecoWrap.commonTitleDecoWrap--l:after {
    border-left: 27px solid #fff;
    right: -27px;
  }
  .commonTitleDecoWrap.commonTitleDecoWrap--l .commonTitleEn {
    font-size: 38px;
  }
  .commonTitleDecoWrap.commonTitleDecoWrap--l .commonTitleJp {
    font-size: 15px;
  }
}

.commonTitleSizeFixed .commonTitleEn {
  font-size: 50px;
}
.commonTitleSizeFixed .commonTitleJp {
  font-size: 23px;
}
@media only screen and (max-width: 767px) {
  .commonTitleSizeFixed .commonTitleEn {
    font-size: 25px;
  }
  .commonTitleSizeFixed .commonTitleJp {
    font-size: 15px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .commonTitleSizeFixed .commonTitleEn {
    font-size: 38px;
  }
  .commonTitleSizeFixed .commonTitleJp {
    font-size: 15px;
  }
}

.commonUnitLinkCard {
  width: 50%;
  text-align: center;
  position: relative;
}
.commonUnitLinkCard:hover .commonUnitLinkCardImg {
  transform: scale(1.15);
}
.commonUnitLinkCard:hover .linkArrow {
  right: -12%;
}
.commonUnitLinkCard:hover .commonUnitLinkArrowBox {
  background-color: #191970;
}
@media print, screen and (min-width: 768px) {
  .commonUnitLinkCard:nth-child(odd) {
    margin-right: 2%;
  }
  .commonUnitLinkCard:nth-child(even) {
    margin-left: 2%;
  }
}
@media only screen and (max-width: 767px) {
  .commonUnitLinkCard {
    display: inline-block;
    width: 100%;
  }
  .commonUnitLinkCard:first-child {
    margin-bottom: 7%;
  }
}

.commonUnitLinkCardImg {
  padding-bottom: 45%;
  transition: 0.3s;
}

.commonUnitLinkCardImgBox {
  overflow: hidden;
}

.commonUnitLinkCardLabel {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  z-index: 2;
}
@media only screen and (max-width: 959px) {
  .commonUnitLinkCardLabel {
    width: 90px;
  }
}

.commonUnitLinkCardMsg {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  color: #191970;
  text-align: left;
  margin-top: 0.7em;
  padding-left: 1.2em;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .commonUnitLinkCardMsg {
    line-height: 1.5;
  }
}
.commonUnitLinkCardMsg:before {
  content: "";
  position: absolute;
  display: inline-block;
  height: 100%;
  width: 5px;
  background-color: #191970;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .commonUnitLinkCardMsg {
    font-size: 4vw;
    padding-right: 13vw;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .commonUnitLinkCardMsg {
    font-size: 15px;
  }
}

.commonUnitLinkArrowBox {
  background-color: #c3b060;
  width: min(6.5vw, 67px);
  height: min(6.5vw, 67px);
  position: absolute;
  right: 0;
  bottom: 0;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .commonUnitLinkArrowBox {
    width: 13vw;
    height: 13vw;
  }
}

.commonUnitLinkArrow {
  width: 100%;
  height: 100%;
}

.commonUnitLinkPt {
  padding-top: clamp(45px, 6vw, 60px);
}

.commonContact {
  padding-top: 60px;
}

.commonContactBanner {
  transition: 0.3s;
}
.commonContactBanner:hover {
  opacity: 0.8;
}

@media only screen and (min-width: 767px) and (max-width: 959px) {
  .commonContactText {
    margin-bottom: 4%;
  }
}
@media print, screen and (min-width: 768px) {
  .commonContactText {
    text-align: center;
  }
}

.commonContactBtnText {
  transition: 0.3s;
}

.commonContactBtn {
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
}
.commonContactBtn:hover {
  background-color: #f0f2f4;
}
.commonContactBtn:hover .commonUnitLinkArrowBox {
  background-color: #191970;
}
.commonContactBtn.onlineBtn:hover {
  background-color: #fff;
}
.commonContactBtn.onlineBtn:hover .commonContactBtnText {
  color: #c3b060;
  opacity: 0.7;
}
.commonContactBtn.onlineBtn:hover .commonUnitLinkArrowBox {
  background-color: #c3b060;
  opacity: 0.6;
}
.commonContactBtn .commonUnitLinkArrowBox {
  position: static;
  display: inline-block;
  width: 4em;
  height: 4em;
}
.commonContactBtn .commonContactBtnText {
  font-size: 18px;
  font-weight: bold;
  color: #191970;
  min-width: 250px;
  padding: 0.8em;
  padding-left: 1.5em;
  text-align: left;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .pageOnlineApplyInner .commonContactBtn {
    border: 2px solid #c3b060;
  }
  .pageOnlineApplyInner .commonContactBtn .commonContactBtnText {
    padding-left: 0.8em;
  }
  .pageOnlineApplyInner .commonContactBtn .commonUnitLinkArrowBox {
    display: none;
  }
}
@media print, screen and (min-width: 768px) {
  .commonContactBtn:nth-child(odd) {
    margin-right: 1%;
  }
  .commonContactBtn:nth-child(even) {
    margin-left: 1%;
  }
}
@media only screen and (max-width: 959px) {
  .commonContactBtn:not(:last-child) {
    margin-bottom: 3%;
  }
  .commonContactBtn .commonContactBtnText {
    font-size: 16px;
    min-width: 210px;
  }
  .commonContactBtn .commonUnitLinkArrowBox {
    width: 3.5em;
    height: 3.5em;
  }
}

.commonArea {
  margin: 45px auto;
}

.commonAreaText {
  right: 50%;
  transform: translateX(50%);
  top: 40%;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .commonAreaText {
    position: static;
    transform: unset;
    text-align: center;
    font-size: 5.5vw;
    margin-bottom: 2%;
  }
}

@media only screen and (max-width: 767px) {
  .commonAreaImgBox {
    position: static;
  }
}
@media print, screen and (min-width: 768px) {
  .commonAreaImgBox {
    width: 23%;
    margin-right: 4%;
  }
}

@media only screen and (max-width: 767px) {
  .commonAreaBox {
    position: relative;
  }
}

@media only screen and (max-width: 767px) {
  .commonAreaImg {
    position: absolute;
    z-index: -1;
    width: min(75%, 260px);
    right: 0;
    left: 0;
    top: 18%;
  }
}

@media print, screen and (min-width: 768px) {
  .commonAreaUlBox {
    width: 73%;
  }
}

.commonAreaUl li {
  margin-bottom: 0.8em;
  margin-right: 0.6em;
  font-size: clamp(13px, 1.4vw, 15px);
}
.commonAreaUl li:nth-child(8n+1):nth-last-child(-n+8), .commonAreaUl li:nth-child(8n+1):nth-last-child(-n+8) ~ li {
  margin-bottom: 0;
}
.commonAreaUl li:before {
  content: "●";
}
@media only screen and (max-width: 767px) {
  .commonAreaUl {
    justify-content: center;
  }
  .commonAreaUl li:nth-child(8n+1):nth-last-child(-n+8), .commonAreaUl li:nth-child(8n+1):nth-last-child(-n+8) ~ li {
    margin-bottom: 0.8em;
  }
  .commonAreaUl li:nth-child(5n+1):nth-last-child(-n+5), .commonAreaUl li:nth-child(5n+1):nth-last-child(-n+5) ~ li {
    margin-bottom: 0;
  }
}

.commonCaseTitle {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  background-color: #191970;
  display: inline-block;
  padding: 0 0.7em;
  padding-top: 0.2em;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .commonCaseTitle {
    line-height: 1.5;
  }
}
.commonCaseTitle:after {
  content: "";
  display: inline-block;
  position: absolute;
  border-top: 1.5em solid transparent;
  border-left: 1.5em solid #191970;
  top: 0;
  right: -1.45em;
}

.commonCaseTitleWrap {
  position: relative;
  margin-top: -5.3em;
  margin-bottom: 4%;
}
.commonCaseTitleWrap:before {
  content: "";
  display: block;
  height: 50%;
  width: 100%;
  position: absolute;
  background-color: #191970;
  left: 0%;
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .commonCaseTitleWrap {
    margin-top: -4.5em;
    margin-bottom: 7%;
  }
}

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

.commonCaseCard .commonCaseCardTextBox {
  border-bottom: 1px solid #191970;
}
.commonCaseUnit__noborder .commonCaseCard .commonCaseCardTextBox {
  border-bottom: none;
}
.commonCaseUnit__price .commonCaseCard {
  margin-bottom: 4%;
}
@media only screen and (max-width: 767px) {
  .commonCaseCard:not(:last-child) {
    margin-bottom: 5%;
  }
  .commonCaseCard .commonCaseCardImgBox {
    margin: auto;
    width: 100%;
    padding: 0;
  }
  .commonCaseCard .topColumnCardImg {
    padding-bottom: 50%;
  }
  .commonCaseCard .commonCaseCardTextBox {
    width: 100%;
  }
  .commonCaseUnit__sp2 .commonCaseCard {
    width: 48%;
  }
}
@media print, screen and (min-width: 768px) {
  .commonCaseCard {
    width: 30%;
  }
  .commonCaseUnit__4 .commonCaseCard {
    width: 24%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .commonCaseCard {
    width: 32%;
  }
}

.commonCaseText {
  font-size: 14px;
}

@media print, screen and (min-width: 768px) {
  .presentBannerCnt {
    width: min(80%, 840px);
    margin-right: auto;
    margin-left: auto;
  }
}

.presentBannerUnit {
  padding: 2% 3% 3%;
  padding-right: 5%;
  border: clamp(7px, 1.2vw, 12px) solid #c3b060;
  align-items: center;
  transition: 0.3s;
}
.presentBannerUnit:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  .presentBannerUnit {
    padding: 6% 3% 7%;
    width: min(91%, 420px);
    margin: auto;
  }
}

.presentBannerImgBox {
  width: 33%;
}
@media only screen and (max-width: 767px) {
  .presentBannerImgBox {
    width: 50%;
    margin-bottom: 3%;
    margin-top: -20%;
  }
}

@media print, screen and (min-width: 768px) {
  .presentBannerTextBox {
    width: 63%;
    margin-left: 4%;
  }
}

.presentBannerMsg .msgBox_s .estimate {
  background-color: #191970;
  color: #fff;
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  padding: 0 0.3em 0.1em;
}
@media only screen and (max-width: 767px) {
  .presentBannerMsg .msgBox_s .estimate {
    line-height: 1.5;
  }
}
.presentBannerMsg .msgBox_s .text_s {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  color: #191970;
}
@media only screen and (max-width: 767px) {
  .presentBannerMsg .msgBox_s .text_s {
    line-height: 1.5;
  }
}
.presentBannerMsg .msgBox_l span {
  line-height: 1;
  font-size: clamp(31px, 5vw, 52px);
  letter-spacing: 0;
}
.presentBannerMsg .msgBox_l .certificates {
  color: #d7621e;
}
@media only screen and (max-width: 767px) {
  .presentBannerMsg {
    text-align: center;
    margin-bottom: 4%;
  }
  .presentBannerMsg .msgBox_s .estimate,
  .presentBannerMsg .msgBox_s .text_s {
    font-size: min(4vw, 17px);
  }
}

.presentBannerTelBox.headerContactTelBox {
  padding: 0;
}
.presentBannerTelBox .headerContactTel {
  font-size: clamp(18px, 2.6vw, 26px);
}
@media only screen and (max-width: 767px) {
  .presentBannerTelBox.headerContactTelBox {
    margin-right: 0;
    margin-bottom: 3%;
  }
  .presentBannerTelBox .headerContactTel {
    font-size: min(6vw, 25px);
  }
  .presentBannerTelBox .headerContactTelLink {
    justify-content: center;
  }
}

.presentBannerRadiusBox {
  margin-bottom: 3.5%;
}
@media only screen and (max-width: 767px) {
  .presentBannerRadiusBox {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 6%;
  }
}

.presentBannerRadius {
  border-radius: 50px;
  border: 1px solid #191970;
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.3;
  padding: 0.1em 1em;
  width: 100%;
  text-align: center;
  color: #191970;
  font-weight: bold;
}
.presentBannerRadius:nth-child(odd) {
  margin-right: 1%;
}
.presentBannerRadius:nth-child(even) {
  margin-left: 1%;
}

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

/*==================================================
* ヘッダー
*================================================*/
@media only screen and (max-width: 767px) {
  .overRayMenuUl {
    margin-bottom: 8%;
  }
  .overRayMenuUl > li > a {
    padding: 1.1rem 3rem;
    display: block;
    transition: 0.3s;
    position: relative;
  }
  .overRayMenuUl > li > a span {
    display: block;
    text-align: left;
    letter-spacing: 0.015em;
    line-height: 1.4;
    transition: 0.3s;
    color: #1a1f2e;
    font-size: 16px;
    font-weight: bold;
  }
  .overRayMenuUl > li > a:before {
    content: "";
    display: inline-block;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-image: url(../img/hexagon.svg);
    width: 1.2em;
    height: 1.2em;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .overRayMenuUl .dropMenuLink {
    padding-bottom: 1em;
  }
  .overRayMenuUl .dropMenuWrap {
    padding: 0 2em;
    padding-bottom: 1.5em;
    padding-left: 3.5em;
  }
  .overRayMenuUl .dropMenu li {
    position: relative;
    padding-left: 2em;
  }
  .overRayMenuUl .dropMenu li:not(:last-child) {
    margin-bottom: 0.8em;
  }
  .overRayMenuUl .dropMenu li:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 2em;
    height: 1px;
    background-color: #1a1f2e;
    left: -1em;
    top: 50%;
    transform: translateY(-50%);
  }
  .overRayMenuUl .dropMenu li a {
    color: #1a1f2e;
    font-weight: bold;
  }
}

.logo {
  width: min(19vw, 260px);
}
.logo.logo--footer {
  margin-left: 0;
  width: min(20vw, 260px);
}
@media only screen and (max-width: 767px) {
  .logo {
    width: 180px;
  }
  .logo.logo--footer {
    width: min(45vw, 190px);
  }
}

.headerMenuUl {
  padding-right: 2em;
}
.headerMenuUl li a {
  padding: 0 1.2em;
}
.headerMenuUl li a span {
  transition: 0.3s;
  font-weight: bold;
}
.headerMenuUl li a:hover span {
  color: #c3b060;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerMenuUl {
    padding-right: 0.5em;
  }
  .headerMenuUl li a {
    padding: 0 0.4em;
  }
  .headerMenuUl li a span {
    font-size: 12px;
  }
}

header {
  position: relative;
  z-index: 1100;
}
@media only screen and (max-width: 767px) {
  header {
    position: fixed;
    width: 100%;
    background-color: #fff;
  }
}

.headerNavUnit {
  display: flex;
  justify-content: space-between;
}

.headerNavTitle {
  font-size: clamp(10px, 1vw, 12px);
  letter-spacing: 0.07em;
  line-height: 1;
  white-space: nowrap;
}

.headerInner {
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .headerInner {
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #fff;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  }
}

@media only screen and (max-width: 767px) {
  .headerLogoLink {
    margin-right: 1em;
  }
}

.headerNavMenuWrap {
  background-color: #1a1f2e;
  padding: 0.7em;
}
@media only screen and (max-width: 767px) {
  .headerNavMenuWrap {
    display: none;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerNavMenuWrap {
    padding: 0.6em;
  }
}

.headerNavUl {
  justify-content: center;
}
.headerNavUl li a {
  color: #fff;
  padding: 0.2em 1em;
  padding-left: 0;
  margin: auto 0.5em;
  transition: 0.3s;
  display: inline-block;
}
.headerNavUl li a span {
  font-weight: bold;
  font-size: clamp(13px, 1.2vw, 15px);
  letter-spacing: 0.1em;
  padding-left: 1em;
  position: relative;
}
.headerNavUl li a span:before, .headerNavUl li a span:after {
  transition: 0.3s;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  border-radius: 20px;
  vertical-align: middle;
  margin-right: 0.3em;
}
.headerNavUl li a span:before {
  left: 0;
  background-color: #c3b060;
  width: 8px;
  height: 8px;
}
.headerNavUl li a span:after {
  left: -3px;
  border: 1px solid #c3b060;
  width: 14px;
  height: 14px;
  opacity: 0;
}
.headerNavUl li a.active, .single-post .headerNavUl li a.column {
  color: #c3b060;
}
.headerNavUl li a.active span:after, .single-post .headerNavUl li a.column span:after {
  opacity: 1;
}
.headerNavUl li a.top {
  color: #fff;
}
.headerNavUl li a.top span:after {
  opacity: 0;
}
.headerNavUl li a:hover {
  color: #c3b060;
}
.headerNavUl li a:hover span:after {
  opacity: 1;
}
.headerNavUl .dropMenu li a {
  font-weight: bold;
  font-size: clamp(13px, 1.2vw, 15px);
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerNavUl {
    flex-wrap: wrap;
    width: 65%;
    margin: auto;
  }
  .headerNavUl li a {
    padding: 0.1em 1em;
  }
  .headerNavUl .dropMenuWrap {
    display: none;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 768px) {
  .headerNavUl .dropMenuLinkLi:hover .dropMenuWrap {
    opacity: 1;
    visibility: visible;
  }
}
@media print, screen and (min-width: 768px) {
  .headerNavUl .dropMenuWrap {
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
  }
  .headerNavUl .dropMenu {
    position: absolute;
    left: -3%;
    background-color: #1a1f2e;
    padding: 0.5em;
    padding-left: 1.2em;
    padding-bottom: 0.8em;
    z-index: 30;
  }
  .headerNavUl .dropMenu li {
    margin-bottom: 0.2em;
  }
  .headerNavUl .dropMenu li a {
    font-weight: bold;
    font-size: clamp(13px, 1.2vw, 15px);
    letter-spacing: 0.1em;
    white-space: nowrap;
  }
}

.headerEstimateBox {
  display: flex;
  align-items: center;
  margin-right: 1em;
  justify-content: flex-end;
}

.headerContactTelBox {
  padding: 10px 0;
  margin-right: 1em;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerContactTelBox {
    margin-right: 0.5em;
  }
}

.headerContactBox {
  background-color: #c3b060;
  display: inline-block;
  position: relative;
  height: 71px; /*リボンの高さ*/
  line-height: 71px; /*リボンの高さ*/
  text-align: center;
  padding: 0 30px; /*横の大きさ*/
  box-sizing: border-box;
  transition: 0.3s;
}
.headerContactBox:before {
  position: absolute;
  content: "";
  width: 0px;
  height: 0px;
  z-index: 1;
  top: 0;
  left: 0;
  border-width: 35px 0px 35px 10px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}
.headerContactBox:hover {
  opacity: 0.7;
}
.headerContactBox:hover .circleBg:before {
  left: 80%;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerContactBox {
    padding-right: 2vw;
    padding-left: 2.3vw;
  }
}

.headerEstimateLink {
  width: 100%;
  max-width: 120px;
  display: block;
  transition: 0.3s;
}
.headerEstimateLink:nth-child(odd) {
  margin-right: 1%;
  max-width: 148px;
}
.headerEstimateLink:nth-child(even) {
  margin-left: 1%;
}
.headerEstimateLink:hover {
  margin-bottom: 0.5em;
}

.headerCrownBox img {
  width: 100%;
  max-width: 64px;
  margin-right: 10px;
}

.headerNavLogoWrap {
  align-items: center;
  margin-left: 2em;
}
@media only screen and (max-width: 767px) {
  .headerNavLogoWrap {
    margin-left: 1em;
  }
}
@media print, screen and (min-width: 768px) {
  .headerNavLogoWrap {
    flex-direction: column-reverse;
    justify-content: center;
  }
}

@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerContactWrap {
    align-items: center;
  }
}

.headerContactTelLink {
  transition: 0.3s;
  display: flex;
  align-items: center;
}
.headerContactTelLink:hover {
  opacity: 0.7;
}

.headerContactTelLinkWrap {
  display: flex;
  align-items: center;
  margin-bottom: 0.2em;
}

.headerContactTel {
  font-size: clamp(18px, 2.7vw, 31px);
  line-height: 1;
  letter-spacing: 0;
  padding-left: 0.1em;
  white-space: nowrap;
}

.receptionTime {
  font-size: clamp(10px, 1vw, 12px);
  background-color: #c3b060;
  line-height: 1;
  padding: 0.2em 0.6em;
  margin-right: 0.5em;
  white-space: nowrap;
}
.receptionTime.receptionTime--m {
  font-size: 14px;
}

.receptionText {
  line-height: 1;
  font-size: clamp(10px, 1vw, 12px);
  white-space: nowrap;
}

.receptionWrap {
  align-items: center;
}

.headerContactText {
  font-size: clamp(11px, 1.2vw, 15px);
  line-height: 1;
  font-weight: bold;
  white-space: nowrap;
}
.headerContactText.headerContactText--en {
  font-size: 18px;
  margin-bottom: 0.3em;
  font-family: "Inter", sans-serif;
}
.headerContactText.circleBg {
  position: relative;
  z-index: 10;
}
.headerContactText.circleBg:before {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 32px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
  z-index: -1;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .headerContactText {
    font-size: 12px;
  }
}

.headerContactTextWrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

@media only screen and (max-width: 767px) {
  .spFooterLink {
    display: flex;
  }
  .spFooterLink .topFvMsgBannerLink {
    width: 50%;
    text-align: center;
    background-color: #191970;
    padding: 0.7em 1.2em;
  }
  .spFooterLink .topFvMsgBannerLink:first-child {
    border-right: 1px solid #fff;
  }
}

.footerLinkBox {
  background-color: #51505c;
  padding-block: min(1.5%, 20px);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.footerLinkBox.show {
  opacity: 1;
  visibility: visible;
}
@media only screen and (max-width: 767px) {
  .footerLinkBox {
    background-color: #191970;
    padding-block: 0;
  }
}

.floatBanner {
  position: fixed;
  bottom: 125px;
  right: 15px;
  max-width: 130px;
  z-index: 999;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}
.floatBanner.show {
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .floatBanner {
    max-width: 130px;
    bottom: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .floatBanner {
    bottom: 70px;
    right: 12px;
    max-width: 85px;
  }
}

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

#fixed-header {
  position: fixed;
  top: -70px;
  width: 100%;
  background-color: #fff;
  z-index: 999;
  transition: 0.5s;
}
#fixed-header.is-show {
  top: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

/*==================================================
*  トップページ
*================================================*/
@media only screen and (max-width: 767px) {
  main {
    padding-top: 61px;
  }
}

.topFvCrown {
  position: absolute;
  right: 2%;
  bottom: 2%;
  width: clamp(210px, 39vw, 500px);
  opacity: 0;
  animation: fade 18s 6s infinite;
}
.topFvCrown.tab-inactive {
  animation-play-state: paused;
}
@media only screen and (max-width: 767px) {
  .topFvCrown {
    right: 0%;
    bottom: auto;
    top: 4%;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  16% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  64% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.topFvVerticalMsg {
  writing-mode: vertical-rl;
  font-feature-settings: normal;
  white-space: nowrap;
  text-orientation: upright;
  font-weight: bold;
  font-size: 25px;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: clamp(20px, 2vw, 25px);
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 767px) {
  .topFvVerticalMsg {
    line-height: 1.5;
  }
}

.topFvVerticalMsgInner {
  padding-top: 13%;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .topFvVerticalMsgInner {
    padding-top: 12vw;
  }
}

.topFvVerticalMsgBox {
  background-image: none !important;
}

.topFvMsgBanner {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 0;
  width: min(22vw, 275px);
}
@media only screen and (max-width: 767px) {
  .topFvMsgBanner {
    width: 38%;
  }
}

.topFvMsgHexagon {
  padding: 10%;
}
@media only screen and (max-width: 767px) {
  .topFvMsgHexagon img {
    width: 118%;
  }
}
@media only screen and (max-width: 959px) {
  .topFvMsgHexagon {
    padding: 6% 0;
  }
  .topFvMsgHexagon img {
    max-width: inherit;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topFvMsgHexagon img {
    width: 111%;
  }
}

.topFvMsgBannerLinkText {
  padding-left: 1.4em;
  font-weight: bold;
  position: relative;
}
.topFvMsgBannerLinkText:before {
  left: 0;
}
@media only screen and (max-width: 767px) {
  .topFvMsgBannerLinkText {
    text-align: center;
    display: inline-block;
    line-height: 1.4;
  }
}

.topFvMsgBannerLink {
  background-color: #c3b060;
  display: block;
  color: #fff;
  letter-spacing: 0.05em;
  transition: 0.3s;
  position: relative;
  padding: 0.5em 1.2em;
}
.topFvMsgBannerLink:hover {
  color: #fff;
  background-color: #191970;
}
.topFvMsgBannerLink:hover .linkArrow {
  right: -4%;
}

.topFv {
  margin-top: 25px;
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .topFv {
    margin-top: 15px;
  }
}

.topFvCnt {
  width: 100%;
  overflow: hidden;
}

@media print, screen and (min-width: 768px) {
  .topFvSlide .slick-prev {
    left: 8px;
  }
  .topFvSlide .slick-next {
    right: 8px;
  }
}
.topFvSlideLink {
  transition: 0.3s;
}
.topFvSlideLink:hover {
  opacity: 0.7;
}

.topFvSlide {
  overflow: hidden;
}

.topFvSlideImg {
  padding-inline: 1.5%;
}
@media print, screen and (min-width: 768px) {
  .topFvSlideImg {
    width: 100%;
  }
}

.topPresentBanner {
  padding-top: clamp(45px, 6vw, 60px);
}

@media print, screen and (min-width: 768px) {
  .topReasonSideTitleBox {
    width: auto;
    writing-mode: vertical-rl;
    font-feature-settings: normal;
    white-space: nowrap;
    text-orientation: upright;
  }
}

.topReasonSideTitleEn {
  text-orientation: sideways;
  font-size: clamp(80px, 16vw, 170px);
  font-weight: bold;
  line-height: 0.8;
  font-family: "Inter", sans-serif;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.4);
  background-size: 110%;
  background-position: top center;
}
@media only screen and (max-width: 767px) {
  .topReasonSideTitleEn {
    writing-mode: vertical-rl;
    font-feature-settings: normal;
    white-space: nowrap;
    text-orientation: upright;
    text-orientation: sideways;
    position: absolute;
    opacity: 0.2;
    z-index: -1;
    font-size: 55vw;
  }
}

.topReasonSideTitleJp {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
}
@media only screen and (max-width: 767px) {
  .topReasonSideTitleJp {
    line-height: 1.5;
  }
}
@media print, screen and (min-width: 768px) {
  .topReasonSideTitleJp {
    margin-left: 0.5em;
  }
}

.topReasonMsgCard {
  position: relative;
}
.topReasonMsgCard:not(:last-child) {
  margin-bottom: 5%;
}
@media only screen and (max-width: 767px) {
  .topReasonMsgCard {
    flex-direction: column-reverse;
  }
  .topReasonMsgCard:not(:last-child) {
    margin-bottom: 12%;
  }
}

@media print, screen and (min-width: 768px) {
  .topReasonMsgCardTextBox {
    width: 80%;
    padding-right: 5%;
  }
}

.topReasonMsgCardImgBox {
  width: 20%;
}
@media only screen and (max-width: 767px) {
  .topReasonMsgCardImgBox {
    width: 35%;
    margin: auto;
    margin-bottom: 2%;
    margin-right: 0;
  }
}

.topReasonMsgCardImg {
  padding-bottom: 100%;
}

.topReasonMsgSub {
  letter-spacing: 0.05em;
  font-weight: bold;
}

.topReasonMsgCardNumWrap {
  width: auto;
}

.topReasonMsgCardNum {
  color: #c3b060;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 600;
  font-family: "Inter", sans-serif;
  line-height: 1.3;
  position: relative;
}
.topReasonMsgCardNum:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 6px;
  bottom: 0;
  left: 0;
  background-color: #c3b060;
}
@media only screen and (max-width: 767px) {
  .topReasonMsgCardNum {
    font-size: 13vw;
    text-align: center;
    position: absolute;
    top: 14%;
    right: 32%;
  }
}

.topReasonMsgCardTitle {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 2.5vw, 25px);
}
@media only screen and (max-width: 767px) {
  .topReasonMsgCardTitle {
    line-height: 1.5;
  }
}
@media print, screen and (min-width: 768px) {
  .topReasonMsgCardTitle {
    align-self: center;
    width: 88%;
    padding-left: 1em;
  }
}

.topReasonMsgCardTitleWrap {
  margin-bottom: 0.8em;
}
@media only screen and (max-width: 767px) {
  .topReasonMsgCardTitleWrap {
    display: block;
  }
}

@media print, screen and (min-width: 768px) {
  .topReasonMsgBox {
    width: min(70vw, 720px);
  }
}

.topServiceBg {
  overflow: hidden;
  background-image: url(".././img/top_service_wide.jpg");
}
@media only screen and (max-width: 767px) {
  .topServiceBg {
    background-image: url(".././img/top_service_wide_sp.jpg");
  }
}

.topServiceWideTitleBg {
  height: 100%;
  width: 25vw;
  position: absolute;
}
.topServiceWideTitleBg:before, .topServiceWideTitleBg:after {
  content: "";
  display: block;
  position: absolute;
  width: 30vw;
  height: 38vw;
  transform: rotate(20deg) translate3d(0, 0, 0);
  bottom: 0;
}
.topServiceWideTitleBg:before {
  background-color: #191970;
  left: 6vw;
  z-index: 1;
}
.topServiceWideTitleBg:after {
  background-color: #c3b060;
  left: 9vw;
}
@media only screen and (max-width: 767px) {
  .topServiceWideTitleBg:before, .topServiceWideTitleBg:after {
    height: 67vw;
  }
  .topServiceWideTitleBg:before {
    left: 14vw;
  }
  .topServiceWideTitleBg:after {
    left: 17vw;
  }
}
@media only screen and (min-width: 1281px) {
  .topServiceWideTitleBg {
    width: 35vw;
  }
  .topServiceWideTitleBg:before, .topServiceWideTitleBg:after {
    width: 35vw;
    height: 35vw;
    bottom: 2vw;
  }
  .topServiceWideTitleBg:before {
    left: 10vw;
  }
  .topServiceWideTitleBg:after {
    left: 12.5vw;
  }
}

.topServiceWideTitleBox {
  padding: clamp(70px, 11vw, 140px) 0;
  position: relative;
}

.topServiceCard:not(:last-child) {
  margin-bottom: 5%;
}
@media only screen and (max-width: 767px) {
  .topServiceCard {
    flex-direction: column-reverse;
  }
  .topServiceCard:not(:last-child) {
    margin-bottom: 15%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topServiceCard:not(:last-child) {
    margin-bottom: 7%;
  }
}

.topServiceCardTitle {
  display: flex;
  align-items: center;
}
.topServiceCardTitle span {
  font-weight: bold;
}

.topServiceCardTextBox {
  margin-bottom: 6%;
  padding-left: 1em;
  border-left: 1px solid #191970;
}

@media print, screen and (min-width: 768px) {
  .topServiceCardImgBox {
    width: 40%;
  }
}

@media only screen and (max-width: 767px) {
  .topServiceCardImg {
    width: 90%;
    padding-bottom: 50%;
    margin: auto;
    margin-bottom: 3%;
    margin-left: -5%;
  }
}
@media print, screen and (min-width: 768px) {
  .topServiceCardImg {
    padding-bottom: 78%;
    width: 135%;
  }
}

.topServiceTextWrap {
  padding-right: 5%;
}
@media print, screen and (min-width: 768px) {
  .topServiceTextWrap {
    width: 60%;
  }
}

.topPriceWrap {
  background-color: #e6f1f6;
  padding: 5%;
  padding-top: 6%;
  margin-left: 15px;
  margin-right: 15px;
}
.topPriceWrap .pageServicePriceCardTitleWrap {
  margin-top: 5%;
  margin-bottom: 8%;
}
@media only screen and (max-width: 767px) {
  .topPriceWrap {
    padding-top: 10%;
    padding-bottom: 23%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topPriceWrap .pageServicePriceCardTitleWrap {
    margin-top: 8%;
    margin-bottom: 8%;
  }
  .topPriceWrap .pageServicePriceCardText {
    font-size: 13px;
    padding: 7%;
  }
}

.topPriceTitle {
  margin-bottom: -0.6em;
}

.topPriceBtnWrap {
  margin-bottom: 4%;
}
.topPriceBtnWrap .btn {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .topPriceBtnWrap {
    text-align: center;
  }
  .topPriceBtnWrap .btn {
    width: 80%;
  }
}

.topServicePriceCard.pageServicePriceCard {
  border: none;
}
.topServicePriceCard.pageServicePriceCard .priceBox {
  background-color: #191970;
  color: #fff;
}

.topWorksSlideBg {
  padding-top: clamp(50px, 10vw, 100px);
  padding-bottom: clamp(30px, 6vw, 60px);
}

.topWorksHiromiIcon {
  position: absolute;
  width: min(15vw, 189px);
  bottom: 100%;
}
@media print, screen and (min-width: 768px) {
  .topWorksHiromiIcon {
    left: max(-2vw, -32px);
  }
}
@media only screen and (min-width: 960px) and (max-width: 1100px) {
  .topWorksHiromiIcon {
    left: min(1vw, 16px);
    width: min(13vw, 189px);
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topWorksHiromiIcon {
    width: min(13vw, 189px);
    left: max(2vw, -32px);
  }
}

.topWorksMsg {
  margin-bottom: -0.7em;
}

.topWorksCard {
  margin: 0 0.1% 0.1%;
}
.topWorksCard:hover .topWorksImg {
  transform: scale(1.15);
}

.topWorksImgBox {
  width: 100%;
  margin-bottom: 2%;
  overflow: hidden;
}

.topWorksImg {
  padding-bottom: 60%;
  transition: 0.3s;
}
.__download .topWorksImg {
  padding-bottom: 75%;
}

.topWorksTitle {
  margin-bottom: 2.5%;
  text-align: left;
}

.topWorksTagUl {
  flex-wrap: wrap;
}
.topWorksTagUl li {
  font-size: 12px;
  border: 1px solid #1a1f2e;
  padding: 0.1em 0.5em;
  margin-bottom: 0.4em;
}
.topWorksTagUl li:not(:last-child) {
  margin-right: 0.5em;
}
@media only screen and (max-width: 959px) {
  .topWorksTagUl li {
    font-size: 11px;
    padding: 0.1em 0.7em;
  }
}

.worksListPrice {
  font-weight: 800;
  color: #c3b060;
  font-size: 18px;
  margin-bottom: 0.4em;
  margin-left: 0.7em;
  line-height: 1.4;
}
.worksListPrice.__top {
  margin-left: 0;
  font-size: 21px;
  text-align: left;
  margin-top: 0.2em;
}
@media only screen and (max-width: 767px) {
  .worksListPrice {
    font-size: 16px;
  }
  .worksListPrice.__top {
    font-size: 18px;
  }
}

.topAbout {
  margin-top: 50px;
}

.topAboutMsgBox {
  background-image: url(".././img/top_about_bg.jpg");
}
@media only screen and (max-width: 767px) {
  .topAboutMsgBox {
    background-image: url(".././img/top_about_bg_sp.jpg");
  }
}

.topAboutMsgInnerBox {
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 8% 7%;
}
@media only screen and (max-width: 767px) {
  .topAboutMsgInnerBox {
    margin: auto 4%;
  }
}

.topAboutText {
  margin-bottom: 5%;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .topAboutText {
    margin-bottom: 7%;
  }
}

.topAboutLinkWrap {
  border-top: 1px solid #fff;
}

.topAboutUnitLink {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.topAboutLinkTitleWrap {
  padding: 13% 5%;
  position: relative;
}

.topAboutLinkCard {
  text-align: center;
  position: relative;
  border-bottom: 1px solid #fff;
}
.topAboutLinkCard:hover .bgCover-mainColor {
  background-color: rgba(0, 0, 0, 0.2);
}
.topAboutLinkCard:hover .linkArrow {
  right: 0;
}
.topAboutLinkCard:nth-child(even) {
  border-right: 1px solid #fff;
}
.topAboutLinkCard:first-child {
  grid-column: 1/3;
  grid-row: 1/2;
}
.topAboutLinkCard:first-child .topAboutLinkTitleWrap {
  padding: 6.5% 3%;
}

@media only screen and (min-width: 1281px) {
  .topColumn {
    background-size: contain;
    background-repeat: repeat;
  }
}
@media only screen and (max-width: 767px) {
  .topColumn {
    background-size: 200%;
    background-repeat: repeat;
  }
}

.topColumnBalloon {
  background-color: #d14726;
  border-radius: 30px;
  padding: 0.5em 4em;
  width: auto;
  margin: auto;
  margin-bottom: 5%;
  position: relative;
  display: inline-block;
}
.topColumnBalloon:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  top: 100%;
  right: 48%;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #d14726;
}
@media only screen and (max-width: 767px) {
  .topColumnBalloon {
    padding: 0.8em 3em;
    margin-bottom: 10%;
  }
  .topColumnBalloon.pageColumnBalloon {
    padding: 0.8em 2.5em;
  }
}

.topColumnBalloonText {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(15px, 1.8vw, 21px);
  color: #fff;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .topColumnBalloonText {
    line-height: 1.5;
  }
}
.topColumnBalloonText::before, .topColumnBalloonText::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.topColumnBalloonText:before {
  background-image: url(../img/balloon_deco_before.svg);
  left: -1.5em;
}
.topColumnBalloonText:after {
  background-image: url(../img/balloon_deco_after.svg);
  right: -1.5em;
}
@media only screen and (max-width: 767px) {
  .topColumnBalloonText {
    display: inline-block;
    line-height: 1.5;
  }
}

.topColumnUnit {
  margin-bottom: 6%;
}

.topColumnDay {
  font-size: 14px;
  font-weight: bold;
  font-family: "Inter", sans-serif;
}
@media only screen and (max-width: 767px) {
  .topColumnDay {
    font-size: 12px;
    position: relative;
    margin-bottom: -1em;
    z-index: 1;
    margin-left: 1em;
  }
}

.topColumnCard {
  width: 29%;
  margin: auto;
  margin-bottom: 3%;
}
@media only screen and (max-width: 767px) {
  .topColumnCard {
    width: 100%;
  }
  .topColumnCard:not(:last-child) {
    margin-bottom: 6%;
  }
}

.topColumnCardInner {
  display: block;
  position: relative;
  background-color: #fff;
}
.topColumnCardInner:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #191970;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
.topColumnCardInner:hover .topColumnCardImg {
  transform: scale(1.15);
}
.topColumnCardInner:hover .linkArrow {
  margin-right: -2%;
}
.topColumnCardInner:hover:after {
  transform: scale(1, 1);
}
@media only screen and (max-width: 767px) {
  .topColumnCardInner {
    display: flex;
  }
}

.topColumnCardImgBox {
  width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .topColumnCardImgBox {
    width: 30%;
    margin: 4% 0;
    margin-left: 4%;
  }
}

.topColumnCardImg {
  padding-bottom: 69%;
  transition: 0.3s;
}
@media only screen and (max-width: 767px) {
  .topColumnCardImg {
    padding-bottom: 100%;
  }
}

.topColumnCardTextBox {
  background-color: #fff;
  padding: 8%;
  padding-top: 6%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .topColumnCardTextBox {
    width: 70%;
    padding: 3%;
    padding-left: 6%;
  }
}

.topColumnCardTextInner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.topColumnCardTitle {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 3%;
}
@media only screen and (max-width: 959px) {
  .topColumnCardTitle {
    font-size: 13px;
  }
}

.topColumnCardTagUl li {
  display: inline-block;
  background-color: #f0f2f4;
  font-size: 12px;
  padding: 0.1em 0.8em;
}

.topNewsBox {
  display: grid;
  grid-template-rows: auto-fit;
  grid-template-columns: 30% 70%;
}
@media only screen and (max-width: 959px) {
  .topNewsBox {
    grid-template-columns: 1fr;
  }
}

.topNewsTitleBox {
  grid-row: 1/2;
  grid-column: 1/2;
}
@media only screen and (max-width: 959px) {
  .topNewsTitleBox {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topNewsTitleBox {
    margin-bottom: 4%;
    text-align: center;
  }
}

.topNewsUlBox {
  grid-row: 1/3;
  grid-column: 2/3;
}
@media only screen and (max-width: 959px) {
  .topNewsUlBox {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}

.topNewsBtnBox {
  grid-row: 2/3;
  grid-column: 1/2;
}
@media only screen and (max-width: 959px) {
  .topNewsBtnBox {
    grid-row: 3/4;
    grid-column: 1/2;
    text-align: center;
  }
}

.topNewsUl li:not(:last-child) {
  border-bottom: 1px solid #f0f2f4;
}
.topNewsUl li:first-child a {
  padding-top: 0;
}
.topNewsUl li a {
  display: flex;
  padding: 1.2em 0;
  transition: 0.3s;
}
.topNewsUl li a .day {
  font-size: 14px;
  font-weight: bold;
  font-family: "Inter", sans-serif;
}
.topNewsUl li a .title {
  margin-left: 1.5rem;
}
.topNewsUl li a:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 767px) {
  .topNewsUl li a {
    display: block;
    padding: 0.5em 0;
  }
  .topNewsUl li a .title {
    margin-left: 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topNewsUl {
    margin-bottom: 3%;
    width: 85%;
    margin-right: auto;
    margin-left: auto;
  }
}

.topBannerCard {
  padding: 0.25% 0.25%;
}

.topBanner {
  margin-top: clamp(25px, 5vw, 50px);
  margin-bottom: clamp(25px, 5vw, 50px);
}

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

.topBannerCnt {
  max-width: 1250px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

/*==================================================
* 下層ページ
*================================================*/
.pageCompanyConceptMsgBox {
  width: min(75%, 780px);
  margin-right: auto;
  margin-left: auto;
  padding-bottom: min(20%, 270px);
  position: relative;
}
@media only screen and (max-width: 767px) {
  .pageCompanyConceptMsgBox {
    width: 100%;
    padding-bottom: 30%;
  }
}

.pageCompanyConceptBg {
  opacity: 0.4;
  position: absolute;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}
@media only screen and (max-width: 767px) {
  .pageCompanyConceptBg {
    background-size: 450%;
    background-position: top center;
  }
}

.pageCompanyCeoMsg {
  margin-top: -12%;
  position: relative;
  z-index: 0;
  background-color: #fff;
}

.pageCompanyCeoMsgUnit {
  padding: 5%;
}
@media only screen and (max-width: 767px) {
  .pageCompanyCeoMsgUnit {
    padding: 12% 8%;
  }
}

@media print, screen and (min-width: 768px) {
  .pageCompanyCeoTextBox {
    width: 60%;
    padding-right: 4%;
  }
}
@media only screen and (max-width: 767px) {
  .pageCompanyCeoTextBox {
    margin-bottom: 12%;
  }
}

.pageCompanyCeoImgWrap {
  width: 83%;
}
@media only screen and (max-width: 767px) {
  .pageCompanyCeoImgWrap {
    width: 55%;
    margin-left: auto;
  }
}

@media print, screen and (min-width: 768px) {
  .pageCompanyCeoImgBox {
    width: 40%;
    align-self: center;
  }
}

.pageCompanyCeoImg {
  padding-bottom: 100%;
  width: 100%;
  position: relative;
  margin-bottom: 1em;
}
.pageCompanyCeoImg:after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  top: 0px;
  border-top: 0px solid transparent;
  border-bottom: min(28vw, 300px) solid transparent;
  border-right: min(28vw, 300px) solid #f0f2f4;
  right: -7%;
  top: -7%;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .pageCompanyCeoImg:after {
    border-bottom: min(42vw, 200px) solid transparent;
    border-right: min(42vw, 200px) solid #f0f2f4;
  }
}

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

@media print, screen and (min-width: 768px) {
  .pageCompanyHistoryTitleBox {
    width: 33%;
    padding-right: min(5.5vw, 70px);
  }
}

@media print, screen and (min-width: 768px) {
  .pageCompanyHistoryDlBox {
    width: 67%;
  }
}

.pageCompanyHistoryDl {
  display: inline-flex;
  flex-wrap: wrap;
}
.pageCompanyHistoryDl dt {
  width: 30%;
  font-weight: bold;
}
.pageCompanyHistoryDl dd {
  width: 70%;
}
.pageCompanyHistoryDl dt,
.pageCompanyHistoryDl dd {
  padding: 1.2em 0;
  border-bottom: 1px solid #f0f2f4;
}
.pageCompanyHistoryDl dt:last-child, .pageCompanyHistoryDl dt:nth-last-child(2),
.pageCompanyHistoryDl dd:last-child,
.pageCompanyHistoryDl dd:nth-last-child(2) {
  border-bottom: none;
}
.pageCompanyHistoryDl dt:first-child, .pageCompanyHistoryDl dt:nth-child(2),
.pageCompanyHistoryDl dd:first-child,
.pageCompanyHistoryDl dd:nth-child(2) {
  padding-top: 0;
}
@media only screen and (max-width: 767px) {
  .pageCompanyHistoryDl dt,
  .pageCompanyHistoryDl dd {
    font-size: 13px;
    padding: 0.8em 0;
  }
  .pageCompanyHistoryDl dt {
    width: 40%;
  }
  .pageCompanyHistoryDl dd {
    width: 60%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pageCompanyHistoryDl dt,
  .pageCompanyHistoryDl dd {
    font-size: 14px;
  }
}

.pageCompanyOutline {
  padding-top: clamp(60px, 8vw, 80px);
  padding-bottom: clamp(45px, 6vw, 60px);
}

.pageCompanyOutlineWrap {
  display: grid;
  grid-template-rows: auto-fit;
}
@media print, screen and (min-width: 768px) {
  .pageCompanyOutlineWrap {
    grid-template-columns: 33% 67%;
    grid-template-rows: 19% 14% 1fr;
  }
}

.pageCompanyOutlineTitleBox {
  grid-row: 1/2;
  grid-column: 1/2;
}

.pageCompanyOutlineBtnWrap {
  grid-row: 2/3;
  grid-column: 1/2;
}
@media only screen and (max-width: 767px) {
  .pageCompanyOutlineBtnWrap {
    grid-row: 4/5;
    grid-column: 1/2;
    text-align: center;
  }
  .pageCompanyOutlineBtnWrap .btn {
    margin-bottom: 5%;
  }
}
@media print, screen and (min-width: 768px) {
  .pageCompanyOutlineBtnWrap {
    padding-right: 10%;
  }
}

.pageCompanyOutlineImgBox {
  grid-row: 3/4;
  grid-column: 1/2;
}
@media only screen and (max-width: 767px) {
  .pageCompanyOutlineImgBox {
    grid-row: 3/4;
    grid-column: 1/2;
  }
}
@media print, screen and (min-width: 768px) {
  .pageCompanyOutlineImgBox {
    padding-right: 10%;
  }
}

.pageCompanyOutlineDlBox {
  grid-row: 1/4;
  grid-column: 2/3;
}
@media only screen and (max-width: 767px) {
  .pageCompanyOutlineDlBox {
    grid-row: 2/3;
    grid-column: 1/2;
    margin-bottom: 6%;
  }
}

.pageCompanyOutlineDl {
  display: flex;
  flex-wrap: wrap;
}
.pageCompanyOutlineDl dt {
  width: 20%;
  font-weight: bold;
}
.pageCompanyOutlineDl dd {
  width: 80%;
}
.pageCompanyOutlineDl dt,
.pageCompanyOutlineDl dd {
  font-size: 15px;
  padding: 0.5em 0;
  border-bottom: 1px solid #dddddd;
}
.pageCompanyOutlineDl dt:last-child, .pageCompanyOutlineDl dt:nth-last-child(2),
.pageCompanyOutlineDl dd:last-child,
.pageCompanyOutlineDl dd:nth-last-child(2) {
  border-bottom: none;
}
.pageCompanyOutlineDl dt:first-child, .pageCompanyOutlineDl dt:nth-child(2),
.pageCompanyOutlineDl dd:first-child,
.pageCompanyOutlineDl dd:nth-child(2) {
  padding-top: 0;
}
.pageCompanyOutlineDl ul li {
  list-style: outside;
  margin-left: 1.4em;
}
@media only screen and (max-width: 767px) {
  .pageCompanyOutlineDl dt {
    width: 25%;
  }
  .pageCompanyOutlineDl dd {
    width: 75%;
  }
  .pageCompanyOutlineDl dt,
  .pageCompanyOutlineDl dd {
    font-size: 13px;
    padding: 0.7em 0;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pageCompanyOutlineDl dt,
  .pageCompanyOutlineDl dd {
    font-size: 14px;
  }
}

.pageCompanyOutlineImgBox {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .pageCompanyOutlineImgBox {
    display: flex;
    margin-bottom: 8%;
  }
}

.pageCompanyOutlineImg {
  padding-bottom: 65%;
}
@media only screen and (max-width: 767px) {
  .pageCompanyOutlineImg {
    width: 50%;
    padding-bottom: 35%;
  }
  .pageCompanyOutlineImg:nth-child(odd) {
    margin-right: 1%;
  }
  .pageCompanyOutlineImg:nth-child(even) {
    margin-left: 1%;
  }
}
@media print, screen and (min-width: 768px) {
  .pageCompanyOutlineImg:first-child {
    margin-bottom: 8%;
  }
}

.companyMachineSlickBox {
  overflow: hidden;
}

@media print, screen and (min-width: 768px) {
  .pageReasonMsgInner {
    justify-content: space-between;
  }
}

.pageReasonLargeCard {
  margin-bottom: 5%;
}
@media only screen and (max-width: 767px) {
  .pageReasonLargeCard {
    margin-bottom: 8%;
    position: relative;
  }
  .pageReasonLargeCard .topReasonMsgCardNum {
    top: 24vw;
    right: auto;
    left: 3%;
    font-size: 16vw;
  }
}

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

.pageReasonImg {
  padding-bottom: 45%;
}

.pageReasonUlBox {
  margin-left: auto;
}
.pageReasonUlBox:not(:last-child) {
  padding-bottom: 4%;
}
@media only screen and (max-width: 767px) {
  .pageReasonUlBox:not(:last-child) {
    padding-bottom: 10%;
  }
}

.pageReasonUl {
  border-top: 1px solid #c3b060;
  border-bottom: 1px solid #c3b060;
}
.pageReasonUl li:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.pageReasonMsgCard {
  padding: 5% 0;
  display: grid;
  -moz-column-gap: 5%;
  column-gap: 5%;
  grid-template-columns: 20% 75%;
}
@media only screen and (max-width: 767px) {
  .pageReasonMsgCard {
    grid-template-columns: 28% 69%;
  }
}
@media only screen and (max-width: 959px) {
  .pageReasonMsgCard {
    -moz-column-gap: 3%;
    column-gap: 3%;
  }
}

.pageReasonMsgCardImgBox {
  grid-column: 1/2;
  grid-row: 1/3;
}
@media only screen and (max-width: 767px) {
  .pageReasonMsgCardImgBox {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}

.pageReasonMsgCardTitle {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media only screen and (max-width: 767px) {
  .pageReasonMsgCardTitle {
    grid-column: 2/3;
    grid-row: 1/2;
    align-self: end;
  }
}
@media print, screen and (min-width: 768px) {
  .pageReasonMsgCardTitle {
    margin-bottom: 2%;
  }
}

.pageReasonMsgCardTextBox {
  grid-column: 2/3;
  grid-row: 2/3;
}
@media only screen and (max-width: 767px) {
  .pageReasonMsgCardTextBox {
    grid-column: 1/3;
    grid-row: 2/3;
  }
}

.pageReasonMsgCardText {
  font-size: 15px;
  line-height: 2em;
}
@media only screen and (max-width: 767px) {
  .pageReasonMsgCardText {
    font-size: 13px;
    margin-top: 5%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pageReasonMsgCardText {
    font-size: 14px;
  }
}

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

.pageServicePrice {
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .pageServicePriceUnit {
    display: block;
    padding: 7%;
  }
}

.pageServicePriceTitleBox {
  width: 20%;
  padding: min(6vw, 70px) 0;
  z-index: 10;
}
.pageServicePriceTitleBox:before, .pageServicePriceTitleBox:after {
  position: absolute;
  content: "";
  display: block;
}
.pageServicePriceTitleBox:before {
  top: 0;
  left: -200%;
  width: auto;
  height: 100%;
  background-color: #c3b060;
  z-index: -1;
  right: 0;
}
.pageServicePriceTitleBox:after {
  width: 100%;
  height: 23em;
  background-color: #c3b060;
  z-index: -2;
  top: -6em;
  right: -3.5em;
  transform: rotate(20deg) translate3d(0, 0, 0);
}
@media only screen and (max-width: 767px) {
  .pageServicePriceTitleBox {
    width: 100%;
    text-align: center;
    padding-bottom: 0;
  }
  .pageServicePriceTitleBox:before {
    left: 0;
    background-color: #191970;
  }
  .pageServicePriceTitleBox:after {
    display: none;
  }
  .pageServicePriceTitleBox .commonTitleEn::first-letter {
    color: #c3b060;
  }
}
@media only screen and (min-width: 1281px) {
  .pageServicePriceTitleBox {
    width: 31%;
    text-align: right;
    padding-right: 5%;
  }
}

.pageServicePriceBox {
  width: 80%;
  padding: min(6vw, 70px) 0;
  padding-left: 15%;
}
@media only screen and (max-width: 767px) {
  .pageServicePriceBox {
    width: 100%;
    padding-left: 0%;
    text-align: center;
  }
}
@media only screen and (min-width: 1281px) {
  .pageServicePriceBox {
    width: 62%;
  }
}

.pageServiceExampleTitle {
  color: #191970;
  border-bottom: 2px solid #191970;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .pageServiceExampleTitle {
    font-size: 5vw;
  }
}

.pageServiceExampleNum {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(23px, 3vw, 32px);
}
@media only screen and (max-width: 767px) {
  .pageServiceExampleNum {
    line-height: 1.5;
  }
}

.pageServiceExampleUnit {
  border: 1px solid #1a1f2e;
  padding: 4% 3%;
  padding-left: 5%;
}
.pageServiceExampleUnit:not(:last-child) {
  margin-bottom: 3%;
}
@media only screen and (max-width: 767px) {
  .pageServiceExampleUnit {
    padding: 7% 3%;
  }
}

.pageServiceExampleUnitInner {
  display: flex;
}
@media only screen and (max-width: 767px) {
  .pageServiceExampleUnitInner {
    flex-direction: column-reverse;
  }
}

.pageServiceExampleDlInner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  justify-content: space-between;
}
.pageServiceExampleDlInner dt,
.pageServiceExampleDlInner dd {
  font-size: 16px;
  font-weight: bold;
  padding: 0.3em 0.8em;
  background-color: #fff;
  position: relative;
}
.pageServiceExampleDlInner dt {
  padding-left: 0;
  width: auto;
}
.pageServiceExampleDlInner dd {
  width: 65%;
  padding-right: 0;
}
.pageServiceExampleDlInner:not(:last-child)::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  z-index: 0;
  width: 100%;
  border-bottom: dotted 1px #000;
}
@media only screen and (max-width: 767px) {
  .pageServiceExampleDlInner dd {
    width: 55%;
  }
}
@media only screen and (max-width: 959px) {
  .pageServiceExampleDlInner dt,
  .pageServiceExampleDlInner dd {
    font-size: 14px;
  }
}

@media print, screen and (min-width: 768px) {
  .pageServiceExampleDlWrap {
    width: 50%;
    padding-right: 3%;
  }
}

.pageServiceExampleImgBox {
  display: flex;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .pageServiceExampleImgBox {
    margin-bottom: 5%;
    width: 100%;
  }
}

.pageServiceExampleImg {
  padding-bottom: 33%;
  width: 100%;
}

.pageServiceVoiceCard {
  display: flex;
  border-top: 1px solid #191970;
  border-bottom: 1px solid #191970;
  padding: 3%;
  position: relative;
}
.pageServiceVoiceCard:not(:last-child) {
  margin-bottom: 3%;
}
@media only screen and (max-width: 767px) {
  .pageServiceVoiceCard {
    display: block;
    padding: 7% 3%;
  }
  .pageServiceVoiceCard:not(:last-child) {
    margin-bottom: 5%;
  }
}

.pageServiceVoiceImgBox {
  display: none;
}

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

.pageServiceVoiceTextBox .personalInformation {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .pageServiceVoiceTextBox .personalInformation {
    text-align: center;
  }
}
@media print, screen and (min-width: 768px) {
  .pageServiceVoiceTextBox {
    width: 100%;
    padding-left: 4%;
  }
}

.pageServiceVoiceTitle {
  margin-bottom: 1.5%;
}
@media only screen and (max-width: 959px) {
  .pageServiceVoiceTitle {
    font-size: min(4.7vw, 18px);
  }
}

.pageServiceVoiceText {
  font-size: 14px;
}

@media print, screen and (min-width: 768px) {
  .pageServiceTextWrap {
    width: 60%;
  }
}

.voiceDeco:before, .voiceDeco:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1px;
  height: min(3vw, 38px);
  background-color: #191970;
}
.voiceDeco:before {
  right: 0;
}
.voiceDeco:after {
  left: 0;
}
.voiceDeco.voiceDeco--top:before, .voiceDeco.voiceDeco--top:after {
  top: 0;
}
.voiceDeco.voiceDeco--bottom:before, .voiceDeco.voiceDeco--bottom:after {
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .voiceDeco:before, .voiceDeco:after {
    height: min(10vw, 50px);
  }
}

.pageServiceFlowTitle {
  color: #191970;
  margin-bottom: 8%;
  line-height: 1.3;
}
@media only screen and (max-width: 767px) {
  .pageServiceFlowTitle {
    font-size: 5vw;
  }
}

.pageOnlineFlowCard {
  position: relative;
}
.pageOnlineFlowCard:not(:last-child):before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1em;
  height: 2em;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
  right: 3.5%;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/next_arrow.svg);
}
@media only screen and (max-width: 767px) {
  .pageOnlineFlowCard:not(:last-child):before {
    display: none;
  }
  .pageOnlineFlowCard .pageOnlineFlowText {
    font-size: 13px;
  }
}
@media print, screen and (min-width: 768px) {
  .pageOnlineFlowCard {
    margin: auto min(1.75vw, 23px);
  }
  .pageOnlineFlowCard:not(:last-child):before {
    top: 34%;
    right: -11.5%;
  }
  .pageOnlineFlowCard .pageServiceFlowCardInner {
    margin: 0;
  }
  .pageOnlineFlowCard .pageOnlineFlowText {
    margin-right: 0;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1279px) {
  .pageOnlineFlowCard:not(:last-child):before {
    top: 30%;
    right: -10%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pageOnlineFlowCard:not(:last-child):before {
    top: 27%;
    right: -10.5%;
  }
}

.pageServiceFlowSlide {
  padding-left: 5%;
}
@media only screen and (max-width: 767px) {
  .pageServiceFlowSlide {
    padding-left: 8vw;
  }
}

.pageServiceFlowCardInner {
  text-align: center;
  border: solid min(1.3vw, 15px) #f0f2f4;
  padding: 4%;
  margin-right: min(3.5vw, 45px);
}
.pageServiceFlowCardInner .stepBox {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c3b060;
  font-family: "Inter", sans-serif;
  margin-bottom: 4%;
}
.pageServiceFlowCardInner .stepNum {
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1;
  letter-spacing: 0;
  margin-left: 0.1em;
}
.pageServiceFlowCardInner .pageServiceFlowImgBox {
  width: 100%;
}
.pageServiceFlowCardInner .pageServiceFlowImg {
  padding-bottom: 60%;
}
@media only screen and (max-width: 767px) {
  .pageServiceFlowCardInner {
    margin-right: min(8vw, 33px);
  }
}

.slick-list {
  overflow: visible;
}

.pageServiceFlow .slick-next,
.pageServiceFlow .slick-prev {
  z-index: 50;
}
.pageServiceFlow .slick-prev {
  left: -1.5%;
}
.pageServiceFlow .slick-next {
  right: -2.1%;
}
@media only screen and (max-width: 767px) {
  .pageServiceFlow .slick-prev {
    left: -4.5%;
  }
  .pageServiceFlow .slick-next {
    right: -4.5%;
  }
  .pageServiceFlow .slick-dots {
    margin-left: -6vw;
  }
}

.pageServiceMandatoryWrap {
  display: grid;
  grid-template-rows: auto-fit;
  margin-top: clamp(45px, 10vw, 100px);
  margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .pageServiceMandatoryWrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto-fit;
  }
}
@media print, screen and (min-width: 768px) {
  .pageServiceMandatoryWrap {
    grid-template-columns: 15% 65% 20%;
  }
}

.pageServiceMandatoryIcon {
  grid-row: 1/2;
  grid-column: 1/2;
}
@media only screen and (max-width: 767px) {
  .pageServiceMandatoryIcon {
    grid-row: 1/2;
    grid-column: 1/2;
    width: 20%;
    margin-right: auto;
    margin-left: auto;
  }
}

.pageServiceMandatoryMsg {
  grid-row: 1/2;
  grid-column: 2/3;
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .pageServiceMandatoryMsg {
    line-height: 1.5;
  }
}
@media only screen and (max-width: 767px) {
  .pageServiceMandatoryMsg {
    grid-row: 2/3;
    grid-column: 1/2;
    margin: 5% 0;
    text-align: center;
  }
}
@media print, screen and (min-width: 768px) {
  .pageServiceMandatoryMsg {
    padding-left: 4%;
  }
}

.pageServiceMandatoryFlyer {
  grid-row: 1/3;
  grid-column: 3/4;
}
@media only screen and (max-width: 767px) {
  .pageServiceMandatoryFlyer {
    grid-row: 3/4;
    grid-column: 1/2;
    width: 50%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 5%;
  }
}

.pageServiceMandatoryTextWrap {
  grid-row: 2/3;
  grid-column: 1/3;
}
@media only screen and (max-width: 767px) {
  .pageServiceMandatoryTextWrap {
    grid-row: 4/5;
    grid-column: 1/2;
  }
}
@media print, screen and (min-width: 768px) {
  .pageServiceMandatoryTextWrap {
    margin-top: 3%;
    padding-right: 8%;
  }
}

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

.pageServicePriceCardUnit {
  display: grid;
  gap: 2% 1.5%;
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (max-width: 767px) {
  .pageServicePriceCardUnit {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pageServicePriceCardUnit {
    gap: 3% 2.5%;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media print, screen and (min-width: 768px) {
  .topPriceWrap .pageServicePriceCardUnit {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media print, screen and (min-width: 768px) {
  .pageServicePriceCardUnit__3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pageServicePriceCard {
  background-color: #fff;
  border: 1px solid #191970;
}
.pageServicePriceCard .day {
  display: inline-flex;
}
.pageServicePriceCard .day span {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(1.8vw, 18px);
  line-height: 1.3;
}
@media only screen and (max-width: 767px) {
  .pageServicePriceCard .day span {
    line-height: 1.5;
  }
}
.pageServicePriceCard .day .num {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(34px, 3.7vw, 38px);
  color: #c3b060;
  line-height: 0.9;
  padding-right: 0.05em;
  padding-left: 0.05em;
}
@media only screen and (max-width: 767px) {
  .pageServicePriceCard .day .num {
    line-height: 1.5;
  }
}
.pageServicePriceCard .result {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(1.5vw, 17px);
  line-height: 1.5;
  margin-bottom: 4%;
}
@media only screen and (max-width: 767px) {
  .pageServicePriceCard .result {
    line-height: 1.5;
  }
}
.pageServicePriceCard .result.none {
  opacity: 0;
}
.pageServicePriceCard .analysis {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  font-size: clamp(21px, 2.6vw, 28px);
  color: #191970;
  display: inline-block;
  line-height: 1.4;
  padding-bottom: 0.1em;
}
@media only screen and (max-width: 767px) {
  .pageServicePriceCard .analysis {
    line-height: 1.5;
  }
}
.pageServicePriceCard .priceBox {
  color: #191970;
  background-color: #f0f7fa;
  text-align: center;
}
.pageServicePriceCard .priceBox span {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  .pageServicePriceCard .priceBox span {
    line-height: 1.5;
  }
}
.pageServicePriceCard .priceBox .price {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(18px, 2.4vw, 25px);
}
.pageServicePriceCard .priceBox .text {
  font-size: 13px;
}
.pageServicePriceCard .priceBox .textL {
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .pageServicePriceCard:not(:last-child) {
    margin-bottom: 5%;
  }
  .pageServicePriceCard .priceBox .price {
    font-size: 25px;
  }
  .pageServicePriceCard .analysis {
    font-size: 7vw;
  }
  .pageServicePriceCard .result {
    font-size: 4.5vw;
    margin-bottom: 1%;
  }
  .pageServicePriceCard .result.none {
    display: none;
  }
  .pageServicePriceCard .day span {
    font-size: 5vw;
  }
  .pageServicePriceCard .day .num {
    font-size: 9.5vw;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pageServicePriceCard .result {
    font-size: 16px;
    margin-bottom: 1%;
  }
}

.pageServiceTitleBox {
  background-color: #191970;
  color: #fff;
  padding: 0.4em;
  padding-bottom: 0.3em;
  margin-bottom: 1em;
}
.pageServiceTitleBox .day {
  align-items: flex-end;
}

.pageServicePriceCardText {
  padding: 7%;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .pageServicePriceCardText {
    padding: 6% 5%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pageServicePriceCardText {
    font-size: 14px;
    padding: 4%;
  }
}

.pageServicePriceCardTitleWrap {
  margin-bottom: 8%;
}
@media only screen and (max-width: 959px) {
  .pageServicePriceCardTitleWrap {
    margin-bottom: 4%;
  }
}

.youtubeBannerBlock {
  background-image: url(../img/youtubeBannerBg.jpg);
  padding: clamp(1px, 6.3%, 75px);
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .youtubeBannerBlock {
    background-image: url(../img/youtubeBannerBg_sp.jpg);
    position: relative;
    background-position: right;
    padding-bottom: 66%;
    margin-bottom: 30vw;
  }
}

.youtubeBannerBlockInner {
  padding-block: 2%;
  padding-inline: 3%;
  display: inline-block;
  width: auto;
}
.youtubeBannerBlockInner .btn {
  width: 85%;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .youtubeBannerBlockInner {
    bottom: max(-7vw, -70px);
  }
}
@media only screen and (max-width: 767px) {
  .youtubeBannerBlockInner {
    box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 4px 1px;
    bottom: -34%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 7% 4%;
    width: 95%;
  }
  .youtubeBannerBlockInner p {
    font-size: 13px;
  }
}

.youtubeLogo {
  max-width: 210px;
  margin-inline: auto;
  margin-block: 4%;
}
@media only screen and (max-width: 767px) {
  .youtubeLogo {
    max-width: 150px;
  }
}

.pageServiceQaCard:not(:last-child) {
  margin-bottom: 2%;
}

.Qa__Q {
  cursor: pointer;
  background-color: #f0f2f4;
  transition: 0.3s;
  position: relative;
}
.Qa__Q:hover {
  opacity: 0.7;
}

.Qa__A {
  display: none;
  background-color: #f0f2f4;
  margin-top: 0.5em;
}
.Qa__A .QaText {
  padding-top: 2%;
  padding-bottom: 2%;
  padding-left: 4%;
}
@media only screen and (max-width: 767px) {
  .Qa__A .QaText {
    padding-top: 5%;
    padding-bottom: 6%;
    padding-left: 7%;
  }
}

.QaText {
  padding-left: 4%;
}

.QaTextLink {
  transition: 0.3s;
}
.QaTextLink:hover {
  color: #191970;
  opacity: 0.7;
}

.QaUl li {
  list-style: circle;
}

.QaTitle {
  padding: 1% 0% 1% 4%;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .QaTitle {
    padding: 3%;
    padding-left: 7%;
  }
}

.Qa {
  padding-right: 5%;
}

.QaEn {
  padding: 0.5em;
  color: #fff;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 0.8;
  align-self: flex-start;
}
.QaEn.QaEn--Q {
  background-color: #c3b060;
}
.QaEn.QaEn--A {
  background-color: #191970;
}
@media only screen and (max-width: 767px) {
  .QaEn {
    margin-top: 4%;
    margin-left: 4%;
  }
}

.serviceOthersPrice {
  color: #191970;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 0;
  line-height: 1;
}
.serviceOthersPrice:not(:first-child) {
  border-top: 1px solid #d6d6d6;
  padding-top: 0.5em;
  margin-top: 0.5em;
}
.serviceOthersPrice span {
  color: #333;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.pageServiceTroubleBox {
  border: 10px solid #c3b060;
  padding: 3% 6%;
  position: relative;
}
.pageServiceTroubleBox::before, .pageServiceTroubleBox::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #191970;
  right: -10px;
  bottom: -10px;
}
.pageServiceTroubleBox:after {
  width: 10px;
  height: 120px;
}
.pageServiceTroubleBox:before {
  height: 10px;
  width: 120px;
}
@media only screen and (max-width: 767px) {
  .pageServiceTroubleBox {
    border: 6px solid #c3b060;
    padding: 8% 4%;
  }
  .pageServiceTroubleBox::before, .pageServiceTroubleBox::after {
    right: -6px;
    bottom: -6px;
  }
  .pageServiceTroubleBox:after {
    width: 6px;
    height: 80px;
  }
  .pageServiceTroubleBox:before {
    height: 6px;
    width: 80px;
  }
}

.titleBlack {
  color: #1a1f2e !important;
}

.pageStaffHeader {
  background-color: #191970;
  position: relative;
  overflow: hidden;
}

@media print, screen and (min-width: 768px) {
  .pageStaffHeaderBg:before {
    content: "";
    display: block;
    position: absolute;
    width: 35vw;
    height: 70vw;
    transform: rotate(20deg) translate3d(0, 0, 0);
    bottom: 0;
    background-color: #191970;
    z-index: -1;
    right: -13vw;
  }
}

.pageStaffHeaderTextBox {
  padding-top: clamp(30px, 6vw, 80px);
  padding-bottom: clamp(30px, 6vw, 80px);
  position: relative;
  z-index: 10;
}
@media print, screen and (min-width: 768px) {
  .pageStaffHeaderTextBox {
    width: 60%;
  }
}

.pageStaffHeaderTitle {
  color: #fff;
}

.pageStaffHeaderText {
  color: #fff;
}
@media print, screen and (min-width: 768px) {
  .pageStaffHeaderText {
    width: 92%;
  }
}

@media only screen and (max-width: 767px) {
  .pageStaffHeaderImg {
    padding-bottom: 50%;
  }
}
@media print, screen and (min-width: 768px) {
  .pageStaffHeaderImg {
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 45%;
  }
}

.pageStaffHeaderImgBg {
  top: 0;
  z-index: 5;
  opacity: 0.3;
}

.pageStaffCard {
  display: flex;
}
.pageStaffCard:not(:last-child) {
  margin-bottom: 5%;
}
@media only screen and (max-width: 767px) {
  .pageStaffCard {
    flex-direction: column-reverse;
  }
  .pageStaffCard:not(:last-child) {
    margin-bottom: 15%;
  }
}

@media print, screen and (min-width: 768px) {
  .pageStaffMsgBox {
    width: 63%;
    padding-right: 5%;
  }
}

.pageStaffMsg {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  color: #191970;
  margin-bottom: 1.5%;
}
@media only screen and (max-width: 767px) {
  .pageStaffMsg {
    line-height: 1.5;
  }
}

.pageStaffNameEn {
  line-height: 1;
  letter-spacing: 0.01em;
  font-size: clamp(19px, 3vw, 30px);
}
.pageStaffNameEn .num {
  font-weight: 600;
  font-family: "Inter", sans-serif;
  color: #191970;
}
.pageStaffNameEn .num::before {
  content: "#";
}
.pageStaffNameEn .name {
  font-weight: 600;
  display: inline-block;
  font-family: "Inter", sans-serif;
  color: #c3b060;
}

.pageStaffNameJp {
  background-color: #191970;
  color: #fff;
  width: 95%;
  padding: 0.2em;
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 3%;
}
.pageStaffNameJp:before, .pageStaffNameJp:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
}
.pageStaffNameJp:before {
  height: 100%;
  width: 0.3em;
  background-color: #c3b060;
  left: 0;
}
.pageStaffNameJp:after {
  border-bottom: 39px solid transparent;
  border-left: 20px solid #191970;
  right: -20px;
}
.pageStaffNameJp .position {
  font-size: 13px;
}
.pageStaffNameJp .name {
  font-weight: bold;
  display: inline-block;
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .pageStaffNameJp:after {
    border-bottom: 33px solid transparent;
    border-left: 16px solid #191970;
    right: -16px;
  }
  .pageStaffNameJp .name {
    font-size: 15px;
  }
}
@media only screen and (max-width: 959px) {
  .pageStaffNameJp .position {
    font-size: 13px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pageStaffNameJp:after {
    border-bottom: 34px solid transparent;
    border-left: 18px solid #191970;
    right: -18px;
  }
  .pageStaffNameJp .name {
    font-size: 16px;
  }
}

.pageStaffText {
  margin-bottom: 3%;
}

.pageStaffImgBox {
  width: 37%;
}
@media only screen and (max-width: 767px) {
  .pageStaffImgBox {
    width: 50%;
    margin-left: 0;
    margin-bottom: 4%;
  }
}

.pageStaffImg {
  padding-bottom: 100%;
}

.pageStaffPersonal {
  border-top: 1px solid #191970;
  padding-top: 3%;
}

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

.pageStaffPersonalWrap:not(:last-child) {
  margin-bottom: 3%;
}

.pageRecruitHeader {
  position: relative;
}

.pageRecruitHeaderUnit {
  display: flex;
  flex-wrap: wrap;
}

.pageRecruitHeaderImgBox {
  width: 50%;
}

.pageRecruitHeaderImg {
  padding-bottom: min(47%, 300px);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.pageRecruitHeaderTitleWrap {
  background-color: #fff;
  display: inline-block;
  text-align: center;
  padding: min(4%, 50px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pageRecruitCeoMsgUnit {
  position: relative;
}
.pageRecruitCeoMsgUnit:after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  top: 0px;
  left: 0;
  border-top: 0px solid transparent;
  border-bottom: min(28vw, 300px) solid transparent;
  border-left: min(28vw, 300px) solid #f0f2f4;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  .pageRecruitCeoMsgUnit {
    padding: 7%;
    padding-right: 3%;
  }
}

.pageRecruitCeoImg:after {
  display: none;
}

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

@media print, screen and (min-width: 768px) {
  .pageRecruitCeoTextBox {
    width: 65%;
  }
}

@media print, screen and (min-width: 768px) {
  .pageRecruitCeoImgBox {
    width: 35%;
  }
}

.pageRecruitWantedUnit {
  margin-top: clamp(30px, 7vw, 70px);
  margin-bottom: clamp(50px, 10vw, 100px);
}

.pageRecruitWantedTitleWrap {
  text-align: center;
  position: relative;
  margin-top: 5%;
}

.pageRecruitWantedTitleEn {
  -webkit-text-fill-color: rgba(255, 255, 255, 0.1);
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .pageRecruitWantedTitleEn {
    writing-mode: unset;
    font-size: 28vw;
    opacity: 0.2;
    position: static;
    writing-mode: unset;
    margin-right: auto;
  }
}

.pageRecruitWantedTitleJpWrap {
  position: absolute;
  top: -35%;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .pageRecruitWantedTitleJpWrap {
    top: 25%;
  }
}

.pageRecruitWantedTitleJp {
  writing-mode: vertical-rl;
  font-feature-settings: normal;
  white-space: nowrap;
  text-orientation: upright;
  text-align: left;
  margin-left: 67%;
}
.pageRecruitWantedTitleJp span {
  font-weight: 900;
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .pageRecruitWantedTitleJp {
    margin-right: auto;
    margin-left: 8%;
    writing-mode: unset;
  }
  .pageRecruitWantedTitleJp span {
    border-bottom: 2px solid #191970;
  }
}
@media print, screen and (min-width: 768px) {
  .pageRecruitWantedTitleJp span {
    border-left: 3px solid #191970;
  }
}

.pageRecruitWantedCard:not(:last-child) {
  margin-bottom: 2.5%;
}
@media only screen and (max-width: 767px) {
  .pageRecruitWantedCard:not(:last-child) {
    margin-bottom: 10%;
  }
}
@media print, screen and (min-width: 768px) {
  .pageRecruitWantedCard {
    display: flex;
  }
}

.pageRecruitWantedNumWrap {
  width: 7.5%;
}
@media only screen and (max-width: 767px) {
  .pageRecruitWantedNumWrap {
    width: auto;
    text-align: center;
  }
}
@media print, screen and (min-width: 768px) {
  .pageRecruitWantedNumWrap {
    background-color: #191970;
  }
}

.pageRecruitWantedNumBox {
  padding: 0.4em 1em;
}
.pageRecruitWantedNumBox .num {
  font-family: "Inter", sans-serif;
  font-size: clamp(25px, 3.2vw, 33px);
  color: #c3b060;
  border-bottom: 2px solid #fff;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.3;
}
@media only screen and (max-width: 767px) {
  .pageRecruitWantedNumBox {
    background-color: #191970;
    display: inline-block;
    padding: 0.5em 0.8em;
    margin-bottom: 4%;
  }
  .pageRecruitWantedNumBox .num {
    line-height: 1.4;
  }
}

@media print, screen and (min-width: 768px) {
  .pageRecruitWantedTextBox {
    width: 92.5%;
    padding-left: 3%;
  }
}

.pageRecruitWantedTitle {
  color: #191970;
  border-bottom: 2px solid #191970;
  padding-bottom: 0.1em;
  display: inline-block;
  margin-bottom: 2%;
}
@media only screen and (max-width: 767px) {
  .pageRecruitWantedTitle {
    line-height: 1.6;
    padding-bottom: 0.2em;
    margin-bottom: 5%;
  }
}

.pageRecruitWide {
  padding-bottom: min(35%, 450px);
}

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

.pageRecruitSupportCard {
  border: 10px solid #c3b060;
  padding: 2%;
}
.pageRecruitSupportCard:not(:last-child) {
  margin-bottom: 2%;
}
@media only screen and (max-width: 767px) {
  .pageRecruitSupportCard {
    overflow: hidden;
    padding: 4%;
  }
}
@media only screen and (max-width: 959px) {
  .pageRecruitSupportCard {
    border: 5px solid #c3b060;
  }
}
@media print, screen and (min-width: 768px) {
  .pageRecruitSupportCard {
    display: flex;
    padding-left: 4%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pageRecruitSupportCard {
    padding-left: 3%;
  }
}

.pageRecruitSupportTitleBox {
  align-self: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .pageRecruitSupportTitleBox {
    margin-bottom: 2%;
  }
}
@media print, screen and (min-width: 768px) {
  .pageRecruitSupportTitleBox {
    width: 40%;
  }
}

@media print, screen and (min-width: 768px) {
  .pageRecruitSupportTextBox {
    border-left: 1px solid #191970;
    padding-left: 3%;
    width: 60%;
  }
}

.pageRecruitSupportTitle {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  color: #191970;
}
@media only screen and (max-width: 767px) {
  .pageRecruitSupportTitle {
    line-height: 1.5;
  }
}
@media print, screen and (min-width: 768px) {
  .pageRecruitSupportTitle {
    padding-left: 3.2em;
  }
}

.pageRecruitSupportIcon {
  position: absolute;
  background-color: #c3b060;
  width: 4em;
  height: 4em;
  border-radius: 150px;
  left: 0;
}
.pageRecruitSupportIcon:after {
  content: "";
  position: absolute;
  display: inline-block;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3em;
  height: 3em;
}
.pageRecruitSupportIcon.icon_01:after {
  background-image: url(../img/page_recruit_support_01.png);
}
.pageRecruitSupportIcon.icon_02:after {
  background-image: url(../img/page_recruit_support_02.png);
}
.pageRecruitSupportIcon.icon_03:after {
  background-image: url(../img/page_recruit_support_03.png);
}
.pageRecruitSupportIcon.icon_04:after {
  background-image: url(../img/page_recruit_support_04.png);
}
@media only screen and (max-width: 767px) {
  .pageRecruitSupportIcon {
    width: 80px;
    height: 80px;
    border-radius: 100px;
    z-index: -1;
    left: auto;
    right: 0;
    top: 0;
    opacity: 0.2;
  }
  .pageRecruitSupportIcon:after {
    width: 4em;
    height: 4em;
  }
}
@media print, screen and (min-width: 768px) {
  .pageRecruitSupportIcon {
    top: 50%;
    transform: translateY(-50%);
  }
}

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

.pageRecruitDetailDl {
  display: flex;
  flex-wrap: wrap;
}
.pageRecruitDetailDl dt,
.pageRecruitDetailDl dd {
  border-bottom: 1px solid #f0f2f4;
  padding: 1em 0;
  font-size: 15px;
}
.pageRecruitDetailDl dt:first-child, .pageRecruitDetailDl dt:nth-child(2),
.pageRecruitDetailDl dd:first-child,
.pageRecruitDetailDl dd:nth-child(2) {
  padding-top: 0;
}
.pageRecruitDetailDl dt {
  width: 16%;
  font-weight: bold;
}
.pageRecruitDetailDl dd {
  width: 84%;
  padding-left: 4%;
}
.pageRecruitDetailDl ul li {
  list-style: disc;
  margin-left: 1.3em;
}
@media only screen and (max-width: 767px) {
  .pageRecruitDetailDl dt,
  .pageRecruitDetailDl dd {
    font-size: 14px;
  }
  .pageRecruitDetailDl dt {
    width: 20%;
  }
  .pageRecruitDetailDl dd {
    width: 80%;
  }
}

.pageWorksLink {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pageWorksLink li {
  margin-bottom: 0.8em;
}
.pageWorksLink li a {
  display: block;
  border: 1px solid #1a1f2e;
  padding: 0.3em 1.2em;
  font-weight: bold;
  transition: 0.3s;
}
.pageWorksLink li a.active, .pageWorksLink li a:hover {
  background-color: #1a1f2e;
  color: #fff;
}
.pageWorksLink li a.active {
  pointer-events: none;
}
.pageWorksLink li:not(:last-child) {
  margin-right: 0.8em;
}
@media only screen and (max-width: 767px) {
  .pageWorksLink li {
    margin-bottom: 2%;
  }
  .pageWorksLink li a {
    padding: 0.1em 1em;
  }
  .pageWorksLink li:nth-child(2n+1):nth-last-child(-n+2), .pageWorksLink li:nth-child(2n+1):nth-last-child(-n+2) ~ .pageWorksLink li {
    margin-bottom: 0;
  }
}

.pageWorksUl {
  margin-bottom: 10%;
}
@media print, screen and (min-width: 768px) {
  .pageWorksUl {
    display: flex;
    flex-wrap: wrap;
  }
}

.pageWorksUlText {
  width: 100%;
  text-align: center;
}

.pageWorksCard {
  margin-bottom: 6%;
}
.pageWorksCard .topWorksCard {
  display: block;
}
@media only screen and (max-width: 767px) {
  .pageWorksCard {
    margin-bottom: 10%;
  }
  .pageWorksCard .topWorksImgBox {
    margin-bottom: 3%;
  }
}
@media print, screen and (min-width: 768px) {
  .pageWorksCard {
    width: 31%;
    margin-right: 3.3%;
  }
  .pageWorksCard:nth-child(3n) {
    margin-right: 0;
  }
  .pageWorksCard:nth-child(3n+1):nth-last-child(-n+3), .pageWorksCard:nth-child(3n+1):nth-last-child(-n+3) ~ .pageWorksCard {
    margin-bottom: 0%;
  }
  .pageWorksCard.__download {
    width: 46%;
    margin: 0 2%;
    margin-bottom: 2% !important;
  }
}

.pageWorksTitle {
  border-left: 2px solid #1a1f2e;
  padding-left: 0.8em;
  font-size: clamp(15px, 1.8vw, 17px);
}

.pageWorksExampleTitleWrap {
  margin-top: -3%;
  margin-bottom: 5%;
}

.pageWorksExampleTitle {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .pageWorksExampleTitle {
    line-height: 1.5;
  }
}
.pageWorksExampleTitle .exampleText {
  font-size: clamp(16px, 2vw, 20px);
  display: inline-block;
}

.pageWorksDetailTitle {
  padding-left: 0.5em;
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  border-left: 4px solid #1a1f2e;
  margin-bottom: 1.5%;
}
@media only screen and (max-width: 767px) {
  .pageWorksDetailTitle {
    line-height: 1.5;
  }
}
@media only screen and (max-width: 767px) {
  .pageWorksDetailTitle {
    margin-bottom: 2.5%;
  }
}

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

.pageWorksDetailCard {
  background-color: #f0f2f4;
  padding: 5%;
}
@media only screen and (max-width: 767px) {
  .pageWorksDetailCard {
    padding: 8% 5%;
  }
}

.workBeforeImg,
.workAfterImg {
  margin-inline: 1.5%;
  width: 47%;
  position: relative;
}
.workBeforeImg::before,
.workAfterImg::before {
  color: #fff;
  position: absolute;
  font-size: 12px;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 7px 15px;
  line-height: 1;
}

.workBeforeImg {
  padding-bottom: 34%;
  position: relative;
}
.workBeforeImg::before {
  content: "Before";
  background-color: #9292f5;
}
.workBeforeImg::after {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(../img/toAfterIcon.png);
  content: "";
  position: absolute;
  bottom: -74px;
  right: 0;
  height: clamp(40px, 4.8vw, 60px);
  width: clamp(54px, 5.8vw, 74px);
}
@media only screen and (max-width: 767px) {
  .workBeforeImg {
    padding-bottom: 45%;
    width: 60%;
  }
  .workBeforeImg::after {
    bottom: -54px;
    right: auto;
    left: 15px;
  }
}

.workAfterImg {
  padding-bottom: 43%;
}
.workAfterImg::before {
  content: "After";
  background-color: #191970;
}
@media only screen and (max-width: 767px) {
  .workAfterImg {
    padding-bottom: 65%;
    margin-left: auto;
    margin-top: 5%;
    width: 70%;
  }
}

.pageWorksDetailCardImgBox {
  width: 67%;
}
.pageWorksDetailCardImgBox.flex {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .pageWorksDetailCardImgBox {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 5%;
  }
}

@media print, screen and (min-width: 768px) {
  .pageWorksDetailCardTextBox {
    width: 33%;
    padding-left: 5%;
  }
  .toAfterBlock .pageWorksDetailCardTextBox {
    margin-top: 5%;
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}

.pageWorksDetailCardTitleEn {
  font-size: clamp(25px, 3.2vw, 32px);
  font-family: "Inter", sans-serif;
  color: #191970;
  line-height: 1.3;
  display: inline-block;
  border-bottom: 2px solid #191970;
  margin-bottom: 10%;
}
@media only screen and (max-width: 767px) {
  .pageWorksDetailCardTitleEn {
    margin-bottom: 5%;
  }
}

.pageWorksDetailCardDl {
  display: flex;
  flex-wrap: wrap;
}
.toAfterBlock .pageWorksDetailCardDl {
  padding-left: 5%;
  width: 75%;
}
.pageWorksDetailCardDl dt,
.pageWorksDetailCardDl dd {
  padding: 0.5em 0;
  border-bottom: 1px solid #ddd;
}
.pageWorksDetailCardDl dt {
  width: 35%;
  font-weight: bold;
}
.pageWorksDetailCardDl dt:first-child {
  padding-top: 0;
}
.pageWorksDetailCardDl dd {
  width: 65%;
  padding-left: 0.5em;
}
.pageWorksDetailCardDl dd:nth-child(2) {
  padding-top: 0;
}
.pageWorksDetailCardDl dd a {
  text-decoration: underline;
  transition: 0.3s;
}
.pageWorksDetailCardDl dd a:hover {
  color: #c3b060;
}

.pageWorksPartsCostTitle {
  background-color: #e00001;
  color: #fff;
  font-weight: bold;
  font-size: min(1.2vw, 14px);
  display: inline-block;
  padding: 0.6em 0.8em 0.5em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .pageWorksPartsCostTitle {
    font-size: 13px;
    margin-bottom: 8px;
  }
}

.pageWorksPartsCostWrap {
  margin-top: clamp(24px, 3vw, 32px);
}
.pageWorksPartsCostWrap small {
  font-size: 12px;
  display: block;
  font-weight: bold;
}

.pageWorksPartsCostWrap--worksList {
  margin-top: clamp(8px, 1.6vw, 16px);
}

.pageWorksPartsCost span {
  color: #e00001;
  font-weight: bold;
  display: inline-block;
  line-height: 1.4;
}
.pageWorksPartsCost .num {
  font-family: "Inter", sans-serif;
  font-size: min(2.2vw, 24px);
}
.pageWorksPartsCost .en {
  font-size: min(2vw, 20px);
}
@media only screen and (max-width: 767px) {
  .pageWorksPartsCost .num {
    font-size: 22px;
  }
  .pageWorksPartsCost .en {
    font-size: 15px;
  }
}

.pageWorksPartsCostInner--worksList {
  display: flex;
  align-items: center;
  gap: min(0.8vw, 8px);
}
.pageWorksPartsCostInner--worksList .pageWorksPartsCost .num {
  font-size: min(1.8vw, 18px);
}
.pageWorksPartsCostInner--worksList .pageWorksPartsCost .en {
  font-size: min(1.4vw, 14px);
}
@media only screen and (max-width: 767px) {
  .pageWorksPartsCostInner--worksList .pageWorksPartsCost .num {
    font-size: 18px;
  }
  .pageWorksPartsCostInner--worksList .pageWorksPartsCost .en {
    font-size: 14px;
  }
}

.pageWorksBuildUl li {
  display: inline-block;
}
.pageWorksBuildUl li:not(:last-child):after {
  content: "/";
  margin-right: 0.2em;
  margin-left: 0.3em;
  display: inline-block;
}

.pageWorksDetailEntryWrapper {
  background-color: #fff;
  padding: 5%;
}

.toAfterDetailBlock + .toAfterFlowBlock {
  margin-top: 7%;
}

.toAfterDetailBlockInner + .toAfterDetailBlockInner {
  margin-top: 3%;
}

.aDBI-itemBefore,
.aDBI-itemAfter {
  padding-bottom: 29%;
  width: 45%;
  position: relative;
}
.aDBI-itemBefore::before,
.aDBI-itemAfter::before {
  color: #fff;
  position: absolute;
  font-size: 12px;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 7px 15px;
  line-height: 1;
}

.aDBI-itemBefore::before {
  content: "Before";
  background-color: #9292f5;
}
.aDBI-itemBefore::after {
  content: "";
  background-image: url(../img/toAfterDetailIcon.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -21%;
  height: 48px;
  width: 58px;
}
@media only screen and (max-width: 767px) {
  .aDBI-itemBefore {
    padding-bottom: 35%;
    margin-bottom: -6%;
    width: 45%;
  }
  .aDBI-itemBefore::after {
    top: auto;
    bottom: -60%;
    left: 22%;
    height: 38px;
    width: 48px;
  }
}

.aDBI-itemAfter::before {
  content: "After";
  background-color: #191970;
}
@media only screen and (max-width: 767px) {
  .aDBI-itemAfter {
    margin-left: auto;
    padding-bottom: 51%;
    width: 70%;
  }
}

.toAfterFlowBlockInner {
  gap: 10%;
}

.toAfterFlowBlockItem {
  margin-bottom: 2%;
  width: 45%;
}
.toAfterFlowBlockItem h3 {
  margin-bottom: 0.2em;
  font-weight: 600;
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .toAfterFlowBlockItem {
    width: 100%;
  }
  .toAfterFlowBlockItem h3 {
    font-size: 18px;
  }
}

.toAfterFlowImg {
  padding-bottom: 60%;
  margin-bottom: 0.8em;
}

.pageColumnHeader {
  background-size: cover;
  background-repeat: repeat-x;
  background-position: center;
  padding-top: clamp(60px, 7vw, 90px);
  padding-bottom: clamp(60px, 7vw, 90px);
}
@media only screen and (min-width: 1281px) {
  .pageColumnHeader {
    background-size: contain;
  }
}

.tag .pageColumnArchiveTitle:before {
  content: "#";
}

.pageColumnOtherArticlesCardWrap {
  margin-bottom: 5%;
}
@media only screen and (max-width: 767px) {
  .pageColumnOtherArticlesCardWrap {
    margin-bottom: 10%;
  }
}
@media print, screen and (min-width: 768px) {
  .pageColumnOtherArticlesCardWrap {
    display: flex;
  }
}

.pageColumnOtherArticlesTitleWrap {
  margin-bottom: -4.3em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .pageColumnOtherArticlesTitleWrap {
    margin-bottom: -3em;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pageColumnOtherArticlesTitleWrap {
    margin-bottom: -3.3em;
  }
}

.pageOnlineWorriesImgBox {
  width: 50%;
}

.pageOnlineWorriesImg {
  padding-bottom: 47%;
}
@media only screen and (max-width: 767px) {
  .pageOnlineWorriesImg {
    padding-bottom: 70%;
  }
}

.pageOnlineWorriesUl {
  width: min(70%, 725px);
  margin-right: auto;
  margin-left: auto;
  padding: 3.5% 4%;
  background-color: #fff;
  position: relative;
}
.pageOnlineWorriesUl li {
  position: relative;
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  padding-left: 2em;
  font-size: clamp(14px, 1.9vw, 19px);
}
.pageOnlineWorriesUl li:before, .pageOnlineWorriesUl li::after {
  left: 0%;
  transform: translateY(-50%);
}
.pageOnlineWorriesUl li:before {
  content: "";
  background-color: #d14726;
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  position: absolute;
  top: 1em;
}
.pageOnlineWorriesUl li::after {
  content: "\f00c";
  color: #fff;
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  z-index: 10;
  line-height: 1;
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 500;
  top: 1.5em;
  left: 0.5em;
}
@media only screen and (max-width: 959px) {
  .pageOnlineWorriesUl li:before {
    top: 0.9em;
  }
  .pageOnlineWorriesUl li:after {
    top: 1.1em;
    left: 0.3em;
  }
}
@media only screen and (max-width: 767px) {
  .pageOnlineWorriesUl li {
    line-height: 1.5;
  }
}
.pageOnlineWorriesUl li:not(:last-child) {
  margin-bottom: 0.8em;
}
@media only screen and (max-width: 767px) {
  .pageOnlineWorriesUl {
    width: 83%;
  }
  .pageOnlineWorriesUl li {
    line-height: 1.6;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 0.7em;
  }
  .pageOnlineWorriesUl li:not(:last-child) {
    margin-bottom: 0.5em;
  }
}

.pageOnlineWorriesTextBox {
  margin-top: -10%;
}

.pageOnlineExampleUnit {
  border: 6px solid #f0f2f4;
  padding: 5% 7%;
}
@media only screen and (max-width: 767px) {
  .pageOnlineExampleUnit {
    padding: 5%;
    padding-bottom: 7%;
  }
  .pageOnlineExampleUnit.device {
    padding: 7% 5%;
  }
}

.pageOnlineExampleTitle {
  color: #191970;
  font-weight: 900;
  text-align: center;
}
@media only screen and (max-width: 959px) {
  .pageOnlineExampleTitle {
    line-height: 1.5;
  }
}

.pageOnlineExampleImgBox {
  width: 95%;
}
@media only screen and (max-width: 767px) {
  .pageOnlineExampleImgBox {
    width: 50%;
    margin-right: auto;
    margin-left: auto;
  }
}

.pageOnlineExampleImg {
  padding-bottom: 80%;
}

@media only screen and (max-width: 767px) {
  .pageOnlineExampleTitleBox {
    margin-bottom: 7%;
  }
}
@media print, screen and (min-width: 768px) {
  .pageOnlineExampleTitleBox {
    width: 30%;
  }
}

.pageOnlineExampleUlBox ul li {
  display: flex;
  align-items: center;
}
.pageOnlineExampleUlBox ul li:not(:last-child) {
  margin-bottom: 4%;
}
@media print, screen and (min-width: 768px) {
  .pageOnlineExampleUlBox {
    padding-left: 7%;
    width: 70%;
  }
}

.pageOnlineExampleUlImgBox {
  width: 16%;
}

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

.pageOnlineExampleUlTextBox {
  width: 79%;
  margin-left: 5%;
  border-bottom: 1px solid #1a1f2e;
  padding: 1.1em 0;
}
@media only screen and (max-width: 767px) {
  .pageOnlineExampleUlTextBox {
    padding-top: 0;
    padding-bottom: 0.5em;
  }
}
@media print, screen and (min-width: 768px) {
  .pageOnlineExampleUlTextBox {
    border-top: 1px solid #1a1f2e;
  }
}

.pageOnlineDeviceTitle {
  border-bottom: 2px solid #c3b060;
  display: inline-block;
  padding-bottom: 0.3em;
  margin-bottom: 6%;
}

.pageOnlineDeviceImgUnit {
  justify-content: space-between;
  position: relative;
}
.pageOnlineDeviceImgUnit.or:before {
  content: "or";
  font-size: clamp(19px, 2.8vw, 28px);
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .pageOnlineDeviceImgUnit {
    justify-content: space-around;
  }
}
@media print, screen and (min-width: 768px) {
  .pageOnlineDeviceImgUnit {
    width: min(73%, 550px);
    margin-right: auto;
    margin-left: auto;
  }
}

.pageOnlineDeviceBox {
  width: 42%;
}
@media only screen and (max-width: 767px) {
  .pageOnlineDeviceBox.img {
    width: 30%;
  }
}

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

@media only screen and (max-width: 767px) {
  .pageOnlineFlow {
    margin-bottom: 10%;
  }
}
@media print, screen and (min-width: 768px) {
  .pageOnlineFlow .slick-dots {
    display: none !important;
  }
}

.pageOnlineFlowSlide {
  padding-left: 0;
}
@media only screen and (max-width: 767px) {
  .pageOnlineFlowSlide .slick-next,
  .pageOnlineFlowSlide .slick-prev {
    top: 40vw;
  }
  .pageOnlineFlowSlide .slick-dots {
    margin-left: 0;
  }
}

.pageOnlineFlowCardInner {
  margin-right: min(4vw, 17px);
  margin-left: min(4vw, 17px);
}

.pageOnlineFlowText {
  margin-right: min(4vw, 17px);
  margin-left: min(4vw, 17px);
  font-size: 14px;
  margin-top: min(2vw, 20px);
}

.pageOnlineApplyCnt {
  max-width: 940px;
  margin-right: auto;
  margin-left: auto;
}

.pageOnlineApply {
  text-align: center;
  color: #fff;
}

.pageOnlineApplyTitle {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #c3b060;
  padding: 1%;
}
@media only screen and (max-width: 767px) {
  .pageOnlineApplyTitle {
    line-height: 1.5;
  }
}
@media only screen and (max-width: 767px) {
  .pageOnlineApplyTitle {
    padding: 1.5% 1%;
  }
}

.pageOnlineApplyMsgBox {
  background-color: #191970;
  padding: 4%;
  padding-bottom: 5%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .pageOnlineApplyMsgBox {
    padding-top: 6%;
    padding-bottom: 8%;
  }
}

.pageOnlineApplyInner {
  width: min(72%, 660px);
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .pageOnlineApplyInner {
    width: 85%;
  }
}

.pageOnlineApplyLady {
  position: absolute;
  right: -3%;
  bottom: 0;
  width: 25%;
}

.pageSubsidyTopMsg {
  margin-top: clamp(50px, 10vw, 100px);
  margin-bottom: clamp(40px, 7vw, 70px);
}

.pageSubsidyWrap {
  display: grid;
  -moz-column-gap: 3%;
  column-gap: 3%;
  grid-template-columns: 25% 72%;
  padding-top: clamp(35px, 5vw, 50px);
  padding-bottom: clamp(35px, 5vw, 50px);
  border-top: 1px solid #191970;
  border-bottom: 1px solid #191970;
}

.pageSubsidyImgBox {
  grid-column: 1/2;
  grid-row: 1/4;
}
@media only screen and (max-width: 767px) {
  .pageSubsidyImgBox {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}

.pageSubsidyImg {
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.pageSubsidyTitleBox {
  grid-column: 2/3;
  grid-row: 1/2;
}
@media only screen and (max-width: 767px) {
  .pageSubsidyTitleBox {
    grid-column: 2/3;
    grid-row: 1/2;
    align-self: center;
  }
}
@media print, screen and (min-width: 768px) {
  .pageSubsidyTitleBox {
    margin-bottom: 3%;
  }
}

.pageSubsidyUlWrap {
  grid-column: 2/3;
  grid-row: 2/4;
  margin-left: 7%;
}
@media only screen and (max-width: 767px) {
  .pageSubsidyUlWrap {
    grid-column: 1/3;
    grid-row: 2/2;
    margin-left: 10%;
    margin-top: 7%;
  }
}

.pageSubsidyUl {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.8em;
}

.pageSubsidyUlBox {
  position: relative;
  padding-top: 1%;
}
.pageSubsidyUlBox:not(:last-child) {
  margin-bottom: 3%;
}
.pageSubsidyUlBox li {
  position: relative;
}
.pageSubsidyUlBox li a {
  display: block;
  border: 1px solid #191970;
  font-weight: bold;
  color: #191970;
  padding: 0.2em 1em;
  min-width: 150px;
  transition: 0.3s;
}
.pageSubsidyUlBox li a:hover {
  background-color: #191970;
  color: #fff;
}
.pageSubsidyUlBox li a:hover + .linkArrow {
  right: -6%;
}
.pageSubsidyUlBox li a:hover + .linkArrow .circle:before {
  border: 1px solid #fff;
}
.pageSubsidyUlBox li a:hover + .linkArrow .arrow:before {
  background-color: #fff;
}
.pageSubsidyUlBox li a:hover + .linkArrow .arrow:after {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
}
.pageSubsidyUlBox li .linkArrow {
  right: -2%;
}
.pageSubsidyUlBox li .linkArrow .circle:before {
  border: 1px solid #191970;
}
.pageSubsidyUlBox li .linkArrow .arrow:before {
  background-color: #191970;
}
.pageSubsidyUlBox li .linkArrow .arrow:after {
  border-right: 1px solid #191970;
  border-top: 1px solid #191970;
}
@media only screen and (max-width: 767px) {
  .pageSubsidyUlBox:not(:last-child) {
    margin-bottom: 7%;
  }
}

.pageSubsidyUlJpColumn {
  position: absolute;
  display: inline-block;
  width: min(4vw, 42px);
  height: min(4vw, 42px);
  line-height: min(4vw, 42px);
  text-align: center;
  color: #fff;
  background-color: #191970;
  border-radius: 50%;
  left: -8%;
  top: 0.3em;
}
.pageSubsidyUlJpColumn span {
  font-size: clamp(10px, 1.3vw, 13px);
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .pageSubsidyUlJpColumn {
    left: -13%;
    top: 0em;
    width: 9vw;
    height: 9vw;
    line-height: 9vw;
  }
}

.pageSubsidyContentWrap {
  border: 1px solid #191970;
  padding: clamp(45px, 6vw, 60px) min(3vw, 35px);
  margin-bottom: clamp(45px, 6vw, 60px);
}

.pageSubsidyBtnWrap {
  justify-content: center;
}
.pageSubsidyBtnWrap .linkArrow {
  right: 0%;
}
@media only screen and (max-width: 767px) {
  .pageSubsidyBtnWrap {
    flex-direction: column;
    align-items: center;
  }
  .pageSubsidyBtnWrap .btn:not(:last-child) {
    margin-bottom: 0.5em;
  }
}
@media print, screen and (min-width: 768px) {
  .pageSubsidyBtnWrap {
    max-width: 780px;
    margin-right: auto;
    margin-left: auto;
  }
  .pageSubsidyBtnWrap .btn {
    width: 100%;
  }
  .pageSubsidyBtnWrap .btn:nth-child(odd) {
    margin-right: 1%;
  }
  .pageSubsidyBtnWrap .btn:nth-child(even) {
    margin-left: 1%;
  }
  .pageSubsidyBtnWrap .btn:hover .linkArrow {
    right: -2%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pageSubsidyBtnWrap {
    flex-direction: column;
    max-width: 360px;
    margin-right: auto;
    margin-left: auto;
  }
  .pageSubsidyBtnWrap .btn {
    width: 100%;
  }
  .pageSubsidyBtnWrap .btn:nth-child(odd) {
    margin-right: 0%;
    margin-bottom: 0.5em;
  }
  .pageSubsidyBtnWrap .btn:nth-child(even) {
    margin-left: 0%;
  }
  .pageSubsidyBtnWrap .btn:hover .linkArrow {
    margin-right: -2%;
  }
}

.pageContact .presentBannerContactBox {
  display: none;
}
.pageContact .presentBannerImgBox {
  width: 29%;
}
.pageContact .presentBannerRadiusBox {
  margin-bottom: 0;
}
.pageContact .topPresentBanner {
  pointer-events: none;
}
.pageContact .headerContactTelLink {
  justify-content: center;
}
.pageContact .headerContactTelLinkWrap {
  margin-bottom: 1%;
}
.pageContact .receptionWrap {
  justify-content: center;
}
.pageContact .receptionWrap span {
  font-size: clamp(12px, 1.4vw, 15px);
}
.pageContact .headerContactTel {
  font-size: clamp(27px, 4vw, 42px);
}
.pageContact .headerContactTelBox {
  margin-bottom: 5%;
}
@media only screen and (max-width: 767px) {
  .pageContact .presentBannerImgBox {
    width: 50%;
  }
  .pageContact .headerContactTelLinkWrap {
    margin-bottom: 2.5%;
  }
}

.commonContactBg {
  background-image: url(".././img/top_fv_05.jpg");
}
@media only screen and (max-width: 767px) {
  .commonContactBg {
    background-image: url(".././img/top_fv_sp_05.jpg");
  }
}

.pageContactBtnWrap {
  margin-bottom: 12%;
}
.pageContactBtnWrap .commonContactBtn {
  background-color: #f0f2f4;
  transition: 0.3s;
}
.pageContactBtnWrap .commonContactBtn:hover {
  opacity: 0.7;
}
.pageContactBtnWrap .commonUnitLinkArrowBox {
  position: relative;
  background-color: #191970;
}
@media only screen and (max-width: 767px) {
  .pageContactBtnWrap {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
  }
  .pageContactBtnWrap .commonContactBtn {
    width: 100%;
    justify-content: space-between;
  }
}
@media print, screen and (min-width: 768px) {
  .pageContactBtnWrap {
    display: flex;
    justify-content: center;
  }
  .pageContactBtnWrap .commonContactBtn:not(:last-child) {
    margin-bottom: 0;
  }
  .pageContactBtnWrap .commonContactBtn:nth-child(odd) {
    margin-right: 2.5%;
  }
  .pageContactBtnWrap .commonContactBtn:nth-child(even) {
    margin-left: 2.5%;
  }
}

.pageContactTitle {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .pageContactTitle {
    line-height: 1.5;
  }
}
@media only screen and (max-width: 767px) {
  .pageContactTitle {
    margin-bottom: 7%;
  }
}

.ctaBannerSimuImg {
  max-width: 650px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .ctaBannerSimuImg {
    max-width: 90%;
  }
}

/*パートナーページ------------------------------------*/
.partnerLogoUnit {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.partnerLogoCard {
  width: 23%;
  margin: 1%;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partnerLogoCard a {
  display: block;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .partnerLogoCard {
    width: 48%;
    margin-bottom: 3%;
  }
}

.partnerLogoCardInner {
  padding: 7% 4%;
  transition: 0.3s;
}
.partnerLogoCardInner .img {
  width: 90%;
  margin-bottom: 2%;
}
.partnerLogoCardInner .img.__large {
  width: 60%;
}
.partnerLogoCardInner .name {
  font-size: 12px;
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1.3;
  color: #b0b0b0;
}
.__area .partnerLogoCardInner {
  padding: 14% 2%;
}
.__area .partnerLogoCardInner .name {
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1.3;
  color: #191970;
  font-weight: 700;
}
a:hover .partnerLogoCardInner {
  opacity: 0.7;
}

/*==================================================
* フッター
*================================================*/
footer {
  margin-bottom: 105px;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  footer {
    margin-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  footer {
    margin-bottom: 65px;
  }
}

.footerCopy {
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .footerCopy {
    font-size: 12px;
  }
}

@media only screen and (max-width: 767px) {
  .footerCopyWrap {
    padding-bottom: 15px;
  }
}

.footerNav_ul {
  width: 73%;
  font-size: 14px;
}
.footerNav_ul li {
  display: inline-block;
  margin-right: 2.3em;
  margin-bottom: 0.7em;
}
.footerNav_ul li a {
  transition: 0.3s;
}
.footerNav_ul li a:hover {
  color: #c3b060;
}
@media only screen and (max-width: 767px) {
  .footerNav_ul {
    width: 100%;
    font-size: 12px;
  }
}

.footerNav_title {
  width: 27%;
  transition: 0.3s;
  display: block;
  color: #191970;
}
.footerNav_title:hover {
  color: #c3b060;
  opacity: 0.7;
}
.footerNav_title.notLink {
  font-weight: bold;
}
.footerNav_title.notLink:hover {
  opacity: 1;
  color: inherit;
}
@media only screen and (max-width: 767px) {
  .footerNav_title {
    width: 100%;
    margin-bottom: 0.2em;
  }
}

.footerNavUnit {
  margin-bottom: 3.5%;
  display: flex;
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .footerNavUnit {
    display: block;
    margin-bottom: 8%;
  }
}

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

@media print, screen and (min-width: 768px) {
  .footerInfo {
    width: 33%;
    padding-top: 3%;
    border-right: 1px solid #f0f2f4;
    margin-right: 5%;
    padding-right: 5%;
  }
}
@media only screen and (max-width: 767px) {
  .footerInfo {
    margin-top: 14%;
  }
}
@media only screen and (max-width: 767px) {
  .footerInfo .logo {
    margin-left: 0;
  }
}

.footerCopyMsg {
  font-size: 14px;
}
@media only screen and (max-width: 959px) {
  .footerCopyMsg {
    font-size: 12px;
  }
}

.footerImgNavWrap {
  background-color: #191970;
}

.footerImgNavLink {
  transition: 0.3s;
}
.footerImgNavLink:hover .footerImgNavInner {
  background-color: rgba(195, 176, 96, 0.8);
}
.footerImgNavLink:hover .commonTitleEn_s::first-letter {
  color: #191970;
}

.footerImgNavUl li {
  width: 25%;
}
.footerImgNavUl li:not(:last-child) {
  border-right: 1px solid #fff;
}
@media only screen and (max-width: 767px) {
  .footerImgNavUl {
    flex-wrap: wrap;
  }
  .footerImgNavUl li {
    width: 50%;
  }
  .footerImgNavUl li:first-child, .footerImgNavUl li:nth-of-type(2) {
    border-bottom: 1px solid #fff;
  }
}

.footerImgNavInner {
  transition: 0.3s;
  padding: 17% 5%;
  background-color: rgba(25, 25, 112, 0.6);
}

.footerSns {
  margin-top: 50px;
}

.footerSnsLinkTitleBox {
  display: inline-block;
  border-radius: 50px;
  padding: 0.75em 1.5em;
  margin-bottom: 10px;
}
.footerSnsLinkTitleBox::after {
  content: "";
  display: block;
  position: absolute;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 26px;
  height: 22px;
  background-image: url(.././img/footer_sns_balloon_triangle.png);
  left: 50%;
  transform: translateX(-50%);
}
.footerSnsLinkTitleBox .title {
  font-weight: 700;
}

.footerSnsLinkUl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.footerSnsLinkUl li {
  width: 20%;
  padding-right: 0.5%;
  padding-left: 0.5%;
}
@media only screen and (max-width: 767px) {
  .footerSnsLinkUl li {
    width: 50%;
    padding-right: 1%;
    padding-left: 1%;
    margin-bottom: 2%;
  }
}

.footerSnsLinkBox {
  display: flex;
  transition: 0.3s;
}
a:hover .footerSnsLinkBox {
  opacity: 0.7;
}

.footerSnsLinkIco {
  background-color: #1a1f2e;
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footerSnsLinkIco i {
  color: #fff;
  font-size: 28px;
  display: block;
}
@media only screen and (max-width: 959px) {
  .footerSnsLinkIco {
    width: 25%;
  }
  .footerSnsLinkIco i {
    font-size: 21px;
  }
}

.footerSnsLinkText {
  color: #fff;
  width: 65%;
  padding: 10% 5%;
}
.facebook .footerSnsLinkText {
  background-color: #1877f1;
}
.instagram .footerSnsLinkText {
  background-image: url(.././img/footer_sns_bg_insta.png);
}
.twitter .footerSnsLinkText {
  background-color: #1d9aef;
}
.line .footerSnsLinkText {
  background-color: #06c655;
}
.youtube .footerSnsLinkText {
  background-color: #ff0000;
}
.footerSnsLinkText p {
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.footerSnsLinkText p.official {
  font-size: 12px;
}
.footerSnsLinkText p.title {
  font-size: 16px;
  font-weight: bold;
}
@media only screen and (max-width: 959px) {
  .footerSnsLinkText {
    width: 75%;
  }
  .footerSnsLinkText P.official {
    font-size: 10px;
  }
  .footerSnsLinkText P.title {
    font-size: 14px;
  }
}

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

/*共通部分------------------------------------*/
/*パンくず*/
.home .sectionPankuzu {
  display: none;
}

#pankuzu {
  font-size: 12px;
  color: #808080;
}
#pankuzu a {
  color: #000;
  position: relative;
}
#pankuzu a:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #000;
  bottom: -0.3em;
  left: 0;
}
#pankuzu strong {
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  #pankuzu {
    font-size: 12px;
  }
}

.sectionPankuzu {
  padding: 10px 0;
}
@media only screen and (max-width: 767px) {
  .sectionPankuzu {
    padding: 6px 0;
  }
}

/*パンくず終わり*/
/*FVスライダー(CSS)*/
.mainImgBox,
.mainImg {
  padding-bottom: min(50vw, 1000px);
}
@media only screen and (max-width: 767px) {
  .mainImgBox,
  .mainImg {
    padding-bottom: 130%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .mainImgBox,
  .mainImg {
    padding-bottom: 65%;
  }
}

.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;
}
.mainImg.tab-inactive {
  animation-play-state: paused;
}
@media only screen and (max-width: 767px) {
  .mainImg {
    background-position: 20% 20%;
  }
}

/*2枚目以降6秒遅れてアニメーションスタート*/
.mainImg:first-of-type {
  background-position: center 0%;
}

.mainImg:nth-of-type(2) {
  animation-delay: 6s;
}

.mainImg:nth-of-type(3) {
  animation-delay: 12s;
}
@keyframes anime {
  0% {
    opacity: 0;
  }
  /*3秒：フェードイン.3/alls*/
  16% {
    opacity: 1;
  }
  /*6秒：次のスライド再生.6/alls*/
  32% {
    opacity: 1;
  }
  /*9秒：フェードアウト&次のスライドフェードイン*/
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
/*FVスライダー(CSS)ここまで*/
.mainImg {
  background-image: url(.././img/top_fv_06.jpg);
}
.mainImg:nth-of-type(2) {
  background-image: url(.././img/top_fv_05.jpg);
}
.mainImg:nth-of-type(3) {
  background-image: url(.././img/top_fv_02.jpg);
}
@media only screen and (max-width: 767px) {
  .mainImg {
    background-image: url(.././img/top_fv_sp_06.jpg);
  }
  .mainImg:nth-of-type(2) {
    background-image: url(.././img/top_fv_sp_05.jpg);
  }
  .mainImg:nth-of-type(3) {
    background-image: url(.././img/top_fv_sp_02.jpg);
  }
}

/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #191970;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.spinner {
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-scaleout 1s infinite ease-in-out;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

/* ローディングアニメーション */
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
/* コンテンツ部分の装飾 */
.gallery {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.gallery img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}

.downHeadOl {
  counter-reset: count 0;
}
.downHeadOl li {
  font-weight: bold;
  font-size: 18px;
  position: relative;
  padding-left: 34px;
  margin-bottom: 7px;
}
.downHeadOl li::before {
  position: absolute;
  top: -7px;
  left: 0;
  content: counter(count) ". ";
  counter-increment: count 1;
  font-family: "Inter", sans-serif;
  color: #c3b060;
  font-weight: bold;
  font-size: 24px;
}
@media only screen and (max-width: 767px) {
  .downHeadOl li {
    font-size: 16px;
  }
  .downHeadOl li::before {
    top: -5px;
    font-size: 21px;
  }
}

.downContactWrap {
  background-color: #fff;
  padding: 8% 6%;
}

@media only screen and (max-width: 767px) {
  .downPdfImgCard {
    margin-bottom: 10px;
  }
}

.floatingBanner {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  width: 225px;
}

.spFooterBannerBox {
  max-width: 500px;
  margin: auto;
}

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

.bannerCta {
  margin: 45px 0;
}
@media only screen and (max-width: 767px) {
  .bannerCta {
    margin: 30px 0;
  }
}

@media only screen and (max-width: 767px) {
  .innerCnt .cnt {
    padding-left: 0;
    padding-right: 0;
  }
}

.bannerCtaTitleBox {
  position: relative;
}

.bannerCtaTitle {
  font-family: "Noto Sans JP", sans-serif;
  color: #d0621e;
  font-size: clamp(42px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.025em;
}
@media only screen and (max-width: 767px) {
  .bannerCtaTitle {
    font-size: 28px;
    margin-bottom: 0.25em;
  }
}

.bannerCtaDescri {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(26px, 2.2vw, 31px);
  font-weight: bold;
  letter-spacing: 0.025em;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .bannerCtaDescri {
    font-size: 17px;
  }
}

.bannerCtaAvatar {
  position: absolute;
  width: min(20vw, 210px);
  right: 0;
  bottom: -10px;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .bannerCtaAvatar {
    width: 110px;
    bottom: -21px;
  }
}

.bannerCtaBannerUnit li {
  margin-bottom: 1%;
}

.googlembTitleBox {
  position: relative;
  background-color: #c3b060;
  padding: 15px;
}

.googlembImg {
  position: absolute;
  width: 15%;
  bottom: 0;
  left: 15px;
}
@media only screen and (max-width: 767px) {
  .googlembImg {
    left: auto;
    right: 10px;
  }
}

.googlembTitleTextBox {
  width: 85%;
  margin-left: calc(15% + 15px);
}
@media only screen and (max-width: 767px) {
  .googlembTitleTextBox {
    width: 100%;
    margin-left: 0;
  }
}

.googlembTitleTextBox .title {
  font-size: 32px;
  font-weight: 800;
  font-family: "Noto Sans JP", sans-serif;
  color: #191970;
  line-height: 1.3;
}
.googlembTitleTextBox .descri {
  font-size: 24px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  color: white;
  line-height: 1.3;
}
@media only screen and (max-width: 959px) {
  .googlembTitleTextBox .title {
    font-size: 23px;
    margin-bottom: 0.3em;
  }
  .googlembTitleTextBox .descri {
    font-size: 16px;
  }
}

.googlembWidgetBox {
  background-color: #fff;
  border: 15px solid #e6ddb6;
  padding: 25px;
}

.columnTagBannerCard {
  width: 31.333%;
  margin: 1%;
}
@media only screen and (max-width: 767px) {
  .columnTagBannerCard {
    width: 48%;
  }
}

.columnTagBannerInner {
  display: flex;
  align-items: center;
  padding: 6% 4%;
  position: relative;
  background-color: #191970;
  transition: 0.3s;
}
a:hover .columnTagBannerInner {
  background-color: #c3b060;
}
.columnTagBannerInner .img {
  width: 25%;
  margin-right: 5%;
}
.columnTagBannerInner .text {
  width: 70%;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}
.columnTagBannerInner .linkArrow {
  bottom: 14px;
  right: -15px;
  top: auto;
  transform: inherit;
}
.__noicon .columnTagBannerInner .text {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .columnTagBannerInner {
    padding: 10% 5%;
  }
  .columnTagBannerInner .img {
    width: 20%;
    margin-right: 5%;
  }
  .columnTagBannerInner .text {
    width: 75%;
    font-size: 13px;
  }
  .__noicon .columnTagBannerInner {
    padding: 6% 5%;
  }
}

.youtubeWrap {
  width: 100%;
  aspect-ratio: 16/9;
}
.youtubeWrap iframe {
  width: 100%;
  height: 100%;
}

.textListUl li {
  position: relative;
  font-size: 18px;
}
.textListUl li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0;
  height: 0.5em;
  width: 0.5em;
  background-color: #191970;
  border-radius: 50%;
}
.textListUl li span {
  display: inline-block;
  font-weight: bold;
  margin-left: 1.1em;
  line-height: 1.5;
}

.contractorTableBox table tr td,
.contractorTableBox table tr th {
  border-right: 1px solid #d8d8d8;
  border-top: 1px solid #d8d8d8;
  padding: 0.5em 1em;
  vertical-align: middle;
  line-height: 1.3;
  letter-spacing: 0.01em;
  font-size: 14px;
}
.contractorTableBox table tr td:first-child,
.contractorTableBox table tr th:first-child {
  border-left: 1px solid #d8d8d8;
}
.contractorTableBox table tr:last-child td,
.contractorTableBox table tr:last-child th {
  border-bottom: 1px solid #d8d8d8;
}
.contractorTableBox table thead tr td,
.contractorTableBox table thead tr th {
  background-color: #191970;
  color: #fff;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .contractorTableBox {
    width: 100%;
    overflow-x: scroll;
  }
  .contractorTableBox table {
    width: 800px;
  }
  .contractorTableBox table tr td,
  .contractorTableBox table tr th {
    font-size: 13px;
  }
}

.estimateBannerSubImg {
  position: absolute;
  width: 18%;
}
@media print, screen and (min-width: 768px) {
  .estimateBannerSubImg {
    top: -7%;
    left: -7%;
  }
}
@media only screen and (max-width: 767px) {
  .estimateBannerSubImg {
    top: -20%;
    right: 1%;
    width: 25%;
  }
}

.areaMainTxBox {
  top: 0;
  left: 0;
  position: absolute;
  width: 50%;
}
@media only screen and (max-width: 767px) {
  .areaMainTxBox {
    position: static;
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .areaMainImg {
    margin-left: -50%;
    width: 150%;
  }
}

.areaBlock + .areaBlock {
  margin-top: 8%;
}
@media only screen and (max-width: 767px) {
  .areaBlock + .areaBlock {
    margin-top: 10%;
  }
}

.areaBlockTitle {
  font-size: clamp(20px, 2.5vw, 32px);
  padding-left: 1em;
  border-left: 5px solid #191970;
  font-weight: 600;
  margin-bottom: 3%;
}
@media only screen and (max-width: 767px) {
  .areaBlockTitle {
    margin-bottom: 5%;
  }
}

.areaBox {
  background-color: #f0f2f4;
}
.areaBox + .areaBox {
  margin-top: 3%;
}
.areaBox ul {
  padding: 2% 3%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
}
.areaBox ul li a {
  display: block;
  border: 1px solid #1a1f2e;
  padding: 0.6em 3em;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 600;
  transition: 0.3s;
}
.areaBox ul li a:hover {
  background-color: #1a1f2e;
  color: #fff;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .areaBox ul {
    padding: 3%;
  }
}
@media only screen and (max-width: 767px) {
  .areaBox + .areaBox {
    margin-top: 5%;
  }
  .areaBox ul {
    padding: 6% 3%;
    gap: 13px;
  }
  .areaBox ul li a {
    padding: 0.6em 2em;
  }
}

.areaBoxTitle {
  background-color: #c3b060;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  display: inline-block;
  padding: 0.9em 7em 0.9em 1.3em;
  line-height: 1;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .areaBoxTitle {
    padding: 0.6em 7em 0.6em 1em;
  }
}
@media only screen and (max-width: 767px) {
  .areaBoxTitle {
    font-size: 16px;
    padding: 0.8em 5em 0.8em 1em;
  }
}

@media print, screen and (min-width: 768px) {
  .pageCollaborationTopMsgHead {
    height: min(26vw, 280px);
  }
}
@media only screen and (max-width: 767px) {
  .pageCollaborationTopMsgHead {
    padding-bottom: 66%;
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }
}

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

@media print, screen and (min-width: 768px) {
  .pageCollaborationTopMsgUnit {
    gap: min(48px, 5vw);
  }
}
@media only screen and (max-width: 767px) {
  .pageCollaborationTopMsgUnit {
    flex-direction: column-reverse;
  }
}

@media print, screen and (min-width: 768px) {
  .pageCollaborationTopMsgUnitImgBox {
    width: 38%;
  }
}

.pageCollaborationTopMsgUnitImg {
  padding-bottom: 78%;
}
@media only screen and (max-width: 767px) {
  .pageCollaborationTopMsgUnitImg {
    padding-bottom: 50%;
    width: 80%;
    margin-right: auto;
    margin-left: auto;
  }
}

@media print, screen and (min-width: 768px) {
  .pageCollaborationTopMsgUnitTextBox {
    flex: 1;
  }
}

.pageCollaborationTopMsgUnitTitle {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(24px, 3.2vw, 40px);
}
@media only screen and (max-width: 767px) {
  .pageCollaborationTopMsgUnitTitle {
    line-height: 1.5;
  }
}

@media print, screen and (min-width: 768px) {
  .pageCollaborationCaseUnit {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: min(50px, 2.5vw);
  }
}

.pageCollaborationFeatureCard {
  width: 100%;
}

.pageCollaborationResourceUnit {
  display: flex;
  gap: min(33px, 3vw);
}
@media only screen and (max-width: 767px) {
  .pageCollaborationResourceUnit {
    flex-direction: column-reverse;
    gap: 9vw;
  }
}

@media print, screen and (min-width: 768px) {
  .pageCollaborationResourceUnitImgBox {
    width: 31%;
  }
}
@media only screen and (max-width: 767px) {
  .pageCollaborationResourceUnitImgBox {
    width: 65%;
    margin: auto;
  }
}

.pageCollaborationResourceUnitImg {
  padding-bottom: 120%;
}

@media print, screen and (min-width: 768px) {
  .pageCollaborationResourceUnitTextBox {
    flex: 1;
  }
}

.pageCollaborationResourceUnitUl li:not(:last-child) {
  margin-bottom: min(24px, 2vw);
}
@media only screen and (max-width: 767px) {
  .pageCollaborationResourceUnitUl li:not(:last-child) {
    margin-bottom: 4vw;
  }
}

.pageCollaborationResourceUnitUlTitle {
  position: relative;
  padding-left: min(37px, 3vw);
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 1.6vw, 21px);
  margin-bottom: min(0.5vw, 10px);
}
@media only screen and (max-width: 767px) {
  .pageCollaborationResourceUnitUlTitle {
    line-height: 1.5;
  }
}
.pageCollaborationResourceUnitUlTitle:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  display: block;
  background-image: url("../img/icon_check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: min(2vw, 25px);
  height: min(2vw, 25px);
}
@media only screen and (max-width: 767px) {
  .pageCollaborationResourceUnitUlTitle {
    padding-left: 8vw;
    margin-bottom: 1.5vw;
  }
  .pageCollaborationResourceUnitUlTitle:before {
    width: 5vw;
    height: 5vw;
    top: 0.3em;
  }
}

.pageCollaborationResourceUnitUlText {
  padding-left: min(37px, 3vw);
  font-size: clamp(13px, 1.3vw, 14px);
}
@media only screen and (max-width: 767px) {
  .pageCollaborationResourceUnitUlText {
    padding-left: 8vw;
  }
}

.pageCollaborationInnerBox {
  padding: 3%;
}
@media only screen and (max-width: 767px) {
  .pageCollaborationInnerBox {
    padding: 7% 3%;
  }
}

@media print, screen and (min-width: 768px) {
  .pageCollaborationSupportCard {
    display: flex;
    gap: min(40px, 4vw);
  }
}

@media print, screen and (min-width: 768px) {
  .pageCollaborationSupportCardImgBox {
    width: 40%;
  }
}

.pageCollaborationSupportCardImg {
  padding-bottom: 80%;
}

@media print, screen and (min-width: 768px) {
  .pageCollaborationSupportCardTextBox {
    flex: 1;
  }
}

.pageCollaborationSupportCardText {
  font-size: 14px;
  line-height: 2;
}

.pageCollaborationSupportCardTrainingWrap {
  background-color: #e5e5e5;
  padding: 3% 4%;
}

.pageCollaborationSupportCardTrainingUl {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: min(2vw, 24px);
       column-gap: min(2vw, 24px);
}
.pageCollaborationSupportCardTrainingUl li {
  font-size: 14px;
}

.pageCollaborationDetailsSection {
  margin-top: clamp(50px, 10vw, 100px);
  margin-bottom: clamp(50px, 16vw, 160px);
}

@media print, screen and (min-width: 768px) {
  .pageCollaborationDetailsUnit {
    display: flex;
    -moz-column-gap: min(4vw, 40px);
         column-gap: min(4vw, 40px);
  }
}

.pageCollaborationDetailsItem {
  background-color: #e6f1f6;
  flex: 1;
  padding: 2% 4% 5%;
}
@media only screen and (max-width: 767px) {
  .pageCollaborationDetailsItem {
    padding: 5% 4% 5%;
  }
}

.pageCollaborationDetailsContactBtnTitleEn {
  color: #fff;
}
.pageCollaborationDetailsContactBtnTitleEn::first-letter {
  color: #fff;
}

.pageCollaborationDetailsContactBtn {
  width: min(60vw, 734px);
  padding: 3.2em 1.5em;
}
.pageCollaborationDetailsContactBtn:hover .linkArrow {
  right: 0%;
}
.pageCollaborationDetailsContactBtn .linkArrow {
  right: 5%;
}
.pageCollaborationDetailsContactBtn .linkArrow .circle:before {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  border: 3px solid #fff;
  right: 2em;
}
.pageCollaborationDetailsContactBtn .linkArrow .arrow::before {
  height: 3px;
  top: -1px;
  width: 47px;
}
.pageCollaborationDetailsContactBtn .linkArrow .arrow::after {
  top: -6px;
  width: 13px;
  height: 13px;
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
}
.pageCollaborationDetailsContactBtn .linkArrow .arrow:before, .pageCollaborationDetailsContactBtn .linkArrow .arrow:after {
  right: 3em;
}
@media only screen and (max-width: 767px) {
  .pageCollaborationDetailsContactBtn {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 3.2em 8em;
  }
}

.pageCollaborationDetailsContactBtnTitleJp {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: clamp(18px, 2vw, 26px);
}
@media only screen and (max-width: 767px) {
  .pageCollaborationDetailsContactBtnTitleJp {
    line-height: 1.5;
  }
}

.pageEstimatePromotionBox {
  position: relative;
  z-index: 10;
  background-color: #fffdf5;
  margin-top: max(15vw, 150px);
}
@media print, screen and (min-width: 768px) {
  .pageEstimatePromotionBox {
    height: min(40vw, 412px);
  }
  .pageEstimatePromotionBox::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    background-image: url("../img/estimate_flame.svg");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .pageEstimatePromotionBox {
    padding-top: 10vw;
    padding-bottom: 6vw;
    margin-top: 22vw;
    border: 4px solid #fcda53;
  }
  .pageEstimatePromotionBox:before {
    content: "";
    display: block;
    position: absolute;
    top: -4px;
    left: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    background-image: linear-gradient(to right, #333, #333 16px, transparent 16px, transparent 20px), linear-gradient(to bottom, #333, #333 16px, transparent 16px, transparent 20px), linear-gradient(to right, #333, #333 16px, transparent 16px, transparent 20px), linear-gradient(to bottom, #333, #333 16px, transparent 16px, transparent 20px);
    background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
    background-size: 32px 4px, 4px 32px, 32px 4px, 4px 32px;
    background-position: left bottom, left bottom, right top, right top;
  }
}

@media print, screen and (min-width: 768px) {
  .pageEstimatePromotionBoxInner {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    width: 100%;
  }
}

.pageEstimatePromotionMsg {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(17px, 1.8vw, 20px);
  color: #7c6d2e;
  letter-spacing: 0.15em;
}
@media only screen and (max-width: 767px) {
  .pageEstimatePromotionMsg {
    line-height: 1.5;
  }
}

.pageEstimatePromotionMsg--l {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  display: inline-block;
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.5;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 767px) {
  .pageEstimatePromotionMsg--l {
    line-height: 1.5;
  }
}
@media print, screen and (min-width: 768px) {
  .pageEstimatePromotionMsg--l::after {
    content: "";
    display: block;
    position: absolute;
    background-color: rgba(254, 219, 65, 0.5);
    border-radius: 8px;
    width: 105%;
    height: 14px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
  }
}
@media only screen and (max-width: 767px) {
  .pageEstimatePromotionMsg--l {
    font-size: 6vw;
    position: relative;
    display: inline;
    background: linear-gradient(transparent 70%, rgba(254, 219, 65, 0.5) 70%); /* 70%のところに黄色いマーカー */
    padding: 0 2px; /* 余白を追加することで文字がマーカーと重ならないように調整 */
  }
}

.pageEstimatePromotionText {
  letter-spacing: 0.14em;
}
.pageEstimatePromotionText .text {
  text-align: left;
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .pageEstimatePromotionText .text {
    font-size: 13px;
  }
}
@media print, screen and (min-width: 768px) {
  .pageEstimatePromotionText {
    width: min(70vw, 800px);
    margin-right: auto;
    margin-left: auto;
  }
}
@media only screen and (max-width: 767px) {
  .pageEstimatePromotionText .text {
    width: calc(100% - 12vw);
    margin-right: auto;
    margin-left: auto;
  }
}

.pageEstimatePromotionCautionIcon {
  position: absolute;
  width: min(6vw, 68px);
  right: 50%;
  transform: translateX(50%);
  top: max(-3vw, -30px);
}
@media only screen and (max-width: 767px) {
  .pageEstimatePromotionCautionIcon {
    width: 14vw;
    top: -7vw;
  }
}

.pageEstimatePromotionBoyIcon {
  position: absolute;
  width: min(19vw, 216px);
  top: max(-15vw, -158px);
  left: min(23vw, 230px);
}
@media only screen and (max-width: 767px) {
  .pageEstimatePromotionBoyIcon {
    width: 32vw;
    top: -22vw;
    left: 8vw;
  }
}

.pageEstimatePromotionContactWrap {
  gap: min(5vw, 50px);
}
@media only screen and (max-width: 767px) {
  .pageEstimatePromotionContactWrap {
    flex-direction: column;
    align-items: center;
    gap: 3vw;
  }
}

.obliqueLine {
  position: relative;
}
.obliqueLine:before, .obliqueLine:after {
  position: relative;
  display: inline-block;
  content: "";
  background: #7c6d2e;
  width: 2px;
  height: 1.5em;
  margin: 0 1em;
  margin-top: 1em;
  vertical-align: middle;
}
.obliqueLine:before {
  transform: rotate(-35deg);
}
.obliqueLine:after {
  transform: rotate(35deg);
}

.pageEstimateCampaignArcText {
  color: #7c6d2e;
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(17px, 2vw, 22px);
}
@media only screen and (max-width: 767px) {
  .pageEstimateCampaignArcText {
    line-height: 1.5;
  }
}
.pageEstimateCampaignArcText span {
  display: inline-block;
  transition: none;
}
.pageEstimateCampaignArcText span:first-child {
  transform: translateX(0px) translateY(8px) rotate(-16deg);
}
.pageEstimateCampaignArcText span:nth-child(2) {
  transform: translateX(0px) translateY(3px) rotate(-9deg);
}
.pageEstimateCampaignArcText span:nth-child(3) {
  transform: translateX(0px) translateY(0px) rotate(-3deg);
}
.pageEstimateCampaignArcText span:nth-child(4) {
  transform: translateX(0px) translateY(0px) rotate(3deg);
}
.pageEstimateCampaignArcText span:nth-child(5) {
  transform: translateX(0px) translateY(2px) rotate(9deg);
}
.pageEstimateCampaignArcText span:nth-child(6) {
  transform: translateX(0px) translateY(8px) rotate(15deg);
}

.pageEstimateCampaignArcTitle {
  color: #7c6d2e;
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(26px, 4vw, 45px);
  line-height: 1.3;
}
@media only screen and (max-width: 767px) {
  .pageEstimateCampaignArcTitle {
    line-height: 1.5;
  }
}
@media only screen and (max-width: 767px) {
  .pageEstimateCampaignArcTitle {
    line-height: 1.25;
    font-size: 6.8vw;
  }
}

.pageEstimateCampaignUnit {
  gap: min(3vw, 36px);
}

.pageEstimateCampaignSectionBox {
  position: relative;
  background-color: #fff;
  border: 5px solid #c3b060;
  padding: min(1vw, 14px) min(6vw, 62px) min(3vw, 34px);
}
@media only screen and (max-width: 767px) {
  .pageEstimateCampaignSectionBox {
    padding-top: 2vw;
    padding-bottom: 7vw;
  }
}

.pageEstimateCampaignBoyIcon {
  position: absolute;
  width: min(20vw, 228px);
  top: max(-5vw, -65px);
  right: max(-4vw, -20px);
}
@media only screen and (max-width: 767px) {
  .pageEstimateCampaignBoyIcon {
    width: 31vw;
  }
}

.pageEstimateCampaignCardNum {
  background-color: #c3b060;
  color: #fff;
  font-weight: 600;
  font-size: clamp(12px, 1.4vw, 16px);
  text-align: center;
  width: min(10vw, 106px);
  border-radius: 100px;
  display: inline-block;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  top: max(-1.4vw, -14px);
  z-index: 20;
  padding: 0.2em 0 0.1em;
}
@media only screen and (max-width: 767px) {
  .pageEstimateCampaignCardNum {
    width: 18vw;
    top: -3vw;
    font-size: 3.4vw;
    padding-top: 0.2em 0 0.3em;
  }
}

.pageEstimateCampaignCard {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: max(1.4vw, 14px);
}
@media only screen and (max-width: 767px) {
  .pageEstimateCampaignCard:not(:last-child) {
    margin-bottom: 8vw;
  }
}

.pageEstimateCampaignCardInner {
  padding: min(3vw, 32px) min(1.8vw, 18px);
  border: 2px solid #c3b060;
  border-radius: min(1.2vw, 16px);
  overflow: hidden;
  position: relative;
  z-index: 10;
  background-color: #fff;
  flex-grow: 1;
}
.pageEstimateCampaignCardInner:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(145deg, #e2d9b4 0%, #fffefb 50%, #e2d9b4 100%);
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .pageEstimateCampaignCardInner {
    border-radius: 3vw;
    padding: 5vw 4vw;
  }
}

.pageEstimateCampaignCardImgBox {
  border-radius: min(1vw, 12px);
  background-color: #fff;
  padding: 3%;
  margin-bottom: min(1.6vw, 16px);
}
@media only screen and (max-width: 767px) {
  .pageEstimateCampaignCardImgBox {
    border-radius: 2.5vw;
    margin-bottom: 3vw;
  }
}

.pageEstimateCampaignCardImg {
  padding-bottom: 43%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.pageEstimateCampaignCardTextBox .strongText {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 2.6vw, 30px);
  color: #d14726;
  line-height: 1.2;
  display: block;
  margin-bottom: min(0.8vw, 8px);
}
@media only screen and (max-width: 767px) {
  .pageEstimateCampaignCardTextBox .strongText {
    line-height: 1.5;
  }
}
.pageEstimateCampaignCardTextBox .text {
  font-size: clamp(12px, 1.4vw, 16px);
  text-align: left;
}
.pageEstimateCampaignCardTextBox .text.textCenter {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .pageEstimateCampaignCardTextBox .strongText {
    font-size: 5.4vw;
  }
  .pageEstimateCampaignCardTextBox .text {
    font-size: 14px;
  }
}

.pageEstimatePromotionContents {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.topConsultationFrame {
  background: linear-gradient(65deg, #c2b060 0%, #fffefb 60%, #c2b060 100%);
  position: relative;
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  .topConsultationFrame {
    padding: 3vw;
  }
}

.topConsultationFrameDot:before, .topConsultationFrameDot:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 20px;
}
.topConsultationFrameDot.top:before, .topConsultationFrameDot.top:after {
  top: 10px;
}
.topConsultationFrameDot.top::before {
  left: 10px;
}
.topConsultationFrameDot.top:after {
  right: 10px;
}
.topConsultationFrameDot.bottom:before, .topConsultationFrameDot.bottom:after {
  bottom: 10px;
}
.topConsultationFrameDot.bottom::before {
  left: 10px;
}
.topConsultationFrameDot.bottom:after {
  right: 10px;
}
@media only screen and (max-width: 767px) {
  .topConsultationFrameDot:before, .topConsultationFrameDot:after {
    width: 4px;
    height: 4px;
  }
  .topConsultationFrameDot.top:before, .topConsultationFrameDot.top:after {
    top: 4px;
  }
  .topConsultationFrameDot.top::before {
    left: 4px;
  }
  .topConsultationFrameDot.top:after {
    right: 4px;
  }
  .topConsultationFrameDot.bottom:before, .topConsultationFrameDot.bottom:after {
    bottom: 4px;
  }
  .topConsultationFrameDot.bottom::before {
    left: 4px;
  }
  .topConsultationFrameDot.bottom:after {
    right: 4px;
  }
}

.topConsultationInner {
  background-color: #fff;
  position: relative;
  display: flex;
  padding: 8px;
}
.topConsultationInner:before {
  content: "";
  position: absolute;
  display: block;
  border: 1px solid #c4b05b;
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.topConsultationImg {
  width: min(28vw, 330px);
  position: absolute;
  z-index: 10;
  right: max(-4vw, -63px);
  bottom: 0;
}
@media only screen and (max-width: 767px) {
  .topConsultationImg {
    right: 5px;
    bottom: auto;
    top: -9px;
    width: 93px;
  }
}

.topConsultationTitle {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  color: white;
  background-color: #c2b060;
  text-align: center;
  display: inline-block;
  padding: 0.1em min(13vw, 130px);
  position: relative;
  font-size: clamp(18px, 2.8vw, 28px);
  margin-bottom: min(1vw, 10px);
}
@media only screen and (max-width: 767px) {
  .topConsultationTitle {
    line-height: 1.5;
  }
}
@media only screen and (max-width: 767px) {
  .topConsultationTitle {
    width: 100%;
    padding: 0.4em;
    margin-bottom: 3.5vw;
    text-align: left;
    padding-left: 2em;
  }
}
@media print, screen and (min-width: 768px) {
  .topConsultationTitle:before, .topConsultationTitle:after {
    content: "";
    display: inline-block;
    position: absolute;
    background-color: #c2b060;
    width: 30px;
    height: 100%;
    top: 0;
  }
  .topConsultationTitle:before {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    right: calc(100% - 0.5px);
  }
  .topConsultationTitle::after {
    clip-path: polygon(0 0, 100% 0, 0% 100%);
    left: calc(100% - 0.5px);
  }
}

.topConsultationText {
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 2vw, 20px);
}
@media only screen and (max-width: 767px) {
  .topConsultationText {
    line-height: 1.5;
  }
}

.topConsultationTextBox {
  width: 100%;
}

.topConsultationNumUl {
  display: grid;
  gap: min(2vw, 24px);
  grid-template-columns: repeat(3, 1fr);
}
.topConsultationNumUl li {
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .topConsultationNumUl {
    margin-left: min(3vw, 32px);
    width: calc(100% - min(25vw, 270px));
  }
}
@media only screen and (max-width: 767px) {
  .topConsultationNumUl {
    width: calc(100% - 16px);
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 5vw;
  }
}

.topConsultationNumTitle {
  background-color: #191970;
  color: #fff;
  font-weight: 600;
  padding: 0.4em;
  padding-bottom: 0.3em;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.topConsultationNumTitle .num {
  font-size: clamp(16px, 2vw, 22px);
  font-family: "Inter", sans-serif;
  font-weight: 600;
}
.topConsultationNumTitle .text {
  font-size: clamp(11px, 1.5vw, 16px);
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .topConsultationNumTitle {
    line-height: 1;
  }
  .topConsultationNumTitle .num {
    line-height: 1;
  }
  .topConsultationNumTitle .text {
    line-height: 1.5;
    letter-spacing: 0.07em;
  }
}

.topConsultationNum {
  background-color: #e8e5dd;
}
.topConsultationNum .num {
  font-family: "Inter", sans-serif;
  font-size: clamp(24px, 4vw, 43px);
  font-weight: bold;
}
.topConsultationNum .numText {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .topConsultationNum {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }
}

.seasonal-float-img {
  display: none;
}

.telModal {
  display: none; /* Hide by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.telModalLink {
  cursor: pointer;
  transition: 0.3s;
}
.telModalLink:hover {
  opacity: 0.7;
}

.telModalContent {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  position: absolute;
  width: min(70vw, 740px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.telModalContent .headerContactTelLinkWrap {
  justify-content: flex-end;
}
.telModalContent .headerContactTel {
  font-size: clamp(18px, 3.5vw, 40px);
}
.telModalContent .estimateIcon {
  width: 36px;
  height: 36px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
}
.telModalContent .estimateIcon__tel--colorReverse:after {
  font-size: 20px;
}
.telModalContent .linkArrow {
  right: 0%;
}
.telModalContent .headerContactTel:active, .telModalContent .headerContactTel:hover {
  color: #fff;
}
.telModalContent .receptionWrap {
  justify-content: center;
}
.telModalContent .receptionWrap span {
  font-size: min(1.4vw, 16px);
}
@media print, screen and (min-width: 768px) {
  .telModalContent {
    padding-top: min(5vw, 70px);
  }
  .telModalContent .estimateIcon {
    width: 54px;
    height: 54px;
  }
  .telModalContent .estimateIcon.estimateIcon__tel--colorReverse:after {
    font-size: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .telModalContent {
    width: 90%;
  }
  .telModalContent .headerContactTelLinkWrap {
    justify-content: flex-end;
  }
  .telModalContent .headerContactTel {
    font-size: 24px;
  }
  .telModalContent .receptionWrap span {
    font-size: 13px;
  }
}

.telModalCloseBtnWrap {
  position: absolute;
  background-color: #777777;
  border-radius: 100px;
  top: min(1.2vw, 16px);
  right: min(1.2vw, 16px);
  cursor: pointer;
  transition: 0.3s;
}
.telModalCloseBtnWrap:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  .telModalCloseBtnWrap {
    right: -8px;
    top: -8px;
  }
}

.telModalCloseBtn {
  width: 30px;
  height: 30px;
  position: absolute;
  display: grid;
  place-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.telModalCloseBtn i::before {
  font-size: 18px;
  color: #fff;
}

.telModalCloseBtnInner {
  position: relative;
  width: 30px;
  height: 30px;
}

.telModalMsg {
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 600;
  line-height: 1.6;
}
@media print, screen and (min-width: 768px) {
  .telModalMsg {
    margin-bottom: min(1.2vw, 16px);
  }
}
@media only screen and (max-width: 767px) {
  .telModalMsg {
    line-height: 1.4;
    margin-left: 1em;
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .telModalContentInner {
    position: relative;
  }
}
@media print, screen and (min-width: 768px) {
  .telModalContentInner {
    width: min(50vw, 530px);
    margin-right: auto;
    margin-left: auto;
  }
}

.telModalContentTelWrap {
  position: relative;
}
.telModalContentTelWrap a {
  background-color: #191970;
  padding: 0.7em;
  border-radius: 12px;
}
.telModalContentTelWrap .estimateIcon {
  transform: scaleX(-1) translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .telModalContentTelWrap a {
    border-radius: 8px;
  }
}
@media print, screen and (min-width: 768px) {
  .telModalContentTelWrap a {
    transition: 0.3s;
  }
  .telModalContentTelWrap a:hover {
    opacity: 0.7;
  }
  .telModalContentTelWrap .circle:before {
    width: 21px;
    height: 21px;
  }
  .telModalContentTelWrap .arrow:before {
    width: 28px;
  }
  .telModalContentTelWrap .arrow::after {
    top: -3px;
    width: 7px;
    height: 7px;
  }
}

.telModalIcon {
  position: absolute;
  bottom: 100%;
  right: 24px;
  width: min(11vw, 138px);
}
@media only screen and (max-width: 767px) {
  .telModalIcon {
    width: 85px;
  }
}

@media only screen and (max-width: 767px) {
  .telModalTelTextWrap {
    width: 80%;
    margin-right: auto;
  }
}
@media print, screen and (min-width: 768px) {
  .telModalTelTextWrap {
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-right: 20%;
  }
  .telModalTelTextWrap .text {
    font-size: clamp(13px, 1.6vw, 18px);
  }
}

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

.topHiromiIcon--pickup {
  position: absolute;
  bottom: 100%;
  right: max(-3vw, -32px);
  width: min(14vw, 193px);
}
@media only screen and (max-width: 767px) {
  .topHiromiIcon--pickup {
    right: 0;
  }
}

.topContactHiromiIcon {
  position: absolute;
  width: min(12vw, 152px);
  right: max(-10vw, -120px);
  top: max(-13vw, -160px);
}
@media only screen and (max-width: 767px) {
  .topContactHiromiIcon {
    right: 16px;
    top: -70px;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .topContactHiromiIcon {
    width: min(10vw, 152px);
    right: max(-2vw, -120px);
  }
}

/*Q&A*/
.schema-faq-answer {
  padding: 0.75em 1em;
  border: 2px solid #191970;
  background: #f9f9ff;
}

.schema-faq-question {
  padding: 0.75em 1em;
  display: block;
  background: #191970 !important;
  color: #fff;
}

.ulStyle {
  list-style-type: disc;
  padding-left: 1.5em;
}
.ulStyle li {
  list-style-type: disc;
}

.olStyle {
  list-style-type: auto;
  padding-left: 1.5em;
}
.olStyle li {
  list-style-type: auto;
}

@media print, screen and (min-width: 768px) {
  .gap40Pc {
    gap: min(4vw, 40px);
  }
}

.showroomMv {
  margin-top: min(10vw, 100px);
  margin-bottom: min(11vw, 115px);
}

@media print, screen and (min-width: 768px) {
  .showroomMvImgBox {
    width: min(100%, 1029px);
  }
}
@media only screen and (max-width: 767px) {
  .showroomMvImgBox {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}

.showroomCase .commonTitle_xs {
  letter-spacing: 0.06em;
}

@media print, screen and (min-width: 768px) {
  .showroomHighLightsCnt {
    max-width: 1150px;
  }
}

.showroomHighLights .showroomHighLightTitle {
  font-weight: normal;
}
@media print, screen and (min-width: 768px) {
  .showroomHighLights .showroomHighLightTitle {
    font-size: min(1.2vw, 14px);
  }
}
@media only screen and (max-width: 767px) {
  .showroomHighLights .showroomHighLightTitle {
    font-size: 14px;
  }
}
.showroomHighLights .commonCaseCardTextBox {
  padding-top: min(2vw, 20px);
}
.showroomHighLights .pageServiceTroubleBox {
  padding-bottom: 5%;
}
@media only screen and (max-width: 767px) {
  .showroomHighLights .commonCaseCard {
    width: 100%;
  }
}
@media only screen and (min-width: 767px) and (max-width: 959px) {
  .showroomHighLights .commonCaseUnit {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .showroomHighLights .commonCaseCard {
    width: 100%;
  }
}

.showroomOutline {
  padding-top: clamp(60px, 8vw, 80px);
  padding-bottom: clamp(45px, 6vw, 60px);
}

@media print, screen and (min-width: 768px) {
  .showroomOutlineDlBox {
    width: min(45vw, 457px);
  }
}

@media print, screen and (min-width: 768px) {
  .showroomOutlineInnerWrap {
    gap: min(10vw, 125px);
  }
}

.showroomImgUl {
  gap: min(1.3vw, 16px);
}
@media only screen and (max-width: 767px) {
  .showroomImgUl {
    gap: 8px;
  }
}

.commonTitleBg {
  background-color: #191970;
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  line-height: 1.2;
  padding: clamp(8px, 1.5vw, 12px) clamp(16px, 2vw, 22px);
}
@media only screen and (max-width: 767px) {
  .commonTitleBg {
    line-height: 1.5;
  }
}

.showroomMapGuide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(11vw, 111px);
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .showroomMapGuide:after {
    content: "";
    display: inline-block;
    background-image: url(../img/next_arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: min(2vw, 20px);
    height: min(2.5vw, 25px);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 38%;
  }
}
@media only screen and (max-width: 767px) {
  .showroomMapGuide {
    grid-template-columns: 1fr;
    gap: 14vw;
  }
}

.showroomMapGuideImgBox {
  margin-bottom: min(2vw, 20px);
}

.showroomMapGuideTextBox {
  font-size: 14px;
}

@media only screen and (max-width: 767px) {
  .showroomMapGuideItem:first-child {
    position: relative;
  }
  .showroomMapGuideItem:first-child::after {
    content: "";
    display: inline-block;
    background-image: url(../img/next_arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    width: 20px;
    height: 25px;
    rotate: 90deg;
    top: calc(100% + 18px);
    left: calc(50% - 10px);
    transform: translateX(-50%);
  }
}

@media print, screen and (min-width: 768px) {
  .advanceReservationUnit {
    max-width: 756px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media only screen and (max-width: 767px) {
  .advanceReservation .topReasonMsgCard:not(:last-child) {
    margin-bottom: 7%;
  }
  .advanceReservation .topReasonMsgCardNum {
    left: 0;
    right: auto;
  }
}

.showroomFlow {
  padding-top: clamp(60px, 10vw, 100px);
  padding-bottom: clamp(40px, 8vw, 80px);
}

/* ==========================================================================
   印刷用
   ========================================================================== */
/* -------------------------------------------------------------- 
 
 Hartija CSS Print Framework -MIT License
   * Version:   1.0
 
-------------------------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
    /*chrome用*/
    zoom: 0.8;
    border-top: none;
  }
  .bgImg {
    display: list-item; /* 該当箇所の表示方法をlist-itemに */
    list-style-image: url(print_bg.png); /* 表示させたい画像 */
    list-style-position: inside; /* マーカーの位置を内側に */
  }
  header {
    display: none;
  }
  footer {
    display: none;
  }
  .footerTelSp {
    display: none;
  }
  .menu-btn {
    display: none;
  }
  .fixBar {
    display: none !important;
  }
  .parallax-mirror {
    display: none;
    height: 0 !important;
  }
  .rellax {
    transform: none !important;
  }
  .PrintHidden {
    display: none;
  }
  .printArea {
    margin: 0;
    padding: 0;
  }
}/*# sourceMappingURL=import.css.map */
