@charset "UTF-8";
/*----------------------------------------------------

	読み込み専用のマスターファイルです。
	このファイルに直接スタイルを書き込まないでください。

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

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

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

del {
  text-decoration: line-through;
}

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

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

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

input, select {
  vertical-align: middle;
}

/*----------------------------------------------------

	リセットCSS調整ファイルです。
	リセットCSSを調整、カスタマイズしたい場合に編集します。

----------------------------------------------------*/
/* ====================================================

	EXAMPLES FONT-SIZE
	------------------
	 77% = 9px
	 85% = 10px
	 93% = 11px
	100% = 12px
	108% = 13px
	116% = 14px
	124% = 15px
	131% = 16px
	139% = 17px
	147% = 18px
	154% = 19px
	162% = 20px
	170% = 21px
	177% = 22px
	185% = 23px
	193% = 24px
	200% = 25px
	---------------

====================================================*/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 52.5%;
  }
}

body {
  *font-size: small;
  *font: x-small;
  _font-size: 14px;
}

ul,
li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  word-break: break-all;
}

img {
  vertical-align: middle;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/*----------------------------------------------------

	サイトの基本設定のファイルです。
	最初の設定以外、基本変更することはありません。

----------------------------------------------------*/
/*--------------------------
	フォントの設定
--------------------------*/
/*--------------------------
	カラーの設定
--------------------------*/
/*--------------------------
	レイアウトの設定
--------------------------*/
/*--------------------------
	グリッドのガター
--------------------------*/
/*--------------------------
	レスポンシブの設定
--------------------------*/
/*--------------------------
  アニメーションの設定
--------------------------*/
/*----------------------------------------------------

	Mixinをまとめたファイルです。
	基本的に変更することはありません。
	Mixinを追加したい場合、_mixin_●●.scssという
	別ファイルを生成し、追加してください。

----------------------------------------------------*/
/*--------------------------
	レスポンシブ関連
--------------------------*/
/*----------------------------------------------------

	自作関数をまとめたファイルです。
	基本的に変更することはありません。
	自作関数を追加したい場合、_functions_●●.scssという
	別ファイルを生成し、追加してください。

----------------------------------------------------*/
/*----------------------------------------------------

	初期設定を行うファイルです。
	デフォルトの設定を行う時以外、基本的に編集することはありません。

----------------------------------------------------*/
html {
  font-size: 10px;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 0.83333vw; /* 10px / 1200px * 100 */
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.66666667vw; /* 10px / 375px * 100 */
  }
}

body {
  background: #fff;
  color: #000;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "zen-kaku-gothic-antique", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

.wrap {
  overflow: hidden;
  position: relative;
}

img {
  height: auto;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
}

sup {
  font-size: 50%;
  vertical-align: super;
}

/*--------------------------
	utility
--------------------------*/
/*----------------------------------------------------

	汎用クラスをまとめたファイルです。
	基本的に変更することはありません。
	汎用クラスを追加したい場合、_utility_●●.scssという
	別ファイルを生成し、追加してください。

	命名規則として、クラス名の頭に 
	u-* (utilityのu)という接頭辞をつけることを推奨します。

----------------------------------------------------*/
.u-txt-bold {
  font-weight: bold !important;
}

.u-txt-xsmall {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .u-txt-xsmall {
    font-size: 1rem !important;
  }
}

.u-txt-small {
  font-size: 1.4rem !important;
}
@media screen and (max-width: 767px) {
  .u-txt-small {
    font-size: 1.2rem !important;
  }
}

.u-txt-medium {
  font-size: 1.8rem !important;
}
@media screen and (max-width: 767px) {
  .u-txt-medium {
    font-size: 1.4rem !important;
  }
}

.u-txt-large {
  font-size: 2rem !important;
}
@media screen and (max-width: 767px) {
  .u-txt-large {
    font-size: 1.6rem !important;
  }
}

.u-link {
  color: #000;
  text-decoration: underline;
}
.u-link:hover {
  text-decoration: none;
}

.u-ul-default {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: disc;
}
.u-ul-default li {
  list-style: inherit;
}

.u-ol-default {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: decimal;
}
.u-ol-default li {
  list-style: inherit;
}

.u-ul-style > li {
  position: relative;
  padding-left: 1.3em;
}
@media screen and (max-width: 767px) {
  .u-ul-style > li {
    padding-right: 1rem;
  }
}
.u-ul-style > li::before {
  content: "・";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
.u-ul-style--asterisk > li::before {
  content: "※";
}
.u-ul-style--disc > li::before {
  content: "●";
  font-size: 2.7rem;
  color: #627F89;
  padding-right: 0.5rem;
  line-height: 0.7;
  top: 0.3rem;
}
@media screen and (max-width: 767px) {
  .u-ul-style--disc > li::before {
    top: 0;
  }
}
.u-ul-style--disc-red > li::before {
  content: "●";
  color: #000;
}
.u-ul-style--number > li {
  counter-increment: number;
}
.u-ul-style--number > li::before {
  content: counter(number) ".";
}
.u-ul-style--number-red > li {
  counter-increment: number;
}
.u-ul-style--number-red > li::before {
  content: counter(number) ".";
  color: #000;
}

.u-align-l {
  text-align: left !important;
}

.u-align-c {
  text-align: center !important;
}

.u-align-r {
  text-align: right !important;
}

@media screen and (max-width: 1000px) {
  .u-align-l-tab {
    text-align: left !important;
  }
  .u-align-c-tab {
    text-align: center !important;
  }
  .u-align-r-tab {
    text-align: right !important;
  }
}
@media screen and (max-width: 767px) {
  .u-align-l-sp {
    text-align: left !important;
  }
  .u-align-c-sp {
    text-align: center !important;
  }
  .u-align-r-sp {
    text-align: right !important;
  }
}
.u-iframe-responsive {
  position: relative;
  height: 0;
  width: 100%;
  padding-top: 56.25%;
}
.u-iframe-responsive iframe, .u-iframe-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

/*--------------------------
	Layout
--------------------------*/
/*----------------------------------------------------

	レイアウト設定のファイルです。
	レイアウトに関する汎用性の高いスタイルをまとめています。
	基本的には編集することはありません。

	命名規則として、クラス名の頭に 
	l-* (Layoutのl)という接頭辞をつけることを推奨します。

----------------------------------------------------*/
.l-section {
  margin: 8rem 0;
}
@media screen and (max-width: 767px) {
  .l-section {
    margin: 4rem 0;
  }
}

.l-inner {
  margin: 0 auto;
  max-width: 1080px;
}
@media screen and (max-width: 1024px) {
  .l-inner {
    max-width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 3rem;
    max-width: 100%;
  }
}

.l-inner-l {
  margin: 0 auto;
  width: 1080px;
}
@media screen and (max-width: 1024px) {
  .l-inner-l {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .l-inner-l {
    padding: 0 3rem;
    width: 100%;
  }
}

.l-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-flex--aic {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-pos-relative {
  position: relative;
}

.l-pos-center {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

.l-clearfix:after {
  clear: both;
  content: "";
  display: block;
}

.l-left {
  float: left;
}

.l-right {
  float: right;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

@-webkit-keyframes scroll-hint-appear {
  0% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 0;
  }
}

@keyframes scroll-hint-appear {
  0% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 120px;
  height: 80px;
  border-radius: 5px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  -webkit-animation: scroll-hint-appear 1.2s linear;
          animation: scroll-hint-appear 1.2s linear;
  -webkit-animation-iteration-count: 2;
          animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
          box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

/*--------------------------
	module
--------------------------*/
.header__fixed {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  z-index: 9999;
  -webkit-box-shadow: 0px 6px 13px -12px #777777;
          box-shadow: 0px 6px 13px -12px #777777;
}
.header__fixed-sp {
  position: fixed;
  background-color: #fff;
  width: 100%;
  z-index: 9999;
}
.header__logo-sp {
  width: 21rem;
  position: relative;
  z-index: 999;
}
.header__fixed-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.4rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  background: #fff;
  z-index: 9999;
  position: relative;
  -webkit-box-shadow: 0px 6px 13px -12px #777777;
          box-shadow: 0px 6px 13px -12px #777777;
}
.header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-bottom: 4rem;
}
.header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.header nav ul li {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.header nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-bottom: 0.5rem;
  position: relative;
}
.header nav ul li {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
}
.header nav ul li::after {
  color: #99aeb5;
}
.header__drop::after {
  content: "●";
  color: #99aeb5;
  text-align: center;
  font-size: 2rem;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  position: absolute;
  bottom: -2.5rem;
  z-index: 999;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.header__drop:hover::after {
  content: "○";
  color: #99aeb5;
  text-align: center;
  font-size: 2rem;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}
.header nav ul li:nth-of-type(1)::after {
  content: none;
}
.header nav ul li:nth-of-type(4)::after {
  content: none;
}
.header nav ul li:nth-of-type(6)::after {
  content: none;
}
.header nav ul li:nth-of-type(7)::after {
  content: none;
}
.header nav ul li a {
  color: #000000;
}
.header nav ul li:hover a {
  opacity: 1;
}
.header nav ul li a {
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
  padding-left: 3rem;
  padding-right: 3rem;
  border-right: solid 0.1rem #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header nav ul li a:hover {
  color: #829095;
}
.header nav ul li section {
  position: fixed;
  top: 14rem;
  left: 0;
  width: 100vw;
  height: 38rem;
  padding-top: 10rem;
  /* padding-bottom: 6rem; */
  background-color: rgba(255, 255, 255, 0.8);
  pointer-events: none;
  opacity: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.header nav ul li:hover > section {
  display: block;
  opacity: 1;
  pointer-events: all;
}
.header nav ul li section h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 2.2rem !important;
  color: #000;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
}
.header__pl {
  padding-left: 0 !important;
}
.header .border-none {
  border-right: none;
}
.header .sub_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .sub_menu__link {
  border: none;
  padding-left: 0;
  padding-right: 0;
}
.header .sub_menu__thumb {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header .sub_menu__link-hov {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header nav ul li section .sub_menu dl {
  width: 30rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 0;
  margin-right: 6rem;
  position: relative;
}
.header nav ul li section .sub_menu dl::before {
  content: "";
  background-image: url(../images/common/img-nav-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  position: absolute;
  top: calc(100% - 2.2rem);
  right: 0%;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  width: 2.8rem;
  height: 2.8rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header nav ul li section .sub_menu dl:hover::before {
  content: "";
  background-image: url(../images/common/img-nav-icon-hov.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  position: absolute;
  top: calc(100% - 2.2rem);
  right: 0%;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  width: 2.8rem;
  height: 2.8rem;
}
.header nav ul li section .sub_menu dl:hover .sub_menu__link-hov {
  color: #b2bfc3;
}
.header nav ul li section .sub_menu dl:hover .sub_menu__thumb {
  opacity: 0.5;
}
.header nav ul li section .sub_menu dl dt {
  overflow: hidden;
}
.header nav ul li section .sub_menu dl dd {
  margin-left: 0;
  padding-top: 1.5rem !important;
  line-height: 1.4;
}
.header__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.5rem 0 2rem;
  position: relative;
}
.header__language-main {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-top: 1rem;
  /* 言語選択非表示処置 */
}
.header__language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 10rem;
}
@media screen and (max-width: 1270px) {
  .header__language {
    right: -5rem;
  }
}
.header__language-item {
  border-right: solid 0.1rem #bababa;
  padding: 0 1rem;
  color: #bababa;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__language-item a:hover {
  padding-bottom: 0.4rem;
  border-bottom: solid 0.1rem #000;
}
.header__language-item:hover {
  color: #000;
}
.header__language-item:nth-of-type(2) {
  border-right: none;
}
.header__language-sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 7rem;
  position: relative;
  left: 30%;
  z-index: 1000;
  /* 言語選択非表示処置 */
}
.header__language-item-sp {
  border-right: solid 0.1rem #000;
  font-size: 1.1rem;
  padding: 0 1rem;
  color: #bababa;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__language-item-sp a:hover {
  padding-bottom: 1rem;
  border-bottom: solid 0.1rem #000;
}
.header__language-item-sp:hover {
  color: #000;
}
.header__language-item-sp:nth-of-type(2) {
  border-right: none;
}
.header__logo-name {
  width: 38%;
}
.header__logo {
  width: 12%;
}
.header__menu_right {
  position: fixed;
  top: 18rem;
  bottom: 7rem;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  z-index: 999;
  gap: 0.2rem;
}
.header__menu_box {
  width: 7rem;
  height: 40vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #f4f7f8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__menu_box:hover .header__menu_box-ico {
  opacity: 0;
  display: none;
}
.header__menu_box:hover .header__menu_box-ico-hov {
  display: block; /* ホバー時に別の画像を表示する */
  opacity: 1;
  z-index: 200;
  width: 25%;
  height: auto;
  padding-bottom: 1rem;
}
@media screen and (max-width: 1024px) {
  .header__menu_box {
    height: 44vh;
  }
}
.header__menu_box:hover {
  background: #99aeb5;
}
.header__menu_box:hover .header__nav-item-txt {
  color: #fff;
}
.header__menu_box:hover .header__nav-item-txt02 {
  color: #fff;
}
.header__menu_box-ico {
  width: 25%;
  height: auto;
  padding-bottom: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}
.header__menu_box-ico-hov {
  width: 25%;
  height: auto;
  padding-bottom: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  display: none;
}
.header__nav-item-txt {
  color: #000;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header__nav-item-txt02 {
  color: #000;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.footer__logo {
  width: 40%;
  margin-inline: auto;
  padding-bottom: 2.5rem;
}
.footer__nav {
  background-color: #F2F2F2;
  padding: 13rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    padding: 5rem 0 0rem;
  }
}
.footer__nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__nav-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__nav-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 65%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 9rem;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.footer__nav-contents li a:hover {
  opacity: 0.6;
}
.footer__nav-left {
  width: 55%;
}
.footer__main {
  font-size: 1.6rem;
  color: #828587;
  font-weight: 400;
  padding-bottom: 1rem;
  margin-bottom: 3rem;
  border-bottom: solid 0.1rem #DEDEDE;
}
.footer__main--02 {
  width: 100%;
  display: block;
  margin-bottom: 1rem;
}
.footer__sub {
  font-size: 1.4rem;
  color: #828587;
  font-weight: 300;
  padding-bottom: 1rem;
}
.footer__mb {
  margin-bottom: 3rem;
  margin-top: 1rem;
}
.footer__nav-right {
  width: 55%;
}
.footer__heading {
  font-family: "soleil", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.66;
  color: #828587;
  position: relative;
  top: -1.2rem;
}
@media screen and (max-width: 767px) {
  .footer__heading {
    font-size: 2.7rem;
    margin-inline: auto;
    width: 100%;
    line-height: 1.33;
    letter-spacing: 0.025rem;
    text-align: center;
    top: 0;
  }
}
.footer__copy {
  padding: 2.8rem 0;
  text-align: right;
  font-size: 1.2rem;
  font-family: "soleil", sans-serif;
  font-weight: 600;
  letter-spacing: 0.2rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .footer__copy {
    padding: 3.5rem 0px 8rem 1rem;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0;
    width: 82%;
    background: none;
  }
}

.floating {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9999;
}
.floating__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.floating__contract {
  position: relative;
  background-color: #627F89;
  color: #fff;
  text-align: center;
  width: 19.5rem;
  padding: 1.5rem 4rem;
  border-radius: 1.4rem 1.4rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
}
.floating__contract a {
  display: block;
}
.floating__contract::before {
  content: "";
  background-image: url(../images/common/floating-contract.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 1.7rem;
  left: 2.3rem;
  width: 2rem;
  height: 2rem;
}
.floating__contract::after {
  content: "";
  background-image: url(../images/common/floating-arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 1.9rem;
  right: 1.7rem;
  width: 2rem;
  height: 2rem;
}
.floating__contact {
  position: relative;
  background-color: #9AAEB5;
  color: #fff;
  text-align: center;
  width: 18rem;
  padding: 1.5rem 4rem;
  border-radius: 1.4rem 1.4rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
}
.floating__contact a {
  display: block;
}
.floating__contact::before {
  content: "";
  background-image: url(../images/common/floating-contact.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 1.7rem;
  left: 2.3rem;
  width: 2rem;
  height: 2rem;
}
.floating__contact::after {
  content: "";
  background-image: url(../images/common/floating-arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 1.9rem;
  right: 1.7rem;
  width: 2rem;
  height: 2rem;
}

.pagetop {
  height: 7rem;
  width: 7rem;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #000;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 250;
  padding-top: 1.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1500;
}
@media screen and (max-width: 767px) {
  .pagetop {
    height: 6rem;
    width: 6rem;
    position: fixed;
    right: 0;
    bottom: 0;
    background: #000;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 250;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    padding-top: 2.5rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    z-index: 1500;
  }
}
.pagetop::before {
  content: "";
  position: absolute;
  height: 1rem;
  width: 1rem;
  border-top: 0.1rem solid #fff;
  border-right: 0.1rem solid #fff;
  -webkit-transform: translateY(-220%) rotate(-45deg);
          transform: translateY(-220%) rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .pagetop::before {
    content: "";
    position: absolute;
    height: 1rem;
    width: 1rem;
    border-top: 0.1rem solid #fff;
    border-right: 0.1rem solid #fff;
    -webkit-transform: translateY(-80%) rotate(-45deg);
            transform: translateY(-80%) rotate(-45deg);
  }
}
.pagetop:hover {
  background: #99AEB5;
}
@media screen and (max-width: 767px) {
  .pagetop:hover {
    background: #000;
  }
}

.mv-sub {
  position: relative;
  width: 100%;
  height: 500px;
  margin-top: 17rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv-sub {
    position: relative;
    width: 100%;
    padding: 28vw 0;
    margin-top: 5.2rem;
    overflow: visible;
    height: auto;
  }
}
.mv-sub--02 {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .mv-sub--02 {
    margin-top: 3.5rem;
  }
}
.mv-sub--abu {
  position: relative;
  width: 90%;
  height: 500px;
  margin-left: auto;
  margin-top: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv-sub--abu {
    position: relative;
    width: 92%;
    padding: 29vw 0;
    margin-top: 0;
    overflow: visible;
    height: auto;
  }
}
.mv-sub--asp {
  position: relative;
  width: 90%;
  height: 500px;
  margin-left: auto;
  margin-top: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv-sub--asp {
    position: relative;
    width: 92%;
    padding: 29vw 0;
    margin-top: 0;
    overflow: visible;
    height: auto;
  }
}
.mv-sub--abr {
  position: relative;
  width: 90%;
  height: 500px;
  margin-left: auto;
  margin-top: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv-sub--abr {
    position: relative;
    width: 92%;
    padding: 29vw 0;
    margin-top: 0;
    overflow: visible;
    height: auto;
  }
}
.mv-sub--common {
  position: relative;
  width: 100%;
  height: 500px;
  margin-top: 17rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv-sub--common {
    position: relative;
    width: 100%;
    padding: 35.7vw 0;
    margin-top: 5.2rem;
    overflow: visible;
    height: auto;
  }
}
.mv-sub--common-contact {
  position: relative;
  width: 100%;
  height: 235px;
  margin-top: 17rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv-sub--common-contact {
    position: relative;
    width: 100%;
    padding: 18.6vw 0;
    margin-top: 5.2rem;
    overflow: visible;
    height: auto;
  }
}
.mv-sub--common-contact--iq {
  left: 46%;
}
.mv-sub__inner {
  position: absolute;
  bottom: -4.5rem;
  right: 50%;
  -webkit-transform: translate(50%, 0%);
          transform: translate(50%, 0%);
}
@media screen and (max-width: 767px) {
  .mv-sub__inner {
    bottom: -2.3rem;
  }
}
.mv-sub__inner--02 {
  bottom: -1rem;
  right: 50%;
  text-align: center;
}
.mv-sub__inner--03 {
  bottom: -1rem;
  right: 50%;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .mv-sub__inner--03 {
    text-align: center;
  }
}
.mv-sub__inner--iq {
  right: 55%;
}
@media screen and (max-width: 767px) {
  .mv-sub__inner--iq {
    bottom: -0.9rem;
    right: 58%;
  }
}
.mv-sub__ttl-en {
  color: #fff;
  font-size: 9rem;
  letter-spacing: 0.1rem;
  font-family: "soleil", sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .mv-sub__ttl-en {
    font-size: 4.5rem;
  }
}
.mv-sub__ttl-en--02 {
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .mv-sub__ttl-en--02 {
    line-height: 1.2;
  }
}
.mv-sub__ttl-en--03 {
  -moz-text-shadow: 1px 0px 15px rgba(0, 0, 0, 0.32);
  -webkit-text-shadow: 1px 0px 15px rgba(0, 0, 0, 0.32);
  -ms-text-shadow: 1px 0px 15px rgba(0, 0, 0, 0.32);
  text-shadow: 1px 0px 15px rgba(0, 0, 0, 0.32);
}
.mv-sub__ttl-en--04 {
  text-align: center;
  text-align: center;
  position: relative;
  bottom: 3.6rem;
}
@media screen and (max-width: 767px) {
  .mv-sub__ttl-en--04 {
    line-height: 1.2;
    bottom: 1.3rem;
  }
}
.mv-sub__ttl-en--center {
  right: 21.4%;
  top: 15%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  position: absolute;
  z-index: 100;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .mv-sub__ttl-en--center {
    right: 7%;
    top: 15%;
    -webkit-transform: translate(-50%, -100%);
            transform: translate(-50%, -100%);
    position: absolute;
    z-index: 100;
  }
}
.mv-sub__ttl-en--iq {
  width: 122rem;
}
@media screen and (max-width: 767px) {
  .mv-sub__ttl-en--iq {
    width: 38rem;
    text-align: center;
    line-height: 1.2;
  }
}
.mv-sub--company {
  background: url(../images/page/company/mv.jpg) top 75% center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .mv-sub--company {
    background: url(../images/page/company/mv-sp.jpg) center center no-repeat;
    background-size: cover;
  }
}
.mv-sub--philosophy {
  background: url(../images/page/philosophy/mv.jpg) top center no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv-sub--philosophy {
    background: url(../images/page/philosophy/mv-sp.jpg) center center no-repeat;
    background-size: cover;
  }
}
.mv-sub--news-list {
  background: url(../images/page/news-list/mv.jpg) center center no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv-sub--news-list {
    background: url(../images/page/news-list/mv-sp.jpg) center center no-repeat;
    background-size: cover;
  }
}
.mv-sub--recruit {
  background: url(../images/page/recruit/mv.jpg) top center no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv-sub--recruit {
    background: url(../images/page/recruit/mv-sp.jpg) top center no-repeat;
    background-size: cover;
  }
}
.mv-sub--contact-body {
  background: url(../images/page/contact/mv.jpg) top center no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv-sub--contact-body {
    background: url(../images/page/contact/mv-sp.jpg) top center no-repeat;
    background-size: cover;
  }
}
.mv-sub--privacy {
  background: url(../images/page/privacy/mv.jpg) center center no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv-sub--privacy {
    background: url(../images/page/privacy/mv-sp.jpg) center center no-repeat;
    background-size: cover;
  }
}
.mv-sub--support_system {
  background: url(../images/page/support_system/mv.jpg) center center no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv-sub--support_system {
    background: url(../images/page/support_system/mv-sp.jpg) center center no-repeat;
    background-size: cover;
  }
}
.mv-sub--preventive_maintenance {
  background: url(../images/page/preventive_maintenance/mv.jpg) center center no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv-sub--preventive_maintenance {
    background: url(../images/page/preventive_maintenance/mv-sp.jpg) center center no-repeat;
    background-size: cover;
  }
}
.mv-sub--value_of_time {
  background: url(../images/page/value_of_time/mv.jpg) center center no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv-sub--value_of_time {
    background: url(../images/page/value_of_time/mv-sp.jpg) center center no-repeat;
    background-size: cover;
  }
}
.mv-sub--calibration_services {
  background: url(../images/page/calibration_services/mv.jpg) center center no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv-sub--calibration_services {
    background: url(../images/page/calibration_services/mv-sp.jpg) center center no-repeat;
    background-size: cover;
  }
}
.mv-sub--business_partnership {
  background: url(../images/page/business_partnership/mv.jpg) center center no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv-sub--business_partnership {
    background: url(../images/page/business_partnership/mv-sp.jpg) center center no-repeat;
    background-size: cover;
  }
}
.mv-sub--abu {
  background: url(../images/page/abu/mv.jpg) center center no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv-sub--abu {
    background: url(../images/page/abu/mv-sp.jpg) center center no-repeat;
    background-size: cover;
  }
}
.mv-sub--asp {
  background: url(../images/page/asp/mv.jpg) center center no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv-sub--asp {
    background: url(../images/page/asp/mv-sp.jpg) center center no-repeat;
    background-size: cover;
  }
}
.mv-sub--abr {
  background: url(../images/page/abr/mv.jpg) center center no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv-sub--abr {
    background: url(../images/page/abr/mv-sp.jpg) center center no-repeat;
    background-size: cover;
  }
}
.mv-sub--service_contract {
  background: url(../images/page/service_contract/mv.jpg) center center no-repeat;
  background-size: cover;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv-sub--service_contract {
    background: url(../images/page/service_contract/mv-sp.jpg) center center no-repeat;
    background-size: cover;
  }
}

#nav-toggle {
  position: relative;
  top: 0.5rem;
  height: 1.8rem;
  cursor: pointer;
}
#nav-toggle > div {
  position: relative;
  width: 2rem;
}
#nav-toggle span {
  width: 100%;
  height: 1px;
  left: 0;
  display: block;
  background: #627F89;
  position: absolute;
  -webkit-transition: top 0.5s ease, -webkit-transform 0.6s ease-in-out;
  transition: top 0.5s ease, -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, top 0.5s ease;
  transition: transform 0.6s ease-in-out, top 0.5s ease, -webkit-transform 0.6s ease-in-out;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 0.8rem;
}
#nav-toggle span:nth-child(3) {
  top: 1.6rem;
}

.open #nav-toggle span {
  background: #fff;
  top: 0;
}
.open #nav-toggle span:nth-child(1) {
  top: 0.7rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #000;
}
.open #nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 0.7rem;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #000;
}

/* z-index */
#nav-toggle {
  z-index: 1000;
}

#container {
  z-index: 900;
}

#gloval-nav {
  background: #fff;
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  /* display: flex; */
  visibility: hidden;
  /* flex-direction: column; */
  /* justify-content: center; */
  /* align-items: center; */
  font-size: 1.4rem;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  padding: 14rem 0 0 3rem;
  overflow-y: scroll;
}

#gloval-nav .nav-sp-link {
  display: block;
  color: #627F89;
  text-decoration: none;
  padding: 1.5rem 1rem;
  -webkit-transition: color 0.6s ease;
  transition: color 0.6s ease;
  font-weight: 500;
}

.nav-sp-link-ac {
  background-color: #99AEB5;
  color: #fff;
  border-bottom: none;
  margin-bottom: 0.5rem;
  font-weight: 400;
  width: 96%;
  margin-left: auto;
}
.nav-sp-link-ac:last-child {
  margin-bottom: 1.5rem;
}
.nav-sp-link-ac::before {
  content: "";
  background-image: url(../images/common/img-ac-pm.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 1.2rem;
  left: 1rem;
  width: 2.5rem;
  height: 2.5rem;
}
.nav-sp-link-ac--ss::before {
  content: "";
  background-image: url(../images/common/img-ac-ss.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 1.2rem;
  left: 1rem;
  width: 2.5rem;
  height: 2.5rem;
}
.nav-sp-link-ac--sc::before {
  content: "";
  background-image: url(../images/common/img-ac-sc.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 1.2rem;
  left: 1rem;
  width: 2.5rem;
  height: 2.5rem;
}
.nav-sp-link-ac--cs::before {
  content: "";
  background-image: url(../images/common/img-ac-cs.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 1.2rem;
  left: 1rem;
  width: 2.5rem;
  height: 2.5rem;
}
.nav-sp-link-ac--an::before {
  content: "";
  background-image: url(../images/common/img-ac-an.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 1.2rem;
  left: 1rem;
  width: 2.5rem;
  height: 2.5rem;
}
.nav-sp-link-ac--cp::before {
  content: "";
  background-image: url(../images/common/img-ac-cp.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 1.2rem;
  left: 1rem;
  width: 2.5rem;
  height: 2.5rem;
}
@media screen and (max-width: 767px) {
  .nav-sp-link-ac--cp::before {
    top: 54%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.nav-sp-link-ac--au::before {
  content: "";
  background-image: url(../images/common/img-ac-au.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 1.2rem;
  left: 1rem;
  width: 2.5rem;
  height: 2.5rem;
}
@media screen and (max-width: 767px) {
  .nav-sp-link-ac--au::before {
    top: 54%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.nav-sp-link-ac a {
  display: block;
  padding: 1.6rem 4.2rem;
  line-height: 1.2;
  position: relative;
}
.nav-sp-link-ac a::after {
  content: "";
  background-image: url(../images/common/img-ac-icon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 1.2rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
}

.nav-sp-link-ac-s {
  font-size: 1rem;
}

.nav-sp {
  width: 90%;
}
.nav-sp__item {
  border-bottom: solid 0.2rem #DEDEDE;
  position: relative;
}
.nav-sp__item::before {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 0.2rem #627F89;
  bottom: -3px;
  width: 10%;
}
.nav-sp__item-ac::after {
  content: "";
  background-image: url(../images/common/img-ac-arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 1.7rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
}

.nav-sp__item-ac.selected:after {
  -webkit-transform: translateY(3%) rotate(180deg);
          transform: translateY(3%) rotate(180deg);
}

.toggle_txt {
  display: none;
}

.nav-sp__list {
  position: relative;
  top: -7rem;
}

.nav-sp__list-02 {
  position: relative;
  top: -5rem;
  color: #627F89;
  font-size: 1.2rem;
  left: 1rem;
  font-weight: 400;
}
.nav-sp__list-02 li {
  padding-bottom: 1.5rem;
}

/* open */
.open {
  overflow: hidden;
}
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}
.open #gloval-nav li {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: opacity 0.9s ease, -webkit-transform 1s ease;
  transition: opacity 0.9s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity 0.9s ease;
  transition: transform 1s ease, opacity 0.9s ease, -webkit-transform 1s ease;
  text-align: left;
}

.heading-A {
  font-family: "soleil", sans-serif;
  font-weight: 600;
  font-size: 6rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .heading-A {
    font-size: 3.6rem;
    text-align: center;
  }
}

.subheading-A {
  font-size: 2rem;
  font-weight: bold;
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .subheading-A {
    font-size: 1.4rem;
    text-align: center;
    padding-bottom: 3rem;
  }
}

.heading-B {
  font-family: "soleil", sans-serif;
  font-weight: 600;
  font-size: 4.2rem;
  line-height: 1;
  color: #829095;
}
@media screen and (max-width: 767px) {
  .heading-B {
    font-size: 3.6rem;
    text-align: center;
  }
}
.heading-B--news {
  color: #000;
}
@media screen and (max-width: 767px) {
  .heading-B--news {
    color: #829095;
    font-size: 3.6rem;
    text-align: left;
  }
}

.subheading-B {
  font-size: 2rem;
  font-weight: bold;
  padding-top: 1rem;
  color: #829095;
}
@media screen and (max-width: 767px) {
  .subheading-B {
    font-size: 1.4rem;
    text-align: center;
  }
}
.subheading-B--news {
  color: #000;
}
@media screen and (max-width: 767px) {
  .subheading-B--news {
    color: #829095;
    font-size: 1.4rem;
    text-align: left;
  }
}

.heading-C {
  font-family: "soleil", sans-serif;
  font-weight: bold;
  font-size: 6rem;
  line-height: 1;
  color: #829095;
  font-size: 4.2rem;
}
@media screen and (max-width: 767px) {
  .heading-C {
    font-size: 2.4rem;
    text-align: center;
  }
}

.common-heading {
  font-size: 3.6rem;
  letter-spacing: 0.3rem;
  margin-left: -4rem;
}
@media screen and (max-width: 767px) {
  .common-heading {
    font-size: 3.6rem;
    margin-left: 0;
    font-size: 2.1rem;
  }
}

.js-fade {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, -webkit-transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s;
  transition: opacity 1s, visibility 1s, transform 1s, -webkit-transform 1s;
}

.scroll {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.scroll_fadein {
  opacity: 0;
}

.fadein_animation_start {
  -webkit-animation-name: fadein_animation;
          animation-name: fadein_animation;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes fadein_animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes fadein_animation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
.slideup {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

.slidedown {
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}

.slideright {
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
}

.slideleft {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}

.u-fade-type-up {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-up.is-active {
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

/* トリガー発火でis-activeを付与 */
.is-active .u-fade-type-up {
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.is-active .u-fade-type-up:nth-child(2) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.is-active .u-fade-type-up:nth-child(3) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.is-active .u-fade-type-up:nth-child(4) {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}

.is-active .u-fade-type-up:nth-child(5) {
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}

.is-active .u-fade-type-up:nth-child(6) {
  -webkit-transition-delay: 3s;
          transition-delay: 3s;
}

/* revealContentを最初は消しておく */
.revealContent {
  opacity: 0;
}

/* revealActiveクラスが追加されて.3s後に表示する */
.revealActive .revealContent {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  opacity: 1;
}

.revealItem {
  display: block;
  position: absolute;
  overflow: hidden;
}

/* before擬似要素の黒いblockにanimationをつけておく */
.revealItem.revealActive::before {
  -webkit-animation: hideFromLeft 0.5s forwards, showFromLeft 0.5s forwards 0.5s;
  animation: hideFromLeft 0.5s forwards, showFromLeft 0.5s forwards 0.5s;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 101%;
  height: 100%;
  background: #99AEB5;
}

/* before擬似要素を左から右にスライドイン */
@-webkit-keyframes hideFromLeft {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes hideFromLeft {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
/* before擬似要素を左から右にスライドアウト */
@-webkit-keyframes showFromLeft {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes showFromLeft {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
.Pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .Pagination {
    width: 100%;
  }
}

.Pagination-Item-Link {
  width: 4.5rem;
  height: 4.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  background: #fff;
  font-size: 2rem;
  color: #111;
  font-weight: bold;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
  font-family: "soleil", sans-serif;
  font-weight: 500;
  width: 4.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.Pagination-Item-Link:hover {
  color: #9AAEB5;
}
@media screen and (max-width: 767px) {
  .Pagination-Item-Link {
    width: 3.5rem;
    height: 3.5rem;
    -ms-flex-line-pack: center;
        align-content: center;
  }
}

.Pagination-Item-Link-Icon {
  width: 2rem;
}

.Pagination-Item-Link.isActive {
  background: #9AAEB5;
  color: #fff;
  pointer-events: none;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: middle;
}

.Pagination > * + * {
  margin-left: 0rem;
}

.Pagination-Item-icon01 {
  margin-right: 10rem;
}
@media screen and (max-width: 767px) {
  .Pagination-Item-icon01 {
    margin-right: 2rem;
  }
}

.Pagination-Item-icon02 {
  margin-left: 10rem;
}
@media screen and (max-width: 767px) {
  .Pagination-Item-icon02 {
    margin-left: 2rem;
  }
}

.Pagination-Item-icon01 {
  position: relative;
}

.Pagination-Item-icon01 img {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.Pagination-Item-icon01:hover img:first-of-type {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .Pagination-Item-icon01:hover img:first-of-type {
    opacity: 1;
  }
}

.Pagination-Item-icon01 img:last-of-type {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
}

.Pagination-Item-icon01:hover img:last-of-type {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .Pagination-Item-icon01:hover img:last-of-type {
    opacity: 0;
  }
}

.Pagination-Item-icon02 {
  position: relative;
}

.Pagination-Item-icon02 img {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.Pagination-Item-icon02:hover img:first-of-type {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .Pagination-Item-icon02:hover img:first-of-type {
    opacity: 1;
  }
}

.Pagination-Item-icon02 img:last-of-type {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
}

.Pagination-Item-icon02:hover img:last-of-type {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .Pagination-Item-icon02:hover img:last-of-type {
    opacity: 0;
  }
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 68%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .nav-links {
    width: 100%;
  }
}

.page-numbers {
  width: 4.5rem;
  height: 4.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  background: #fff;
  font-size: 2rem;
  color: #111;
  font-weight: bold;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
  font-family: "soleil", sans-serif;
  font-weight: 500;
  width: 4.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page-numbers:hover {
  color: #9AAEB5;
}
@media screen and (max-width: 767px) {
  .page-numbers {
    width: 3.5rem;
    height: 3.5rem;
    -ms-flex-line-pack: center;
        align-content: center;
  }
}

.Pagination-Item-Link-Icon {
  width: 2rem;
}

.page-numbers.current {
  background: #9AAEB5;
  color: #fff;
  pointer-events: none;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: middle;
}

.page-numbers + .page-numbers {
  margin-left: 2.2rem;
}
@media screen and (max-width: 767px) {
  .page-numbers + .page-numbers {
    margin-left: 0.5rem;
  }
}

.next.page-numbers {
  margin-left: 12.2rem;
}
@media screen and (max-width: 767px) {
  .next.page-numbers {
    margin-left: 2rem;
  }
}

.prev.page-numbers {
  margin-right: 12.2rem;
}
@media screen and (max-width: 767px) {
  .prev.page-numbers {
    margin-right: 2rem;
  }
}

.prev.page-numbers {
  position: relative;
}

.prev.page-numbers img {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.prev.page-numbers:hover img:first-of-type {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .prev.page-numbers:hover img:first-of-type {
    opacity: 1;
  }
}

.prev.page-numbers img:last-of-type {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
}

.prev.page-numbers:hover img:last-of-type {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .prev.page-numbers:hover img:last-of-type {
    opacity: 0;
  }
}

.next.page-numbers {
  position: relative;
}

.next.page-numbers img {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.next.page-numbers:hover img:first-of-type {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .next.page-numbers:hover img:first-of-type {
    opacity: 1;
  }
}

.next.page-numbers img:last-of-type {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
}

.next.page-numbers:hover img:last-of-type {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .next.page-numbers:hover img:last-of-type {
    opacity: 0;
  }
}

/*--------------------------
	page
--------------------------*/
.btn-A {
  border: solid 2px #99AEB5;
  border-radius: 2.4rem;
  margin-left: auto;
  max-width: 22rem;
  position: relative;
  margin-top: 5rem;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .btn-A {
    border-radius: 1.8rem;
    margin-inline: auto;
    margin-top: 3.5rem;
  }
}
.btn-A:hover {
  background-color: #99AEB5;
}
.btn-A--02 {
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .btn-A--02 {
    color: #829095;
    width: 20rem;
    margin-inline: auto;
    margin-top: 3.5rem;
    border-radius: 1.8rem;
  }
}

.btn-A a {
  color: #99AEB5;
  display: inline-block;
  font-size: 1.8rem;
  padding: 1rem 0;
  text-align: center;
  width: 100%;
  text-decoration: none;
  letter-spacing: 0.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .btn-A a {
    font-size: 1.4rem;
    padding: 1.2rem 0;
  }
}
.btn-A a:hover {
  color: #fff;
}

.btn-A::after {
  content: "";
  background-image: url(../images/common/btn-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.btn-A:hover::after {
  background-image: url(../images/common/btn-arrow-hov.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  right: 1.1rem;
}

.btn-B {
  border: solid 2px #fff;
  border-radius: 2.4rem;
  position: relative;
  margin-left: auto;
  max-width: 22rem;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 50;
  color: #fff;
  display: inline-block;
  font-size: 1.8rem;
  padding: 1rem 8rem;
  text-align: center;
  width: 100%;
  text-decoration: none;
  letter-spacing: 0.5rem;
  transition: 0.3s;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .btn-B {
    border: solid 2px #fff;
    border-radius: 1.8rem;
    margin-left: auto;
    max-width: 16rem;
    top: 95%;
    right: 50%;
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
    position: absolute;
    color: #fff;
    display: inline-block;
    font-size: 1.5rem;
    padding: 0.6rem 1rem;
    letter-spacing: 0.5rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.btn-B:hover {
  background-color: #fff;
  color: #99AEB5;
}

.btn-B::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../images/common/btn-arrow-hov.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .btn-B::after {
    width: 1rem;
    height: 1rem;
  }
}

.btn-C {
  border: solid 0.1rem #627F89;
  padding: 1.3rem 7.7rem 1.3rem;
  color: #fff;
  display: inline-block;
  position: relative;
  font-size: 1.8rem;
  border-radius: 3rem;
  background-color: #627F89;
  font-weight: bold;
  letter-spacing: 0.01rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn-C:hover {
  background-color: #fff;
  color: #627F89;
}
@media screen and (max-width: 767px) {
  .btn-C {
    border: solid 0.1rem #627F89;
    padding: 1.3rem 6rem 1.3rem;
    color: #fff;
    display: inline-block;
    position: relative;
    font-size: 1.4rem;
    border-radius: 7rem;
    background-color: #627F89;
  }
}
.btn-C--arrow::after {
  content: "";
  background: url(../images/common/btn-common-arrow.png) no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1.7rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn-C--arrow:hover::after {
  right: 1.1rem;
  background: url(../images/common/btn-common-arrow-hov.png) no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
}

.btn-area {
  margin-inline: auto;
  text-align: center;
}

.common-line {
  padding-top: 12rem;
  border-bottom: solid 0.1rem #DEDEDE;
  width: 100%;
  height: 0.1rem;
}
@media screen and (max-width: 767px) {
  .common-line {
    margin-bottom: 1rem;
    padding-top: 5rem;
  }
}

.common-other-contract {
  background: #99AEB5;
  padding: 9rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .common-other-contract {
    padding: 6rem 0;
  }
}
.common-other-contract__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .common-other-contract__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.common-other-contract__heading {
  font-size: 2.8rem;
  color: #fff;
  text-align: center;
  letter-spacing: 0.2rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .common-other-contract__heading {
    font-size: 1.8rem;
    padding-bottom: 3.5rem;
  }
}
.common-other-contract__btn {
  position: relative;
  display: block;
  width: 52rem;
  border: solid 0.1rem #99AEB5;
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition: transform ease 0.4s, -webkit-transform ease 0.4s;
  border-left: none;
  overflow: hidden;
  border: solid 1px #fff;
}
@media screen and (max-width: 767px) {
  .common-other-contract__btn {
    margin-bottom: 1rem;
    overflow: unset;
    border-left: none;
    width: 100%;
    border: none;
  }
}
.common-other-contract__btn:hover .common-other-contract__btn-color {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .common-other-contract__btn:hover .common-other-contract__btn-color {
    pointer-events: none;
  }
}
.common-other-contract__btn:hover .common-other-contract__btn::after {
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
}
@media screen and (max-width: 767px) {
  .common-other-contract__btn:hover .common-other-contract__btn::after {
    pointer-events: none;
  }
}
.common-other-contract__btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #99AEB5;
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition: transform ease 0.4s, -webkit-transform ease 0.4s;
  -webkit-transform: scaleX(100%);
          transform: scaleX(100%);
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
}
@media screen and (max-width: 767px) {
  .common-other-contract__btn::before {
    content: none;
  }
}
.common-other-contract__btn:hover::before {
  -webkit-transform: scaleX(0%);
          transform: scaleX(0%);
  background: #99AEB5;
}
.common-other-contract__btn::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 7%;
  width: 4rem;
  height: 4rem;
  background-image: url(../images/common/common-other-contract-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .common-other-contract__btn::after {
    width: 3.5rem;
    height: 3.5rem;
    right: 3rem;
    background-image: url(../images/common/common-other-contract-arrow-hov.png);
  }
}
.common-other-contract__btn:hover::after {
  width: 4rem;
  height: 4rem;
  background-image: url(../images/common/common-other-contract-arrow-hov.png);
  right: 5%;
}
@media screen and (max-width: 767px) {
  .common-other-contract__btn:hover::after {
    width: 3.5rem;
    height: 3.5rem;
    right: 3rem;
    background-image: url(../images/common/common-other-contract-arrow-hov.png);
  }
}
.common-other-contract__btn-color {
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.4;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  z-index: 10;
}
.common-other-contract__btn-color--02 {
  left: -5%;
}
@media screen and (max-width: 767px) {
  .common-other-contract__btn-color {
    font-size: 1.6rem;
    top: 50%;
    left: -12vw;
    color: #fff;
  }
  .common-other-contract__btn-color--01 {
    left: -17vw;
  }
  .common-other-contract__btn-color--02 {
    left: -23%;
  }
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

	■modifierを使用する場合
	【例】
	.top-sec__ttl{
		color: black;
		&--color{
			color: red;
		}
	}



----------------------------------------------------*/
.mv {
  position: relative;
  height: 100vh;
  max-height: 56.25vw;
  overflow: hidden;
  z-index: 1;
  margin-top: 16rem;
}
@media screen and (max-width: 767px) {
  .mv {
    max-height: initial;
    height: auto;
    margin-top: 13.5vw;
  }
}

.slider {
  position: relative;
  z-index: 0;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
@media screen and (max-width: 767px) {
  .slider {
    max-height: initial;
    height: auto;
  }
}
.slider__ttl {
  position: absolute;
  z-index: 400;
  top: 41%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 200px;
}
@media screen and (max-width: 767px) {
  .slider__ttl {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    letter-spacing: 0.4rem;
    top: 50%;
    width: 32%;
  }
}
.slider__ttl--color {
  color: #000;
  background-color: #fff;
  padding: 1.4rem 1rem 0.8rem;
}
@media screen and (max-width: 767px) {
  .slider__ttl--color {
    padding: 1.4rem 0.8rem 0.4rem 0.5rem;
  }
}
.slider__subttl {
  font-size: 8.59vw;
  color: #fff;
  font-family: "soleil", sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
  position: absolute;
  bottom: 3.13vw;
  left: 7.81vw;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  line-height: 1.18;
  overflow: visible;
}
@media screen and (max-width: 1440px) {
  .slider__subttl {
    font-size: 10.59vw;
  }
}
@media screen and (max-width: 767px) {
  .slider__subttl {
    width: 89.57vw;
    font-size: 10vw;
    letter-spacing: 0rem;
    position: absolute;
    bottom: 3rem;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

/*　背景画像設定　*/
.slider-item01 {
  background: url(../images/page/top/mv-01.jpg);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .slider-item01 {
    background: url(../images/page/top/mv-01-sp.jpg);
    height: auto;
  }
}

.slider-item02 {
  background: url(../images/page/top/mv-02.jpg);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .slider-item02 {
    background: url(../images/page/top/mv-02-sp.jpg);
    height: auto;
  }
}

.slider-item03 {
  background: url(../images/page/top/mv-03.jpg);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .slider-item03 {
    background: url(../images/page/top/mv-03-sp.jpg);
    height: auto;
  }
}

.slider-item04 {
  background: url(../images/page/top/mv-04.jpg);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .slider-item04 {
    background: url(../images/page/top/mv-04-sp.jpg);
    height: auto;
  }
}

.slider-item {
  width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: 100vh; /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  max-height: 56.25vw;
  background-repeat: no-repeat; /*背景画像をリピートしない*/
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .slider-item {
    height: 100vh;
    max-height: 129vw;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}

.importance {
  padding: 12rem 0 3rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .importance {
    padding: 6rem 0 6rem;
  }
}

.imp-exp__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  position: relative;
  top: -10rem;
}
@media screen and (max-width: 767px) {
  .imp-exp__flex {
    margin-top: 1rem;
    top: 0;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .imp-exp__main-ttl {
    width: 30%;
  }
}
.imp-exp__group {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .imp-exp__group {
    width: 100%;
  }
}
.imp-exp__main-group {
  width: 34.31%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 1rem 0;
  position: relative;
  top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .imp-exp__main-group {
    width: 100%;
    margin-top: -14vw;
  }
}
.imp-exp__main-group span {
  font-size: 3.4rem;
  font-family: "soleil", sans-serif;
  background-color: #ECEFF1;
  display: inline-block;
  letter-spacing: 0;
  padding: 0rem 2rem 0.1rem;
}
@media screen and (max-width: 767px) {
  .imp-exp__main-group span {
    font-size: 2.4rem;
    line-height: 1.1;
    padding: 0.2rem 1rem 0.6rem;
  }
}
.imp-exp__ttl {
  font-size: 9rem;
  line-height: 1;
  letter-spacing: 0.3rem;
  font-family: "soleil", sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .imp-exp__ttl {
    margin-top: 9.57vw;
    font-size: 3.6rem;
    position: relative;
    top: 0;
    letter-spacing: 0.1rem;
  }
}
.imp-exp__subttl {
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.2rem;
  font-weight: bold;
  font-style: normal;
  padding: 5rem 0 2.6rem 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .imp-exp__subttl {
    font-size: 1.8rem;
    padding: 0 0 0 3rem;
    line-height: 1.33;
  }
}
.imp-exp__subttl::before {
  content: "";
  position: absolute;
  top: 63%;
  left: 0%;
  -webkit-transform: translate(10%, -50%);
          transform: translate(10%, -50%);
  width: 6%;
  height: 0.2rem;
  background: #000;
}
@media screen and (max-width: 767px) {
  .imp-exp__subttl::before {
    width: 1.5rem;
    height: 1px;
    top: 56%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.imp-exp__txt {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .imp-exp__txt {
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 700;
  }
}

.top-slick {
  width: 100%;
}
.top-slick__item {
  width: 100%;
  margin-right: 5rem;
  margin-left: 5rem;
}
@media screen and (max-width: 767px) {
  .top-slick__item {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }
}
.top-slick__item:nth-of-type(2n + 1) {
  margin-top: min(120px, 6.25vw);
}
.top-slick__item img {
  height: auto;
  max-width: 100%;
}
@media screen and (max-width: 1000px) {
  .top-slick__item img {
    max-width: 125%;
  }
}
@media screen and (max-width: 767px) {
  .top-slick__item img {
    max-width: 100%;
  }
}

.service {
  padding: 12rem 0 0;
}
@media screen and (max-width: 767px) {
  .service {
    padding: 5rem 0;
  }
}
.service__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .service__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 4rem;
    border-bottom: solid 0.1rem #99aeb5;
  }
}
.service__heading {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .service__heading {
    width: 100%;
  }
}
.service__texts {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .service__texts {
    width: 100%;
    font-size: 1.2rem;
  }
}
.service__ttl {
  font-size: 2rem;
  color: #99aeb5;
  font-weight: bold;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .service__ttl {
    text-align: center;
    font-size: 1.8rem;
  }
}
.service__txt {
  font-weight: 400;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .service__txt {
    font-size: 1.2rem;
  }
}
.service__chart-heading {
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .service__chart-heading {
    padding-bottom: 3rem;
  }
}
.service__chart-heading h3 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  color: #1683a8;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service__chart-heading h3 {
    font-size: 1.6rem;
    padding-top: 2.5rem;
  }
}
.service__chart-heading h3::before {
  content: "";
  width: 13%;
  height: 0.1rem;
  background-color: #99aeb5;
  top: 50%;
  left: 1%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  position: absolute;
}
@media screen and (max-width: 767px) {
  .service__chart-heading h3::before {
    content: none;
  }
}
.service__chart-heading h3::after {
  content: "";
  width: 13%;
  height: 0.1rem;
  background-color: #99aeb5;
  top: 50%;
  right: 1%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
}
@media screen and (max-width: 767px) {
  .service__chart-heading h3::after {
    content: none;
  }
}
.service .chart {
  min-height: 12vw;
  margin: 0 0 10vw;
}
.service .chart-main {
  width: 100%;
  margin: auto;
  position: relative;
}
.service .chart-txt {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 5vw;
  line-height: 1;
  -webkit-transform: translateY(-0.4em) translateX(-1em);
          transform: translateY(-0.4em) translateX(-1em);
}
.service .chart-number {
  display: inline-block;
  font-weight: bold;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.appear .service .chart-number {
  opacity: 1;
}
.service .chart-percentage {
  font-size: 3vw;
  opacity: 1;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  opacity: 0;
}
.appear .service .chart-percentage {
  opacity: 1;
}
.service .chart__item {
  max-width: 300px;
  width: 23.44vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service .chart__item {
    max-width: 100%;
    width: 100%;
  }
}
.service .chart__item canvas {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  width: 100% !important;
  height: auto !important;
  line-height: 0;
}
.service .chart__item-textarea {
  max-width: 240px;
  width: 18.75vw;
  max-height: 240px;
  height: 18.75vw;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 52%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .service .chart__item-textarea {
    max-width: 100%;
    width: 64.29vw;
    max-height: 100%;
    height: 64.29vw;
  }
}
.service .chart__item-text01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: min(1.88vw, 24px);
  font-weight: 700;
  line-height: 1.33;
}
@media screen and (max-width: 767px) {
  .service .chart__item-text01 {
    font-size: min(6.14vw, 43px);
    line-height: 1.32;
  }
}
.service .chart__item-text02 {
  margin-top: 0.3vw;
  font-family: "soleil", sans-serif;
  font-size: min(2.5vw, 32px);
  font-weight: 500;
  line-height: 1;
  color: #1583a8;
}
@media screen and (max-width: 767px) {
  .service .chart__item-text02 {
    margin-top: 0;
    font-size: min(8.14vw, 57px);
  }
}
.service .chart__item-text02 span {
  font-size: min(5vw, 64px);
}
@media screen and (max-width: 767px) {
  .service .chart__item-text02 span {
    font-size: min(16.29vw, 114px);
  }
}
.service .chart__graph-img {
  width: 95%;
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service .chart__graph-img {
    width: 70%;
  }
}
.service .charts {
  padding: 0 3.7%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: auto;
}
.service .charts-wrapper {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .service .charts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem 0;
  }
}
@-webkit-keyframes blink {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes blink {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.contract {
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  .contract {
    padding: 0.5rem 0 3rem;
  }
}
.contract__btn {
  position: relative;
  display: block;
  width: 90%;
  border: solid 0.1rem #99aeb5;
  border-radius: 0 3.6rem 3.6rem 0;
  margin-bottom: 2rem;
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition: transform ease 0.4s, -webkit-transform ease 0.4s;
  border-left: none;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .contract__btn {
    margin-bottom: 4.8rem;
    overflow: unset;
    border-radius: 0 1.2rem 1.2rem 0;
    border-left: none;
    width: 95%;
  }
}
.contract__btn:hover .contract__btn-color {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .contract__btn:hover .contract__btn-color {
    pointer-events: none;
  }
}
.contract__btn:hover .contract__btn::after {
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
}
@media screen and (max-width: 767px) {
  .contract__btn:hover .contract__btn::after {
    pointer-events: none;
  }
}
.contract__btn:hover .contract__btn-subcolor {
  background-color: #fff;
  color: #000;
}
@media screen and (max-width: 767px) {
  .contract__btn:hover .contract__btn-subcolor {
    background-color: #000;
    color: #fff;
  }
}
.contract__btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #fff;
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition: transform ease 0.4s, -webkit-transform ease 0.4s;
  -webkit-transform: scaleX(100%);
          transform: scaleX(100%);
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  border-radius: 0 2rem 2rem 0;
}
@media screen and (max-width: 767px) {
  .contract__btn::before {
    content: none;
  }
}
.contract__btn:hover::before {
  -webkit-transform: scaleX(10%);
          transform: scaleX(10%);
  background: rgba(0, 0, 0, 0.2);
}
.contract__btn::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3.5%;
  width: 3rem;
  height: 3rem;
  background-image: url(../images/page/top/img-contract-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .contract__btn::after {
    width: 1.5rem;
    height: 1.5rem;
    right: 3rem;
    background-image: url(../images/page/top/img-contract-arrow-hov.png);
  }
}
.contract__btn:hover::after {
  width: 3rem;
  height: 3rem;
  background-image: url(../images/page/top/img-contract-arrow-hov.png);
}
@media screen and (max-width: 767px) {
  .contract__btn:hover::after {
    width: 1.5rem;
    height: 1.5rem;
    background-image: url(../images/page/top/img-contract-arrow-hov.png);
  }
}
.contract__btn-color {
  font-size: 2.6vw;
  color: #000;
  line-height: 1.4;
  font-weight: bold;
  padding-bottom: 3rem;
  position: absolute;
  top: 65%;
  left: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  z-index: 10;
}
.contract__btn-color--02 {
  left: -3vw;
}
.contract__btn-color--03 {
  left: -6.5vw;
}
@media screen and (max-width: 767px) {
  .contract__btn-color {
    font-size: 1.8rem;
    top: 87%;
    left: -12vw;
    color: #fff;
  }
  .contract__btn-color--02 {
    left: -17vw;
  }
  .contract__btn-color--03 {
    left: -21.5vw;
  }
}
.contract__btn-subcolor {
  font-size: 2.4rem;
  color: #fff;
  line-height: 1.4;
  font-weight: bold;
  background-color: #000;
  padding: 1rem 1rem 1rem 9vw;
  display: inline-block;
  text-align: left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 100;
  position: absolute;
  left: 0;
  bottom: 13%;
}
@media screen and (max-width: 1024px) {
  .contract__btn-subcolor {
    left: 0;
  }
  .contract__btn-subcolor--02 {
    left: 1vw;
  }
  .contract__btn-subcolor--03 {
    left: -9.5vw;
  }
}
@media screen and (max-width: 767px) {
  .contract__btn-subcolor {
    font-size: 1.4rem;
    bottom: -8%;
    left: -3.5vw;
  }
}
@media screen and (max-width: 767px) {
  .contract__shop-bg::before {
    content: "";
    background-color: #fff;
    width: 0.1rem;
    height: 85%;
    position: absolute;
    left: 80%;
    top: 7%;
  }
}

.support {
  background-color: #eceff1;
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  .support {
    padding: 5rem 0;
  }
}
.support__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .support__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.support__txt {
  padding-top: 4rem;
  color: #829095;
  font-weight: 400;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .support__txt {
    margin: 0 auto;
    padding-top: 2.5rem;
    font-size: 1.2rem;
    text-align: center;
  }
}
.support__list {
  width: 51.85%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .support__list {
    width: 100%;
    padding-top: 3.5rem;
  }
}
.support__wrapper {
  width: 100%;
  text-align: center;
}
.support__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: solid 0.1rem #99aeb5;
  padding: 7.2rem 6rem;
  position: relative;
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition: transform ease 0.4s, -webkit-transform ease 0.4s;
}
@media screen and (max-width: 767px) {
  .support__link {
    gap: 0 1.5rem;
    border-top: solid 0.1rem #99aeb5;
    padding: 2.5rem 0;
    border-right: none;
  }
}
.support__link:first-of-type {
  border-left: solid 0.1rem #99aeb5;
}
@media screen and (max-width: 767px) {
  .support__link:first-of-type {
    border-left: none;
    border-bottom: solid 0.1rem #99aeb5;
  }
}
.support__link--02 {
  border-left: none !important;
}
@media screen and (max-width: 767px) {
  .support__link--02 {
    border-right: none;
  }
}
.support__link:hover .support__ttl {
  color: #fff;
  z-index: 200;
}
.support__link:hover .support__icon {
  color: #fff;
  z-index: 200;
}
.support__link:hover .support__original-img {
  opacity: 0;
  display: none;
}
.support__link:hover .support__hover-img {
  display: block; /* ホバー時に別の画像を表示する */
  opacity: 1;
  z-index: 200;
  width: 7rem;
}
.support__link::before {
  content: "";
  background-image: url(../images/page/top/img-support-ico.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 10.71%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5rem;
  height: 5rem;
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition: transform ease 0.4s, -webkit-transform ease 0.4s;
  z-index: 200;
}
@media screen and (max-width: 767px) {
  .support__link::before {
    bottom: -4%;
    left: auto;
    right: 0;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    width: 3rem;
    height: 3rem;
  }
}
.support__link:hover::before {
  background-image: url(../images/page/top/img-support-ico-hov.png);
  width: 5rem;
  height: 5rem;
  z-index: 200;
}
@media screen and (max-width: 767px) {
  .support__link:hover::before {
    bottom: -4%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 3rem;
    height: 3rem;
  }
}
.support__link::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition: transform ease 0.4s, -webkit-transform ease 0.4s;
  -webkit-transform: scaleY(0%);
          transform: scaleY(0%);
  -webkit-transform-origin: 100% 0%;
          transform-origin: 100% 0%;
}
.support__link:hover::after {
  -webkit-transform: scaleY(100%);
          transform: scaleY(100%);
  background: #99aeb5;
  z-index: 0;
}
.support__icon {
  display: block;
  width: 5.1rem;
  position: relative;
}
.support__original-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
  z-index: 200;
  width: 7rem;
}
.support__hover-img {
  width: 7rem;
}
.support__ttl {
  font-family: "soleil", sans-serif;
  font-size: 2rem;
  text-align: left;
  font-weight: bold;
  letter-spacing: 0.1rem;
  color: #829095;
  line-height: 1.9;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .support__ttl {
    font-size: 2rem;
    line-height: 1.33;
  }
}
.support__subttl {
  font-family: "soleil", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.05rem;
}

.news {
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  .news {
    padding: 5rem 0;
  }
}
.news__whole {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .news__whole {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.news__heading {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .news__heading {
    width: 100%;
  }
}
.news__txt {
  padding-top: 7.5rem;
  font-weight: 400;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .news__txt {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    font-size: 1.2rem;
  }
}
.news__list {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .news__list {
    width: 100%;
  }
}
.news__list-common {
  border-bottom: solid 0.1rem #eceff1;
  position: relative;
}
.news__list-common:first-of-type {
  border-top: solid 0.1rem #eceff1;
}
.news__list-common::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #eceff1;
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition: transform ease 0.4s, -webkit-transform ease 0.4s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
}
.news__list-common:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
}
.news__list-common::after {
  background-image: url(../images/page/top/news-ico.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: 5rem;
  height: 5rem;
  top: 50%;
  right: 10%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .news__list-common::after {
    content: "";
    background-image: url(../images/page/top/news-ico.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 2.5rem;
    height: 2.5rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    top: 50%;
    right: 8%;
    position: absolute;
  }
}
.news__list-common:hover::after {
  background-image: url(../images/page/top/news-ico-hover.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: 5rem;
  height: 5rem;
  right: 8%;
}
@media screen and (max-width: 767px) {
  .news__list-common:hover::after {
    content: "";
    background-image: url(../images/page/top/news-ico-hover.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 2.5rem;
    height: 2.5rem;
    right: 6%;
    top: 50%;
  }
}
.news__times {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 3rem;
  padding-left: 3rem;
}
@media screen and (max-width: 767px) {
  .news__times {
    padding-top: 2.5rem;
    padding-left: 1.5rem;
  }
}
.news__date {
  font-size: 1.6rem;
  color: #99aeb5;
  font-family: "soleil", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .news__date {
    font-size: 1.4rem;
  }
}
.news__category {
  background-color: #627f89;
  padding: 0.2rem 2rem;
  border-radius: 3rem;
  color: #fff;
  font-weight: 400;
  margin-left: 3rem;
  width: 18rem;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .news__category {
    font-size: 1.2rem;
    width: 14rem;
    margin-left: 1.5rem;
  }
}
.news__category--02 {
  background-color: #9aaeb5;
}
.news__title {
  padding-top: 2.5rem;
  font-weight: 400;
  font-size: 1.6rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
  padding-right: 15rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 767px) {
  .news__title {
    width: 75%;
    font-size: 1.2rem;
    padding-bottom: 2.5rem;
    padding-top: 1rem;
    padding-left: 1.5rem;
    padding-right: 0;
  }
}

.recruit {
  position: relative;
  overflow: hidden;
}
.recruit:hover .btn-B {
  color: #99aeb5;
  background-color: #fff;
}
.recruit:hover .btn-B::after {
  right: 1.1rem;
  background-image: url(../images/common/btn-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (max-width: 767px) {
  .recruit:hover .btn-B::after {
    width: 1rem;
    height: 1rem;
  }
}
.recruit__img {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 20;
}
.recruit__img img {
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 100%;
}
.recruit__img img:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
  opacity: 0;
  z-index: 60;
}
.recruit__img img::before:hover {
  opacity: 1;
}
.recruit__img img:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
}
.recruit__heading {
  text-align: center;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  position: absolute;
  color: #fff;
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .recruit__heading {
    top: 40%;
    width: 100%;
  }
}
.recruit__heading-ttl {
  font-size: 6rem;
  font-family: "soleil", sans-serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.1rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .recruit__heading-ttl {
    font-size: 3.6rem;
  }
}
.recruit__subheading {
  padding-top: 2.5rem;
  font-weight: bold;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .recruit__subheading {
    font-size: 1.4rem;
    line-height: 2.6;
  }
}
.recruit__txt {
  text-align: center;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  z-index: 50;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .recruit__txt {
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    z-index: 50;
    width: 100%;
    margin-top: 1rem;
  }
}

.contact__link {
  position: relative;
  display: inline-block;
  padding: 12.2rem 0 12.8rem 0;
  width: 100%;
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition: transform ease 0.4s, -webkit-transform ease 0.4s;
  z-index: 300;
  background: #fff;
  margin-top: -1px;
}
@media screen and (max-width: 767px) {
  .contact__link {
    padding: 4rem 0;
    margin-bottom: -1px;
    border-top: solid 1px #fff;
  }
}
.contact__link:hover .contact__heading {
  color: #fff;
}
.contact__link:hover .contact__txt {
  color: #fff;
}
.contact__link:hover .contact__heading::before {
  background-color: #fff;
}
.contact__link::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #000;
  -webkit-transition: -webkit-transform ease 0.5s;
  transition: -webkit-transform ease 0.5s;
  transition: transform ease 0.5s;
  transition: transform ease 0.5s, -webkit-transform ease 0.5s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
}
.contact__link:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: 0;
          transform-origin: 0;
}
.contact__link::after {
  background-image: url(../images/page/top/contact-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: 5rem;
  height: 5rem;
  top: 50%;
  right: 10%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .contact__link::after {
    width: 3.5rem;
    height: 3.5rem;
    right: 15%;
  }
}
.contact__link:hover::after {
  background-image: url(../images/page/top/contact-icon-hov.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: 5rem;
  height: 5rem;
  top: 50%;
  right: 8%;
}
@media screen and (max-width: 767px) {
  .contact__link:hover::after {
    width: 3.5rem;
    height: 3.5rem;
    right: 10%;
  }
}
.contact__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 25rem;
}
@media screen and (max-width: 767px) {
  .contact__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-line-pack: start;
        align-content: flex-start;
    text-align: left;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.contact__heading {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact__heading {
    font-size: 2.1rem;
  }
}
.contact__heading::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -95%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  width: 0.1rem;
  height: 7rem;
  background-color: #707070;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .contact__heading::before {
    content: "";
    position: absolute;
    top: 120%;
    right: 74%;
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
    width: 7rem;
    height: 0.1rem;
    background-color: #707070;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.contact__heading::before:hover {
  background-color: #fff;
}
.contact__txt {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .contact__txt {
    font-size: 1.2rem;
    padding-top: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .contact__pd {
    padding-left: 3rem;
  }
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

	■modifierを使用する場合
	【例】
	.top-sec__ttl{
		color: black;

		&--color{
			color: red;
		}

	}



----------------------------------------------------*/
.wrap--company .sec-company {
  background: #ECEFF1;
  padding: 12rem 0 12rem;
}
@media screen and (max-width: 767px) {
  .wrap--company .sec-company {
    padding: 4.5rem 0 6rem;
  }
}
.wrap--company .sec-company .company__heading {
  font-size: 3.6rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 767px) {
  .wrap--company .sec-company .company__heading {
    font-size: 3.6rem;
    margin-left: 0;
    font-size: 2.1rem;
  }
}
.wrap--company .sec-company .company__main-txt {
  width: 70rem;
  font-weight: 400;
  padding: 8rem 0 9rem;
}
@media screen and (max-width: 767px) {
  .wrap--company .sec-company .company__main-txt {
    width: auto;
    padding: 3rem 0 6.5rem;
    font-size: 1.3rem;
  }
}
.wrap--company .sec-company .company__name {
  position: relative;
  background-color: #fff;
  width: 90rem;
  padding: 2.3rem 0 2.3rem 7.5rem;
  font-weight: 300;
  font-size: 1.6rem;
  margin-left: auto;
  letter-spacing: 0.1rem;
  margin-bottom: 4rem;
}
.wrap--company .sec-company .company__name:last-child {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .wrap--company .sec-company .company__name:last-child {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .wrap--company .sec-company .company__name {
    width: auto;
    padding: 2.6rem 1.5rem 1.5rem 1.5rem;
    font-size: 1.4rem;
    margin-bottom: 4rem;
  }
}
.wrap--company .sec-company .company__name-namber {
  counter-reset: listnum; /* カウンターをリセット */
  list-style: none; /* 標準のスタイルは消す */
  text-indent: -2.8rem;
  padding-left: 2.8rem;
}
@media screen and (max-width: 767px) {
  .wrap--company .sec-company .company__name-namber {
    text-indent: -1.8rem;
    padding-left: 1.8rem;
  }
}
.wrap--company .sec-company .company__name-namber li::before {
  counter-increment: listnum; /* counter-resetと同じ文字列 */
  content: counter(listnum); /* カウントした数に応じて番号を表示 */
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .wrap--company .sec-company .company__name-namber li::before {
    padding-right: 1rem;
  }
}
.wrap--company .sec-company .company__item {
  background: #99AEB5;
  color: #fff;
  width: 21rem;
  padding: 1.3rem 0;
  letter-spacing: 0.3rem;
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
  position: absolute;
  top: 50%;
  left: -31%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--company .sec-company .company__item {
    width: 25rem;
    padding: 1rem;
    text-align: left;
    line-height: 1;
    top: 0;
    left: -13.5rem;
    font-size: 1.4rem;
    letter-spacing: 0.025rem;
  }
}
.wrap--company .sec-company .company__item--irregular {
  padding: 20rem 0;
}
@media screen and (max-width: 767px) {
  .wrap--company .sec-company .company__item--irregular {
    width: 25rem;
    padding: 1rem;
    text-align: left;
    line-height: 1;
    top: 0%;
    left: -13.5rem;
    letter-spacing: 0.025rem;
  }
}
.wrap--company .parallax {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #FFF;
  width: 100vw;
  padding: 20vw 0;
}
.wrap--company .parallax::before {
  background-image: url(../images/page/company/company-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .wrap--company .parallax {
    padding: 13rem 0;
  }
}
.wrap--company .access {
  padding: 0;
  margin-bottom: -60%;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .wrap--company .access {
    margin-bottom: -120%;
  }
}
.wrap--company .access__office-bg {
  background-color: #627F89;
  position: relative;
  top: 0%;
  right: -60%;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  width: 40vw;
  height: 115vw;
}
@media screen and (max-width: 767px) {
  .wrap--company .access__office-bg {
    height: 310vw;
  }
}
.wrap--company .access__heading {
  font-weight: 200;
  font-size: 3.2rem;
  text-align: right;
  position: relative;
  top: -36.5vw;
  left: 26%;
  line-height: 1;
  z-index: 100;
  width: 14rem;
}
@media screen and (max-width: 1440px) {
  .wrap--company .access__heading {
    left: 12.5vw;
    top: -37vw;
  }
}
@media screen and (max-width: 1024px) {
  .wrap--company .access__heading {
    left: 5.5vw;
    top: -39vw;
  }
}
@media screen and (max-width: 767px) {
  .wrap--company .access__heading {
    font-size: 1.6rem;
    left: 11.5vw;
    top: -73vw;
    line-height: 1.6;
    width: 9rem;
  }
}
.wrap--company .access__sub-heading {
  font-size: 2rem;
  color: #829095;
  position: relative;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .wrap--company .access__sub-heading {
    font-size: 1.4rem;
  }
}
.wrap--company .access__sub-heading::before {
  content: "";
  width: 3rem;
  height: 0.1rem;
  background: #829095;
  position: absolute;
  top: 50%;
  left: -80%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--company .access__sub-heading::before {
    width: 2rem;
    height: 0.1rem;
    left: -72%;
  }
}
.wrap--company .access__office-name {
  color: #fff;
  font-weight: 200;
  font-size: 3.2rem;
  text-align: right;
  position: absolute;
  top: -4.5vw;
  right: 10%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  line-height: 1;
  line-height: 1.2;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 1024px) {
  .wrap--company .access__office-name {
    top: -6vw;
    right: 12%;
  }
}
@media screen and (max-width: 767px) {
  .wrap--company .access__office-name {
    top: 75vw;
    right: 21%;
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
.wrap--company .access__office-name-en {
  font-family: "soleil", sans-serif;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .wrap--company .access__office-name-en {
    font-size: 1.4rem;
  }
}
.wrap--company .access__office-map {
  position: relative;
  width: 85%;
  height: 0;
  padding-top: 30%;
  top: -100vw;
}
@media screen and (max-width: 767px) {
  .wrap--company .access__office-map {
    width: 100%;
    height: 0;
    padding-top: 60%;
    top: -270vw;
  }
}
.wrap--company .access__office-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.wrap--company .access__office-map--02 {
  position: relative;
  z-index: 100;
  top: -80vw;
}
@media screen and (max-width: 767px) {
  .wrap--company .access__office-map--02 {
    width: 100%;
    height: 0;
    padding-top: 60%;
    top: -200vw;
  }
}
.wrap--company .access__office-address {
  color: #000;
  font-size: 1.6rem;
  text-align: left;
  position: absolute;
  top: 120%;
  left: 30%;
  -webkit-transform: translate(-20%, -50%);
          transform: translate(-20%, -50%);
  font-weight: 300;
}
.wrap--company .access__office-address::before {
  content: "";
  width: 14rem;
  height: 0.1rem;
  background: #DEDEDE;
  position: absolute;
  bottom: -30%;
  left: 0;
}
@media screen and (max-width: 767px) {
  .wrap--company .access__office-address::before {
    content: "";
    width: 7rem;
    height: 0.1rem;
    background: #DEDEDE;
    position: absolute;
    bottom: -18%;
    left: 0;
  }
}
@media screen and (max-width: 1024px) {
  .wrap--company .access__office-address {
    top: 122%;
  }
}
@media screen and (max-width: 767px) {
  .wrap--company .access__office-address {
    top: 142%;
    left: 19%;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .wrap--company .access__office-address--02 {
    top: 153%;
    left: 19%;
    font-size: 1.4rem;
  }
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

	■modifierを使用する場合
	【例】
	.top-sec__ttl{
		color: black;

		&--color{
			color: red;
		}

	}



----------------------------------------------------*/
.wrap--philosophy .spirit {
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), color-stop(70%, rgb(235, 238, 240)), to(rgba(98, 127, 137, 0.2)));
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(235, 238, 240) 70%, rgba(98, 127, 137, 0.2) 100%);
  padding: 15rem 0 0;
}
@media screen and (max-width: 767px) {
  .wrap--philosophy .spirit {
    padding: 4.5rem 0 0;
  }
}
.wrap--philosophy .spirit__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wrap--philosophy .spirit__heading h2 {
  font-family: "soleil", sans-serif;
  font-style: normal;
  font-weight: 700;
  text-align: center; /* 必要に応じて */
  margin: 0 auto;
  font-size: 3.6rem;
  letter-spacing: 0.075rem;
}
@media screen and (max-width: 767px) {
  .wrap--philosophy .spirit__heading h2 {
    font-size: 2.1rem;
    letter-spacing: 0.075rem;
  }
}
.wrap--philosophy .spirit__group {
  padding-top: 10rem;
  padding-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .wrap--philosophy .spirit__group {
    padding-top: 4.5rem;
    padding-bottom: 6rem;
  }
}
.wrap--philosophy .spirit__txt01 {
  text-align: center;
  font-size: 2.4rem;
  font-family: "soleil", sans-serif;
  font-weight: 300;
  line-height: 1;
  color: #829095;
  letter-spacing: 0.2rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .wrap--philosophy .spirit__txt01 {
    font-size: 1.2rem;
    padding-bottom: 2rem;
  }
}
.wrap--philosophy .spirit__img {
  width: 60%;
  margin-inline: auto;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .wrap--philosophy .spirit__img {
    width: 100%;
  }
}
.wrap--philosophy .spirit__img img {
  mix-blend-mode: multiply;
}
.wrap--philosophy .spirit__text {
  font-weight: 500;
  font-size: 2rem;
  position: relative;
  color: #829095;
  letter-spacing: 0.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wrap--philosophy .spirit__text {
    font-size: 1.4rem;
    letter-spacing: 0.3rem;
  }
}
.wrap--philosophy .spirit__txt03 {
  margin-inline: auto;
  font-size: 24rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-family: "soleil", sans-serif;
  font-weight: 500;
  line-height: 1;
  line-height: 0.76;
}
@media screen and (max-width: 767px) {
  .wrap--philosophy .spirit__txt03 {
    font-size: 12rem;
    letter-spacing: 0.8rem;
    text-align: center;
    position: relative;
    overflow: visible;
    left: -1.3%;
    bottom: 0rem;
  }
}
.wrap--philosophy .mission {
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), color-stop(70%, rgb(235, 238, 240)), to(rgba(98, 127, 137, 0.2)));
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(235, 238, 240) 70%, rgba(98, 127, 137, 0.2) 100%);
  position: relative;
}
.wrap--philosophy .mission__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  /* align-items: center; */
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .wrap--philosophy .mission__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrap--philosophy .mission__wrap {
  width: 42.19%;
  margin-top: 18rem;
}
@media screen and (max-width: 767px) {
  .wrap--philosophy .mission__wrap {
    width: 100%;
    margin-top: 5rem;
  }
}
.wrap--philosophy .mission__txt01 {
  font-size: 2.4rem;
  font-family: "soleil", sans-serif;
  font-weight: 300;
  line-height: 1;
  color: #829095;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--philosophy .mission__txt01 {
    margin-left: 3rem;
    font-size: 1.8rem;
  }
}
.wrap--philosophy .mission__txt02 {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1;
  font-style: normal;
  font-family: "soleil", sans-serif;
  letter-spacing: 0.2rem;
  padding-top: 6rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.85;
}
@media screen and (max-width: 767px) {
  .wrap--philosophy .mission__txt02 {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    letter-spacing: 0.2rem;
    margin-left: 3rem;
    font-size: 1.8rem;
    padding-top: 2.5rem;
  }
}
.wrap--philosophy .mission__img {
  width: 50%;
  height: 900px;
}
@media screen and (max-width: 767px) {
  .wrap--philosophy .mission__img {
    width: 85%;
    height: auto;
    margin: 0 auto;
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
  }
}
.wrap--philosophy .mission__main-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.wrap--philosophy .mission__txt03 {
  position: absolute;
  font-size: 25rem;
  font-family: "soleil", sans-serif;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
  letter-spacing: 1rem;
  bottom: -15rem;
  left: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--philosophy .mission__txt03 {
    font-size: 8.1rem;
    bottom: -5rem;
    letter-spacing: 0.6rem;
    left: 51%;
  }
}
.wrap--philosophy .vision {
  background: rgb(255, 255, 255);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), color-stop(70%, rgb(235, 238, 240)), to(rgba(98, 127, 137, 0.2)));
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(235, 238, 240) 70%, rgba(98, 127, 137, 0.2) 100%);
  position: relative;
}
.wrap--philosophy .vision__txt01 {
  font-size: 2.4rem;
  font-family: "soleil", sans-serif;
  font-weight: 300;
  line-height: 1;
  color: #829095;
  letter-spacing: 0.2rem;
  padding-top: 18rem;
  padding-left: 3rem;
}
@media screen and (max-width: 767px) {
  .wrap--philosophy .vision__txt01 {
    padding-top: 5rem;
    font-size: 1.8rem;
    padding-left: 0;
  }
}
.wrap--philosophy .vision__txt02 {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.6;
  padding: 5.5rem 0 9rem 3rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--philosophy .vision__txt02 {
    padding: 2.5rem 0 3.5rem;
    font-size: 1.8rem;
  }
}
.wrap--philosophy .vision__img {
  width: 95%;
  margin-inline: auto;
  padding-bottom: 5rem;
  height: 700px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--philosophy .vision__img {
    width: 85%;
    margin-inline: auto;
    padding-bottom: 2.5rem;
    height: auto;
  }
}
.wrap--philosophy .vision__main-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.wrap--philosophy .vision__txt03 {
  position: absolute;
  font-size: 25rem;
  font-family: "soleil", sans-serif;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
  letter-spacing: 1rem;
  bottom: -15rem;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 200;
}
@media screen and (max-width: 767px) {
  .wrap--philosophy .vision__txt03 {
    font-size: 8.1rem;
    bottom: -5rem;
    letter-spacing: 0.6rem;
    left: 51%;
  }
}
.wrap--philosophy .action {
  padding: 22rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .wrap--philosophy .action {
    padding: 5rem 0 0rem;
  }
}
.wrap--philosophy .action__txt01 {
  padding: 8rem 0 9rem;
}
@media screen and (max-width: 767px) {
  .wrap--philosophy .action__txt01 {
    padding: 3rem 0 3.5rem;
  }
}
.wrap--philosophy .action__group {
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .wrap--philosophy .action__group {
    margin-bottom: 1.8rem;
  }
}
.wrap--philosophy .action__group:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .wrap--philosophy .action__group:last-child {
    margin-bottom: 1rem;
    border-bottom: solid 0.1rem #DEDEDE;
    padding-bottom: 4.5rem;
  }
}
.wrap--philosophy .action__group-inner {
  padding-bottom: 1rem;
  padding-right: 14.3rem;
}
@media screen and (max-width: 767px) {
  .wrap--philosophy .action__group-inner {
    padding-bottom: 0.7rem;
    padding-right: 0;
  }
}
.wrap--philosophy .action__heading {
  background: #627F89;
  color: #fff;
  font-size: 2rem;
  padding: 1rem 0 1.1rem 2rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--philosophy .action__heading {
    font-size: 1.4rem;
    padding: 1rem 0 1rem 1.5rem;
  }
}
.wrap--philosophy .action__sub-heading {
  padding: 3rem 0 0 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--philosophy .action__sub-heading {
    padding: 1.3rem 0 0 1.4rem;
  }
}
.wrap--philosophy .action__sub-heading p {
  font-weight: 500;
  font-size: 2rem;
  position: relative;
  color: #627F89;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 767px) {
  .wrap--philosophy .action__sub-heading p {
    font-size: 1.4rem;
    font-weight: 500;
  }
}
.wrap--philosophy .action__sub-heading p::before {
  content: "";
  width: 1px;
  height: 5rem;
  background: #627F89;
  position: absolute;
  top: 50%;
  left: -2%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--philosophy .action__sub-heading p::before {
    content: "";
    width: 2px;
    height: 2.5rem;
    background: #627F89;
    position: absolute;
    top: 50%;
    left: -4.3%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.wrap--philosophy .action__txt02 {
  padding: 2rem 0 0 2rem;
}
@media screen and (max-width: 767px) {
  .wrap--philosophy .action__txt02 {
    font-size: 1.4rem;
    font-weight: 400;
    padding: 1rem 0 0 0;
  }
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

	■modifierを使用する場合
	【例】
	.top-sec__ttl{
		color: black;
		&--color{
			color: red;
		}
	}



----------------------------------------------------*/
.wrap--product .product {
  padding: 29rem 0 0;
}
@media screen and (max-width: 767px) {
  .wrap--product .product {
    padding: 10.5rem 0 0;
  }
}
.wrap--product .product__heading {
  font-size: 3.6rem;
  text-align: center;
  padding-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .wrap--product .product__heading {
    font-size: 2.1rem;
    padding-bottom: 3.5rem;
  }
}
.wrap--product .product__select {
  margin: 0 auto;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .wrap--product .product__select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrap--product .product .select_box {
  overflow: hidden;
  width: 35rem;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--product .product .select_box {
    width: 100%;
  }
}
.wrap--product .product .select_box::before {
  content: "";
  background-image: url(../images/page/product/select-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  top: 50%;
  right: 3rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .wrap--product .product .select_box::before {
    width: 1rem;
    height: 1rem;
  }
}
.wrap--product .product .select_box.cp_sl {
  position: relative;
  border-radius: 9px;
  background: #9AAEB5;
  outline: none !important;
  border: none;
}
@media screen and (max-width: 767px) {
  .wrap--product .product .select_box.cp_sl {
    text-align: left;
    border-radius: 0.8rem;
  }
}
.wrap--product .product .select_box.cp_sl select {
  padding: 2.4rem 12.5rem 2.2rem 3rem;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  background: #9AAEB5;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  outline: none;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .wrap--product .product .select_box.cp_sl select {
    padding: 2rem 12.7rem 2rem 2rem;
    font-size: 1.4rem;
    outline: none;
    border: none;
  }
}
.wrap--product .product .select_box.select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
.wrap--product .product__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10rem 5.2rem;
  padding: 7rem 0 12rem;
}
@media screen and (max-width: 767px) {
  .wrap--product .product__wrap {
    gap: 7.6rem;
    padding: 3rem 0 5rem;
  }
}
.wrap--product .product__common {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .wrap--product .product__common {
    width: 100%;
  }
}
.wrap--product .product__img {
  overflow: hidden;
  border-radius: 7px;
}
@media screen and (max-width: 767px) {
  .wrap--product .product__img {
    border-radius: 4px;
    width: auto;
  }
}
.wrap--product .product__img img {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.wrap--product .product__img img:hover {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
  overflow: hidden;
}
.wrap--product .product__txts {
  padding-top: 3rem;
}
@media screen and (max-width: 767px) {
  .wrap--product .product__txts {
    padding-top: 1.5rem;
  }
}
.wrap--product .product__sub-ttl {
  font-size: 1.4rem;
}
.wrap--product .product__ttl {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .wrap--product .product__ttl {
    font-size: 1.6rem;
  }
}
.wrap--product .product__number {
  font-size: 1.6rem;
  font-weight: 500;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .wrap--product .product__number {
    font-size: 1.4rem;
    padding-bottom: 1.5rem;
  }
}
.wrap--product .product__cortract-group {
  margin: 0 0 2rem;
}
@media screen and (max-width: 767px) {
  .wrap--product .product__cortract-group {
    margin: 0 0 1rem;
  }
}
.wrap--product .product__cortract {
  font-size: 1.6rem;
  color: #627F89;
  border-top: solid 0.1rem #627F89;
  border-right: solid 0.1rem #627F89;
  width: 8.1rem;
  padding: 1.5rem 1.5rem 0 0;
  line-height: 1;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .wrap--product .product__cortract {
    font-size: 1.4rem;
    padding: 1rem 1rem 0 0;
    margin-bottom: 1.1rem;
    width: 7rem;
  }
}
.wrap--product .product__backup {
  display: block;
  background: #ECEFF1;
  color: #627F89;
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--product .product__backup {
    font-size: 1.4rem;
    margin-top: 0.75rem;
  }
}
.wrap--product .product__backup::before {
  content: "";
  background: url(../images/page/product/img-product-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 2rem;
  height: 2rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.wrap--product .product__backup:hover {
  background: #99AEB5;
  color: #ECEFF1;
}
.wrap--product .product__backup:hover::before {
  background: url(../images/page/product/img-product-arrow-hov.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 2rem;
  height: 2rem;
  right: 0.3rem;
}
.wrap--product .product__backup a {
  display: block;
  padding: 1.3rem 0 1.2rem 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .wrap--product .product__backup a {
    padding: 1rem 0 1rem 1.25rem;
  }
}
.wrap--product .product__remote {
  display: block;
  background: #ECEFF1;
  color: #627F89;
  font-size: 1.5rem;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: 1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--product .product__remote {
    font-size: 1.4rem;
    margin-top: 0.75rem;
  }
}
.wrap--product .product__remote::before {
  content: "";
  background: url(../images/page/product/img-product-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 2rem;
  height: 2rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.wrap--product .product__remote:hover {
  background: #99AEB5;
  color: #ECEFF1;
}
.wrap--product .product__remote:hover::before {
  background: url(../images/page/product/img-product-arrow-hov.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 2rem;
  height: 2rem;
  right: 0.3rem;
}
.wrap--product .product__remote a {
  display: block;
  padding: 1.3rem 0 1.2rem 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .wrap--product .product__remote a {
    padding: 1rem 0 1rem 1.25rem;
  }
}
.wrap--product .product__after-support {
  display: block;
  background: #ECEFF1;
  color: #627F89;
  margin: 0 0 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--product .product__after-support {
    font-size: 1.4rem;
    margin: 0 0 0.75rem;
  }
}
.wrap--product .product__after-support::before {
  content: "";
  background: url(../images/page/product/img-product-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 2rem;
  height: 2rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.wrap--product .product__after-support:hover {
  background: #99AEB5;
  color: #ECEFF1;
}
.wrap--product .product__after-support:hover::before {
  background: url(../images/page/product/img-product-arrow-hov.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 2rem;
  height: 2rem;
  right: 0.3rem;
}
.wrap--product .product__after-support a {
  display: block;
  padding: 1.3rem 0 1.2rem 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .wrap--product .product__after-support a {
    padding: 1rem 0 1rem 1.25rem;
  }
}
.wrap--product .product__info-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .wrap--product .product__info-wrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0;
  }
}
.wrap--product .product__service {
  border: solid 0.1rem #DEDEDE;
  border-radius: 0.7rem;
  color: #627F89;
  background-color: #fff;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .wrap--product .product__service {
    border-radius: 0.7rem;
  }
}
.wrap--product .product__service::before {
  content: "";
  position: absolute;
  background: url(../images/page/product/img-info-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1rem;
  height: 1rem;
  right: 0.5rem;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.wrap--product .product__service a {
  display: block;
  padding: 0.8rem 2.7rem;
}
@media screen and (max-width: 767px) {
  .wrap--product .product__service a {
    padding: 1rem 3.3rem;
  }
}
.wrap--product .product__service:hover {
  background-color: #627F89;
  color: #fff;
  border: solid 0.1rem #627F89;
}
.wrap--product .product__service:hover::before {
  content: "";
  position: absolute;
  background: url(../images/page/product/img-info-arrow-hov.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1rem;
  height: 1rem;
  right: 0.5rem;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.wrap--product .product__info {
  border: solid 0.1rem #DEDEDE;
  border-radius: 0.7rem;
  color: #627F89;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .wrap--product .product__info {
    border-radius: 0.7rem;
  }
}
.wrap--product .product__info::before {
  content: "";
  position: absolute;
  background: url(../images/page/product/img-info-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1rem;
  height: 1rem;
  right: 0.5rem;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.wrap--product .product__info:hover::before {
  content: "";
  position: absolute;
  background: url(../images/page/product/img-info-arrow-hov.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1rem;
  height: 1rem;
  right: 0.5rem;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.wrap--product .product__info a {
  display: block;
  padding: 0.8rem 4.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--product .product__info a {
    padding: 0.8rem 4.8rem;
  }
}
.wrap--product .product__info:hover {
  background-color: #627F89;
  color: #fff;
  border: solid 0.1rem #627F89;
}
.wrap--product .product__end {
  background-color: #454545;
  padding: 0.8rem 4.3rem;
  color: #fff;
  position: relative;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .wrap--product .product__end {
    padding: 0.8rem 4.8rem;
  }
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

	■modifierを使用する場合
	【例】
	.top-sec__ttl{
		color: black;
		&--color{
			color: red;
		}
	}



----------------------------------------------------*/
.wrap--news-list .news-list {
  padding: 15rem 0 0;
  /* --------アコーディオンの中身のスタイル-------- */
}
@media screen and (max-width: 767px) {
  .wrap--news-list .news-list {
    padding: 4.5rem 0 0;
  }
}
.wrap--news-list .news-list__heading {
  font-size: 3.6rem;
  text-align: left;
  padding-bottom: 8rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .wrap--news-list .news-list__heading {
    font-size: 2.1rem;
    padding-bottom: 3.5rem;
  }
}
.wrap--news-list .news-list__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 5rem;
  padding-left: 4rem;
}
.wrap--news-list .news-list__group-item {
  width: calc((74% - 5rem) * 1 / 3);
  border: 1px solid #dedede;
  background: #fff;
  color: #627f89;
  font-size: 1.6rem;
  text-align: center;
  -webkit-transition: 0.15s;
  transition: 0.15s;
  cursor: pointer;
  text-align: left;
  padding-left: 2rem;
  position: relative;
}
.wrap--news-list .news-list__group-item::before {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../images/page/news-list/news-list-arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  right: 1rem;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.wrap--news-list .news-list__group-item:hover::before {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../images/page/news-list/news-list-arrow-hov.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  right: 1rem;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.wrap--news-list .news-list__group-item:first-child {
  border-right: none;
}
.wrap--news-list .news-list__group-item:last-child {
  border-left: none;
}
.wrap--news-list .news-list__group-item a {
  padding: 1.2rem 0 1.4rem 0;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.wrap--news-list .news-list__group-item:hover {
  background: #627f89;
  color: #fff;
}
.wrap--news-list .news-list__group-item--02:hover {
  background: #99aeb5;
  color: #fff;
}
.wrap--news-list .news-list__article {
  width: 100rem;
  margin-inline: auto;
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .wrap--news-list .news-list__article {
    width: 100%;
    padding-bottom: 5rem;
  }
}
.wrap--news-list .news-list__list {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .wrap--news-list .news-list__list {
    width: 100%;
  }
}
.wrap--news-list .news-list__common {
  border-bottom: solid 0.1rem #eceff1;
  position: relative;
}
.wrap--news-list .news-list__common:first-of-type {
  border-top: none;
}
.wrap--news-list .news-list__common::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #eceff1;
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition: transform ease 0.4s, -webkit-transform ease 0.4s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
}
.wrap--news-list .news-list__common:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
}
.wrap--news-list .news-list__common::after {
  background-image: url(../images/page/news-list/news-list-ico.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: 5rem;
  height: 5rem;
  top: 50%;
  right: 10%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .wrap--news-list .news-list__common::after {
    content: none;
  }
}
.wrap--news-list .news-list__common:hover::after {
  background-image: url(../images/page/news-list/news-list-ico-hover.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: 5rem;
  height: 5rem;
  right: 8%;
}
@media screen and (max-width: 767px) {
  .wrap--news-list .news-list__common:hover::after {
    content: none;
  }
}
.wrap--news-list .news-list__times {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 4rem;
  padding-left: 3rem;
}
@media screen and (max-width: 767px) {
  .wrap--news-list .news-list__times {
    padding-top: 2.5rem;
    padding-left: 0;
  }
}
.wrap--news-list .news-list__date {
  font-size: 1.6rem;
  color: #99aeb5;
  font-family: "soleil", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--news-list .news-list__date {
    font-size: 1.4rem;
    padding-bottom: 2.5rem;
    line-height: 1;
  }
}
.wrap--news-list .news-list__category {
  background-color: #627f89;
  padding: 0.2rem 2rem;
  border-radius: 3rem;
  color: #fff;
  font-weight: 400;
  margin-left: 3rem;
  width: 18rem;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .wrap--news-list .news-list__category {
    font-size: 1.4rem;
    width: 15rem;
    margin-left: 0;
  }
}
.wrap--news-list .news-list__category--02 {
  background-color: #9aaeb5;
}
.wrap--news-list .news-list__title {
  padding-top: 2.6rem;
  font-weight: 400;
  font-size: 1.6rem;
  padding-bottom: 4rem;
  padding-left: 3rem;
  padding-right: 25rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 767px) {
  .wrap--news-list .news-list__title {
    width: 100%;
    font-size: 1.4rem;
    padding-bottom: 1rem;
    padding-top: 1.5rem;
    padding-left: 0;
    padding-right: 0;
  }
}
.wrap--news-list .news-list__category-sp {
  margin-bottom: 0.5rem;
}
.wrap--news-list .news-list summary {
  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
}
.wrap--news-list .news-list summary::before {
  content: "";
  position: absolute;
  display: block;
  background-image: url(../images/page/news-list/news-list-accordion-arrow.png);
  width: 1.3rem;
  height: 1.3rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  right: 6rem;
  top: 38.4rem;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}
.wrap--news-list .news-list summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}
.wrap--news-list .news-list .summary_inner {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.25rem 0;
  border: 0.1rem solid #627f89;
  color: #627f89;
  line-height: 1;
}
.wrap--news-list .news-list .content {
  overflow: hidden;
  /* details直下のタグにpaddingを設定すると挙動がおかしくなるので、ここには指定しない */
}
.wrap--news-list .news-list .content_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  color: #627f89;
  line-height: 1;
  border: solid 0.1rem #627f89;
  border-top: none;
}
.wrap--news-list .news-list .wrapper {
  width: 76.7rem;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.wrap--news-list .news-list .wrapper details {
  margin-bottom: 16px;
}
.wrap--news-list .news-list .wrapper details:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .wrap--news-list .news-list .wrapper {
    width: 100%;
  }
}
.wrap--news-list .news-list .category__item-link {
  padding: 1.25rem 0;
  display: block;
  border-bottom: solid 0.1rem #627f89;
  width: 32rem;
  text-align: center;
}
.wrap--news-list .news-list .category__item:last-child .category__item-link {
  padding: 1.25rem 9.7rem;
  border-bottom: none;
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

	■modifierを使用する場合
	【例】
	.top-sec__ttl{
		color: black;
		&--color{
			color: red;
		}
	}



----------------------------------------------------*/
.wrap--news-single .news-single {
  padding: 31rem 0 0;
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single {
    padding: 12.5rem 0 0;
  }
}
.wrap--news-single .news-single__heading {
  font-size: 9rem;
  text-align: center;
  line-height: 1;
  color: #eceff1;
  letter-spacing: 0.1rem;
  padding-left: 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single__heading {
    font-size: 4.5rem;
    padding-bottom: 4rem;
    padding-left: 0rem;
  }
}
.wrap--news-single .news-single__contents {
  padding-top: 10.6rem;
  width: 100rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single__contents {
    padding-top: 0;
    width: auto;
  }
}
.wrap--news-single .news-single__top {
  border-bottom: solid 0.1rem #eceff1;
  padding: 0 0 5rem 10rem;
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single__top {
    padding: 0 0 2.5rem 0;
  }
}
.wrap--news-single .news-single__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 2rem;
  width: 80rem;
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single__time {
    width: auto;
  }
}
.wrap--news-single .news-single__date {
  color: #99aeb5;
  font-weight: 400;
  font-family: "soleil", sans-serif;
  font-style: normal;
  font-size: 1.6rem;
}
.wrap--news-single .news-single__category {
  font-size: 1.4rem;
  background: #9aaeb5;
  color: #fff;
  line-height: 1;
  width: 18rem;
  text-align: center;
  padding: 0.5rem 0;
  border-radius: 2rem;
  margin-left: 3rem;
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single__category {
    width: 14rem;
    margin-left: 1.5rem;
  }
}
.wrap--news-single .news-single__title {
  font-size: 2.4rem;
  width: 80rem;
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single__title {
    width: auto;
    font-size: 1.6rem;
  }
}
.wrap--news-single .news-single__main-contents {
  padding: 9rem 0 0;
  width: 80rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single__main-contents {
    width: auto;
    padding-top: 2.5rem;
  }
}
.wrap--news-single .news-single__main-contents a {
  color: #99aeb5;
  text-decoration: underline;
}
.wrap--news-single .news-single__article-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 64.5rem;
  height: 20rem;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single__article-btn {
    margin-top: 5rem;
    height: 5.3rem;
    width: auto;
  }
}
.wrap--news-single .news-single__article-prev {
  vertical-align: middle;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  right: 0;
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single__article-prev {
    width: 7rem;
    height: 5.5rem;
  }
}
.wrap--news-single .news-single__article-prev a {
  display: block;
  width: 15rem;
  height: 20rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single__article-prev a {
    width: 7rem;
    height: 5.5rem;
  }
}
.wrap--news-single .news-single__article-prev::before {
  content: "";
  width: 0.1rem;
  height: 20rem;
  background: #dedede;
  position: absolute;
  right: -1rem;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single__article-prev::before {
    height: 5.2rem;
    right: -0.5rem;
  }
}
.wrap--news-single .news-single__article-prev::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 0;
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition: transform ease 0.4s, -webkit-transform ease 0.4s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 100% 0%;
          transform-origin: 100% 0%;
}
.wrap--news-single .news-single__article-prev:hover::after {
  -webkit-transform: scaleX(100%);
          transform: scaleX(100%);
  background: #99aeb5;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single__article-prev:hover::after {
    background: none;
  }
}
.wrap--news-single .news-single .news-single__article-prev img {
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  width: 4rem;
  height: 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single .news-single__article-prev img {
    width: 3rem;
    height: 3rem;
  }
}
.wrap--news-single .news-single .news-single__article-prev:hover img:first-of-type {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single .news-single__article-prev:hover img:first-of-type {
    opacity: 1;
  }
}
.wrap--news-single .news-single .news-single__article-prev img:last-of-type {
  position: absolute;
  top: 50%;
  left: 23%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  opacity: 0;
}
.wrap--news-single .news-single .news-single__article-prev:hover img:last-of-type {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single .news-single__article-prev:hover img:last-of-type {
    opacity: 0;
  }
}
.wrap--news-single .news-single__article-list {
  width: 28rem;
  height: 18.2rem;
  vertical-align: middle;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.wrap--news-single .news-single__article-list a {
  display: block;
  width: 28rem;
  height: 18.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single__article-list a {
    width: 13.8rem;
    height: 5.2rem;
  }
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single__article-list {
    width: 13.8rem;
    height: 5.2rem;
  }
}
.wrap--news-single .news-single__article-list::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition: transform ease 0.4s, -webkit-transform ease 0.4s;
  -webkit-transform: scale(0);
          transform: scale(0);
}
.wrap--news-single .news-single__article-list:hover::after {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  background: #99aeb5;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single__article-list:hover::after {
    background: none;
  }
}
.wrap--news-single .news-single__link02 {
  width: 3rem;
  height: 1.4rem;
  z-index: 100;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wrap--news-single .news-single .news-single__article-list img {
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  width: 3rem;
  height: 1.4rem;
}
.wrap--news-single .news-single .news-single__article-list:hover img:first-of-type {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single .news-single__article-list:hover img:first-of-type {
    opacity: 1;
  }
}
.wrap--news-single .news-single .news-single__article-list img:last-of-type {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
}
.wrap--news-single .news-single .news-single__article-list:hover img:last-of-type {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single .news-single__article-list:hover img:last-of-type {
    opacity: 0;
  }
}
.wrap--news-single .news-single__article-next {
  vertical-align: middle;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.wrap--news-single .news-single__article-next a {
  display: block;
  width: 15rem;
  height: 20rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single__article-next a {
    width: 7rem;
    height: 5.5rem;
  }
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single__article-next {
    width: 7rem;
    height: 5.5rem;
  }
}
.wrap--news-single .news-single__article-next::before {
  content: "";
  width: 0.1rem;
  height: 20rem;
  background: #dedede;
  position: absolute;
  left: -1rem;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single__article-next::before {
    height: 5.2rem;
    left: -0.5rem;
  }
}
.wrap--news-single .news-single__article-next::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition: transform ease 0.4s, -webkit-transform ease 0.4s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
}
.wrap--news-single .news-single__article-next:hover::after {
  -webkit-transform: scaleX(100%);
          transform: scaleX(100%);
  background: #99aeb5;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single__article-next:hover::after {
    background: none;
  }
}
.wrap--news-single .news-single .news-single__article-next img {
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  width: 4rem;
  height: 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single .news-single__article-next img {
    width: 3rem;
    height: 3rem;
  }
}
.wrap--news-single .news-single .news-single__article-next:hover img:first-of-type {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single .news-single__article-next:hover img:first-of-type {
    opacity: 1;
  }
}
.wrap--news-single .news-single .news-single__article-next img:last-of-type {
  position: absolute;
  top: 50%;
  left: 24%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  opacity: 0;
}
.wrap--news-single .news-single .news-single__article-next:hover img:last-of-type {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .wrap--news-single .news-single .news-single__article-next:hover img:last-of-type {
    opacity: 0;
  }
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

	■modifierを使用する場合
	【例】
	.top-sec__ttl{
		color: black;
		&--color{
			color: red;
		}
	}



----------------------------------------------------*/
.wrap--guide .guide {
  padding: 31rem 0 0;
}
@media screen and (max-width: 767px) {
  .wrap--guide .guide {
    padding: 12.5rem 0 0;
  }
}
.wrap--guide .guide__heading {
  font-size: 9rem;
  text-align: center;
  line-height: 1;
  color: #ECEFF1;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 767px) {
  .wrap--guide .guide__heading {
    font-size: 4.5rem;
    padding-left: 0rem;
  }
}
.wrap--guide .guide__main-txt {
  padding-top: 7rem;
  width: 80rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .wrap--guide .guide__main-txt {
    width: 100%;
    padding-top: 1.5rem;
  }
}
.wrap--guide .guide__sub-heading {
  font-size: 3.6rem;
  text-align: center;
  letter-spacing: 0.5rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .wrap--guide .guide__sub-heading {
    font-size: 2.1rem;
    padding-bottom: 4rem;
    letter-spacing: 0.2rem;
  }
}
.wrap--guide .guide__txt {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--guide .guide__txt {
    font-size: 1.4rem;
  }
}
.wrap--guide .guide__wrap {
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  .wrap--guide .guide__wrap {
    padding-top: 4.5rem;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}
.wrap--guide .guide__item-common {
  padding: 10rem 0;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .wrap--guide .guide__item-common {
    padding: 4.5rem 0;
  }
}
.wrap--guide .guide__item-common:last-child {
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .wrap--guide .guide__item-common:last-child {
    margin-bottom: 1rem;
  }
}
.wrap--guide .guide__item-common--gray {
  background: #F7F8F9;
}
.wrap--guide .guide__item-group {
  width: 80rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .wrap--guide .guide__item-group {
    width: 84%;
  }
}
.wrap--guide .guide__item-heading {
  text-align: center;
  font-size: 2rem;
  color: #627F89;
  padding-bottom: 5rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--guide .guide__item-heading {
    font-size: 1.6rem;
    padding-bottom: 2rem;
  }
}
.wrap--guide .guide__item-txt {
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 767px) {
  .wrap--guide .guide__item-txt {
    font-size: 1.4rem;
  }
}
.wrap--guide .guide__item-num {
  position: absolute;
  font-size: 24rem;
  color: #fff;
  font-family: "soleil", sans-serif;
  font-weight: 500;
  top: 76%;
  right: -10%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  line-height: 1;
  z-index: -10;
}
@media screen and (max-width: 767px) {
  .wrap--guide .guide__item-num {
    font-size: 12rem;
    top: 87%;
    right: -7%;
  }
}
.wrap--guide .guide__item-num--02 {
  top: 76%;
  right: -12.4%;
}
@media screen and (max-width: 767px) {
  .wrap--guide .guide__item-num--02 {
    top: 87%;
    right: -7%;
  }
}
.wrap--guide .guide__item-num--03 {
  top: 76%;
  right: -12%;
}
@media screen and (max-width: 767px) {
  .wrap--guide .guide__item-num--03 {
    top: 88%;
    right: -7%;
  }
}
.wrap--guide .guide__item-num--04 {
  top: 76%;
  right: -12.4%;
}
@media screen and (max-width: 767px) {
  .wrap--guide .guide__item-num--04 {
    top: 87%;
    right: -7%;
  }
}
.wrap--guide .guide__item-num--05 {
  top: 72%;
  right: -11.5%;
}
@media screen and (max-width: 767px) {
  .wrap--guide .guide__item-num--05 {
    top: 82%;
    right: -7%;
  }
}
.wrap--guide .guide__item-num--gray {
  color: #F7F8F9;
}

/*----------------------------------------------------

  各ページの独自モジュールスタイルのCSS。

  【記述ルール】
  { ページ名(top, about等) }○○○○

  階層はルートクラスより、三階層までが基本
  【例】
  .top-sec .top-sec__ttl span {   
  }
  ※CSSに展開した場合

  ■modifierを使用する場合
  【例】
  .top-sec__ttl{
    color: black;
    &--color{
      color: red;
    }
  }



----------------------------------------------------*/
.wrap--recruit .recruit {
  padding: 15rem 0 0;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .recruit {
    padding: 4rem 0 0;
  }
}
.wrap--recruit .recruit__main-group {
  width: 80rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .recruit__main-group {
    width: auto;
  }
}
.wrap--recruit .recruit__main-heading {
  font-size: 3.6rem;
  text-align: center;
  color: #000;
  letter-spacing: 0.2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .recruit__main-heading {
    font-size: 2.1rem;
    padding-left: 0rem;
  }
}
.wrap--recruit .recruit__main-txt {
  font-size: 1.6rem;
  padding-top: 8rem;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .recruit__main-txt {
    font-size: 1.4rem;
    padding-top: 3rem;
  }
}
.wrap--recruit .recruit .recruit__bg::before {
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .recruit .recruit__bg::before {
    background-color: #fff;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
}
.wrap--recruit .recruit .recruit__bg.hovered::before {
  background-color: rgba(0, 0, 0, 0);
}
@media screen and (max-width: 767px) {
  .wrap--recruit .recruit .recruit__bg.hovered::before {
    background-color: rgb(255, 255, 255);
  }
}
.wrap--recruit .recruit .recruit__bg::after {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .recruit .recruit__bg::after {
    -webkit-transform: none;
            transform: none;
  }
}
.wrap--recruit .recruit .recruit__bg.hovered::after {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (max-width: 767px) {
  .wrap--recruit .recruit .recruit__bg.hovered::after {
    -webkit-transform: none;
            transform: none;
  }
}
.wrap--recruit .recruit__common {
  position: relative;
}
.wrap--recruit .recruit__bg {
  position: relative;
  overflow: hidden;
  max-width: 85%;
  height: 54rem;
  border-radius: 0 5rem 5rem 0;
  margin: 10rem 0 13rem;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .recruit__bg {
    max-width: 90%;
    height: 23.4rem;
    border-radius: 0 1rem 1rem 0;
    margin: 5rem 0 6.7rem;
  }
}
.wrap--recruit .recruit__bg:hover .recruit__title {
  color: #000;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .recruit__bg:hover .recruit__title {
    color: #fff;
  }
}
.wrap--recruit .recruit__bg::before {
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: " ";
  z-index: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .recruit__bg::before {
    background-color: none;
    content: none;
  }
}
.wrap--recruit .recruit__bg:hover::before {
  background-color: rgba(0, 0, 0, 0);
}
.wrap--recruit .recruit__bg:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  background: url(../images/page/recruit/new-graduate.png) no-repeat center center;
  -ms-background-size: cover;
  background-size: cover;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .recruit__bg:after {
    background: url(../images/page/recruit/new-graduate-sp.png) no-repeat center center;
    -ms-background-size: contain;
    background-size: contain;
  }
}
.wrap--recruit .recruit__bg:hover:after {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
@media screen and (max-width: 767px) {
  .wrap--recruit .recruit__bg:hover:after {
    -webkit-transform: none;
            transform: none;
  }
}
.wrap--recruit .recruit__bg:hover:after .recruit__title {
  color: #000;
}
.wrap--recruit .recruit__bg a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  height: 100%;
  text-decoration: none;
  color: #fff;
  z-index: 500;
}
.wrap--recruit .recruit__sub-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 1rem;
  position: absolute;
  width: 37rem;
  top: 25rem;
  right: 55vw;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .recruit__sub-title {
    top: 6.5rem;
    right: 27vw;
    width: 21rem;
  }
}
.wrap--recruit .recruit__sub-title p {
  display: inline-block;
  background: #000;
  color: #fff;
  margin-top: 1rem;
  padding: 0 3.6rem 0 3rem;
  font-size: 3.6rem;
  letter-spacing: 0.2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .recruit__sub-title p {
    font-size: 1.6rem;
    padding: 0 0.5rem 0 0.5rem;
    margin-top: 0.5rem;
  }
}
.wrap--recruit .recruit__sub-title p:first-child {
  margin-top: 0;
}
.wrap--recruit .recruit__title {
  font-size: clamp(1.4rem, -3.656rem + 9.55vw, 9rem);
  position: absolute;
  font-family: "soleil", sans-serif;
  font-weight: 500;
  bottom: -1rem;
  right: 58vw;
  -webkit-transform: translate(50%, 0%);
          transform: translate(50%, 0%);
  color: #fff;
  z-index: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1;
  width: 64rem;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .recruit__title {
    bottom: 6.5rem;
    right: -3%;
    font-size: 3.1rem;
  }
}
.wrap--recruit .recruit__btn {
  background: #fff;
  position: absolute;
  border-radius: 1rem 0 0 0;
  right: 12%;
  bottom: -4rem;
  z-index: 700;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .recruit__btn {
    right: 0%;
    bottom: -2.5rem;
  }
}
.wrap--recruit .recruit__btn:hover .recruit__btn-arrow::before {
  right: -4rem;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .recruit__btn:hover .recruit__btn-arrow::before {
    right: -2rem;
  }
}
.wrap--recruit .recruit__btn a {
  display: block;
  width: 36rem;
  height: 15rem;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .recruit__btn a {
    width: 20rem;
    height: 7.5rem;
  }
}
.wrap--recruit .recruit__btn-txt {
  font-size: 3.2rem;
  color: #000;
  font-weight: bold;
  position: absolute;
  bottom: 7rem;
  right: 37%;
  -webkit-transform: translate(50%, 0%);
          transform: translate(50%, 0%);
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .recruit__btn-txt {
    font-size: 2.1rem;
    bottom: 2.5rem;
    right: 48%;
  }
}
.wrap--recruit .recruit__btn-arrow {
  font-size: 2.2rem;
  color: #99AEB5;
  font-weight: bold;
  position: absolute;
  bottom: 3rem;
  right: 36%;
  -webkit-transform: translate(50%, 0%);
          transform: translate(50%, 0%);
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .recruit__btn-arrow {
    font-size: 1.3rem;
    font-weight: 400;
    bottom: 0;
    right: 49%;
  }
}
.wrap--recruit .recruit__btn-arrow::before {
  content: "";
  background-image: url(../images/page/recruit/img-recruit-arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 2.8rem;
  height: 2.8rem;
  position: absolute;
  top: 0.3rem;
  right: -3rem;
  -webkit-transform: translate(50%, 10%);
          transform: translate(50%, 10%);
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .recruit__btn-arrow::before {
    width: 2rem;
    height: 2rem;
    right: -2rem;
    top: 0;
  }
}
.wrap--recruit .recruit .recruit__btn-arrow.move-arrow:before {
  right: -4rem;
  top: 0.3rem;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .recruit .recruit__btn-arrow.move-arrow:before {
    right: -2rem;
    top: 0;
  }
}
.wrap--recruit .carrier__bg::before {
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .carrier__bg::before {
    background-color: #fff;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
}
.wrap--recruit .carrier__bg.hovered::before {
  background-color: rgba(0, 0, 0, 0);
}
@media screen and (max-width: 767px) {
  .wrap--recruit .carrier__bg.hovered::before {
    background-color: rgb(255, 255, 255);
  }
}
.wrap--recruit .carrier__bg::after {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .carrier__bg::after {
    -webkit-transform: none;
            transform: none;
  }
}
.wrap--recruit .carrier__bg.hovered::after {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (max-width: 767px) {
  .wrap--recruit .carrier__bg.hovered::after {
    -webkit-transform: none;
            transform: none;
  }
}
.wrap--recruit .carrier__btn-arrow.move-arrow:before {
  right: -4rem;
  top: 0.3rem;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .carrier__btn-arrow.move-arrow:before {
    right: -2rem;
    top: 0;
  }
}
.wrap--recruit .carrier__common {
  position: relative;
}
.wrap--recruit .carrier__bg {
  position: relative;
  overflow: hidden;
  max-width: 85%;
  height: 54rem;
  border-radius: 0 5rem 5rem 0;
  margin: 0rem 0 13rem;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .carrier__bg {
    max-width: 90%;
    height: 23.4rem;
    border-radius: 0 1rem 1rem 0;
    margin: 5rem 0 3rem;
  }
}
.wrap--recruit .carrier__bg:hover .carrier__title {
  color: #000;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .carrier__bg:hover .carrier__title {
    color: #fff;
  }
}
.wrap--recruit .carrier__bg::before {
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: " ";
  z-index: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .carrier__bg::before {
    background-color: none;
    content: none;
  }
}
.wrap--recruit .carrier__bg:hover::before {
  background-color: rgba(0, 0, 0, 0);
}
.wrap--recruit .carrier__bg:after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  background: url(../images/page/recruit/carrier.png) no-repeat center center;
  -ms-background-size: cover;
  background-size: cover;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .carrier__bg:after {
    background: url(../images/page/recruit/carrier-sp.png) no-repeat center center;
    -ms-background-size: contain;
    background-size: contain;
  }
}
.wrap--recruit .carrier__bg:hover:after {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
@media screen and (max-width: 767px) {
  .wrap--recruit .carrier__bg:hover:after {
    -webkit-transform: none;
            transform: none;
  }
}
.wrap--recruit .carrier__bg:hover:after .carrier__title {
  color: #000;
}
.wrap--recruit .carrier__bg a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  height: 100%;
  text-decoration: none;
  color: #fff;
  z-index: 500;
}
.wrap--recruit .carrier__sub-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 1rem;
  position: absolute;
  width: 37rem;
  top: 25rem;
  right: 55vw;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .carrier__sub-title {
    top: 6.7rem;
    right: 27vw;
    width: 21rem;
  }
}
.wrap--recruit .carrier__sub-title p {
  display: inline-block;
  background: #000;
  color: #fff;
  margin-top: 1rem;
  padding: 0 3.6rem 0 3rem;
  font-size: 3.6rem;
  letter-spacing: 0.2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .carrier__sub-title p {
    font-size: 1.6rem;
    padding: 0 0.5rem 0 0.5rem;
    margin-top: 0.5rem;
  }
}
.wrap--recruit .carrier__sub-title p:first-child {
  margin-top: 0;
}
.wrap--recruit .carrier__title {
  font-size: clamp(1.4rem, -3.656rem + 9.55vw, 9rem);
  position: absolute;
  font-family: "soleil", sans-serif;
  font-weight: 500;
  bottom: -1rem;
  right: 58vw;
  -webkit-transform: translate(50%, 0%);
          transform: translate(50%, 0%);
  color: #fff;
  z-index: 500;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1;
  width: 64rem;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .carrier__title {
    bottom: 6.5rem;
    right: -3%;
    font-size: 3.1rem;
  }
}
.wrap--recruit .carrier__btn {
  background: #fff;
  position: absolute;
  border-radius: 1rem 0 0 0;
  right: 12%;
  bottom: -4rem;
  z-index: 700;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .carrier__btn {
    right: 0%;
    bottom: -2.5rem;
  }
}
.wrap--recruit .carrier__btn:hover .carrier__btn-arrow::before {
  right: -4rem;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .carrier__btn:hover .carrier__btn-arrow::before {
    right: -2rem;
  }
}
.wrap--recruit .carrier__btn a {
  display: block;
  width: 36rem;
  height: 15rem;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .carrier__btn a {
    width: 20rem;
    height: 7.5rem;
  }
}
.wrap--recruit .carrier__btn-txt {
  font-size: 3.2rem;
  color: #000;
  font-weight: bold;
  position: absolute;
  bottom: 7rem;
  right: 46%;
  -webkit-transform: translate(50%, 0%);
          transform: translate(50%, 0%);
  letter-spacing: 0.1rem;
  width: 20rem;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .carrier__btn-txt {
    font-size: 2.1rem;
    bottom: 2.5rem;
    right: 37.3%;
    width: 110%;
  }
}
.wrap--recruit .carrier__btn-arrow {
  font-size: 2.2rem;
  color: #99AEB5;
  font-weight: bold;
  position: absolute;
  bottom: 3rem;
  right: 36%;
  -webkit-transform: translate(50%, 0%);
          transform: translate(50%, 0%);
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .carrier__btn-arrow {
    font-size: 1.3rem;
    font-weight: 400;
    bottom: 0;
    right: 49%;
  }
}
.wrap--recruit .carrier__btn-arrow::before {
  content: "";
  background-image: url(../images/page/recruit/img-recruit-arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 2.8rem;
  height: 2.8rem;
  position: absolute;
  top: 0.3rem;
  right: -3rem;
  -webkit-transform: translate(50%, 10%);
          transform: translate(50%, 10%);
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
}
@media screen and (max-width: 767px) {
  .wrap--recruit .carrier__btn-arrow::before {
    width: 2rem;
    height: 2rem;
    right: -2rem;
    top: 0;
  }
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

	■modifierを使用する場合
	【例】
	.top-sec__ttl{
		color: black;
		&--color{
			color: red;
		}
	}



----------------------------------------------------*/
.wrap--contact-body .contact-body {
  padding: 10rem 0 14rem;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body {
    padding: 5rem 0 5rem;
  }
}
.wrap--contact-body .contact-body__heading {
  font-size: 3.6rem;
  padding-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body__heading {
    font-size: 2.1rem;
    padding-bottom: 4rem;
  }
}
.wrap--contact-body .contact-body__main-txt {
  font-size: 1.6rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body__main-txt {
    font-size: 1.4rem;
  }
}
.wrap--contact-body .contact-body__main-group {
  width: 80rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body__main-group {
    width: auto;
  }
}
.wrap--contact-body .contact-body__wrap {
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body__wrap {
    padding-bottom: 3.5rem;
  }
}
.wrap--contact-body .contact-body__about-txt-link {
  color: #627f89;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body__about-txt-link {
    font-size: 1.4rem;
  }
}
.wrap--contact-body .contact-body__about-txt-link:hover {
  opacity: 0.5;
}
.wrap--contact-body .contact-body__heading-tel {
  position: relative;
  padding-left: 5rem;
  padding-bottom: 3rem;
  font-size: 2rem;
  border-bottom: solid 0.1rem #eceff1;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body__heading-tel {
    border-bottom: none;
    padding-bottom: 1.9rem;
    margin-bottom: 0;
    font-size: 1.8rem;
    padding-left: 4.5rem;
  }
}
.wrap--contact-body .contact-body__tel-img {
  position: absolute;
  top: 0;
  left: -1%;
  -webkit-transform: translate(50%, -7%);
          transform: translate(50%, -7%);
  width: 3rem;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body__tel-img {
    width: 3rem;
    left: -4%;
  }
}
.wrap--contact-body .contact-body__item {
  position: relative;
  padding-left: 2rem;
}
.wrap--contact-body .contact-body__item:nth-of-type(2) {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body__item:nth-of-type(2) {
    margin-top: 2.5rem;
  }
}
.wrap--contact-body .contact-body__item::before {
  content: "";
  width: 0.5rem;
  height: 6.4rem;
  background: #99aeb5;
  border-radius: 5rem;
  position: absolute;
  bottom: 0;
  left: 0%;
  -webkit-transform: translate(50%, 0%);
          transform: translate(50%, 0%);
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body__item::before {
    height: 8.4rem;
  }
}
.wrap--contact-body .contact-body__item-txt {
  font-size: 1.8rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body__item-txt {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.wrap--contact-body .contact-body__big {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body__big {
    font-size: 2.1rem;
    line-height: 1;
    font-weight: 500;
  }
}
.wrap--contact-body .contact-body__small {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body__small {
    font-size: 1.1rem;
    font-weight: 400;
  }
}
.wrap--contact-body .contact-body__ann {
  padding-top: 2.5rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body__ann {
    font-size: 1.2rem;
    padding-top: 2rem;
    text-indent: -1.2rem;
    padding-left: 1.2rem;
  }
}
.wrap--contact-body .contact-body .form-row {
  border-bottom: 0.1rem solid #eceff1;
  padding: 3rem 0;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body .form-row {
    padding: 2.5rem 0;
  }
}
.wrap--contact-body .contact-body .form-row:first-child {
  border-top: 1px solid #eceff1;
}
.wrap--contact-body .contact-body .form-row__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body .form-row__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.9rem;
  }
}
.wrap--contact-body .contact-body .form-row__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body .form-row__ttl {
    font-size: 1.4rem;
    line-height: 1;
  }
}
.wrap--contact-body .contact-body .form-row__required {
  background: #d60000;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  padding: 0 0.5rem;
  font-size: 1.4rem;
  margin-left: 1.5rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body .form-row__required {
    font-size: 1.1rem;
    padding: 0.5rem;
  }
}
.wrap--contact-body .contact-body .form-row__h {
  width: 32%;
  position: relative;
  padding-left: 1.8rem;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body .form-row__h {
    width: 100%;
  }
}
.wrap--contact-body .contact-body .form-row__h::before {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 2rem;
  border-radius: 3rem;
  background: #99aeb5;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body .form-row__h::before {
    width: 0.4rem;
    top: 50%;
    left: 0.5%;
  }
}
.wrap--contact-body .contact-body .form-row__b {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body .form-row__b {
    width: 100%;
  }
}
.wrap--contact-body .contact-body .form-row__b .wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required .wpcf7-list-item {
  display: block;
}
.wrap--contact-body .contact-body .form-row__b-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
.wrap--contact-body .contact-body .form-row__b-flex span {
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body .form-row__b-flex span {
    font-size: 1.4rem;
    gap: 1rem;
  }
}
.wrap--contact-body .contact-body .form-row .form-input {
  background: #eceff1;
  border: none;
  border-radius: 0.3rem;
  font-size: 1.8rem;
  height: 6rem;
  margin: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body .form-row .form-input {
    height: 4.5rem;
  }
}
.wrap--contact-body .contact-body .form-row .form-input--02 {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body .form-row .form-input--02 {
    width: 40%;
  }
}
.wrap--contact-body .contact-body .form-row .form-textarea {
  background: #eceff1;
  border: none;
  border-radius: 0.3rem;
  font-size: 1.8rem;
  padding: 1rem;
  margin: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body .form-row .form-textarea {
    font-size: 1.4rem;
    height: 12.5rem;
  }
}
.wrap--contact-body .contact-body .check_lb,
.wrap--contact-body .contact-body .mwform-checkbox-field {
  display: block;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body .check_lb,
  .wrap--contact-body .contact-body .mwform-checkbox-field {
    font-size: 1.4rem;
    text-indent: -3.8rem;
    padding-left: 5.5rem;
  }
}
.wrap--contact-body .contact-body .form-sec__res {
  padding: 5rem 0 12rem;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body .form-sec__res {
    padding: 2rem 0 6rem;
  }
}
.wrap--contact-body .contact-body .form-sec__res .form-sec__check-privacy {
  padding-right: 8.4rem;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body .form-sec__res .form-sec__check-privacy {
    padding-left: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body .form-sec__res .mwform-checkbox-field.vertical-item {
    padding: 0 1rem 0 3.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    line-height: 1.5;
  }
}
.wrap--contact-body .contact-body .form-sec__submit {
  position: relative;
  display: block;
  width: 32rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body .form-sec__submit {
    width: 80%;
  }
}
.wrap--contact-body .contact-body .form-sec__submit:before {
  content: "";
  background: url(../images/common/img-submit.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 50%;
  left: 72%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  z-index: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body .form-sec__submit:before {
    width: 3.5rem;
    height: 3.5rem;
    top: 50%;
    left: 72%;
  }
}
.wrap--contact-body .contact-body .form-sec__submit:hover::before {
  content: "";
  background: url(../images/common/img-submit-hov.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 50%;
  left: 72%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body .form-sec__submit:hover::before {
    width: 3.5rem;
    height: 3.5rem;
    top: 50%;
    left: 72%;
  }
}
.wrap--contact-body .contact-body .form-sec__submit--back {
  display: none;
}
.wrap--contact-body .contact-body .form-sec__submit-text {
  border-radius: 15rem;
  text-align: center;
  margin-top: 6rem;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #99aeb5;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  padding: 2.7rem 12.4rem 2.7rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 auto;
}
.wrap--contact-body .contact-body .form-sec__submit-text:hover {
  background: #eceff1;
  color: #627f89;
  border-radius: 15rem;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body .form-sec__submit-text {
    width: auto;
    margin-inline: auto;
    padding: 2rem 8.9rem 2rem;
  }
}
.wrap--contact-body .contact-body .form-sec__check-privacy {
  position: relative;
  margin: 0 auto;
  display: block;
  text-align: center;
  margin-bottom: 6rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 8.4rem;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body .form-sec__check-privacy {
    text-align: left;
    font-size: 1.3rem;
    margin-bottom: 3.7rem;
    max-width: 100%;
  }
}
.wrap--contact-body .contact-body .form-sec__required {
  background: #d60000;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  padding: 0 0.7rem;
  font-size: 1.4rem;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body .form-sec__required {
    font-size: 1.1rem;
    right: 1.5rem;
  }
}
.wrap--contact-body .contact-body input[type=checkbox] {
  position: relative;
  width: 2rem;
  height: 2rem;
  border: 0.1rem solid #000000;
  vertical-align: -0.8rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 1.5rem;
  cursor: pointer;
  border-radius: 0;
}
@media screen and (max-width: 767px) {
  .wrap--contact-body .contact-body input[type=checkbox] {
    margin-right: 1rem;
    top: 0;
  }
}
.wrap--contact-body .contact-body input[type=checkbox]:checked {
  background-color: #99aeb5;
}
.wrap--contact-body .contact-body input[type=checkbox]:checked:before {
  position: absolute;
  top: 0rem;
  left: 0.6rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 0.6rem;
  height: 1.4rem;
  border-right: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  content: "";
}
.wrap--contact-body .contact-body input[type=radio] {
  position: relative;
  width: 2rem;
  height: 2rem;
  border: 0.1rem solid #000;
  right: 0.5rem;
  top: -0.4rem;
  border-radius: 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.wrap--contact-body .contact-body input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: #829095;
  content: "";
}
.wrap--contact-body .wpcf7-form-control.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wrap--contact-body .wpcf7-form-control.wpcf7-acceptance input[type=checkbox] {
  margin-right: 0;
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output {
  display: none;
}

/* ---------- リキャプチャ関係 | ここから ---------- */
/* reCAPTCHA v3 表示位置 */
/* reCAPTCHA v3 のロゴを非表示にする */
.grecaptcha-badge {
  visibility: hidden;
}

.form-recaptcha {
  text-align: center;
  padding-top: 5rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .form-recaptcha {
    font-size: 1.1rem;
  }
}

.form-recaptcha__link {
  color: #627f89;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/* ---------- リキャプチャ関係 | ここまで ---------- */
/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

	■modifierを使用する場合
	【例】
	.top-sec__ttl{
		color: black;
		&--color{
			color: red;
		}
	}



----------------------------------------------------*/
.wrap--confilm-body .confilm-body {
  padding: 10rem 0 14rem;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body {
    padding: 5rem 0 5rem;
  }
}
.wrap--confilm-body .confilm-body__heading {
  font-size: 3.6rem;
  padding-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body__heading {
    font-size: 2.1rem;
    padding-bottom: 4rem;
  }
}
.wrap--confilm-body .confilm-body__main-group {
  width: 80rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body__main-group {
    width: auto;
  }
}
.wrap--confilm-body .confilm-body__wrap {
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body__wrap {
    padding-bottom: 2.3rem;
  }
}
.wrap--confilm-body .confilm-body__about-txt-link {
  color: #627f89;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body__about-txt-link {
    font-size: 1.4rem;
  }
}
.wrap--confilm-body .confilm-body__heading-tel {
  position: relative;
  padding-left: 5rem;
  padding-bottom: 3rem;
  font-size: 2rem;
  border-bottom: solid 0.1rem #eceff1;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body__heading-tel {
    border-bottom: none;
    padding-bottom: 1.9rem;
    margin-bottom: 0;
    font-size: 1.8rem;
    padding-left: 4.5rem;
  }
}
.wrap--confilm-body .confilm-body__tel-img {
  position: absolute;
  top: 0;
  left: -1%;
  -webkit-transform: translate(50%, -7%);
          transform: translate(50%, -7%);
  width: 3rem;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body__tel-img {
    width: 3rem;
    left: -4%;
  }
}
.wrap--confilm-body .confilm-body__item {
  position: relative;
  padding-left: 2rem;
}
.wrap--confilm-body .confilm-body__item:nth-of-type(2) {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body__item:nth-of-type(2) {
    margin-top: 2.5rem;
  }
}
.wrap--confilm-body .confilm-body__item::before {
  content: "";
  width: 0.5rem;
  height: 6.4rem;
  background: #99aeb5;
  border-radius: 5rem;
  position: absolute;
  bottom: 0;
  left: 0%;
  -webkit-transform: translate(50%, 0%);
          transform: translate(50%, 0%);
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body__item::before {
    height: 8.4rem;
  }
}
.wrap--confilm-body .confilm-body__item-txt {
  font-size: 1.8rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body__item-txt {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.wrap--confilm-body .confilm-body__big {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body__big {
    font-size: 2.1rem;
    line-height: 1;
    font-weight: 500;
  }
}
.wrap--confilm-body .confilm-body__small {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body__small {
    font-size: 1.1rem;
    font-weight: 400;
  }
}
.wrap--confilm-body .confilm-body__ann {
  padding-top: 2.5rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body__ann {
    font-size: 1.2rem;
    padding-top: 2rem;
    text-indent: -1.2rem;
    padding-left: 1.2rem;
  }
}
.wrap--confilm-body .confilm-body .form-row {
  border-bottom: 0.1rem solid #eceff1;
  padding: 3rem 0;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body .form-row {
    padding: 2.5rem 0;
  }
}
.wrap--confilm-body .confilm-body .form-row:first-child {
  border-top: 1px solid #eceff1;
}
.wrap--confilm-body .confilm-body .form-row__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body .form-row__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.9rem;
  }
}
.wrap--confilm-body .confilm-body .form-row__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body .form-row__ttl {
    font-size: 1.4rem;
    line-height: 1;
  }
}
.wrap--confilm-body .confilm-body .form-row__required {
  background: #d60000;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  padding: 0 0.5rem;
  font-size: 1.4rem;
  margin-left: 1.5rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body .form-row__required {
    font-size: 1.1rem;
    padding: 0.5rem;
  }
}
.wrap--confilm-body .confilm-body .form-row__h {
  width: 32%;
  position: relative;
  padding-left: 1.8rem;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body .form-row__h {
    width: 100%;
  }
}
.wrap--confilm-body .confilm-body .form-row__h::before {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 2rem;
  border-radius: 3rem;
  background: #99aeb5;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body .form-row__h::before {
    width: 0.4rem;
    top: 50%;
    left: 0.5%;
  }
}
.wrap--confilm-body .confilm-body .form-row__b {
  width: 60%;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body .form-row__b {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body .form-row__b--text {
    width: 100%;
  }
}
.wrap--confilm-body .confilm-body .form-row__b-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
.wrap--confilm-body .confilm-body .form-row__b-flex span {
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body .form-row__b-flex span {
    font-size: 1.4rem;
    gap: 1rem;
  }
}
.wrap--confilm-body .confilm-body .form-row .form-input {
  background: #eceff1;
  border: none;
  border-radius: 0.3rem;
  font-size: 1.8rem;
  height: 6rem;
  margin: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body .form-row .form-input {
    height: 4.5rem;
  }
}
.wrap--confilm-body .confilm-body .form-row .form-input--02 {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body .form-row .form-input--02 {
    width: 40%;
  }
}
.wrap--confilm-body .confilm-body .form-row .form-textarea {
  background: #eceff1;
  border: none;
  border-radius: 0.3rem;
  font-size: 1.8rem;
  padding: 1rem;
  margin: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body .form-row .form-textarea {
    font-size: 1.4rem;
    height: 12.5rem;
  }
}
.wrap--confilm-body .confilm-body .check_lb {
  display: block;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body .check_lb {
    font-size: 1.4rem;
    text-indent: -3.8rem;
    padding-left: 5.5rem;
  }
}
.wrap--confilm-body .confilm-body .form-sec__res {
  padding: 5rem 0 12rem;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body .form-sec__res {
    padding: 2rem 0 6rem;
  }
}
.wrap--confilm-body .confilm-body .form-sec__res .form-sec__check-privacy {
  padding-right: 3rem;
}
.wrap--confilm-body .confilm-body .form-sec__submit-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body .form-sec__submit-flex {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}
.wrap--confilm-body .confilm-body .form-sec__submit {
  position: relative;
  display: block;
  width: 32rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body .form-sec__submit {
    width: auto;
    margin: 0;
  }
}
.wrap--confilm-body .confilm-body .form-sec__submit p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wrap--confilm-body .confilm-body .form-sec__submit:before {
  content: "";
  background: url(../images/common/img-submit.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 50%;
  left: 72%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  z-index: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body .form-sec__submit:before {
    width: 2.5rem;
    height: 2.5rem;
    top: 50%;
    left: 69%;
  }
}
.wrap--confilm-body .confilm-body .form-sec__submit:hover::before {
  content: "";
  background: url(../images/common/img-submit-hov.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 50%;
  left: 72%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body .form-sec__submit:hover::before {
    width: 2.5rem;
    height: 2.5rem;
    top: 50%;
    left: 69%;
  }
}
.wrap--confilm-body .confilm-body .form-sec__submit--back {
  width: 32rem;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body .form-sec__submit--back {
    width: auto;
  }
}
.wrap--confilm-body .confilm-body .form-sec__submit--back:before {
  content: "";
  background: url(../images/common/img-submit.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 50%;
  left: 72%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  z-index: 100;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body .form-sec__submit--back:before {
    width: 2.5rem;
    height: 2.5rem;
    top: 50%;
    left: 68%;
  }
}
.wrap--confilm-body .confilm-body .form-sec__submit--back:hover::before {
  content: "";
  background: url(../images/common/img-submit-back-hov.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 50%;
  left: 72%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body .form-sec__submit--back:hover::before {
    width: 2.5rem;
    height: 2.5rem;
    top: 50%;
    left: 68%;
  }
}
.wrap--confilm-body .confilm-body .form-sec__submit-text {
  border-radius: 15rem;
  text-align: center;
  margin-top: 6rem;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #627f89;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  padding: 2.7rem 12.4rem 2.7rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 auto;
}
.wrap--confilm-body .confilm-body .form-sec__submit-text:hover {
  background: #eceff1;
  color: #627f89;
  border-radius: 15rem;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body .form-sec__submit-text {
    width: auto;
    margin-inline: auto;
    padding: 2rem 7rem 2rem 2.5rem;
    font-size: 1.4rem;
  }
}
.wrap--confilm-body .confilm-body .form-sec__submit-text--back {
  border-radius: 15rem;
  text-align: center;
  margin-top: 6rem;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #99aeb5;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  padding: 2.7rem 12.4rem 2.7rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 auto;
  width: 30.4rem;
}
.wrap--confilm-body .confilm-body .form-sec__submit-text--back:hover {
  background: #eceff1;
  color: #99aeb5;
  border-radius: 15rem;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body .form-sec__submit-text--back {
    width: auto;
    margin-inline: auto;
    padding: 2rem 9rem 2rem 2.5rem;
    font-size: 1.4rem;
  }
}
.wrap--confilm-body .confilm-body .form-sec__check-privacy {
  position: relative;
  margin: 0 auto;
  display: block;
  text-align: center;
  margin-bottom: 6rem;
  max-width: 40%;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body .form-sec__check-privacy {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 3.7rem;
    max-width: 100%;
  }
}
.wrap--confilm-body .confilm-body .form-sec__required {
  background: #d60000;
  border-radius: 3px;
  color: #fff;
  display: inline-block;
  padding: 0 0.5rem;
  font-size: 1.4rem;
  position: absolute;
  top: 50%;
  right: -10%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .wrap--confilm-body .confilm-body .form-sec__required {
    font-size: 1.1rem;
    right: -14.5%;
  }
}
.wrap--confilm-body .confilm-body input[type=checkbox] {
  position: relative;
  width: 2rem;
  height: 2rem;
  border: 0.1rem solid #000000;
  vertical-align: -0.8rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 1.5rem;
  cursor: pointer;
  border-radius: 0;
}
.wrap--confilm-body .confilm-body input[type=checkbox]:checked {
  background-color: #99aeb5;
}
.wrap--confilm-body .confilm-body input[type=checkbox]:checked:before {
  position: absolute;
  top: 0rem;
  left: 0.6rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 0.6rem;
  height: 1.4rem;
  border-right: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  content: "";
}
.wrap--confilm-body .confilm-body input[type=radio] {
  position: relative;
  width: 2rem;
  height: 2rem;
  border: 0.1rem solid #000;
  right: 0.5rem;
  top: -0.4rem;
  border-radius: 50%;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.wrap--confilm-body .confilm-body input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  background: #829095;
  content: "";
}

.wpcf7-not-valid-tip.error {
  display: none;
}

span.wpcf7-spinner {
  display: none;
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

	■modifierを使用する場合
	【例】
	.top-sec__ttl{
		color: black;
		&--color{
			color: red;
		}
	}



----------------------------------------------------*/
.wrap--thanks .thanks {
  padding: 30rem 0 26rem;
}
@media screen and (max-width: 767px) {
  .wrap--thanks .thanks {
    padding: 5rem 0 6rem;
  }
}
.wrap--thanks .thanks__wrap {
  text-align: center;
  border-bottom: solid #ECEFF1 0.1rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .wrap--thanks .thanks__wrap {
    padding-bottom: 4.5rem;
  }
}
.wrap--thanks .thanks__heading {
  font-size: 9rem;
  color: #ECEFF1;
  padding-bottom: 6.7rem;
  text-align: center;
  font-family: "soleil", sans-serif;
  font-weight: 300;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .wrap--thanks .thanks__heading {
    font-size: 4.5rem;
    padding-bottom: 3rem;
    padding-top: 5rem;
  }
}
.wrap--thanks .thanks__sub-heading {
  font-size: 3.6rem;
  text-align: center;
  padding-bottom: 5rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 767px) {
  .wrap--thanks .thanks__sub-heading {
    font-size: 2.1rem;
    line-height: 1.6;
    padding-bottom: 3rem;
  }
}
.wrap--thanks .thanks__main-txt {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--thanks .thanks__main-txt {
    font-size: 1.4rem;
  }
}
.wrap--thanks .thanks__main-txt p:first-child {
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .wrap--thanks .thanks__main-txt p:first-child {
    padding-bottom: 1.9rem;
  }
}
.wrap--thanks .thanks__contact {
  text-align: center;
  padding: 6rem 0 0;
}
@media screen and (max-width: 767px) {
  .wrap--thanks .thanks__contact {
    text-align: left;
    padding: 4.5rem 0 0;
  }
}
.wrap--thanks .thanks__contact-heading {
  font-size: 2rem;
  padding-bottom: 5rem;
  letter-spacing: 0.2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--thanks .thanks__contact-heading {
    padding-left: 4.5rem;
    padding-bottom: 1.9rem;
    font-size: 1.8rem;
  }
}
.wrap--thanks .thanks__contact-img {
  position: absolute;
  top: 14%;
  left: 37%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 3.5rem;
  height: 2.9rem;
}
@media screen and (max-width: 767px) {
  .wrap--thanks .thanks__contact-img {
    top: 22%;
    left: 4%;
    width: 3rem;
  }
}
.wrap--thanks .thanks__contact-item {
  font-size: 1.8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--thanks .thanks__contact-item {
    font-size: 1.4rem;
    padding-left: 1.8rem;
    line-height: 1.6;
  }
}
.wrap--thanks .thanks__contact-item p:nth-of-type(2) {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .wrap--thanks .thanks__contact-item p:nth-of-type(2) {
    font-size: 2.1rem;
    line-height: 1;
    padding-top: 0.5rem;
    font-weight: 500;
  }
}
.wrap--thanks .thanks__contact-item::before {
  content: "";
  position: absolute;
  background: #99AEB5;
  width: 0.5rem;
  height: 6.5rem;
  top: 50%;
  left: 22%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--thanks .thanks__contact-item::before {
    width: 0.5rem;
    height: 9rem;
    top: 50%;
    left: 0.5%;
  }
}
.wrap--thanks .thanks__contact-item::after {
  content: "";
  position: absolute;
  background: #99AEB5;
  width: 0.5rem;
  height: 6.5rem;
  top: 50%;
  right: 21%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--thanks .thanks__contact-item::after {
    content: none;
  }
}
.wrap--thanks .thanks__contact-item--01 {
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--thanks .thanks__contact-item--01 {
    margin-bottom: 2.5rem;
  }
}
.wrap--thanks .thanks__contact-item--02 {
  margin-top: 2.3rem;
}
@media screen and (max-width: 767px) {
  .wrap--thanks .thanks__contact-item--02 {
    margin-top: 0;
  }
}
.wrap--thanks .thanks__contact-line {
  border-bottom: solid #ECEFF1 0.1rem;
  width: 62.4rem;
  height: 0.1rem;
  margin: 0 auto;
}
.wrap--thanks .thanks__contact-time {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .wrap--thanks .thanks__contact-time {
    font-size: 1.1rem;
    font-weight: 400;
  }
}
.wrap--thanks .thanks__main-group {
  width: 80rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrap--thanks .thanks__main-group {
    width: auto;
  }
}
.wrap--thanks .thanks__contact-ann {
  padding-top: 2.5rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .wrap--thanks .thanks__contact-ann {
    font-size: 1.2rem;
    padding-top: 2rem;
    text-indent: -1.2rem;
    padding-left: 1.2rem;
  }
}
.wrap--thanks .thanks__contact-back {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .wrap--thanks .thanks__contact-back {
    margin-top: 3rem;
  }
}
.wrap--thanks .thanks__back-btn {
  border-radius: 15rem;
  text-align: center;
  outline: none;
  background: #99AEB5;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  padding: 2.7rem 12.4rem 2.7rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 auto;
  letter-spacing: 0.2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--thanks .thanks__back-btn {
    position: relative;
    width: 22.5rem;
    display: block;
    font-size: 1.4rem;
    padding: 2rem 0;
  }
}
.wrap--thanks .thanks__back-btn::before {
  content: "";
  position: absolute;
  background: url(../images/page/thanks/img-thanks-arrow.png) no-repeat center center;
  background-size: contain;
  width: 4rem;
  height: 4rem;
  top: 50%;
  right: 2%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .wrap--thanks .thanks__back-btn::before {
    width: 3rem;
    height: 3rem;
  }
}
.wrap--thanks .thanks__back-btn:hover::before {
  content: "";
  position: absolute;
  background: url(../images/page/thanks/img-thanks-arrow-hov.png) no-repeat center center;
  background-size: contain;
  width: 4rem;
  height: 4rem;
  top: 50%;
  right: 2%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--thanks .thanks__back-btn:hover::before {
    width: 3rem;
    height: 3rem;
  }
}
.wrap--thanks .thanks__back-btn:hover {
  background: #ECEFF1;
  color: #627F89;
  border-radius: 15rem;
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

	■modifierを使用する場合
	【例】
	.top-sec__ttl{
		color: black;

		&--color{
			color: red;
		}

	}

----------------------------------------------------*/
.wrap--privacy .privacy {
  padding: 15rem 0 0;
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy {
    padding: 5.5rem 0 0;
  }
}
.wrap--privacy .privacy__wrap {
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy__wrap {
    padding-bottom: 4.5rem;
  }
}
.wrap--privacy .privacy__heading {
  margin: 0 auto;
  font-size: 3.6rem;
  letter-spacing: 0.1rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy__heading {
    font-size: 2.1rem;
    letter-spacing: 0.4rem;
    text-align: center;
    padding-bottom: 3rem;
  }
}
.wrap--privacy .privacy__related-title {
  color: #627F89;
  font-size: 1.8rem;
}
.wrap--privacy .privacy__txt {
  width: 80rem;
  padding-left: 4rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy__txt {
    font-size: 2.1rem;
    width: auto;
    padding-left: 0;
    font-size: 1.4rem;
  }
}
.wrap--privacy .privacy__common {
  padding-bottom: 11rem;
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy__common {
    padding-bottom: 4.5rem;
  }
}
.wrap--privacy .privacy__common:nth-of-type(8) {
  padding-bottom: 0;
}
.wrap--privacy .privacy__common--white {
  padding-top: 9rem;
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy__common--white {
    padding-top: 4.5rem;
  }
}
.wrap--privacy .privacy__common--gray {
  background: #F7F8F9;
  padding-top: 9rem;
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy__common--gray {
    padding-top: 4.5rem;
  }
}
.wrap--privacy .privacy__about {
  width: 108rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy__about {
    width: 85%;
    margin: 0 auto;
  }
}
.wrap--privacy .privacy__about--02 {
  padding-left: 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy__about--02 {
    padding-left: 0;
  }
}
.wrap--privacy .privacy__about-heading {
  position: relative;
  width: 100rem;
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy__about-heading {
    width: auto;
    margin: 0 auto;
  }
}
.wrap--privacy .privacy__about-num {
  background: #627F89;
  color: #fff;
  width: 5.4rem;
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy__about-num {
    width: 3rem;
    height: 3rem;
    font-size: 2.1rem;
  }
}
.wrap--privacy .privacy__title {
  padding-top: 0.8rem;
  padding-left: 8rem;
  padding-bottom: 0;
  border-bottom: solid 0.2rem rgba(98, 127, 137, 0.5);
  font-size: 2rem;
  padding-bottom: 1.8rem;
  color: #627F89;
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy__title {
    font-size: 1.6rem;
    padding-left: 4rem;
    padding-bottom: 0;
    border-bottom: solid 0.2rem rgba(98, 127, 137, 0.5);
    padding-bottom: 1.5rem;
    padding-top: 0;
    color: #627F89;
  }
}
.wrap--privacy .privacy__about-txt {
  width: 80rem;
  padding: 3rem 0 0 4rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy__about-txt {
    width: auto;
    margin: 0 auto;
    padding: 2.5rem 0 0 0;
    font-size: 1.4rem;
  }
}
.wrap--privacy .privacy__about-txt--02 {
  counter-reset: practice 0;
  list-style: none; /* 標準のスタイルは消す */
}
.wrap--privacy .privacy__about-txt--02 p {
  text-indent: -4.2rem;
  margin-left: 4.2rem;
  counter-increment: practice;
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy__about-txt--02 p {
    text-indent: -3.8rem;
    margin-left: 4.2rem;
  }
}
.wrap--privacy .privacy__about-txt--02 p:not(:first-child) {
  padding-top: 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy__about-txt--02 p:not(:first-child) {
    padding-top: 3.3rem;
  }
}
.wrap--privacy .privacy__about-txt--02 p::before {
  content: counter(practice) "　|　";
}
.wrap--privacy .privacy__about-txt--03 {
  text-indent: -2.2rem;
  padding-left: 6rem;
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy__about-txt--03 {
    text-indent: -2rem;
    padding-left: 2rem;
  }
}
.wrap--privacy .privacy__about-txt--05 li {
  text-indent: -1.7rem;
  padding-left: 3.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy__about-txt--05 li {
    text-indent: -1.3rem;
    padding-left: 2.9rem;
  }
}
.wrap--privacy .privacy__related-title {
  padding-bottom: 3rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy__related-title {
    font-size: 1.6rem;
    padding-bottom: 2rem;
  }
}
.wrap--privacy .privacy__related-txt {
  width: 60rem;
  padding-bottom: 4rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy__related-txt {
    width: 100%;
    font-size: 1.4rem;
    padding-bottom: 2rem;
  }
}
.wrap--privacy .privacy__related-address {
  position: relative;
  padding-left: 3rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy__related-address {
    padding-left: 2rem;
    font-size: 1.4rem;
  }
}
.wrap--privacy .privacy__related-address::before {
  content: "";
  position: absolute;
  width: 0.1rem;
  height: 13.4rem;
  background-color: #627F89;
  left: 0;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy__related-address::before {
    content: "";
    position: absolute;
    width: 0.1rem;
    height: 18rem;
    background-color: #627F89;
    left: 1%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy .table-container {
    overflow-x: auto;
  }
}
.wrap--privacy .privacy .scroll-hint-icon {
  top: 5%;
  left: 36%;
  background: none;
}
.wrap--privacy .privacy .scroll-hint-icon:before {
  background-image: none;
}
.wrap--privacy .privacy .scroll-hint-icon:after {
  background-image: none;
}
.wrap--privacy .privacy .scroll-hint-icon-white:before {
  background-image: none;
}
.wrap--privacy .privacy .scroll-hint-icon-white:after {
  background-image: none;
}
.wrap--privacy .privacy .scroll-hint-text {
  display: none;
}
.wrap--privacy .privacy .scroll-hint-icon-custom {
  background-image: url("../images/page/privacy/img-scroll-hint.png");
  /* 画像のサイズや位置を調整 */
  width: 6rem;
  height: 6rem;
  background-size: cover; /* 画像を要素にフィットさせる */
  background-repeat: no-repeat;
  background-position: top center;
  border-radius: 50%;
}
.wrap--privacy .privacy table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 86rem;
  color: #000;
  margin-top: 4rem;
  margin-left: 3rem;
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy table {
    width: 50rem;
    margin-left: 0;
  }
}
.wrap--privacy .privacy table tr {
  background-color: #fff;
  padding: 0.35em;
  border-bottom: 0.1rem solid #99AEB5;
}
.wrap--privacy .privacy table tr:last-child {
  border-bottom: none;
}
.wrap--privacy .privacy th, .wrap--privacy .privacy td {
  padding: 1em;
  text-align: left;
  vertical-align: middle;
}
.wrap--privacy .privacy .number {
  width: 2%;
  text-align: center;
  color: #627F89;
  font-size: 2rem;
  font-family: "soleil", sans-serif;
  font-weight: 200;
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy .number {
    width: 1%;
    font-size: 1.4rem;
    padding: 0.5rem;
  }
}
.wrap--privacy .privacy .txt, .wrap--privacy .privacy .price {
  width: 20%;
  position: relative;
  padding: 1em 3rem 1em 4.2rem;
  text-align: left;
  border-left: solid 0.1rem #99AEB5;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy .txt, .wrap--privacy .privacy .price {
    font-size: 1.4rem;
    padding: 0.5em 2rem 0.5em 2rem;
  }
}
.wrap--privacy .privacy .txt::before, .wrap--privacy .privacy .price::before {
  content: "";
  background-color: #fff;
  width: 1rem;
  height: 1rem;
  left: -0.5rem;
  bottom: 0.5rem;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  position: absolute;
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy .txt::before, .wrap--privacy .privacy .price::before {
    content: "";
    background-color: #fff;
    width: 0.7rem;
    height: 0.5rem;
    left: -0.4rem;
    bottom: 0.3rem;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    position: absolute;
  }
}
.wrap--privacy .privacy .txt::after, .wrap--privacy .privacy .price::after {
  content: "";
  background-color: #fff;
  width: 1rem;
  height: 1rem;
  left: -1rem;
  top: -0.5rem;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  position: absolute;
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy .txt::after, .wrap--privacy .privacy .price::after {
    content: "";
    background-color: #fff;
    width: 0.7rem;
    height: 0.7rem;
    left: -0.4rem;
    top: -0.32rem;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    position: absolute;
  }
}
.wrap--privacy .privacy .price ul {
  text-indent: -1.6rem;
  padding-left: 1.6rem;
}
.wrap--privacy .privacy .color01 {
  background-color: #99AEB5;
  color: #fff;
  border-right: 1rem solid #fff;
  text-align: center;
  padding: 0 !important;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy .color01 {
    font-size: 1.4rem;
  }
}
.wrap--privacy .privacy .color02 {
  background-color: #627F89;
  color: #fff;
  text-align: center;
  padding: 0.5rem !important;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .wrap--privacy .privacy .color02 {
    font-size: 1.4rem;
  }
}
.wrap--privacy .privacy__about-download {
  color: #99AEB5;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.wrap--privacy .privacy__about-download:hover {
  opacity: 0.5;
}

/*----------------------------------------------------

  各ページの独自モジュールスタイルのCSS。

  【記述ルール】
  { ページ名(top, about等) }○○○○

  階層はルートクラスより、三階層までが基本
  【例】
  .top-sec .top-sec__ttl span {   
  }
  ※CSSに展開した場合

  ■modifierを使用する場合
  【例】
  .top-sec__ttl{
    color: black;
    &--color{
      color: red;
    }
  }



----------------------------------------------------*/
.wrap--abu .abu__wrap {
  padding: 30rem 0 0;
  background: #fff;
  margin-bottom: -2px;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__wrap {
    padding: 10.5rem 0 0;
  }
}
.wrap--abu .abu__heading {
  font-size: 3.2rem;
  font-weight: bold;
  padding-bottom: 7rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__heading {
    font-size: 2.1rem;
    padding-bottom: 2.5rem;
  }
}
.wrap--abu .abu__subheading {
  text-align: center;
}
.wrap--abu .abu__subheading p {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  background: #1683a8;
  display: inline-block;
  margin: 0 auto;
  padding: 0.8rem 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__subheading p {
    font-size: 1.4rem;
    padding: 0.5rem 1.5rem;
    letter-spacing: 0.1rem;
  }
}
.wrap--abu .abu__maintenance {
  padding: 10rem 0 12rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__maintenance {
    padding: 3.5rem 0 4.5rem;
  }
}
.wrap--abu .abu__maintenance-heading {
  font-size: 2.8rem;
  padding-bottom: 5rem;
  letter-spacing: 0.2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__maintenance-heading {
    font-size: 1.6rem;
    padding-bottom: 2.5rem;
  }
}
.wrap--abu .abu__maintenance-txt {
  width: 80rem;
  font-size: 1.6rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__maintenance-txt {
    width: auto;
    font-size: 1.4rem;
  }
}
.wrap--abu .abu__point {
  background: #eceff1;
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__point {
    padding: 4.5rem 0 4.5rem;
  }
}
.wrap--abu .abu__point-heading {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  padding-bottom: 7rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__point-heading {
    padding-bottom: 2.5rem;
    font-size: 1.8rem;
  }
}
.wrap--abu .abu__point-txt {
  width: 80rem;
  margin: 0 auto;
  padding-bottom: 7rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__point-txt {
    width: auto;
    padding-bottom: 3.5rem;
    font-size: 1.4rem;
  }
}
.wrap--abu .abu__point-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 7rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__point-list {
    gap: 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrap--abu .abu__point-item {
  width: 30rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__point-item {
    padding-bottom: 3rem;
    border-bottom: solid 0.1rem #65818a;
  }
  .wrap--abu .abu__point-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.wrap--abu .abu__point-item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* 中央寄せのために追加 */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 中央寄せのために追加 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 中央寄せのために追加 */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__point-item-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding-bottom: 2.5rem;
  }
}
.wrap--abu .abu__point-img {
  width: 26rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__point-img {
    width: 14rem;
    padding-bottom: 0;
  }
}
.wrap--abu .abu__point-ttl {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__point-ttl {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__point-small {
    font-size: 1.3rem;
  }
}
.wrap--abu .abu__point-item-txt {
  font-size: 1.6rem;
  margin-bottom: auto;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__point-item-txt {
    font-size: 1.4rem;
  }
}
.wrap--abu .abu__point-ttl {
  color: #627f89;
  font-size: 2.4rem;
  font-weight: bold;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__point-ttl {
    font-size: 1.6rem;
    width: 85%;
    padding-bottom: 0;
    text-align: left;
    padding-left: 2rem;
  }
}
.wrap--abu .abu .parallax {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  width: 100vw;
  height: 600px;
}
.wrap--abu .abu .parallax::before {
  background-image: url(../images/page/abu/img-abu-bg.jpg);
  background-position: top -20% center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu .parallax::before {
    background-image: url(../images/page/abu/img-abu-bg-sp.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
  }
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu .parallax {
    padding: 20rem 0;
    height: auto;
  }
}
.wrap--abu .abu__type {
  padding: 12rem 0 10rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__type {
    padding: 4rem 0 6rem;
  }
}
.wrap--abu .abu__type-heading {
  background: #627f89;
  padding: 3rem 0 3rem 4rem;
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: 0.2rem;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__type-heading {
    font-size: 1.6rem;
    padding: 1.4rem 0 1.4rem 2.5rem;
  }
}
.wrap--abu .abu__type-heading::before {
  content: "";
  position: absolute;
  background: #99aeb5;
  width: 10px;
  height: 30px;
  left: 5px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.wrap--abu .abu__type-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: solid 0.1rem #dedede;
  padding: 2.5rem 0;
}
.wrap--abu .abu__type-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__type-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem 0;
  }
}
.wrap--abu .abu__type-item-ttl {
  width: 30%;
  padding-left: 4rem;
  color: #627f89;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  position: relative;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__type-item-ttl {
    margin-left: 0;
    padding-left: 0;
    width: 100%;
    font-size: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.wrap--abu .abu__type-item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem 12rem;
  border-left: solid 0.1rem #eceff1;
  width: 88%;
  padding: 1rem 0 1rem 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__type-item-list {
    border-left: none;
    padding: 0;
    margin-left: -3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrap--abu .abu__type-item-txt01 {
  width: 30rem;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__type-item-txt01 {
    width: auto;
  }
}
.wrap--abu .abu__type-item-name {
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__type-item-name {
    font-size: 1.4rem;
    padding-left: 1rem;
  }
}
.wrap--abu .abu__type-item-name::before {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 2rem;
  background: #99aeb5;
  border-radius: 50px;
  left: -3%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__type-item-name::before {
    left: 0%;
  }
}
.wrap--abu .abu__type-item-txt {
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__type-item-txt {
    font-size: 1.4rem;
  }
}
.wrap--abu .abu__intro {
  background: #fff;
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__intro {
    padding-bottom: 6rem;
  }
}
.wrap--abu .abu__intro-wrap {
  border-top: solid 1rem #eceff1;
  border-bottom: solid 1rem #eceff1;
  padding: 9rem 0 9rem;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__intro-wrap {
    width: 85%;
    padding: 2rem 0;
    margin-bottom: 0;
    border-top: solid 0.5rem #eceff1;
    border-bottom: solid 0.5rem #eceff1;
    padding: 4rem 0 2.5rem;
  }
}
.wrap--abu .abu__intro-wrap--02 {
  margin-bottom: 0;
  padding: 9rem 0 9rem;
  border-top: solid 1rem #fff;
  border-bottom: solid 1rem #fff;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__intro-wrap--02 {
    padding: 2rem 0;
    margin-bottom: 0;
    border-top: solid 0.5rem #fff;
    border-bottom: solid 0.5rem #fff;
    padding: 4rem 0 2.5rem;
  }
}
.wrap--abu .abu__intro-heading {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
  padding-bottom: 5rem;
  text-align: center;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__intro-heading {
    font-size: 1.8rem;
  }
}
.wrap--abu .abu__intro-heading h3 {
  position: relative;
  z-index: 10;
}
.wrap--abu .abu__intro-heading::before {
  content: "CASE STUDY";
  font-size: 10rem;
  letter-spacing: 1rem;
  font-family: "soleil", sans-serif;
  font-weight: 500;
  position: absolute;
  color: #eceff1;
  right: -15%;
  top: 13%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__intro-heading::before {
    font-size: 4.5rem;
    right: -50%;
    letter-spacing: 0.5rem;
  }
}
.wrap--abu .abu__intro-heading--white::before {
  content: "CASE STUDY";
  font-size: 10rem;
  letter-spacing: 1rem;
  font-family: "soleil", sans-serif;
  font-weight: 500;
  position: absolute;
  color: #fff;
  right: -15%;
  top: 13%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__intro-heading--white::before {
    font-size: 4.5rem;
    right: -50%;
    letter-spacing: 0.5rem;
  }
}
.wrap--abu .abu__intro-txt {
  text-align: center;
  padding-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__intro-txt {
    text-align: left;
    padding-bottom: 3rem;
  }
}
.wrap--abu .abu__intro-case {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__intro-case {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
.wrap--abu .abu__intro-item {
  background: #eceff1;
  width: 52rem;
  padding-left: 6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__intro-item {
    width: auto;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.wrap--abu .abu__intro-item::before {
  content: "";
  position: absolute;
  background: #627f89;
  width: 0.5rem;
  height: 3rem;
  left: 0.6%;
  top: 18%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__intro-item::before {
    width: 0.3rem;
    height: 1.7rem;
    left: 0.6%;
    top: 5.5rem;
  }
}
.wrap--abu .abu__intro-item::after {
  content: "";
  position: absolute;
  background: #000;
  width: 0.5rem;
  height: 6.2rem;
  left: 0.6%;
  top: 12.5rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__intro-item::after {
    width: 0.3rem;
    height: 4rem;
    left: 0.6%;
    top: 10rem;
  }
}
.wrap--abu .abu__intro-item--white {
  background: #fff;
}
.wrap--abu .abu__intro-num {
  color: #99aeb5;
  font-size: 1.4rem;
  font-family: "soleil", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1rem;
  position: absolute;
  left: 13%;
  top: 4%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__intro-num {
    font-size: 1rem;
    left: 16%;
  }
}
.wrap--abu .abu__intro-group {
  padding: 4.4rem 0 3rem 0;
  width: 40rem;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__intro-group {
    width: auto;
  }
}
.wrap--abu .abu__intro-pref {
  background: #627f89;
  color: #fff;
  width: 12rem;
  text-align: center;
  border-radius: 50px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__intro-pref {
    width: 10rem;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
}
.wrap--abu .abu__intro-ttl {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  padding-bottom: 3rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .wrap--abu .abu__intro-ttl {
    font-size: 1.6rem;
    padding-bottom: 2.5rem;
  }
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

	■modifierを使用する場合
	【例】
	.top-sec__ttl{
		color: black;
		&--color{
			color: red;
		}
	}



----------------------------------------------------*/
.wrap--asp .asp__wrap {
  padding: 30rem 0 0;
  background: #FFF;
  margin-bottom: -2px;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__wrap {
    padding: 10.5rem 0 0;
  }
}
.wrap--asp .asp__heading {
  font-size: 3.2rem;
  font-weight: bold;
  padding-bottom: 7rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__heading {
    font-size: 2.1rem;
    padding-bottom: 2.5rem;
  }
}
.wrap--asp .asp__subheading {
  text-align: center;
}
.wrap--asp .asp__subheading p {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  background: #1683A8;
  display: inline-block;
  margin: 0 auto;
  padding: 0.8rem 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__subheading p {
    font-size: 1.4rem;
    padding: 0.5rem 1.5rem;
    letter-spacing: 0.1rem;
  }
}
.wrap--asp .asp__expense {
  padding: 10rem 0 12rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__expense {
    padding: 3.5rem 0 4.5rem;
  }
}
.wrap--asp .asp__expense-heading {
  font-size: 2.8rem;
  padding-bottom: 5rem;
  letter-spacing: 0.2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__expense-heading {
    font-size: 1.6rem;
    padding-bottom: 2.5rem;
  }
}
.wrap--asp .asp__expense-txt {
  width: 80rem;
  font-size: 1.6rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__expense-txt {
    width: auto;
    font-size: 1.4rem;
  }
}
.wrap--asp .asp__expense-txt02 {
  width: 80rem;
  font-size: 1.2rem;
  padding-top: 0.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__expense-txt02 {
    width: auto;
    font-size: 1.2rem;
    padding-top: 1rem;
  }
}
.wrap--asp .asp__plan {
  background: #ECEFF1;
  padding: 12rem 0 12rem;
}
.wrap--asp .asp__plan--white {
  background: #fff;
  padding: 12rem 0 12rem;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__plan {
    padding: 4rem 0 3rem;
  }
}
.wrap--asp .asp__plan-heading {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  padding-bottom: 7rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__plan-heading {
    padding-bottom: 2.5rem;
    font-size: 1.8rem;
  }
}
.wrap--asp .asp__plan-txt {
  width: 80rem;
  margin: 0 auto;
  padding-bottom: 9rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__plan-txt {
    width: auto;
    padding-bottom: 3.5rem;
    font-size: 1.4rem;
  }
}
.wrap--asp .asp__plan-common-heading {
  background: #99AEB5;
  color: #fff;
  font-size: 2.4rem;
  padding: 1.7rem 0 1.7rem 4rem;
  position: relative;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__plan-common-heading {
    margin-bottom: 2.5rem;
    font-size: 1.6rem;
    padding: 1.3rem 0 1.3rem 2.6rem;
  }
}
.wrap--asp .asp__plan-common-heading::before {
  content: "";
  position: absolute;
  background: #627F89;
  width: 5px;
  height: 50px;
  left: 2%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__plan-common-heading::before {
    width: 5px;
    height: 40px;
    left: 4%;
  }
}
.wrap--asp .asp__plan-common-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__plan-common-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 3rem;
  }
}
.wrap--asp .asp__plan-common-recommend {
  width: 48rem;
  font-size: 2rem;
  letter-spacing: 0.2rem;
  padding-left: 12rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__plan-common-recommend {
    width: 100%;
    font-size: 1.5rem;
    padding-left: 7rem;
  }
}
.wrap--asp .asp__plan-common-recommend::before {
  position: absolute;
  content: "";
  background: url(../images/common/img-plan-common-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 6rem;
  height: 6rem;
  left: 15%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__plan-common-recommend::before {
    width: 4.5rem;
    height: 4.5rem;
    left: 10%;
  }
}
.wrap--asp .asp__plan-common-txt {
  width: 57rem;
  border-left: solid 1px #949695;
  padding-left: 5rem;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__plan-common-txt {
    width: 100%;
    font-size: 1.4rem;
    padding-left: 0;
    border-left: 0;
    padding-top: 2.5rem;
  }
}
.wrap--asp .asp__plan-common-cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.wrap--asp .asp__plan-common-cont-wrap {
  width: 25.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: solid 1px #949695;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__plan-common-cont-wrap {
    width: 14.5rem;
    border-bottom: none;
  }
}
.wrap--asp .asp__plan-common-cont-heading {
  background: #fff;
  color: #000;
  font-size: 1.6rem;
  padding: 1.3rem 0;
  letter-spacing: 0.2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__plan-common-cont-heading {
    font-size: 1.4rem;
    padding: 0.7rem 0;
  }
}
.wrap--asp .asp__plan-common-cont-heading--gray {
  background: #ECEFF1;
}
.wrap--asp .asp__plan-common-cont-txt {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.6rem;
  height: 9.5rem;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__plan-common-cont-txt {
    font-size: 1.4rem;
    height: 7.5rem;
  }
}
.wrap--asp .asp .parallax {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #FFF;
  width: 100vw;
  height: 600px;
}
.wrap--asp .asp .parallax::before {
  background-image: url(../images/page/asp/img-asp-bg.jpg);
  background-position: top -20% center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp .parallax::before {
    background-image: url(../images/page/asp/img-asp-bg-sp.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
  }
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp .parallax {
    padding: 20rem 0;
    height: auto;
  }
}
.wrap--asp .asp__type {
  padding: 12rem 0 10rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__type {
    padding: 4rem 0 6rem;
  }
}
.wrap--asp .asp__type-heading {
  background: #627F89;
  padding: 3rem 0 3rem 4rem;
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: 0.2rem;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__type-heading {
    font-size: 1.6rem;
    padding: 1.4rem 0 1.4rem 2.5rem;
  }
}
.wrap--asp .asp__type-heading::before {
  content: "";
  position: absolute;
  background: #99AEB5;
  width: 10px;
  height: 30px;
  left: 5px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.wrap--asp .asp__type-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: solid 0.1rem #DEDEDE;
  padding: 2.5rem 0;
}
.wrap--asp .asp__type-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__type-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem 0;
  }
}
.wrap--asp .asp__type-item-ttl {
  width: 30%;
  padding-left: 4rem;
  color: #627F89;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  position: relative;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__type-item-ttl {
    margin-left: 0;
    padding-left: 0;
    width: 100%;
    font-size: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.wrap--asp .asp__type-item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem 12rem;
  border-left: solid 0.1rem #ECEFF1;
  width: 88%;
  padding: 1rem 0 1rem 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__type-item-list {
    border-left: none;
    padding: 0;
    margin-left: -3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrap--asp .asp__type-item-txt01 {
  width: 30rem;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__type-item-txt01 {
    width: auto;
  }
}
.wrap--asp .asp__type-item-name {
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__type-item-name {
    font-size: 1.4rem;
    padding-left: 1rem;
  }
}
.wrap--asp .asp__type-item-name::before {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 2rem;
  background: #99AEB5;
  border-radius: 50px;
  left: -3%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__type-item-name::before {
    left: 0%;
  }
}
.wrap--asp .asp__type-item-txt {
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__type-item-txt {
    font-size: 1.4rem;
  }
}
.wrap--asp .asp__intro {
  background: #fff;
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__intro {
    padding-bottom: 6rem;
  }
}
.wrap--asp .asp__intro-wrap {
  border-top: solid 1rem #ECEFF1;
  border-bottom: solid 1rem #ECEFF1;
  padding: 9rem 0 9rem;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__intro-wrap {
    width: 85%;
    padding: 2rem 0;
    margin-bottom: 0;
    border-top: solid 0.5rem #ECEFF1;
    border-bottom: solid 0.5rem #ECEFF1;
    padding: 4rem 0 2.5rem;
  }
}
.wrap--asp .asp__intro-wrap--02 {
  margin-bottom: 0;
  padding: 9rem 0 9rem;
  border-top: solid 1rem #fff;
  border-bottom: solid 1rem #fff;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__intro-wrap--02 {
    padding: 2rem 0;
    margin-bottom: 0;
    border-top: solid 0.5rem #fff;
    border-bottom: solid 0.5rem #fff;
    padding: 4rem 0 2.5rem;
  }
}
.wrap--asp .asp__intro-heading {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
  padding-bottom: 5rem;
  text-align: center;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__intro-heading {
    font-size: 1.8rem;
  }
}
.wrap--asp .asp__intro-heading h3 {
  position: relative;
  z-index: 10;
}
.wrap--asp .asp__intro-heading::before {
  content: "CASE STUDY";
  font-size: 10rem;
  letter-spacing: 1rem;
  font-family: "soleil", sans-serif;
  font-weight: 500;
  position: absolute;
  color: #ECEFF1;
  right: -15%;
  top: 13%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__intro-heading::before {
    font-size: 4.5rem;
    right: -50%;
    letter-spacing: 0.5rem;
  }
}
.wrap--asp .asp__intro-heading--white::before {
  content: "CASE STUDY";
  font-size: 10rem;
  letter-spacing: 1rem;
  font-family: "soleil", sans-serif;
  font-weight: 500;
  position: absolute;
  color: #fff;
  right: -15%;
  top: 13%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__intro-heading--white::before {
    font-size: 4.5rem;
    right: -50%;
    letter-spacing: 0.5rem;
  }
}
.wrap--asp .asp__intro-txt {
  text-align: center;
  padding-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__intro-txt {
    text-align: left;
    padding-bottom: 3rem;
  }
}
.wrap--asp .asp__intro-case {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__intro-case {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
.wrap--asp .asp__intro-item {
  background: #ECEFF1;
  width: 52rem;
  padding-left: 6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__intro-item {
    width: auto;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.wrap--asp .asp__intro-item::before {
  content: "";
  position: absolute;
  background: #627F89;
  width: 0.5rem;
  height: 3rem;
  left: 0.6%;
  top: 18%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__intro-item::before {
    width: 0.3rem;
    height: 1.7rem;
    left: 0.6%;
    top: 5.5rem;
  }
}
.wrap--asp .asp__intro-item::after {
  content: "";
  position: absolute;
  background: #000;
  width: 0.5rem;
  height: 6.2rem;
  left: 0.6%;
  top: 12.5rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__intro-item::after {
    width: 0.3rem;
    height: 4rem;
    left: 0.6%;
    top: 10rem;
  }
}
.wrap--asp .asp__intro-item--white {
  background: #fff;
}
.wrap--asp .asp__intro-num {
  color: #99AEB5;
  font-size: 1.4rem;
  font-family: "soleil", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1rem;
  position: absolute;
  left: 13%;
  top: 4%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__intro-num {
    font-size: 1rem;
    left: 16%;
  }
}
.wrap--asp .asp__intro-group {
  padding: 4.4rem 0 3rem 0;
  width: 40rem;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__intro-group {
    width: auto;
  }
}
.wrap--asp .asp__intro-pref {
  background: #627F89;
  color: #fff;
  width: 12rem;
  text-align: center;
  border-radius: 50px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__intro-pref {
    width: 10rem;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
}
.wrap--asp .asp__intro-ttl {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  padding-bottom: 3rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .wrap--asp .asp__intro-ttl {
    font-size: 1.6rem;
    padding-bottom: 2.5rem;
  }
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

	■modifierを使用する場合
	【例】
	.top-sec__ttl{
		color: black;
		&--color{
			color: red;
		}
	}



----------------------------------------------------*/
.wrap--abr .abr__wrap {
  padding: 30rem 0 0;
  background: #fff;
  margin-bottom: -2px;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__wrap {
    padding: 10.5rem 0 0;
  }
}
.wrap--abr .abr__heading {
  font-size: 3.2rem;
  font-weight: bold;
  padding-bottom: 7rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__heading {
    font-size: 2.1rem;
    padding-bottom: 2.5rem;
  }
}
.wrap--abr .abr__subheading {
  text-align: center;
}
.wrap--abr .abr__subheading p {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  background: #1683a8;
  display: inline-block;
  margin: 0 auto;
  padding: 0.8rem 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__subheading p {
    font-size: 1.4rem;
    padding: 0.5rem 1.5rem;
    letter-spacing: 0.1rem;
  }
}
.wrap--abr .abr__monitoring {
  padding: 10rem 0 12rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__monitoring {
    padding: 3.5rem 0 4.5rem;
  }
}
.wrap--abr .abr__monitoring-heading {
  font-size: 2.8rem;
  padding-bottom: 5rem;
  letter-spacing: 0.2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__monitoring-heading {
    font-size: 1.6rem;
    padding-bottom: 2.5rem;
  }
}
.wrap--abr .abr__monitoring-txt {
  width: 80rem;
  font-size: 1.6rem;
  padding-bottom: 10rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__monitoring-txt {
    width: auto;
    font-size: 1.4rem;
    padding-bottom: 4.5rem;
  }
}
.wrap--abr .abr__monitoring-structure-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2.4rem;
  letter-spacing: 0.1rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__monitoring-structure-heading {
    width: auto;
    font-size: 1.6rem;
  }
}
.wrap--abr .abr__monitoring-structure-heading::before, .wrap--abr .abr__monitoring-structure-heading::after {
  content: "";
  display: block;
  width: 25rem;
  height: 1px;
  background: #949695;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__monitoring-structure-heading::before, .wrap--abr .abr__monitoring-structure-heading::after {
    width: 4rem;
  }
}
.wrap--abr .abr__monitoring-structure-heading::before {
  margin-right: 1em;
}
.wrap--abr .abr__monitoring-structure-heading::after {
  margin-left: 1em;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__monitoring-structure-main-parts {
    width: 100%;
    overflow-x: auto; /* 横スクロールを有効にする */
  }
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__image-wrap {
    width: 180%;
    margin: 0 calc(55% - 50vw);
    padding-left: 1rem;
    overflow-x: auto; /* 横スクロールを有効にする */
  }
}
.wrap--abr .abr__image-wrap picture {
  display: inline-block; /* 横スクロールのためにインラインブロックにする */
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr .table-container {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    -ms-overflow-style: none;
    scrollbar-width: none;
    /* IE, Edge 対応 */
    -ms-overflow-style: none;
    /* Firefox 対応 */
    scrollbar-width: none;
  }
}
.wrap--abr .abr .table-container::-webkit-scrollbar {
  display: none;
}
.wrap--abr .abr .scroll-hint-icon {
  top: 20%;
  left: 28%;
  background: none;
}
.wrap--abr .abr .scroll-hint-icon:before {
  background-image: none;
}
.wrap--abr .abr .scroll-hint-icon:after {
  background-image: none;
}
.wrap--abr .abr .scroll-hint-icon-white:before {
  background-image: none;
}
.wrap--abr .abr .scroll-hint-icon-white:after {
  background-image: none;
}
.wrap--abr .abr .scroll-hint-text {
  display: none;
}
.wrap--abr .abr .scroll-hint-icon-custom {
  background-image: url("../images/page/calibration_services/img-analysis-icon.png");
  /* 画像のサイズや位置を調整 */
  width: 10rem;
  height: 10rem;
  background-size: cover; /* 画像を要素にフィットさせる */
  background-repeat: no-repeat;
  background-position: top center;
  border-radius: 50%;
}
.wrap--abr .abr__structure {
  background: #eceff1;
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__structure {
    padding: 4rem 0;
  }
}
.wrap--abr .abr__remote-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 5.5rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__remote-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 3rem;
  }
}
.wrap--abr .abr__remote-wrap {
  padding-top: 12rem;
  width: 48rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__remote-wrap {
    width: 100%;
    padding-top: 0;
  }
}
.wrap--abr .abr__remote-heading {
  font-size: 2.8rem;
  color: #fff;
  background: #627f89;
  letter-spacing: 0.4rem;
  padding: 2.5rem 0 2.5rem 4rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__remote-heading {
    font-size: 1.6rem;
    padding: 1.3rem 0 1.3rem 2.5rem;
  }
}
.wrap--abr .abr__remote-txt {
  padding-top: 7rem;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__remote-txt {
    padding-top: 2.5rem;
    font-size: 1.8rem;
    padding-bottom: 3rem;
  }
}
.wrap--abr .abr__remote-txt02 {
  font-size: 1.6rem;
  width: 80rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__remote-txt02 {
    width: 100%;
    font-size: 1.4rem;
    padding-bottom: 2.5rem;
  }
}
.wrap--abr .abr__remote-img {
  width: 60rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__remote-img {
    margin: 0 calc(50% - 42vw);
    width: 92vw;
  }
}
.wrap--abr .abr__remote-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 2rem;
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__remote-block {
    gap: 1rem 1rem;
    padding-bottom: 6rem;
  }
}
.wrap--abr .abr__remote-block-name {
  color: #000;
  background: #fff;
  padding: 2rem 0;
  font-size: 2rem;
  width: 25.5rem;
  text-align: center;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__remote-block-name {
    width: 48%;
    padding: 1.4rem 0;
    font-size: 1.4rem;
  }
}
.wrap--abr .abr__structure-com {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: relative;
  padding-bottom: 20rem;
}
@media screen and (max-width: 980px) {
  .wrap--abr .abr__structure-com {
    padding-bottom: 40rem;
  }
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__structure-com {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 4rem;
  }
}
.wrap--abr .abr__structure-com-txts {
  width: 42rem;
  padding-top: 8rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__structure-com-txts {
    padding-top: 0;
    width: auto;
  }
}
.wrap--abr .abr__structure-com-heading {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__structure-com-heading {
    font-size: 1.8rem;
    padding-bottom: 3rem;
  }
}
.wrap--abr .abr__structure-com-txt {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__structure-com-txt {
    width: auto;
    font-size: 1.4rem;
  }
}
.wrap--abr .abr__structure-com-img {
  width: calc(49vw + 4rem);
  height: 480px;
  position: absolute;
  top: 0;
  right: 52rem;
}
@media screen and (max-width: 1200px) {
  .wrap--abr .abr__structure-com-img {
    width: calc(50vw + 14rem);
  }
}
@media screen and (max-width: 1080px) {
  .wrap--abr .abr__structure-com-img {
    width: 64%;
  }
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__structure-com-img {
    margin: 0 calc(50% - 50vw);
    width: 92vw;
    height: auto;
    position: relative;
    -webkit-transform: none;
            transform: none;
    padding-bottom: 2.9rem;
    right: -3rem;
  }
}
.wrap--abr .abr__structure-com-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.wrap--abr .abr__structure-heading {
  color: #fff;
  font-size: 2.4rem;
  padding: 2.8rem 0;
  background: #627f89;
  text-align: center;
  letter-spacing: 0.2rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__structure-heading {
    font-size: 1.6rem;
    padding: 1.8rem 0;
    margin-bottom: 3rem;
  }
}
.wrap--abr .abr__structure-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}
.wrap--abr .abr__structure-list::before {
  content: "";
  background: #eceff1;
  position: absolute;
  width: 10rem;
  height: 10rem;
  left: 31%;
  top: 48%;
  z-index: 10;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__structure-list::before {
    content: none;
  }
}
.wrap--abr .abr__structure-list::after {
  content: "";
  background: #eceff1;
  position: absolute;
  width: 10rem;
  height: 10rem;
  right: 22.8%;
  top: 48%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__structure-list::after {
    content: none;
  }
}
.wrap--abr .abr__structure-item {
  width: 31%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: solid 1px #949695;
  border-bottom: solid 1px #949695;
  padding-right: 6rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__structure-item {
    width: 100%;
    padding-right: 0;
    border-right: none;
    padding-bottom: 3rem;
    margin-bottom: 3rem;
  }
  .wrap--abr .abr__structure-item:last-child {
    margin-bottom: 0;
  }
}
.wrap--abr .abr__structure-item:nth-child(3) {
  border-right: none;
}
.wrap--abr .abr__structure-item:nth-child(n+4) {
  padding-top: 5rem;
  border-bottom: none;
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__structure-item:nth-child(n+4) {
    padding-top: 0;
    padding-bottom: 3rem;
    border-bottom: solid 1px #949695;
  }
  .wrap--abr .abr__structure-item:nth-child(n+4):last-child {
    padding-bottom: 0;
  }
}
.wrap--abr .abr__structure-item:last-child {
  border-right: none;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__structure-item:last-child {
    border-bottom: none;
  }
}
.wrap--abr .abr__structure-item--02 {
  width: 40rem;
  padding-left: 6rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__structure-item--02 {
    width: 100%;
    padding-left: 0;
  }
}
.wrap--abr .abr__structure-item--03 {
  padding-left: 6rem;
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__structure-item--03 {
    padding-left: 0;
  }
}
.wrap--abr .abr__structure-item-common {
  width: 28rem;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__structure-item-common {
    width: 100%;
  }
}
.wrap--abr .abr__structure-item-heading {
  font-size: 2rem;
  padding-bottom: 1.5rem;
  margin-bottom: 2.5rem;
  border-bottom: solid 5px #99aeb5;
  width: 28rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__structure-item-heading {
    width: 100%;
    font-size: 1.5rem;
    border-bottom: solid 3px #99aeb5;
  }
}
.wrap--abr .abr__structure-item-txt {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__structure-item-txt {
    font-size: 1.4rem;
  }
}
.wrap--abr .abr__support {
  background: #fff;
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__support {
    padding: 4.5rem 0 4.5rem;
  }
}
.wrap--abr .abr__support-heading {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  padding-bottom: 7rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__support-heading {
    padding-bottom: 2.5rem;
    font-size: 1.8rem;
  }
}
.wrap--abr .abr__support-txt {
  width: 80rem;
  margin: 0 auto;
  padding-bottom: 7rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__support-txt {
    width: auto;
    padding-bottom: 3.5rem;
    font-size: 1.4rem;
  }
}
.wrap--abr .abr__support-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 7rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__support-list {
    gap: 3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrap--abr .abr__support-item {
  width: 30rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__support-item {
    padding-bottom: 3rem;
  }
  .wrap--abr .abr__support-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.wrap--abr .abr__support-item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* 中央寄せのために追加 */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 中央寄せのために追加 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 中央寄せのために追加 */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__support-item-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    padding-bottom: 2.5rem;
  }
}
.wrap--abr .abr__support-img {
  width: 26rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__support-img {
    width: 14rem;
    padding-bottom: 0;
  }
}
.wrap--abr .abr__support-ttl {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__support-ttl {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__support-small {
    font-size: 1.3rem;
  }
}
.wrap--abr .abr__support-item-txt {
  font-size: 1.6rem;
  margin-bottom: auto;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__support-item-txt {
    font-size: 1.4rem;
  }
}
.wrap--abr .abr__support-ttl {
  color: #627f89;
  font-size: 2.4rem;
  font-weight: bold;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__support-ttl {
    font-size: 1.6rem;
    width: 85%;
    padding-bottom: 0;
    text-align: left;
    padding-left: 2rem;
  }
}
.wrap--abr .abr .parallax {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  width: 100vw;
  height: 600px;
}
.wrap--abr .abr .parallax::before {
  background-image: url(../images/page/abr/img-abr-bg.jpg);
  background-position: top -20% center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr .parallax::before {
    background-image: url(../images/page/abr/img-abr-bg-sp.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
  }
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr .parallax {
    padding: 20rem 0;
    height: auto;
  }
}
.wrap--abr .abr__type {
  padding: 12rem 0 10rem;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__type {
    padding: 4rem 0 6rem;
  }
}
.wrap--abr .abr__type-heading {
  background: #627f89;
  padding: 3rem 0 3rem 4rem;
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: 0.2rem;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__type-heading {
    font-size: 1.6rem;
    padding: 1.4rem 0 1.4rem 2.5rem;
  }
}
.wrap--abr .abr__type-heading::before {
  content: "";
  position: absolute;
  background: #99aeb5;
  width: 10px;
  height: 30px;
  left: 5px;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.wrap--abr .abr__type-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: solid 0.1rem #dedede;
  padding: 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__type-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2rem 0;
  }
}
.wrap--abr .abr__type-item-ttl {
  width: 30%;
  padding-left: 4rem;
  color: #627f89;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  position: relative;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__type-item-ttl {
    margin-left: 0;
    padding-left: 0;
    width: 100%;
    font-size: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.wrap--abr .abr__type-item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem 12rem;
  border-left: solid 0.1rem #eceff1;
  width: 88%;
  padding: 1rem 0 1rem 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__type-item-list {
    border-left: none;
    padding: 0;
    margin-left: -3rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrap--abr .abr__type-item-txt01 {
  width: 30rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__type-item-txt01 {
    width: auto;
  }
}
.wrap--abr .abr__type-item-name {
  font-size: 1.6rem;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__type-item-name {
    font-size: 1.4rem;
    padding-left: 1rem;
  }
}
.wrap--abr .abr__type-item-name::before {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 2rem;
  background: #99aeb5;
  border-radius: 50px;
  left: -3%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__type-item-name::before {
    left: 0%;
  }
}
.wrap--abr .abr__type-item-txt {
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__type-item-txt {
    font-size: 1.4rem;
  }
}
.wrap--abr .abr__type-item-txt-ann {
  font-size: 1.2rem;
}
.wrap--abr .abr__type-item-ann {
  font-size: 1.2rem;
  padding-top: 2rem;
}
.wrap--abr .abr__intro {
  background: #fff;
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__intro {
    padding-bottom: 6rem;
  }
}
.wrap--abr .abr__intro-wrap {
  border-top: solid 1rem #eceff1;
  border-bottom: solid 1rem #eceff1;
  padding: 9rem 0 9rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__intro-wrap {
    width: 85%;
    padding: 2rem 0;
    margin-bottom: 0;
    border-top: solid 0.5rem #eceff1;
    border-bottom: solid 0.5rem #eceff1;
    padding: 4rem 0 2.5rem;
  }
}
.wrap--abr .abr__intro-wrap--02 {
  margin-bottom: 0;
  padding: 9rem 0 9rem;
  border-top: solid 1rem #fff;
  border-bottom: solid 1rem #fff;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__intro-wrap--02 {
    padding: 2rem 0;
    margin-bottom: 0;
    border-top: solid 0.5rem #fff;
    border-bottom: solid 0.5rem #fff;
    padding: 4rem 0 2.5rem;
  }
}
.wrap--abr .abr__intro-heading {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
  padding-bottom: 5rem;
  text-align: center;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__intro-heading {
    font-size: 1.8rem;
  }
}
.wrap--abr .abr__intro-heading h3 {
  position: relative;
  z-index: 10;
}
.wrap--abr .abr__intro-heading::before {
  content: "CASE STUDY";
  font-size: 10rem;
  letter-spacing: 1rem;
  font-family: "soleil", sans-serif;
  font-weight: 500;
  position: absolute;
  color: #eceff1;
  right: -15%;
  top: 13%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__intro-heading::before {
    font-size: 4.5rem;
    right: -50%;
    letter-spacing: 0.5rem;
  }
}
.wrap--abr .abr__intro-heading--white::before {
  content: "CASE STUDY";
  font-size: 10rem;
  letter-spacing: 1rem;
  font-family: "soleil", sans-serif;
  font-weight: 500;
  position: absolute;
  color: #fff;
  right: -15%;
  top: 13%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__intro-heading--white::before {
    font-size: 4.5rem;
    right: -50%;
    letter-spacing: 0.5rem;
  }
}
.wrap--abr .abr__intro-txt {
  text-align: center;
  padding-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__intro-txt {
    text-align: left;
    padding-bottom: 3rem;
  }
}
.wrap--abr .abr__intro-case {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__intro-case {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
.wrap--abr .abr__intro-item {
  background: #eceff1;
  position: relative;
}
.wrap--abr .abr__intro-item--white {
  background: #fff;
}
.wrap--abr .abr__intro-item a {
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding-left: 6rem;
  width: 52rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__intro-item a {
    width: auto;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.wrap--abr .abr__intro-item a:hover {
  opacity: 0.8;
}
.wrap--abr .abr__intro-num {
  color: #99aeb5;
  font-size: 1.4rem;
  font-family: "soleil", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1rem;
  position: absolute;
  left: 13%;
  top: 4%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__intro-num {
    font-size: 1rem;
    left: 16%;
  }
}
.wrap--abr .abr__intro-num::before {
  content: "";
  position: absolute;
  background: #627f89;
  width: 0.5rem;
  height: 3rem;
  left: -7.4%;
  top: 5.5rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__intro-num::before {
    width: 0.3rem;
    height: 1.7rem;
    left: -8.5%;
    top: 4.9rem;
  }
}
.wrap--abr .abr__intro-group {
  padding: 4.4rem 0 3rem 0;
  width: 40rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__intro-group {
    width: auto;
  }
}
.wrap--abr .abr__intro-pref {
  background: #627f89;
  color: #fff;
  width: 12rem;
  text-align: center;
  border-radius: 50px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__intro-pref {
    width: 10rem;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
}
.wrap--abr .abr__intro-ttl {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  padding-bottom: 3rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__intro-ttl {
    font-size: 1.6rem;
    padding-bottom: 2.5rem;
  }
}
.wrap--abr .abr__intro-ttl::after {
  content: "";
  position: absolute;
  background: #000;
  width: 0.5rem;
  height: 6.2rem;
  left: 0.6%;
  top: 12.9rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--abr .abr__intro-ttl::after {
    width: 0.3rem;
    height: 4rem;
    left: 0.6%;
    top: 10.3rem;
  }
}

/*----------------------------------------------------

  各ページの独自モジュールスタイルのCSS。

  【記述ルール】
  { ページ名(top, about等) }○○○○

  階層はルートクラスより、三階層までが基本
  【例】
  .top-sec .top-sec__ttl span {   
  }
  ※CSSに展開した場合

  ■modifierを使用する場合
  【例】
  .top-sec__ttl{
    color: black;
    &--color{
      color: red;
    }
  }



----------------------------------------------------*/
.wrap--business_partnership .business_partnership__wrap {
  padding: 30rem 0 0;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__wrap {
    padding: 10.5rem 0 0;
  }
}
.wrap--business_partnership .business_partnership__heading {
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  padding-bottom: 2rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__heading {
    font-size: 2.1rem;
    padding-bottom: 1.2rem;
  }
}
.wrap--business_partnership .business_partnership__subheading {
  text-align: center;
}
.wrap--business_partnership .business_partnership__subheading p {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  background: #1683A8;
  display: inline-block;
  margin: 0 auto;
  padding: 0.8rem 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__subheading p {
    font-size: 1.4rem;
    padding: 0.5rem 1.5rem;
    letter-spacing: 0.1rem;
  }
}
.wrap--business_partnership .business_partnership__main-txt {
  padding: 10rem 0 38rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__main-txt {
    padding: 4.5rem 0 16.5rem;
  }
}
.wrap--business_partnership .business_partnership__heading-01 {
  font-size: 2.8rem;
  text-align: center;
  letter-spacing: 0.2rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__heading-01 {
    font-size: 1.6rem;
    padding-bottom: 3rem;
  }
}
.wrap--business_partnership .business_partnership__txt-01 {
  width: 80rem;
  margin: 0 auto;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__txt-01 {
    width: auto;
    margin: 0 auto;
    font-size: 1.4rem;
  }
}
.wrap--business_partnership .business_partnership__call-gray {
  background: #ECEFF1;
  padding-bottom: 12rem;
  margin-bottom: 12rem;
  height: 78rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__call-gray {
    padding-bottom: 4.5rem;
    margin-bottom: 4.5rem;
    height: 45rem;
  }
}
.wrap--business_partnership .business_partnership__call-cont {
  position: relative;
  left: 0;
  top: -25rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__call-cont {
    left: 0;
    top: -12rem;
  }
}
.wrap--business_partnership .business_partnership__call-img {
  position: relative;
}
.wrap--business_partnership .business_partnership__call-img-txt {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #ECEFF1;
  display: inline-block;
  padding: 4.5rem 16rem 0 4rem;
  font-size: 2.4rem;
  color: #627F89;
  letter-spacing: 0.3rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__call-img-txt {
    padding: 2.4rem 4rem 0 2.7rem;
    font-size: 1.6rem;
    bottom: -2px;
    line-height: 1.4;
    text-indent: -2.7rem;
  }
}
.wrap--business_partnership .business_partnership__call-txt {
  width: 72rem;
  padding-top: 5rem;
  padding-left: 4rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__call-txt {
    width: auto;
    padding-left: 0;
    font-size: 1.4rem;
    padding-top: 3rem;
  }
}
.wrap--business_partnership .business_partnership__call-txt {
  font-size: 1.6rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__call-txt {
    padding-bottom: 3rem;
    font-size: 1.4rem;
  }
}
.wrap--business_partnership .business_partnership__call-merit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__call-merit {
    padding-left: 0;
  }
}
.wrap--business_partnership .business_partnership__call-heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #99AEB5;
  color: #fff;
  padding: 6rem 1.6rem;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__call-heading {
    padding: 2.4rem 0.5rem;
    font-size: 1.4rem;
  }
}
.wrap--business_partnership .business_partnership__call-list {
  width: 64rem;
  margin-left: 3rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__call-list {
    width: 26rem;
    margin-left: 1.5rem;
  }
}
.wrap--business_partnership .business_partnership__call-item {
  padding: 2.5rem 0 2.5rem 3.5rem;
  border-bottom: solid 1px #DEDEDE;
  position: relative;
  font-weight: bold;
  letter-spacing: 0.1rem;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__call-item {
    padding: 1.2rem 0 1.2rem 2.5rem;
    letter-spacing: 0.1rem;
    font-size: 1.4rem;
  }
}
.wrap--business_partnership .business_partnership__call-item::before {
  background: url(../images/page/business_partnership/img-merit-check.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 2rem;
  height: 2rem;
  content: "";
  position: absolute;
  left: 2%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__call-item::before {
    width: 1.6rem;
    height: 1.6rem;
    left: 3%;
  }
}
.wrap--business_partnership .business_partnership__call-item:first-child::before {
  top: 30%;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__call-item:first-child::before {
    top: 37%;
  }
}
.wrap--business_partnership .business_partnership__call-item:last-child::before {
  top: 75%;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__call-item:last-child::before {
    top: 67%;
  }
}
.wrap--business_partnership .business_partnership__call-item:first-child {
  padding-top: 0;
}
.wrap--business_partnership .business_partnership__call-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.wrap--business_partnership .business_partnership__update {
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__update {
    padding-bottom: 4.5rem;
  }
}
.wrap--business_partnership .business_partnership__update-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__update-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.wrap--business_partnership .business_partnership__update-img {
  width: 57rem;
  height: 70rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__update-img {
    width: auto;
    height: 21rem;
    margin-left: -3rem;
  }
}
.wrap--business_partnership .business_partnership__update-main-txt {
  width: 44rem;
  padding-top: 12.5rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__update-main-txt {
    width: auto;
    padding-top: 3rem;
  }
}
.wrap--business_partnership .business_partnership__update-heading {
  font-size: 2.4rem;
  color: #627F89;
  font-weight: bold;
  padding-bottom: 4rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__update-heading {
    font-size: 1.6rem;
    padding-bottom: 3rem;
    letter-spacing: 0.2rem;
  }
}
.wrap--business_partnership .business_partnership__update-txt {
  font-size: 1.6rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__update-txt {
    font-size: 1.4rem;
    padding-bottom: 3rem;
  }
}
.wrap--business_partnership .business_partnership__update-merit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__update-merit {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.wrap--business_partnership .business_partnership__update-ttl {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #99AEB5;
  color: #fff;
  padding: 8rem 1.6rem;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__update-ttl {
    padding: 4rem 0.7rem;
    font-size: 1.4rem;
  }
}
.wrap--business_partnership .business_partnership__update-list {
  width: 39rem;
  padding-left: 3rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__update-list {
    width: 28rem;
    padding-left: 0.5rem;
  }
}
.wrap--business_partnership .business_partnership__update-item {
  padding: 2.5rem 0 2.5rem 3.5rem;
  border-bottom: solid 1px #DEDEDE;
  position: relative;
  font-weight: bold;
  letter-spacing: 0.1rem;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__update-item {
    padding: 1rem 0 1rem 2.5rem;
    letter-spacing: 0.1rem;
    font-size: 1.4rem;
  }
}
.wrap--business_partnership .business_partnership__update-item::before {
  background: url(../images/page/business_partnership/img-merit-check.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 2rem;
  height: 2rem;
  content: "";
  position: absolute;
  left: 2%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__update-item::before {
    width: 1.6rem;
    height: 1.6rem;
    left: 3%;
  }
}
.wrap--business_partnership .business_partnership__update-item:first-child::before {
  top: 38%;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__update-item:first-child::before {
    top: 45%;
  }
}
.wrap--business_partnership .business_partnership__update-item:last-child::before {
  top: 65%;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__update-item:last-child::before {
    top: 60%;
  }
}
.wrap--business_partnership .business_partnership__update-item:first-child {
  padding-top: 0;
}
.wrap--business_partnership .business_partnership__update-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.wrap--business_partnership .business_partnership__backup-cont {
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__backup-cont {
    padding-bottom: 4.5rem;
  }
}
.wrap--business_partnership .business_partnership__backup-img {
  width: 100%;
  height: 600px;
  position: relative;
  -o-object-position: center;
     object-position: center;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__backup-img {
    width: 100%;
    height: auto;
  }
}
.wrap--business_partnership .business_partnership__backup-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.wrap--business_partnership .business_partnership__backup-img-txt {
  position: absolute;
  left: 0;
  bottom: -1%;
  background: #fff;
  display: inline-block;
  padding: 4.5rem 8.5rem 0.5rem 0;
  font-size: 2.4rem;
  color: #627F89;
  letter-spacing: 0.3rem;
  font-weight: bold;
  line-height: 1;
  width: 47%;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .wrap--business_partnership .business_partnership__backup-img-txt {
    padding: 4.5rem 10.5rem 0.5rem 0;
  }
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__backup-img-txt {
    padding: 1.7rem 14.1vw 0 2rem;
    letter-spacing: 0.2rem;
    font-size: 1.6rem;
    bottom: -0.5rem;
    width: 87vw;
  }
}
.wrap--business_partnership .business_partnership__backup-txt {
  width: 72rem;
  padding-top: 5rem;
  padding-left: 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__backup-txt {
    width: auto;
    padding-top: 2.5rem;
    padding-left: 0;
    font-size: 1.4rem;
  }
}
.wrap--business_partnership .business_partnership__backup-txt {
  font-size: 1.6rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__backup-txt {
    padding-bottom: 3rem;
    font-size: 1.4rem;
  }
}
.wrap--business_partnership .business_partnership__backup-merit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__backup-merit {
    padding-left: 0;
  }
}
.wrap--business_partnership .business_partnership__backup-heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #99AEB5;
  color: #fff;
  padding: 6rem 1.6rem;
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__backup-heading {
    padding: 6rem 0.5rem;
    font-size: 1.4rem;
  }
}
.wrap--business_partnership .business_partnership__backup-list {
  width: 64rem;
  margin-left: 3rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__backup-list {
    width: 28rem;
    margin-left: 1.5rem;
  }
}
.wrap--business_partnership .business_partnership__backup-item {
  padding: 2.5rem 0 2.5rem 3.5rem;
  border-bottom: solid 1px #DEDEDE;
  position: relative;
  font-weight: bold;
  letter-spacing: 0.1rem;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__backup-item {
    padding: 1rem 0 1rem 2.5rem;
    letter-spacing: 0.1rem;
    font-size: 1.4rem;
  }
}
.wrap--business_partnership .business_partnership__backup-item::before {
  background: url(../images/page/business_partnership/img-merit-check.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 2rem;
  height: 2rem;
  content: "";
  position: absolute;
  left: 2%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__backup-item::before {
    width: 1.6rem;
    height: 1.6rem;
    left: 3%;
  }
}
.wrap--business_partnership .business_partnership__backup-item:first-child::before {
  top: 28%;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__backup-item:first-child::before {
    top: 41%;
  }
}
.wrap--business_partnership .business_partnership__backup-item:last-child::before {
  top: 73%;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__backup-item:last-child::before {
    top: 60%;
  }
}
.wrap--business_partnership .business_partnership__backup-item:first-child {
  padding-top: 0;
}
.wrap--business_partnership .business_partnership__backup-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.wrap--business_partnership .business_partnership__entrust {
  background: #ECEFF1;
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__entrust {
    padding: 4.5rem 0;
  }
}
.wrap--business_partnership .business_partnership__entrust-heading {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  padding-bottom: 7rem;
  color: #627F89;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__entrust-heading {
    font-size: 1.8rem;
    padding-bottom: 2.5rem;
  }
}
.wrap--business_partnership .business_partnership__entrust-txt {
  width: 80rem;
  margin: 0 auto;
  padding-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__entrust-txt {
    width: auto;
    font-size: 1.4rem;
    padding-bottom: 3.5rem;
  }
}
.wrap--business_partnership .business_partnership__entrust-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__entrust-list {
    gap: 3.5rem;
  }
}
.wrap--business_partnership .business_partnership__entrust-item {
  width: 45rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.wrap--business_partnership .business_partnership__entrust-item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; /* 中央寄せのために追加 */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; /* 中央寄せのために追加 */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; /* 中央寄せのために追加 */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__entrust-item-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.wrap--business_partnership .business_partnership__entrust-img {
  width: 24rem;
  height: 24rem;
  padding-bottom: 3.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__entrust-img {
    height: 16rem;
  }
}
.wrap--business_partnership .business_partnership__entrust-ttl {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__entrust-ttl {
    font-size: 1.6rem;
  }
}
.wrap--business_partnership .business_partnership__entrust-ttl--01 {
  position: relative;
}
.wrap--business_partnership .business_partnership__entrust-ttl--01::before {
  content: "";
  position: absolute;
  background: url(../images/page/business_partnership/img-entrust-num01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  left: -10%;
  top: 25%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 4rem;
  height: 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__entrust-ttl--01::before {
    left: 10%;
    top: -28%;
    width: 3rem;
    height: 3rem;
  }
}
.wrap--business_partnership .business_partnership__entrust-ttl--02 {
  position: relative;
}
.wrap--business_partnership .business_partnership__entrust-ttl--02::before {
  content: "";
  position: absolute;
  background: url(../images/page/business_partnership/img-entrust-num02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  left: -20%;
  top: 25%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 4rem;
  height: 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__entrust-ttl--02::before {
    left: 10%;
    top: -28%;
    width: 3rem;
    height: 3rem;
  }
}
.wrap--business_partnership .business_partnership__entrust-ttl--03 {
  position: relative;
}
.wrap--business_partnership .business_partnership__entrust-ttl--03::before {
  content: "";
  position: absolute;
  background: url(../images/page/business_partnership/img-entrust-num03.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  left: -12%;
  top: 25%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 4rem;
  height: 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__entrust-ttl--03::before {
    left: 10%;
    top: -28%;
    width: 3rem;
    height: 3rem;
  }
}
.wrap--business_partnership .business_partnership__entrust-ttl--04 {
  position: relative;
}
.wrap--business_partnership .business_partnership__entrust-ttl--04::before {
  content: "";
  position: absolute;
  background: url(../images/page/business_partnership/img-entrust-num04.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  left: -12%;
  top: 25%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 4rem;
  height: 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__entrust-ttl--04::before {
    left: 10%;
    top: -28%;
    width: 3rem;
    height: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__entrust-small {
    font-size: 1.3rem;
  }
}
.wrap--business_partnership .business_partnership__entrust-item-txt {
  font-size: 1.6rem;
  margin-bottom: auto;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__entrust-item-txt {
    font-size: 1.4rem;
  }
}
.wrap--business_partnership .business_partnership__entrust-ttl {
  color: #627F89;
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 3.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__entrust-ttl {
    font-size: 1.6rem;
    width: 85%;
    padding-bottom: 0;
  }
}
.wrap--business_partnership .business_partnership__intro-wrap {
  border-top: solid 1rem #ECEFF1;
  border-bottom: solid 1rem #ECEFF1;
  padding: 9rem 0 9rem;
  margin-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__intro-wrap {
    width: 85%;
    padding: 2rem 0;
    margin-bottom: 0;
    border-top: solid 0.5rem #ECEFF1;
    border-bottom: solid 0.5rem #ECEFF1;
    padding: 4rem 0 2.5rem;
  }
}
.wrap--business_partnership .business_partnership__intro-wrap--02 {
  margin-bottom: 0;
  padding: 9rem 0 9rem;
  border-top: solid 1rem #fff;
  border-bottom: solid 1rem #fff;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__intro-wrap--02 {
    padding: 2rem 0;
    margin-bottom: 0;
    border-top: solid 0.5rem #fff;
    border-bottom: solid 0.5rem #fff;
    padding: 4rem 0 2.5rem;
  }
}
.wrap--business_partnership .business_partnership__intro-heading {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
  padding-bottom: 5rem;
  text-align: center;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__intro-heading {
    font-size: 1.8rem;
  }
}
.wrap--business_partnership .business_partnership__intro-heading h3 {
  position: relative;
  z-index: 10;
}
.wrap--business_partnership .business_partnership__intro-heading::before {
  content: "CASE STUDY";
  font-size: 10rem;
  letter-spacing: 1rem;
  font-family: "soleil", sans-serif;
  font-weight: 500;
  position: absolute;
  color: #ECEFF1;
  right: -15%;
  top: 13%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__intro-heading::before {
    font-size: 4.5rem;
    right: -50%;
    letter-spacing: 0.5rem;
  }
}
.wrap--business_partnership .business_partnership__intro-heading--white::before {
  content: "CASE STUDY";
  font-size: 10rem;
  letter-spacing: 1rem;
  font-family: "soleil", sans-serif;
  font-weight: 500;
  position: absolute;
  color: #fff;
  right: -15%;
  top: 13%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__intro-heading--white::before {
    font-size: 4.5rem;
    right: -50%;
    letter-spacing: 0.5rem;
  }
}
.wrap--business_partnership .business_partnership__intro-txt {
  text-align: center;
  padding-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__intro-txt {
    text-align: left;
    padding-bottom: 3rem;
  }
}
.wrap--business_partnership .business_partnership__intro-case {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__intro-case {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
.wrap--business_partnership .business_partnership__intro-item {
  background: #ECEFF1;
  width: 52rem;
  padding-left: 6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__intro-item {
    width: auto;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.wrap--business_partnership .business_partnership__intro-item::before {
  content: "";
  position: absolute;
  background: #627F89;
  width: 0.5rem;
  height: 3rem;
  left: 0.6%;
  top: 18%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__intro-item::before {
    width: 0.3rem;
    height: 1.7rem;
    left: 0.6%;
    top: 5.5rem;
  }
}
.wrap--business_partnership .business_partnership__intro-item::after {
  content: "";
  position: absolute;
  background: #000;
  width: 0.5rem;
  height: 6.2rem;
  left: 0.6%;
  top: 12.5rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__intro-item::after {
    width: 0.3rem;
    height: 4rem;
    left: 0.6%;
    top: 10rem;
  }
}
.wrap--business_partnership .business_partnership__intro-item--white {
  background: #fff;
}
.wrap--business_partnership .business_partnership__intro-num {
  color: #99AEB5;
  font-size: 1.4rem;
  font-family: "soleil", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1rem;
  position: absolute;
  left: 13%;
  top: 4%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__intro-num {
    font-size: 1rem;
    left: 16%;
  }
}
.wrap--business_partnership .business_partnership__intro-group {
  padding: 4.4rem 0 3rem 0;
  width: 40rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__intro-group {
    width: auto;
  }
}
.wrap--business_partnership .business_partnership__intro-pref {
  background: #627F89;
  color: #fff;
  width: 12rem;
  text-align: center;
  border-radius: 50px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__intro-pref {
    width: 10rem;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
}
.wrap--business_partnership .business_partnership__intro-ttl {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  padding-bottom: 3rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .wrap--business_partnership .business_partnership__intro-ttl {
    font-size: 1.6rem;
    padding-bottom: 2.5rem;
  }
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

	■modifierを使用する場合
	【例】
	.top-sec__ttl{
		color: black;
		&--color{
			color: red;
		}
	}



----------------------------------------------------*/
.wrap--calibration_services .calibration_services {
  padding: 12rem 0 0;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services {
    padding: 4.5rem 0 0;
  }
}
.wrap--calibration_services .calibration_services--gray {
  background: #ECEFF1;
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services--gray {
    padding: 4.5rem 0 5rem;
  }
}
.wrap--calibration_services .calibration_services__wrap {
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__wrap {
    padding-bottom: 5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrap--calibration_services .calibration_services__heading {
  font-size: 3.2rem;
  text-align: center;
  padding-bottom: 9rem;
  line-height: 1;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__heading {
    font-size: 2.1rem;
    padding-bottom: 3rem;
    text-align: center;
    padding-right: 0;
    margin: 0 auto;
    letter-spacing: 0.5rem;
  }
}
.wrap--calibration_services .calibration_services__anchor-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__anchor-btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.wrap--calibration_services .calibration_services__btn {
  position: relative;
  width: 30rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__btn {
    width: 100%;
  }
}
.wrap--calibration_services .calibration_services__btn::before {
  background: url(../images/page/calibration_services/iq-btn-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  content: "";
  position: absolute;
  right: 4%;
  top: 50%;
  width: 1.7rem;
  height: 1.7rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__btn::before {
    background: url(../images/page/calibration_services/iq-btn-arrow-hov.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    content: "";
    position: absolute;
    right: 7%;
    top: 50%;
    width: 1.3rem;
    height: 1.3rem;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.wrap--calibration_services .calibration_services__btn:hover:before {
  background: url(../images/page/calibration_services/iq-btn-arrow-hov.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  content: "";
  position: absolute;
  right: 4%;
  top: 50%;
  width: 1.7rem;
  height: 1.7rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__btn:hover:before {
    background: url(../images/page/calibration_services/iq-btn-arrow-hov.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    content: "";
    position: absolute;
    right: 7%;
    top: 50%;
    width: 1.3rem;
    height: 1.3rem;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.wrap--calibration_services .calibration_services__btn a {
  font-size: 2rem;
  color: #99AEB5;
  padding: 2rem 0;
  border: solid 0.1rem #99AEB5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: bold;
  letter-spacing: 0.2rem;
  width: 100%;
  max-width: 30rem;
  display: inline-block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__btn a {
    background-color: #99AEB5;
    color: #FFFFFF;
    font-size: 1.4rem;
    width: 100%;
    padding: 1.2rem 0;
    display: inline-block;
    text-align: center;
    max-width: 100%;
  }
}
.wrap--calibration_services .calibration_services__btn a:hover {
  background-color: #99AEB5;
  color: #FFFFFF;
}
.wrap--calibration_services .calibration_services__service-heading {
  background-color: #627F89;
  color: #fff;
  font-size: 3.2rem;
  text-align: center;
  padding: 3.2rem 0;
  line-height: 1.6;
  position: relative;
  margin-bottom: 7rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-heading {
    font-size: 1.6rem;
    padding: 2.3rem 0;
    margin-bottom: 3rem;
  }
}
.wrap--calibration_services .calibration_services__service-heading::before {
  content: "";
  position: absolute;
  background: #99AEB5;
  width: 54.4rem;
  height: 6px;
  left: 25.2%;
  top: 2.9px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-heading::before {
    width: 15rem;
    left: 23.8%;
    top: 3px;
  }
}
.wrap--calibration_services .calibration_services__service-heading::after {
  content: "";
  position: absolute;
  background: #99AEB5;
  width: 54.4rem;
  height: 6px;
  right: -25.2%;
  bottom: -3px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-heading::after {
    width: 15rem;
    right: -23.8%;
    bottom: -3px;
  }
}
.wrap--calibration_services .calibration_services__service-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 3rem;
  }
}
.wrap--calibration_services .calibration_services__service-subheading {
  font-size: 2.8rem;
  font-weight: bold;
  padding-left: 4rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-subheading {
    padding-left: 0;
    font-size: 1.8rem;
    padding-bottom: 2.5rem;
  }
}
.wrap--calibration_services .calibration_services__service-txt {
  width: 50rem;
  padding-right: 4rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-txt {
    width: auto;
    padding-right: 0;
    font-size: 1.4rem;
  }
}
.wrap--calibration_services .calibration_services__service-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: solid 0.1rem rgba(148, 150, 149, 0.5);
  border-bottom: solid 0.1rem rgba(148, 150, 149, 0.5);
  padding: 3.2rem 0;
  margin-bottom: 12.1rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-type {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1.4rem 0;
    margin-bottom: 5rem;
  }
}
.wrap--calibration_services .calibration_services__service-type-ttl {
  width: 30rem;
  padding-left: 4rem;
  color: #627F89;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-type-ttl {
    margin-left: 0;
    padding-left: 0;
    width: auto;
    font-size: 1.4rem;
  }
  .wrap--calibration_services .calibration_services__service-type-ttl p {
    padding-bottom: 1.4rem;
  }
}
.wrap--calibration_services .calibration_services__service-type-ttl::before {
  content: "";
  position: absolute;
  width: 0.1rem;
  height: 7rem;
  background: rgba(148, 150, 149, 0.5);
  right: 0;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-type-ttl::before {
    width: 31.5rem;
    height: 1px;
    right: 0%;
    top: 95%;
    -webkit-transform: translate(40.5%, -50%);
            transform: translate(40.5%, -50%);
    background: rgba(148, 150, 149, 0.5);
  }
}
.wrap--calibration_services .calibration_services__service-type-txt01 {
  padding-left: 4rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-type-txt01 {
    margin-left: -4rem;
    padding-left: 0;
    font-size: 1.4rem;
  }
  .wrap--calibration_services .calibration_services__service-type-txt01 p {
    padding-top: 1.5rem;
    margin-left: -3rem;
  }
}
.wrap--calibration_services .calibration_services__service-itn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: relative;
  padding-bottom: 20rem;
}
@media screen and (max-width: 980px) {
  .wrap--calibration_services .calibration_services__service-itn {
    padding-bottom: 40rem;
  }
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-itn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 6rem;
  }
}
.wrap--calibration_services .calibration_services__service-itn-txts {
  width: 40rem;
  padding-top: 7.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-itn-txts {
    padding-top: 0;
    width: auto;
  }
}
.wrap--calibration_services .calibration_services__service-itn-heading {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-itn-heading {
    font-size: 1.8rem;
    padding-bottom: 3rem;
  }
}
.wrap--calibration_services .calibration_services__service-itn-txt {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-itn-txt {
    width: auto;
    font-size: 1.4rem;
  }
}
.wrap--calibration_services .calibration_services__service-itn-img {
  width: calc(49vw + 8rem);
  height: 480px;
  position: absolute;
  top: 0;
  right: 48rem;
}
@media screen and (max-width: 1200px) {
  .wrap--calibration_services .calibration_services__service-itn-img {
    width: calc(50vw + 14rem);
  }
}
@media screen and (max-width: 1080px) {
  .wrap--calibration_services .calibration_services__service-itn-img {
    width: 64%;
  }
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-itn-img {
    margin: 0 calc(50% - 50vw);
    width: 92vw;
    height: auto;
    position: relative;
    -webkit-transform: none;
            transform: none;
    padding-bottom: 2.9rem;
    right: 0rem;
  }
}
.wrap--calibration_services .calibration_services__service-itn-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.wrap--calibration_services .calibration_services__service-flow-heading {
  font-size: 2.8rem;
  text-align: center;
  padding-bottom: 7rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-flow-heading {
    padding-left: 0;
    font-size: 1.8rem;
    padding-bottom: 3rem;
  }
}
.wrap--calibration_services .calibration_services__service-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 12rem;
  height: 34rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-step {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-bottom: 6rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
}
.wrap--calibration_services .calibration_services__service-step::-webkit-scrollbar {
  display: none;
}
.wrap--calibration_services .calibration_services__service-step-item {
  width: 32rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-step-item {
    width: 16rem;
  }
}
.wrap--calibration_services .calibration_services__service-step-item:first-child {
  margin-left: 0rem;
  margin-right: 0rem;
}
.wrap--calibration_services .calibration_services__service-step-item:not(:first-child) {
  margin-left: -3rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-step-item:not(:first-child) {
    margin-left: -2rem;
  }
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-step-item:nth-child(3) {
    margin-left: -3rem;
  }
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-step-item:nth-child(4) {
    margin-left: -3rem;
  }
}
.wrap--calibration_services .calibration_services__service-step-item:nth-child(n+2) {
  width: 28rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-step-item:nth-child(n+2) {
    width: 16rem;
  }
}
.wrap--calibration_services .calibration_services__service-step-item p {
  margin: 0px auto 0 6rem;
  width: 20rem;
  font-size: 1.6rem;
  margin-top: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-step-item p {
    width: 10rem;
    font-size: 1.2rem;
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-step-01txt {
    margin: 2rem auto 0 3rem !important;
  }
}
.wrap--calibration_services .calibration_services__service-step-01txt::after {
  content: "";
  background: #DEDEDE;
  width: 0.1rem;
  height: 10rem;
  position: absolute;
  right: -16%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.wrap--calibration_services .calibration_services__service-step-02txt {
  margin: 2rem auto 0 3.5rem !important;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-step-02txt {
    margin: 2rem auto 0 3rem !important;
  }
}
.wrap--calibration_services .calibration_services__service-step-02txt::after {
  content: "";
  background: #DEDEDE;
  width: 0.1rem;
  height: 10rem;
  position: absolute;
  right: -13%;
  top: 95%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-step-02txt::after {
    top: 84%;
  }
}
.wrap--calibration_services .calibration_services__service-step-03txt {
  margin: 2rem auto 0 3.5rem !important;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-step-03txt {
    margin: 2rem auto 0 3rem !important;
  }
}
.wrap--calibration_services .calibration_services__service-step-03txt::after {
  content: "";
  background: #DEDEDE;
  width: 0.1rem;
  height: 10rem;
  position: absolute;
  right: -13%;
  top: 66%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-step-03txt::after {
    top: 62%;
  }
}
.wrap--calibration_services .calibration_services__service-step-04txt {
  margin: 2rem auto 0 3.5rem !important;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-step-04txt {
    margin: 2rem auto 0 3rem !important;
  }
}
.wrap--calibration_services .calibration_services__service-step-04txt::after {
  content: none !important;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-step-01-01txt {
    margin: 2rem auto 0 3rem !important;
  }
}
.wrap--calibration_services .calibration_services__service-step-01-01txt::after {
  content: "";
  background: #949695;
  width: 0.1rem;
  height: 10rem;
  position: absolute;
  right: -16%;
  top: 65%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-step-01-01txt::after {
    top: 50%;
    height: 10rem;
  }
}
.wrap--calibration_services .calibration_services__service-step-02-02txt {
  margin: 2rem auto 0 3.5rem !important;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-step-02-02txt {
    margin: 2rem auto 0 3rem !important;
  }
}
.wrap--calibration_services .calibration_services__service-step-02-02txt::after {
  content: "";
  background: #949695;
  width: 0.1rem;
  height: 10rem;
  position: absolute;
  right: -13%;
  top: 65%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-step-02-02txt::after {
    top: 50%;
    height: 10rem;
  }
}
.wrap--calibration_services .calibration_services__service-step-03-03txt {
  margin: 2rem auto 0 3.5rem !important;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-step-03-03txt {
    margin: 2rem auto 0 3rem !important;
  }
}
.wrap--calibration_services .calibration_services__service-step-03-03txt::after {
  content: "";
  background: #949695;
  width: 0.1rem;
  height: 10rem;
  position: absolute;
  right: -13%;
  top: 65%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-step-03-03txt::after {
    top: 50%;
    height: 10rem;
  }
}
.wrap--calibration_services .calibration_services__service-step-04-04txt {
  margin: 2rem auto 0 3.5rem !important;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-step-04-04txt {
    margin: 2rem auto 0 3rem !important;
  }
}
.wrap--calibration_services .calibration_services__service-step-04-04txt::after {
  content: none;
}
.wrap--calibration_services .calibration_services__service-step-img {
  height: 20rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-step-img {
    width: 16rem;
    height: auto;
  }
}
.wrap--calibration_services .calibration_services__service-step-img img {
  display: block;
  width: 100%;
  height: 20rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__service-step-img img {
    width: 16rem;
    height: 10rem;
  }
}
.wrap--calibration_services .calibration_services__service-step-txt {
  width: 20rem;
}
.wrap--calibration_services .calibration_services__cert {
  background: #ECEFF1;
  padding: 10rem 0;
  position: relative;
  width: 118rem;
  margin: 0 auto;
  margin-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__cert {
    width: 85%;
    padding: 2.5rem 0;
    margin-bottom: 5rem;
    margin-top: -12rem;
  }
}
.wrap--calibration_services .calibration_services__cert::before, .wrap--calibration_services .calibration_services__cert::after {
  content: "";
  position: absolute;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 8.3rem;
  height: 7.8rem;
  background-color: #fff;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__cert::before, .wrap--calibration_services .calibration_services__cert::after {
    width: 6rem;
    height: 6rem;
  }
}
.wrap--calibration_services .calibration_services__cert::before {
  top: -3.6rem;
  left: -4rem;
}
.wrap--calibration_services .calibration_services__cert::after {
  bottom: -3.7rem;
  right: -3.9rem;
}
.wrap--calibration_services .calibration_services__cert--white {
  background: #fff;
  margin-top: 12rem;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__cert--white {
    margin-top: 6rem;
    margin-top: -12rem;
  }
}
.wrap--calibration_services .calibration_services__cert--white::before, .wrap--calibration_services .calibration_services__cert--white::after {
  content: "";
  position: absolute;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 8.3rem;
  height: 7.8rem;
  background-color: #ECEFF1;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__cert--white::before, .wrap--calibration_services .calibration_services__cert--white::after {
    width: 6rem;
    height: 6rem;
  }
}
.wrap--calibration_services .calibration_services__cert--white::before {
  top: -3.6rem;
  left: -4rem;
}
.wrap--calibration_services .calibration_services__cert--white::after {
  bottom: -3.7rem;
  right: -3.9rem;
}
.wrap--calibration_services .calibration_services__cert-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.8rem;
  padding-bottom: 5rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__cert-heading {
    font-size: 1.6rem;
    padding-bottom: 2rem;
    letter-spacing: 0.2rem;
  }
}
.wrap--calibration_services .calibration_services__cert-heading::before, .wrap--calibration_services .calibration_services__cert-heading::after {
  content: "";
  width: 35rem;
  height: 0.1rem;
  background-color: #99AEB5;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__cert-heading::before, .wrap--calibration_services .calibration_services__cert-heading::after {
    width: 4.3rem;
  }
}
.wrap--calibration_services .calibration_services__cert-heading::before {
  margin-right: 2rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__cert-heading::before {
    margin-right: 1rem;
  }
}
.wrap--calibration_services .calibration_services__cert-heading::after {
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__cert-heading::after {
    margin-left: 1rem;
  }
}
.wrap--calibration_services .calibration_services__cert-txt {
  text-align: center;
  font-size: 1.6rem;
  padding-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__cert-txt {
    font-size: 1.4rem;
    padding-bottom: 2rem;
    text-align: left;
  }
}
.wrap--calibration_services .calibration_services__cert-case-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  gap: 2rem;
  counter-reset: number;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__cert-case-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.wrap--calibration_services .calibration_services__cert-case-wrap::after {
  content: "";
  display: block;
  width: 48rem;
}
.wrap--calibration_services .calibration_services__cert-case {
  background: #fff;
  width: 48rem;
  padding: 3.7rem 0 3.7rem 8.5rem;
  position: relative;
  counter-increment: number;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__cert-case {
    width: 25rem;
    padding: 1.5rem 0 1.5rem 5rem;
  }
}
.wrap--calibration_services .calibration_services__cert-case:hover {
  opacity: 0.6;
}
.wrap--calibration_services .calibration_services__cert-case::before, .wrap--calibration_services .calibration_services__cert-case::after {
  content: "";
  position: absolute;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 3.5rem;
  height: 2rem;
  background-color: #ECEFF1;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__cert-case::before, .wrap--calibration_services .calibration_services__cert-case::after {
    width: 1.8rem;
    height: 2.2rem;
  }
}
.wrap--calibration_services .calibration_services__cert-case::before {
  top: -1.2rem;
  left: -1.5rem;
}
.wrap--calibration_services .calibration_services__cert-case::after {
  bottom: -1.2rem;
  right: -1.3rem;
}
.wrap--calibration_services .calibration_services__cert-case a {
  display: inline-block;
  padding: 3.5rem 0 3.5rem 3.5rem;
}
.wrap--calibration_services .calibration_services__cert-case--white {
  background-color: #ECEFF1;
}
.wrap--calibration_services .calibration_services__cert-case--white::before, .wrap--calibration_services .calibration_services__cert-case--white::after {
  content: "";
  position: absolute;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 3.5rem;
  height: 2rem;
  background-color: #fff;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__cert-case--white::before, .wrap--calibration_services .calibration_services__cert-case--white::after {
    width: 1.8rem;
    height: 2.2rem;
  }
}
.wrap--calibration_services .calibration_services__cert-case--white::before {
  top: -1.2rem;
  left: -1.5rem;
}
.wrap--calibration_services .calibration_services__cert-case--white::after {
  bottom: -1.2rem;
  right: -1.3rem;
}
.wrap--calibration_services .calibration_services__cert-inner {
  position: relative;
}
.wrap--calibration_services .calibration_services__cert-inner::before, .wrap--calibration_services .calibration_services__cert-inner::after {
  content: "";
  position: absolute;
  width: 7rem;
  height: 0.1rem;
  background-color: #000;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__cert-inner::before, .wrap--calibration_services .calibration_services__cert-inner::after {
    width: 4rem;
  }
}
.wrap--calibration_services .calibration_services__cert-inner::before {
  top: -2.5rem;
  left: -6rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__cert-inner::before {
    top: -1rem;
    left: -3.5rem;
  }
}
.wrap--calibration_services .calibration_services__cert-inner::after {
  bottom: -2.5rem;
  right: 3rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__cert-inner::after {
    bottom: -1rem;
    right: 2rem;
  }
}
.wrap--calibration_services .calibration_services__cert-ttl {
  position: relative;
  font-size: 1.8rem;
  padding-right: 10rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__cert-ttl {
    font-size: 1.3rem;
    padding-right: 7rem;
  }
}
.wrap--calibration_services .calibration_services__cert-ttl::before {
  content: counter(number);
  color: #000;
  background: #ECEFF1;
  font-size: 2rem;
  width: 3rem;
  height: 3rem;
  text-align: center;
  vertical-align: middle;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: -10%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__cert-ttl::before {
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
  }
}
.wrap--calibration_services .calibration_services__cert-ttl::after {
  content: "";
  position: absolute;
  background: url(../images/common/img-pdf-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 4.5rem;
  height: 4.5rem;
  right: 0;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__cert-ttl::after {
    width: 2.5rem;
    height: 2.5rem;
    right: 2%;
  }
}
.wrap--calibration_services .calibration_services__cert-ttl--02::before {
  content: counter(number);
  color: #000;
  background: #fff;
  font-size: 2rem;
  width: 3rem;
  height: 3rem;
  text-align: center;
  vertical-align: middle;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: -10%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__cert-ttl--02::before {
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
  }
}
.wrap--calibration_services .calibration_services__cert-ttl--gray {
  background: #ECEFF1;
}
.wrap--calibration_services .calibration_services__intro-wrap {
  border-top: solid 1rem #ECEFF1;
  border-bottom: solid 1rem #ECEFF1;
  padding: 9rem 0 9rem;
  margin-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__intro-wrap {
    width: 85%;
    padding: 2rem 0;
    margin-bottom: 5rem;
    border-top: solid 0.5rem #ECEFF1;
    border-bottom: solid 0.5rem #ECEFF1;
    padding: 4rem 0 2.5rem;
  }
}
.wrap--calibration_services .calibration_services__intro-wrap--02 {
  margin-bottom: 0;
  padding: 9rem 0 9rem;
  border-top: solid 1rem #fff;
  border-bottom: solid 1rem #fff;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__intro-wrap--02 {
    padding: 2rem 0;
    margin-bottom: 0;
    border-top: solid 0.5rem #fff;
    border-bottom: solid 0.5rem #fff;
    padding: 4rem 0 2.5rem;
  }
}
.wrap--calibration_services .calibration_services__intro-heading {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
  padding-bottom: 5rem;
  text-align: center;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__intro-heading {
    font-size: 1.8rem;
  }
}
.wrap--calibration_services .calibration_services__intro-heading h3 {
  position: relative;
  z-index: 10;
}
.wrap--calibration_services .calibration_services__intro-heading::before {
  content: "CASE STUDY";
  font-size: 10rem;
  letter-spacing: 1rem;
  font-family: "soleil", sans-serif;
  font-weight: 500;
  position: absolute;
  color: #ECEFF1;
  right: -15%;
  top: 13%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__intro-heading::before {
    font-size: 4.5rem;
    right: -50%;
    letter-spacing: 0.5rem;
  }
}
.wrap--calibration_services .calibration_services__intro-heading--white::before {
  content: "CASE STUDY";
  font-size: 10rem;
  letter-spacing: 1rem;
  font-family: "soleil", sans-serif;
  font-weight: 500;
  position: absolute;
  color: #fff;
  right: -15%;
  top: 13%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__intro-heading--white::before {
    font-size: 4.5rem;
    right: -50%;
    letter-spacing: 0.5rem;
  }
}
.wrap--calibration_services .calibration_services__intro-txt {
  text-align: center;
  padding-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__intro-txt {
    text-align: left;
    padding-bottom: 3rem;
  }
}
.wrap--calibration_services .calibration_services__intro-case {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__intro-case {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
  }
}
.wrap--calibration_services .calibration_services__intro-item {
  background: #ECEFF1;
  width: 52rem;
  padding-left: 6rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__intro-item {
    width: auto;
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.wrap--calibration_services .calibration_services__intro-item::before {
  content: "";
  position: absolute;
  background: #627F89;
  width: 0.5rem;
  height: 3rem;
  left: 0.6%;
  top: 18%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__intro-item::before {
    width: 0.3rem;
    height: 1.7rem;
    left: 0.6%;
    top: 5.5rem;
  }
}
.wrap--calibration_services .calibration_services__intro-item::after {
  content: "";
  position: absolute;
  background: #000;
  width: 0.5rem;
  height: 6.2rem;
  left: 0.6%;
  top: 12.5rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__intro-item::after {
    width: 0.3rem;
    height: 4rem;
    left: 0.6%;
    top: 10rem;
  }
}
.wrap--calibration_services .calibration_services__intro-item--white {
  background: #fff;
}
.wrap--calibration_services .calibration_services__intro-num {
  color: #99AEB5;
  font-size: 1.4rem;
  font-family: "soleil", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1rem;
  position: absolute;
  left: 13%;
  top: 4%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__intro-num {
    font-size: 1rem;
    left: 16%;
  }
}
.wrap--calibration_services .calibration_services__intro-group {
  padding: 4.4rem 0 3rem 0;
  width: 40rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__intro-group {
    width: auto;
  }
}
.wrap--calibration_services .calibration_services__intro-pref {
  background: #627F89;
  color: #fff;
  width: 12rem;
  text-align: center;
  border-radius: 50px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__intro-pref {
    width: 10rem;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
}
.wrap--calibration_services .calibration_services__intro-ttl {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  padding-bottom: 3rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__intro-ttl {
    font-size: 1.6rem;
    padding-bottom: 2.5rem;
  }
}
.wrap--calibration_services .calibration_services__work-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__work-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 6rem;
  }
}
.wrap--calibration_services .calibration_services__work-item {
  position: relative;
  width: 47.2%;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__work-item {
    width: 100%;
  }
  .wrap--calibration_services .calibration_services__work-item:first-of-type {
    padding-bottom: 5rem;
  }
}
.wrap--calibration_services .calibration_services__work-item-img {
  width: 51rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__work-item-img {
    width: auto;
  }
}
.wrap--calibration_services .calibration_services__work-heading {
  font-size: 2.8rem;
  letter-spacing: 0.2rem;
  font-weight: bold;
  background: #ECEFF1;
  position: absolute;
  left: 37.2%;
  bottom: 25.3%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40rem;
  padding: 3rem 0 1rem 6rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__work-heading {
    left: 35%;
    bottom: 43.3%;
    width: 24rem;
    font-size: 1.6rem;
    padding: 1.5rem 0 0rem 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__work-heading--02 {
    left: 35%;
    bottom: 32.3%;
    width: 24rem;
    font-size: 1.6rem;
    padding: 1.5rem 0 0rem 3.5rem;
  }
}
.wrap--calibration_services .calibration_services__work-heading::before {
  content: "";
  position: absolute;
  background: url(../images/page/calibration_services/img-iq-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 3rem;
  height: 3rem;
  left: 2.5rem;
  top: 63%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__work-heading::before {
    width: 1.7rem;
    height: 1.7rem;
    left: 1.7rem;
    top: 70%;
  }
}
.wrap--calibration_services .calibration_services__work-subheading {
  font-size: 2.4rem;
  font-weight: bold;
  padding-bottom: 2.4rem;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__work-subheading {
    font-size: 1.4rem;
    padding-bottom: 1.5rem;
    padding-top: 2.6rem;
  }
}
.wrap--calibration_services .calibration_services__material {
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__material {
    padding: 4.5rem 0 5rem;
  }
}
.wrap--calibration_services .calibration_services__material-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 4.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__material-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 3rem;
  }
}
.wrap--calibration_services .calibration_services__material-heading {
  font-size: 2.8rem;
  font-weight: bold;
  border: solid 2rem #ECEFF1;
  border-radius: 50%;
  width: 24rem;
  height: 24rem;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 20rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__material-heading {
    font-size: 1.8rem;
    border: solid 1rem #ECEFF1;
    border-radius: 50%;
    width: 14rem;
    height: 14rem;
    line-height: 12rem;
    margin-bottom: 2.5rem;
  }
  .wrap--calibration_services .calibration_services__material-heading p {
    position: relative;
    left: 0.1rem;
  }
}
.wrap--calibration_services .calibration_services__material-txt {
  width: 77rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__material-txt {
    width: auto;
    font-size: 1.3rem;
  }
}
.wrap--calibration_services .calibration_services__material-ann {
  font-size: 1.2rem;
  padding-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services__material-ann {
    padding-top: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services .table-container {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-bottom: 6rem;
    padding-left: 3rem;
    overflow-x: auto;
    /* IE, Edge 対応 */
    -ms-overflow-style: none;
    /* Firefox 対応 */
    scrollbar-width: none;
  }
}
.wrap--calibration_services .calibration_services .table-container::-webkit-scrollbar {
  display: none;
}
.wrap--calibration_services .calibration_services .scroll-hint-icon {
  top: 20%;
  left: 32%;
  background: none;
}
.wrap--calibration_services .calibration_services .scroll-hint-icon:before {
  background-image: none;
}
.wrap--calibration_services .calibration_services .scroll-hint-icon:after {
  background-image: none;
}
.wrap--calibration_services .calibration_services .scroll-hint-icon-white:before {
  background-image: none;
}
.wrap--calibration_services .calibration_services .scroll-hint-icon-white:after {
  background-image: none;
}
.wrap--calibration_services .calibration_services .scroll-hint-text {
  display: none;
}
.wrap--calibration_services .calibration_services .scroll-hint-icon-custom {
  background-image: url("../images/page/calibration_services/img-analysis-icon.png");
  /* 画像のサイズや位置を調整 */
  width: 10rem;
  height: 10rem;
  background-size: cover; /* 画像を要素にフィットさせる */
  background-repeat: no-repeat;
  background-position: top center;
  border-radius: 50%;
}
.wrap--calibration_services .calibration_services table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: auto;
  color: #000;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services table {
    width: 60rem;
    margin-left: 0;
  }
}
.wrap--calibration_services .calibration_services table tr {
  background-color: #fff;
  padding: 0.35em;
  border-bottom: none;
}
.wrap--calibration_services .calibration_services table tr:last-child {
  border-bottom: none;
  border-top: none;
}
.wrap--calibration_services .calibration_services th, .wrap--calibration_services .calibration_services td {
  text-align: left;
  vertical-align: middle;
}
.wrap--calibration_services .calibration_services .number {
  width: 30%;
  text-align: left;
  color: #627F89;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  padding: 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services .number {
    width: 40%;
    font-size: 1.4rem;
    padding: 1.5rem 0 1.5rem 1.5rem;
  }
}
.wrap--calibration_services .calibration_services .number.number-01 {
  border-top: solid 0.1rem #DEDEDE;
}
.wrap--calibration_services .calibration_services .txt, .wrap--calibration_services .calibration_services .price {
  width: 20%;
  position: relative;
  padding: 1em 3rem 1em 4.2rem;
  text-align: left;
  border-left: solid 0.1rem #DEDEDE;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services .txt, .wrap--calibration_services .calibration_services .price {
    width: 25%;
    font-size: 1.4rem;
    padding: 0.5em 2rem 0.5em 2rem;
  }
}
.wrap--calibration_services .calibration_services .txt::before, .wrap--calibration_services .calibration_services .price::before {
  content: "";
  background-color: #fff;
  width: 1rem;
  height: 2rem;
  left: -0.5rem;
  bottom: 1rem;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  position: absolute;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services .txt::before, .wrap--calibration_services .calibration_services .price::before {
    content: "";
    background-color: #fff;
    width: 0.7rem;
    height: 0.5rem;
    left: -0.4rem;
    bottom: 0.3rem;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    position: absolute;
  }
}
.wrap--calibration_services .calibration_services .txt::after, .wrap--calibration_services .calibration_services .price::after {
  content: "";
  background-color: #fff;
  width: 1rem;
  height: 2rem;
  left: -1rem;
  top: -1rem;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  position: absolute;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services .txt::after, .wrap--calibration_services .calibration_services .price::after {
    content: "";
    background-color: #fff;
    width: 0.7rem;
    height: 0.7rem;
    left: -0.4rem;
    top: -0.32rem;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    position: absolute;
  }
}
.wrap--calibration_services .calibration_services .txt-02, .wrap--calibration_services .calibration_services .price-02 {
  width: 20%;
  position: relative;
  padding: 1em 3rem 1em 4.2rem;
  text-align: left;
  border-left: solid 0.1rem #DEDEDE;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services .txt-02, .wrap--calibration_services .calibration_services .price-02 {
    font-size: 1.4rem;
    padding: 0.5em 2rem 0.5em 2rem;
  }
}
.wrap--calibration_services .calibration_services .txt-02::before, .wrap--calibration_services .calibration_services .price-02::before {
  content: "";
  background-color: #eceff1;
  width: 1rem;
  height: 2rem;
  left: -0.5rem;
  bottom: 1rem;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  position: absolute;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services .txt-02::before, .wrap--calibration_services .calibration_services .price-02::before {
    content: "";
    background-color: #eceff1;
    width: 0.7rem;
    height: 0.5rem;
    left: -0.4rem;
    bottom: 0.3rem;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    position: absolute;
  }
}
.wrap--calibration_services .calibration_services .txt-02::after, .wrap--calibration_services .calibration_services .price-02::after {
  content: "";
  background-color: #eceff1;
  width: 1rem;
  height: 2rem;
  left: -1rem;
  top: -1rem;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  position: absolute;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services .txt-02::after, .wrap--calibration_services .calibration_services .price-02::after {
    content: "";
    background-color: #eceff1;
    width: 0.7rem;
    height: 0.7rem;
    left: -0.4rem;
    top: -0.32rem;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    position: absolute;
  }
}
.wrap--calibration_services .calibration_services .price ul {
  text-indent: -1.6rem;
  padding-left: 1.6rem;
}
.wrap--calibration_services .calibration_services .color01 {
  background-color: rgba(153, 174, 181, 0.5);
  color: #fff;
  border-right: 1rem solid #fff;
  text-align: center;
  padding: 4rem 0;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services .color01 {
    font-size: 1.4rem;
    padding: 1.8rem 0; /* デフォルトのパディングを設定 */
  }
}
.wrap--calibration_services .calibration_services .color02 {
  background-color: #99AEB5;
  color: #fff;
  text-align: center;
  padding: 4rem 0;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--calibration_services .calibration_services .color02 {
    padding: 1.8rem 0; /* デフォルトのパディングを設定 */
    font-size: 1.4rem;
  }
}
.wrap--calibration_services .calibration_services .om-bg {
  background-color: #eceff1;
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

	■modifierを使用する場合
	【例】
	.top-sec__ttl{
		color: black;
		&--color{
			color: red;
		}
	}



----------------------------------------------------*/
.wrap--value_of_time .value_of_time {
  padding: 12rem 0 0;
  /* パララックス効果を持つ要素の共通スタイル */
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time {
    padding: 4.5rem 0 0;
  }
}
.wrap--value_of_time .value_of_time__wrap {
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__wrap {
    padding-bottom: 6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrap--value_of_time .value_of_time__heading {
  font-size: 3.6rem;
  padding-bottom: 5rem;
  line-height: 1;
  font-family: "soleil", sans-serif;
  font-style: normal;
  padding-right: 10rem;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__heading {
    font-size: 2.1rem;
    padding-bottom: 3.5rem;
    text-align: center;
    padding-right: 0;
    margin: 0 auto;
    letter-spacing: 0.075rem;
  }
}
.wrap--value_of_time .value_of_time__txt {
  width: 84rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__txt {
    width: 100%;
    font-size: 1.8rem;
    padding-top: 0;
  }
}
.wrap--value_of_time .value_of_time__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .wrap--value_of_time .value_of_time__item {
    padding-bottom: 12rem;
  }
}
@media screen and (max-width: 850px) {
  .wrap--value_of_time .value_of_time__item {
    padding-bottom: 24rem;
  }
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__item {
    display: block;
    padding: 0;
  }
}
.wrap--value_of_time .value_of_time__item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-top: 12rem;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__item:nth-of-type(even) {
    margin-top: 5rem;
  }
}
.wrap--value_of_time .value_of_time__item:nth-of-type(3) {
  margin-top: 12rem;
  margin-bottom: 14rem;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__item:nth-of-type(3) {
    margin-top: 5rem;
    margin-bottom: 4.5rem;
  }
}
.wrap--value_of_time .value_of_time__item-box {
  width: 48rem;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__item-box {
    width: 100%;
  }
}
.wrap--value_of_time .value_of_time__item-block {
  background: #99AEB5;
  color: #fff;
  font-size: 1.6rem;
  display: inline-block;
  padding: 0.8rem 1.4rem;
  margin-bottom: 4rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__item-block {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    padding: 0.6rem 1rem;
  }
}
.wrap--value_of_time .value_of_time__item-block--02 {
  margin-left: 12rem;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__item-block--02 {
    margin-left: 0;
  }
}
.wrap--value_of_time .value_of_time__item-heading {
  font-family: "soleil", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.025rem;
  padding-bottom: 5rem;
  border-bottom: solid 0.5rem #627F89;
  margin-bottom: 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__item-heading {
    border-bottom: none;
    font-size: 1.8rem;
    padding-bottom: 2.5rem;
    margin-bottom: 0;
    letter-spacing: 0.075em;
  }
}
.wrap--value_of_time .value_of_time__item-heading--02 {
  padding-left: 12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.wrap--value_of_time .value_of_time__item-heading--02 h3 {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__item-heading--02 {
    padding-left: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.wrap--value_of_time .value_of_time__item-heading::before {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 0.5rem #99AEB5;
  bottom: -0.5rem;
  width: 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__item-heading::before {
    border-bottom: none;
  }
}
.wrap--value_of_time .value_of_time__item-txt {
  font-size: 1.6rem;
  width: 36rem;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__item-txt {
    width: 100%;
    font-size: 1.4rem;
  }
}
.wrap--value_of_time .value_of_time__item-txt--02 {
  width: auto;
  padding-left: 12rem;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__item-txt--02 {
    padding-left: 0;
  }
}
.wrap--value_of_time .value_of_time__item-img {
  width: calc(50vw + 9rem);
  height: 495px;
  position: absolute;
  top: 0;
  left: 45rem;
}
@media screen and (max-width: 1200px) {
  .wrap--value_of_time .value_of_time__item-img {
    width: calc(50vw + 14rem);
  }
}
@media screen and (max-width: 1080px) {
  .wrap--value_of_time .value_of_time__item-img {
    width: 64%;
  }
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__item-img {
    margin: 0 calc(59% - 50vw);
    width: 93vw;
    height: auto;
    position: relative;
    -webkit-transform: none;
            transform: none;
    padding-bottom: 2.9rem;
    left: 0rem;
  }
}
.wrap--value_of_time .value_of_time__item-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.wrap--value_of_time .value_of_time__item-img-line-sp {
  border-bottom: solid 5px;
  color: #627F89;
  position: relative;
  width: 70%;
  margin-bottom: 2rem;
}
.wrap--value_of_time .value_of_time__item-img-line-sp::before {
  position: absolute;
  content: "";
  display: block;
  border-bottom: solid 5px #99AEB5;
  bottom: -5px;
  left: 0;
  width: 2rem;
}
.wrap--value_of_time .value_of_time__item-img02 {
  width: calc(50vw + 9rem);
  height: 495px;
  position: absolute;
  top: 0;
  right: 48rem;
}
@media screen and (max-width: 1200px) {
  .wrap--value_of_time .value_of_time__item-img02 {
    width: calc(50vw + 14rem);
  }
}
@media screen and (max-width: 1080px) {
  .wrap--value_of_time .value_of_time__item-img02 {
    width: 64%;
  }
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__item-img02 {
    margin: 0 calc(50% - 50vw);
    width: 92vw;
    height: auto;
    position: relative;
    -webkit-transform: none;
            transform: none;
    padding-bottom: 2.9rem;
    right: 0rem;
  }
}
.wrap--value_of_time .value_of_time__item-img02 img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.wrap--value_of_time .value_of_time__parallax {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__parallax {
    height: 36rem;
  }
}
.wrap--value_of_time .value_of_time .thumbnail {
  width: 100vw;
  height: 58rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 100% 35%;
     object-position: 100% 35%;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time .thumbnail {
    height: 36rem;
    -o-object-position: center;
       object-position: center;
  }
}
.wrap--value_of_time .value_of_time .parallax-bg {
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time .parallax-bg {
    overflow-x: visible; /* スマートフォンでは横スクロールを有効に */
    height: 36rem;
  }
}
.wrap--value_of_time .value_of_time__need-bg {
  background-color: #EBEFF1;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  margin-bottom: 18rem;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__need-bg {
    margin-bottom: 6.3rem;
  }
}
.wrap--value_of_time .value_of_time__need-wrap {
  padding-top: 12rem;
  padding-bottom: 26.7rem;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__need-wrap {
    padding-top: 4.5rem;
    padding-bottom: 7.7rem;
  }
}
.wrap--value_of_time .value_of_time__need-heading {
  text-align: center;
  color: #627F89;
  font-size: 2.8rem;
  letter-spacing: 0.2rem;
  border: solid 0.8rem #627F89;
  padding: 3rem 0;
  line-height: 1;
  margin: 0 auto;
  margin-bottom: 5rem;
  width: 90rem;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__need-heading {
    width: auto;
    padding: 1.4rem 0;
    font-size: 1.6rem;
    line-height: 1.5;
    border: solid 0.4rem #627F89;
    margin-bottom: 2.5rem;
  }
}
.wrap--value_of_time .value_of_time__need-txt {
  width: 80rem;
  margin: 0 auto;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__need-txt {
    width: auto;
    font-size: 1.4rem;
  }
}
.wrap--value_of_time .value_of_time__need-imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 50.6%;
  bottom: -56%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__need-imgs {
    width: auto;
    bottom: -26%;
    gap: 0.5rem;
    left: 50%;
  }
}
.wrap--value_of_time .value_of_time__need-img {
  width: 54.5rem;
  height: 37.3rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__need-img {
    width: 15.5rem;
    height: auto;
  }
}
.wrap--value_of_time .value_of_time__need-img::before {
  content: "";
  position: absolute;
  left: 13.8%;
  top: -1.3%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #99AEB5), color-stop(20%, #627F89));
  background-image: linear-gradient(90deg, #99AEB5 0 30%, #627F89 20%);
  background-repeat: no-repeat;
  background-size: 100% 50%;
  background-position: bottom;
  padding: 0.5rem 0;
  margin-bottom: 0rem;
  z-index: 500;
  width: 15rem;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__need-img::before {
    content: none;
  }
}
.wrap--value_of_time .value_of_time__contract-heading {
  font-size: 2.8rem;
  text-align: center;
  padding-bottom: 6rem;
  line-height: 1;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__contract-heading {
    font-size: 1.8rem;
    padding-bottom: 2.5rem;
  }
}
.wrap--value_of_time .value_of_time__contract-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__contract-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 0;
  }
}
.wrap--value_of_time .value_of_time__contract-btn {
  position: relative;
  display: block;
  width: 33.5rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-left: none;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__contract-btn {
    width: auto;
    margin-bottom: 1rem;
  }
  .wrap--value_of_time .value_of_time__contract-btn:last-child {
    margin-bottom: 0;
  }
}
.wrap--value_of_time .value_of_time__contract-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #99AEB5;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__contract-btn::before {
    background: none;
  }
}
.wrap--value_of_time .value_of_time__contract-btn:hover::before {
  background: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__contract-btn:hover::before {
    pointer-events: none;
  }
}
.wrap--value_of_time .value_of_time__contract-btn::after {
  content: "";
  background: url(../images/common/img-contract-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 50%;
  right: 3%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__contract-btn::after {
    background: url(../images/common/img-contract-arrow-hov.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 4rem;
    height: 4rem;
    position: absolute;
    top: 50%;
    right: 0;
  }
}
.wrap--value_of_time .value_of_time__contract-btn:hover:after {
  content: "";
  background: url(../images/common/img-contract-arrow-hov.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
.wrap--value_of_time .value_of_time__contract-txt {
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.8;
  font-weight: bold;
  /* padding-bottom: 6rem; */
  position: absolute;
  top: 50%;
  left: -5%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__contract-txt {
    font-size: 1.6rem;
    left: -11%;
  }
}
.wrap--value_of_time .value_of_time__contract-txt--02 {
  left: -14%;
}
@media screen and (max-width: 767px) {
  .wrap--value_of_time .value_of_time__contract-txt--02 {
    font-size: 1.6rem;
    left: -18%;
  }
}
.wrap--value_of_time .common-line {
  margin: 1px 0;
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

	■modifierを使用する場合
	【例】
	.top-sec__ttl{
		color: black;
		&--color{
			color: red;
		}
	}



----------------------------------------------------*/
.wrap--preventive_maintenance .preventive_maintenance {
  padding: 12rem 0 0;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance {
    padding: 4.5rem 0 0;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__wrap {
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__wrap {
    padding-bottom: 4.5rem;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__heading {
  font-family: "soleil", sans-serif;
  font-size: 3.2rem;
  text-align: center;
  padding-bottom: 9rem;
  line-height: 1;
  letter-spacing: 1rem;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__heading {
    font-size: 2.1rem;
    padding-bottom: 1.9rem;
    letter-spacing: 0.075em;
    text-align: center;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__txt {
  width: 86rem;
  margin: 0 auto;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__txt {
    width: 100%;
    font-size: 1.4rem;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__meaning-heading {
  background: #9AAEB5;
  color: #fff;
  text-align: center;
  padding: 1.8rem 0;
  font-size: 2.4rem;
  position: relative;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__meaning-heading {
    font-size: 1.5rem;
    padding: 1rem 0;
    line-height: 1.56;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__meaning-heading::before {
  content: "";
  position: absolute;
  background: #627F89;
  width: 1rem;
  height: 4.6rem;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__meaning-heading::before {
    width: 0.6rem;
    height: 3.5rem;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    left: 0.3rem;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__meaning-heading::after {
  content: "";
  position: absolute;
  background: #627F89;
  width: 1rem;
  height: 4.6rem;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  right: -0.5rem;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__meaning-heading::after {
    width: 0.6rem;
    height: 3.5rem;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    right: -0.3rem;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__meaning-heading h3 {
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__meaning-heading h3 {
    padding-left: 17.5%;
    text-align: left;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__meaning-heading h3::before {
  content: "";
  background: url(../images/page/preventive_maintenance/img-meaning-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 50%;
  left: 24%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__meaning-heading h3::before {
    width: 1.9rem;
    height: 2.2rem;
    left: 10.33%;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__meaning-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 7rem;
}
.wrap--preventive_maintenance .preventive_maintenance__meaning-item:first-child {
  padding-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__meaning-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-top: 2rem;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__meaning-box {
  width: 58rem;
  border-top: solid 0.5rem #99AEB5;
  margin-top: 5rem;
  position: relative;
}
.wrap--preventive_maintenance .preventive_maintenance__meaning-box::before {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 0.5rem #627F89;
  top: -0.5rem;
  width: 3rem;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__meaning-box::before {
    width: 100%;
    border-bottom: none;
  }
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__meaning-box {
    width: 100%;
    border-top: none;
    margin-top: 2.5rem;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__meaning-subheading {
  width: 46rem;
  margin: 0 auto;
  padding: 4rem 0 3rem;
  font-size: 2.6rem;
  line-height: 1.58;
  letter-spacing: 0.1rem;
  position: relative;
}
.wrap--preventive_maintenance .preventive_maintenance__meaning-subheading::before {
  content: "";
  background: url(../images/page/preventive_maintenance/img-prevention-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 54%;
  left: -10%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__meaning-subheading {
    width: 100%;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__meaning-subheading-sp {
  padding-top: 1.5rem;
  font-family: "soleil", sans-serif;
  font-size: 1.8rem;
  position: relative;
}
.wrap--preventive_maintenance .preventive_maintenance__meaning-subheading-sp:nth-last-of-type(2) {
  padding-top: 1.5rem;
}
.wrap--preventive_maintenance .preventive_maintenance__meaning-subheading-sp h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.075rem;
  line-height: 1.5;
  padding-left: 3rem;
}
.wrap--preventive_maintenance .preventive_maintenance__meaning-subheading-sp h4::after {
  content: "";
  height: 0.4rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #627F89), color-stop(20%, #99AEB5));
  background-image: linear-gradient(90deg, #627F89 0 30%, #99AEB5 20%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-left: 1.5rem;
}
.wrap--preventive_maintenance .preventive_maintenance__meaning-subheading-sp::before {
  content: "";
  background: url(../images/page/preventive_maintenance/img-prevention-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 67%;
  left: 3%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.wrap--preventive_maintenance .preventive_maintenance__meaning-subheading-sp:nth-last-of-type(2)::before {
  top: 65%;
}
.wrap--preventive_maintenance .preventive_maintenance__meaning-txt {
  width: 46rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__meaning-txt {
    width: 100%;
    font-size: 1.4rem;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__meaning-img {
  width: 50rem;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__meaning-img {
    width: 100%;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__req {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 15rem 0;
  position: relative;
  width: 100vw;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__req {
    padding: 6rem 0;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__req::before {
  content: "";
  background-color: #627F89;
  width: 14rem;
  height: 1rem;
  position: absolute;
  top: 0.5rem;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__req::before {
    width: 7rem;
    height: 0.5rem;
    top: 0.3rem;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__req::after {
  content: "";
  width: 0;
  height: 100%;
  display: block;
  background: #ECEFF1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.wrap--preventive_maintenance .preventive_maintenance__req.active::after {
  width: 100%;
}
.wrap--preventive_maintenance .preventive_maintenance__req-wrap {
  position: relative;
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.wrap--preventive_maintenance .preventive_maintenance__req-wrap::before {
  content: "";
  background: url(../images/page/preventive_maintenance/img-req-left.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 7.2rem;
  height: 33.4rem;
  position: absolute;
  top: 50%;
  left: 3.4%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__req-wrap::before {
    background: url(../images/page/preventive_maintenance/img-req-left-sp.png);
    width: 3.6rem;
    height: 40rem;
    background-size: contain;
    background-repeat: no-repeat;
    left: 7%;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__req-wrap::after {
  content: "";
  background: url(../images/page/preventive_maintenance/img-req-right.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 7.2rem;
  height: 33.4rem;
  position: absolute;
  top: 50%;
  right: -3.3%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__req-wrap::after {
    background: url(../images/page/preventive_maintenance/img-req-right-sp.png);
    width: 3.6rem;
    height: 40rem;
    background-size: contain;
    background-repeat: no-repeat;
    right: -4%;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__req-heading {
  text-align: center;
  font-size: 2.8rem;
  letter-spacing: 0.2rem;
  padding-bottom: 9rem;
  position: relative;
}
.wrap--preventive_maintenance .preventive_maintenance__req-heading::after {
  content: "";
  position: absolute;
  background: #707070;
  width: 7.5rem;
  height: 0.1rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__req-heading::after {
    width: 3.5rem;
    top: 65%;
  }
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__req-heading {
    font-size: 1.6rem;
    padding-bottom: 3.5rem;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__req-txt {
  width: 80rem;
  margin: 0 auto;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__req-txt {
    width: 25rem;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__type {
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__type {
    padding: 4.5rem 0 5rem;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__type-heading {
  font-size: 2.8rem;
  text-align: center;
  letter-spacing: 0.2rem;
  padding-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__type-heading {
    padding-bottom: 2.5rem;
    font-size: 1.8rem;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__type-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__type-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__type-box {
  width: 52rem;
  background: #ECEFF1;
  padding: 5rem 0 6rem;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__type-box {
    width: 100%;
    padding: 2.5rem 0;
  }
  .wrap--preventive_maintenance .preventive_maintenance__type-box:first-child {
    margin-bottom: 2.5rem;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__type-subheading {
  font-size: 2.4rem;
  text-align: left;
  letter-spacing: 0.2rem;
  padding-bottom: 3rem;
  padding-left: 3.5rem;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__type-subheading {
    padding-left: 2rem;
    padding-bottom: 1.7rem;
    font-size: 1.6rem;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__type-small {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__type-small {
    font-size: 1.4rem;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__type-img {
  padding-bottom: 3rem;
  padding-left: 3.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__type-img {
    padding-left: 2rem;
    padding-bottom: 2rem;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__type-img::before {
  content: "";
  position: absolute;
  background: #627F89;
  width: 1rem;
  height: 6.5rem;
  bottom: 7%;
  left: 6%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__type-img::before {
    width: 0.6rem;
    height: 3.6rem;
    bottom: 15%;
    left: 5.5%;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__type-txt {
  width: 40rem;
  margin: 0 auto;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__type-txt {
    width: 25rem;
    font-size: 1.4rem;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__flow-heading {
  font-size: 2.8rem;
  text-align: center;
  letter-spacing: 0.2rem;
  padding-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__flow-heading {
    padding-bottom: 4.5rem;
    font-size: 1.8rem;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__flow-group {
  border-bottom: solid 0.1rem #DEDEDE;
  padding-bottom: 4.3rem;
  position: relative;
  padding-top: 5.8rem;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__flow-group {
    padding-top: 3.6rem;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__flow-group::before {
  content: "";
  background: url(../images/page/preventive_maintenance/img-flow-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  width: 6rem;
  height: 4rem;
  bottom: -16%;
  left: 14%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__flow-group::before {
    content: "";
    background: url(../images/page/preventive_maintenance/img-flow-arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    width: 5rem;
    height: 1.9rem;
    bottom: -6%;
    left: 48%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.wrap--preventive_maintenance .preventive_maintenance__flow-group:last-child::before {
  content: none;
}
.wrap--preventive_maintenance .preventive_maintenance__flow-group:nth-of-type(2) {
  padding-top: 0;
}
.wrap--preventive_maintenance .preventive_maintenance__flow-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.wrap--preventive_maintenance .preventive_maintenance__flow-group--01 {
  position: relative;
  left: 1%;
}
.wrap--preventive_maintenance .preventive_maintenance__flow-group--02::before {
  content: "";
  background: url(../images/page/preventive_maintenance/img-flow-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  width: 6rem;
  height: 4rem;
  bottom: -16%;
  left: 14%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__flow-group--02::before {
    content: "";
    background: url(../images/page/preventive_maintenance/img-flow-arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    width: 5rem;
    height: 1.9rem;
    bottom: -7%;
    left: 48%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.wrap--preventive_maintenance .preventive_maintenance__flow-group--03::before {
  content: "";
  background: url(../images/page/preventive_maintenance/img-flow-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  width: 6rem;
  height: 4rem;
  bottom: -15%;
  left: 14%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__flow-group--03::before {
    content: "";
    background: url(../images/page/preventive_maintenance/img-flow-arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    width: 5rem;
    height: 1.9rem;
    bottom: -6%;
    left: 48%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.wrap--preventive_maintenance .preventive_maintenance__flow-group--04::before {
  content: "";
  background: url(../images/page/preventive_maintenance/img-flow-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  width: 6rem;
  height: 4rem;
  bottom: -15%;
  left: 14%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__flow-group--04::before {
    content: "";
    background: url(../images/page/preventive_maintenance/img-flow-arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    width: 5rem;
    height: 1.9rem;
    bottom: -7%;
    left: 48%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.wrap--preventive_maintenance .preventive_maintenance__flow-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 87rem;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__flow-item {
    width: 100%;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__flow-wrap {
  width: 72.5rem;
}
.wrap--preventive_maintenance .preventive_maintenance__flow-subheading {
  font-size: 2.4rem;
  color: #627F89;
  font-weight: bold;
  letter-spacing: 0.1rem;
  padding-bottom: 5rem;
  padding-left: 8.8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__flow-subheading {
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    padding-bottom: 4.5rem;
    padding-left: 4.8rem;
    position: relative;
    margin-left: 7rem;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__flow-subheading--01::before {
  content: "";
  position: absolute;
  background: url(../images/page/preventive_maintenance/img-flow-num01.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 5.8rem;
  height: 7rem;
  bottom: 0%;
  left: 4%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__flow-subheading--01::before {
    width: 4.3rem;
    height: 5rem;
    bottom: 10%;
  }
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__flow-subheading--01::after {
    content: "";
    position: absolute;
    background: url(../images/page/preventive_maintenance/img-flow01.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 5rem;
    height: 5.8rem;
    bottom: 10%;
    left: -18%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.wrap--preventive_maintenance .preventive_maintenance__flow-subheading--02::before {
  content: "";
  position: absolute;
  background: url(../images/page/preventive_maintenance/img-flow-num02.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 5.8rem;
  height: 7rem;
  bottom: 0%;
  left: 4%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__flow-subheading--02::before {
    width: 4.3rem;
    height: 5rem;
    bottom: 10%;
  }
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__flow-subheading--02::after {
    content: "";
    position: absolute;
    background: url(../images/page/preventive_maintenance/img-flow02.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 4.7rem;
    height: 4.7rem;
    bottom: 10%;
    left: -18%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.wrap--preventive_maintenance .preventive_maintenance__flow-subheading--03::before {
  content: "";
  position: absolute;
  background: url(../images/page/preventive_maintenance/img-flow-num03.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 5.8rem;
  height: 7rem;
  bottom: 0%;
  left: 4%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__flow-subheading--03::before {
    width: 4.3rem;
    height: 5rem;
    bottom: 10%;
  }
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__flow-subheading--03::after {
    content: "";
    position: absolute;
    background: url(../images/page/preventive_maintenance/img-flow03.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 3.7rem;
    height: 4.4rem;
    bottom: 15%;
    left: -18%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.wrap--preventive_maintenance .preventive_maintenance__flow-subheading--04::before {
  content: "";
  position: absolute;
  background: url(../images/page/preventive_maintenance/img-flow-num04.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 5.8rem;
  height: 7rem;
  bottom: 0%;
  left: 4%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__flow-subheading--04::before {
    width: 4.3rem;
    height: 5rem;
    bottom: 10%;
  }
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__flow-subheading--04::after {
    content: "";
    position: absolute;
    background: url(../images/page/preventive_maintenance/img-flow04.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 4.6rem;
    height: 4.6rem;
    bottom: 20%;
    left: -18%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.wrap--preventive_maintenance .preventive_maintenance__flow-subheading--05::before {
  content: "";
  position: absolute;
  background: url(../images/page/preventive_maintenance/img-flow-num05.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 5.8rem;
  height: 7rem;
  bottom: 0%;
  left: 4%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__flow-subheading--05::before {
    width: 4.3rem;
    height: 5rem;
    bottom: 10%;
  }
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__flow-subheading--05::after {
    content: "";
    position: absolute;
    background: url(../images/page/preventive_maintenance/img-flow05.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 5.6rem;
    height: 5.2rem;
    bottom: 10%;
    left: -18%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.wrap--preventive_maintenance .preventive_maintenance__flow-txt {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__flow-txt {
    font-size: 1.4rem;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__flow-img {
  width: 10rem;
}
.wrap--preventive_maintenance .preventive_maintenance__flow-img--01 {
  position: relative;
  left: 1.5%;
}
.wrap--preventive_maintenance .preventive_maintenance__sp-bd {
  display: none;
}
@media screen and (max-width: 767px) {
  .wrap--preventive_maintenance .preventive_maintenance__sp-bd {
    margin-top: 3.5rem;
    height: 0.6rem;
    display: block;
    background: #99AEB5;
    position: relative;
  }
  .wrap--preventive_maintenance .preventive_maintenance__sp-bd::after {
    content: "";
    width: 5rem;
    height: 100%;
    display: block;
    background: #627F89;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
.wrap--preventive_maintenance .preventive_maintenance__sp-bd.preventive_maintenance__sp-bd--02 {
  margin-top: 5rem;
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

	■modifierを使用する場合
	【例】
	.top-sec__ttl{
		color: black;
		&--color{
			color: red;
		}
	}



----------------------------------------------------*/
.wrap--support_system .support_system {
  padding: 12rem 0 0;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system {
    padding: 4.5rem 0 0;
  }
}
.wrap--support_system .support_system__common {
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__common {
    padding-bottom: 4.5rem;
  }
}
.wrap--support_system .support_system__common--gray {
  background: #ECEFF1;
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__common--gray {
    padding: 4.5rem 0;
  }
}
.wrap--support_system .support_system__common--white {
  background: #fff;
  padding: 12rem 0;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__common--white {
    padding: 4.5rem 0;
  }
}
.wrap--support_system .support_system__common--white-02 {
  background: #fff;
  padding: 12rem 0 0;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__common--white-02 {
    padding: 4.5rem 0 0;
  }
}
.wrap--support_system .support_system__heading {
  font-size: 3.6rem;
  text-align: left;
  padding-bottom: 8rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__heading {
    font-size: 2.1rem;
    padding-bottom: 3rem;
    text-align: center;
  }
}
.wrap--support_system .support_system__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrap--support_system .support_system__group:nth-of-type(0) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.wrap--support_system .support_system__group:nth-of-type(1) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.wrap--support_system .support_system__txt {
  width: 64rem;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__txt {
    width: 100%;
  }
}
.wrap--support_system .support_system__common-heading {
  font-size: 3.2rem;
  padding-bottom: 5.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__common-heading {
    font-size: 1.8rem;
    padding-bottom: 2rem;
  }
}
.wrap--support_system .support_system__common-heading h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.2rem;
}
.wrap--support_system .support_system__common-heading h3::after {
  content: "";
  height: 1rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #99AEB5;
  margin-left: 5rem;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__common-heading h3::after {
    margin-left: 1.5rem;
    height: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__common-heading-sp {
    font-size: 1.8rem;
    padding-bottom: 2rem;
    line-height: 1.4;
  }
}
.wrap--support_system .support_system__common-heading-sp h3 {
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__common-heading-sp h3 {
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__common-heading-sp h3::after {
    position: absolute;
    content: "";
    top: 26%;
    right: -11.5%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 7.4rem;
    margin-left: 1.5rem;
    height: 0.5rem;
    background-color: #99AEB5;
  }
}
.wrap--support_system .support_system__common-small {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__common-small {
    font-size: 1.4rem;
  }
}
.wrap--support_system .support_system__map-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__map-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrap--support_system .support_system__map-txt-group {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__map-txt-group {
    width: 100%;
  }
}
.wrap--support_system .support_system__map-heading {
  font-size: 2.4rem;
  font-weight: bold;
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__map-heading {
    font-size: 1.6rem;
    padding-bottom: 1.5rem;
    letter-spacing: 0.1rem;
  }
}
.wrap--support_system .support_system__map-txt {
  font-size: 1.6rem;
  line-height: 2;
  width: 30rem;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__map-txt {
    font-size: 1.4rem;
    width: 100%;
  }
}
.wrap--support_system .support_system__map-img {
  width: 63%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__map-img {
    width: 100%;
    padding-bottom: 4.3rem;
  }
}
.wrap--support_system .support_system__map-txt02 {
  position: absolute;
  right: 0;
  bottom: 5rem;
  text-align: right;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__map-txt02 {
    font-size: 1.6rem;
    bottom: 3.5rem;
  }
}
.wrap--support_system .support_system__map-txt02::before {
  content: "";
  position: absolute;
  background: url(../images/page/support_system/img-map-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 3rem;
  height: 4rem;
  left: -12%;
  top: 42%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__map-txt02::before {
    width: 1.5rem;
    height: 2.3rem;
    top: 50%;
  }
}
.wrap--support_system .support_system__map-big {
  font-size: 6rem;
  color: #627F89;
  font-family: "soleil", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__map-big {
    font-size: 3.9rem;
  }
}
.wrap--support_system .support_system__map-small {
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__map-small {
    font-size: 1rem;
  }
}
.wrap--support_system .support_system__call {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 9rem;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__call {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-bottom: 3.5rem;
  }
}
.wrap--support_system .support_system__call-txt {
  width: 30rem;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__call-txt {
    width: 100%;
    font-size: 1.4rem;
  }
}
.wrap--support_system .support_system__call-img {
  width: 64rem;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__call-img {
    width: 100%;
    padding-bottom: 2.5rem;
  }
}
.wrap--support_system .support_system__call-img02 {
  width: 82rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__call-img02 {
    width: 100%;
  }
}
.wrap--support_system .support_system__service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 8.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__service {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 4rem;
  }
}
.wrap--support_system .support_system__service-img {
  width: 64rem;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__service-img {
    width: 100%;
  }
}
.wrap--support_system .support_system__service-txts {
  width: 38rem;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__service-txts {
    width: 100%;
  }
}
.wrap--support_system .support_system__service-heading {
  position: relative;
  left: -11rem;
  top: 4rem;
  width: 93%;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__service-heading {
    left: 2rem;
    top: -2rem;
    width: 78%;
  }
}
.wrap--support_system .support_system__service-heading p {
  padding-bottom: 1rem;
  display: inline-block;
  color: #fff;
  background: #99AEB5;
  padding: 1rem 2rem;
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__service-heading p {
    font-size: 1.6rem;
    padding: 0.35rem 1rem;
    margin-bottom: 0.5rem;
  }
}
.wrap--support_system .support_system__service-heading p:last-child {
  margin-bottom: 0;
}
.wrap--support_system .support_system__service-txt {
  font-size: 1.6rem;
  padding-top: 6.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__service-txt {
    padding-top: 0;
    font-size: 1.4rem;
    width: 87%;
    margin: 0 auto;
  }
}
.wrap--support_system .support_system__service-labo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__service-labo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrap--support_system .support_system__service-labo-group {
  width: 52rem;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__service-labo-group {
    width: 100%;
  }
  .wrap--support_system .support_system__service-labo-group:nth-of-type(1) {
    padding-bottom: 4rem;
  }
}
.wrap--support_system .support_system__service-labo-point {
  color: #99AEB5;
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  position: relative;
  line-height: 1;
  padding-left: 1.4rem;
  padding-bottom: 1rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__service-labo-point {
    font-size: 1.2rem;
  }
}
.wrap--support_system .support_system__service-labo-point::before {
  content: "";
  position: absolute;
  width: 0.5rem;
  height: 4rem;
  background: #99AEB5;
  left: 0.5%;
  top: 37%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__service-labo-point::before {
    width: 0.4rem;
  }
}
.wrap--support_system .support_system__service-labo-point-num {
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__service-labo-point-num {
    font-size: 2.1rem;
  }
}
.wrap--support_system .support_system__service-labo-img {
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__service-labo-img {
    padding-bottom: 2rem;
  }
}
.wrap--support_system .support_system__service-labo-heading {
  font-size: 2.4rem;
  font-weight: bold;
  padding-bottom: 4rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__service-labo-heading {
    font-size: 1.6rem;
    padding-bottom: 1.5rem;
  }
}
.wrap--support_system .support_system__service-labo-txt {
  width: 47.5rem;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__service-labo-txt {
    width: 27.5rem;
  }
}
.wrap--support_system .support_system__service-labo-txt::before {
  content: "";
  position: absolute;
  width: 2.5rem;
  height: 0.2rem;
  background: #99AEB5;
  left: -6%;
  top: 13%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__service-labo-txt::before {
    left: -9%;
    top: 8%;
  }
}
.wrap--support_system .support_system__repair {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__repair {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 0;
  }
}
.wrap--support_system .support_system__repair-img {
  width: 64rem;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__repair-img {
    width: 100%;
  }
}
.wrap--support_system .support_system__repair-txts {
  width: 38rem;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__repair-txts {
    width: 100%;
  }
}
.wrap--support_system .support_system__repair-heading {
  position: relative;
  left: -11rem;
  top: 7rem;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__repair-heading {
    left: 2rem;
    top: -2rem;
    width: 83%;
  }
}
.wrap--support_system .support_system__repair-heading p {
  padding-bottom: 1rem;
  display: inline-block;
  color: #fff;
  background: #99AEB5;
  padding: 1rem 2rem;
  font-size: 2.4rem;
  margin-bottom: 1rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__repair-heading p {
    font-size: 1.6rem;
    padding: 0.35rem 1rem;
    margin-bottom: 0.5rem;
  }
}
.wrap--support_system .support_system__repair-heading p:last-child {
  margin-bottom: 0;
}
.wrap--support_system .support_system__repair-txt {
  font-size: 1.6rem;
  padding-top: 11rem;
}
@media screen and (max-width: 767px) {
  .wrap--support_system .support_system__repair-txt {
    padding-top: 0;
    font-size: 1.4rem;
    width: 87%;
    margin: 0 auto;
  }
}

/*----------------------------------------------------

  各ページの独自モジュールスタイルのCSS。

  【記述ルール】
  { ページ名(top, about等) }○○○○

  階層はルートクラスより、三階層までが基本
  【例】
  .top-sec .top-sec__ttl span {   
  }
  ※CSSに展開した場合

  ■modifierを使用する場合
  【例】
  .top-sec__ttl{
    color: black;
    &--color{
      color: red;
    }
  }



----------------------------------------------------*/
.wrap--service_contract .service_contract--bg {
  background: #fff;
}
.wrap--service_contract .service_contract__wrap {
  padding: 12rem 0 0;
  background: #fff;
  margin-bottom: -2px;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__wrap {
    padding: 4.5rem 0 0;
  }
}
.wrap--service_contract .service_contract__heading {
  font-size: 3.2rem;
  padding-bottom: 2.5rem;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__heading {
    font-size: 2.1rem;
  }
}
.wrap--service_contract .service_contract__txt-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__txt-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrap--service_contract .service_contract__subheading {
  font-size: 2.8rem;
  color: #627f89;
  line-height: 1.6;
  letter-spacing: 0.3rem;
  padding-top: 3rem;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__subheading {
    font-size: 1.8rem;
    padding-bottom: 0;
    padding-top: 2rem;
  }
}
.wrap--service_contract .service_contract__txt {
  width: 56rem;
  padding-right: 4rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__txt {
    width: 100%;
    padding-right: 0;
    font-size: 1.4rem;
  }
}
.wrap--service_contract .service_contract__plan01 {
  background: #eceff1;
  height: 60rem;
  margin-top: 30.3rem;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__plan01 {
    margin-top: 6.3rem;
    height: 63rem;
  }
}
.wrap--service_contract .service_contract__plan01--02 {
  margin-top: 32rem;
}
.wrap--service_contract .service_contract__plan01--03 {
  height: 36rem;
  margin-top: 30.7rem;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__plan01--03 {
    height: 56rem;
    margin-top: 7.9rem;
  }
}
.wrap--service_contract .service_contract__plan02 {
  margin-top: -20rem;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__plan02 {
    margin-top: -2rem;
  }
}
.wrap--service_contract .service_contract__cont {
  position: relative;
  top: -31%;
  left: 0;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__cont {
    top: -3%;
  }
}
.wrap--service_contract .service_contract__cont--02 {
  top: -52%;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__cont--02 {
    top: -3%;
  }
}
.wrap--service_contract .service_contract__plan-common-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__plan-common-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrap--service_contract .service_contract__plan-common-flex--row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__plan-common-flex--row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrap--service_contract .service_contract__plan-common-txt-box {
  width: 40rem;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__plan-common-txt-box {
    width: 100%;
  }
}
.wrap--service_contract .service_contract__plan-common-heading {
  font-size: 1.6rem;
  color: #fff;
  background: #627f89;
  font-weight: 400;
  padding: 0.8rem 0 0.8rem 2rem;
  line-height: 1.4;
  margin-bottom: 3rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__plan-common-heading {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}
.wrap--service_contract .service_contract__plan-common-heading::before {
  content: "";
  position: absolute;
  width: 20rem;
  height: 5px;
  background: #99aeb5;
  left: 25%;
  bottom: -18%;
  z-index: 10;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__plan-common-heading::before {
    width: 15rem;
    height: 4.5px;
    left: 23.8%;
    bottom: -13%;
  }
}
.wrap--service_contract .service_contract__plan-common-subheading {
  font-size: 2.4rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__plan-common-subheading {
    font-size: 1.6rem;
    padding-bottom: 2rem;
  }
}
.wrap--service_contract .service_contract__plan-common-txt {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__plan-common-txt {
    font-size: 1.4rem;
    padding-bottom: 3rem;
  }
}
.wrap--service_contract .service_contract__plan01-img {
  width: 60rem;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__plan01-img {
    width: 100%;
  }
}
.wrap--service_contract .service_contract__chart-wrap {
  background: #eceff1;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__chart-wrap {
    padding-bottom: 5rem;
  }
}
.wrap--service_contract .service_contract__chart-heading {
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__chart-heading {
    padding-bottom: 2rem;
  }
}
.wrap--service_contract .service_contract__chart-heading h3 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  color: #1683a8;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__chart-heading h3 {
    font-size: 1.8rem;
    padding-top: 3rem;
  }
}
.wrap--service_contract .service_contract__chart-heading h3::before {
  content: "";
  width: 30%;
  height: 0.1rem;
  background-color: #99aeb5;
  top: 50%;
  left: -15%;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  position: absolute;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__chart-heading h3::before {
    width: 3.4rem;
    left: -5%;
    top: 4.4rem;
  }
}
.wrap--service_contract .service_contract__chart-heading h3::after {
  content: "";
  width: 30%;
  height: 0.1rem;
  background-color: #99aeb5;
  top: 50%;
  right: -15%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__chart-heading h3::after {
    width: 3.4rem;
    right: -5%;
    top: 4.4rem;
  }
}
.wrap--service_contract .service_contract__chart-txt {
  width: 80rem;
  font-size: 1.6rem;
  margin: 0 auto;
  padding-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__chart-txt {
    width: 100%;
    font-size: 1.4rem;
    padding-bottom: 2.5rem;
  }
}
.wrap--service_contract .service_contract__chart-txt-ann {
  padding-top: 4rem;
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__chart-txt-ann {
    font-size: 1rem;
  }
}
.wrap--service_contract .service_contract .chart {
  min-height: 12vw;
  margin: 0 0 10vw;
}
.wrap--service_contract .service_contract .chart-main {
  width: 100%;
  margin: auto;
  position: relative;
}
.wrap--service_contract .service_contract .chart-txt {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 5vw;
  line-height: 1;
  -webkit-transform: translateY(-0.4em) translateX(-1em);
          transform: translateY(-0.4em) translateX(-1em);
}
.wrap--service_contract .service_contract .chart-number {
  display: inline-block;
  font-weight: bold;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.appear .wrap--service_contract .service_contract .chart-number {
  opacity: 1;
}
.wrap--service_contract .service_contract .chart-percentage {
  font-size: 3vw;
  opacity: 1;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  opacity: 0;
}
.appear .wrap--service_contract .service_contract .chart-percentage {
  opacity: 1;
}
.wrap--service_contract .service_contract .chart__item {
  max-width: 300px;
  width: 23.44vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract .chart__item {
    max-width: 100%;
    width: 100%;
  }
}
.wrap--service_contract .service_contract .chart__item canvas {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  width: 100% !important;
  height: auto !important;
  line-height: 0;
}
.wrap--service_contract .service_contract .chart__item-textarea {
  max-width: 240px;
  width: 18.75vw;
  max-height: 240px;
  height: 18.75vw;
  text-align: center;
  background: #eceff1;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 52%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract .chart__item-textarea {
    max-width: 100%;
    width: 64.29vw;
    max-height: 100%;
    height: 64.29vw;
  }
}
.wrap--service_contract .service_contract .chart__item-text01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: min(1.88vw, 24px);
  font-weight: 700;
  line-height: 1.33;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract .chart__item-text01 {
    font-size: min(6.14vw, 43px);
    line-height: 1.32;
  }
}
.wrap--service_contract .service_contract .chart__item-text02 {
  margin-top: 0.3vw;
  font-family: "soleil", sans-serif;
  font-size: min(2.5vw, 32px);
  font-weight: 500;
  line-height: 1;
  color: #1583a8;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract .chart__item-text02 {
    margin-top: 0;
    font-size: min(8.14vw, 57px);
  }
}
.wrap--service_contract .service_contract .chart__item-text02 span {
  font-size: min(5vw, 64px);
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract .chart__item-text02 span {
    font-size: min(16.29vw, 114px);
  }
}
.wrap--service_contract .service_contract .chart__graph-img {
  width: 95%;
  margin-inline: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract .chart__graph-img {
    width: 70%;
  }
}
.wrap--service_contract .service_contract .charts {
  padding: 0 3.7%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: auto;
}
.wrap--service_contract .service_contract .charts-wrapper {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract .charts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem 0;
  }
}
.wrap--service_contract .service_contract .parallax {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  width: 40vw;
  height: 600px;
}
.wrap--service_contract .service_contract .parallax::before {
  background-image: url(../images/page/service_contract/img-about.jpg);
  background-position: -45rem;
  background-repeat: repeat;
  background-size: cover;
  content: "";
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract .parallax::before {
    background-image: url(../images/page/service_contract/img-about-sp.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
  }
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract .parallax {
    padding: 20rem 0;
    height: auto;
  }
}
.wrap--service_contract .service_contract__about-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__about-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.wrap--service_contract .service_contract__about-list {
  width: 60%;
  background: #fff;
  padding: 120px 0 120px 100px;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__about-list {
    width: 100%;
    padding: 4.5rem 3rem 5rem 3rem;
  }
}
.wrap--service_contract .service_contract__about-txts {
  width: 54rem;
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__about-txts {
    width: 100%;
    padding-left: 0;
  }
}
.wrap--service_contract .service_contract__about-heading {
  padding-bottom: 90px;
  font-size: 2.8rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__about-heading {
    padding-bottom: 3.5rem;
    font-size: 1.8rem;
  }
}
.wrap--service_contract .service_contract__about-subheading {
  font-size: 2rem;
  color: #627f89;
  font-weight: 500;
  padding-bottom: 2.6rem;
  padding-left: 3rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__about-subheading {
    font-size: 1.6rem;
    padding-bottom: 1rem;
    padding-left: 2rem;
  }
}
.wrap--service_contract .service_contract__about-subheading::before {
  position: absolute;
  content: "";
  background: url(../images/page/service_contract/img-about-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 2rem;
  height: 2rem;
  top: 32%;
  left: 2%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__about-subheading::before {
    width: 1.5rem;
    height: 1.5rem;
    top: 40%;
    left: 3%;
  }
}
.wrap--service_contract .service_contract__about-txt {
  padding-bottom: 6rem;
  margin-bottom: 6rem;
  border-bottom: solid 0.1rem #dedede;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__about-txt {
    padding-bottom: 4rem;
    margin-bottom: 4rem;
  }
}
.wrap--service_contract .service_contract__about-txt02 {
  padding-bottom: 0;
}
.wrap--service_contract .service_contract__various {
  background: #eceff1;
  padding: 12rem 0 14rem;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__various {
    padding: 4.5rem 0 5rem;
  }
}
.wrap--service_contract .service_contract__various-heading {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  padding-bottom: 7rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__various-heading {
    padding-bottom: 2.5rem;
    font-size: 1.8rem;
  }
}
.wrap--service_contract .service_contract__various-txt {
  width: 80rem;
  margin: 0 auto;
  padding-bottom: 7rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__various-txt {
    width: auto;
    padding-bottom: 3.5rem;
    font-size: 1.4rem;
  }
}
.wrap--service_contract .service_contract__various-hover {
  position: relative;
}
.wrap--service_contract .service_contract__various-hover::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: -webkit-transform ease 0.4s, transform ease 0.4s;
  transform: scaleX(0);
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  transform-origin: 0% 100%;
  -webkit-transform-origin: 0% 100%;
  -moz-transform-origin: 0% 100%;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__various-hover::after {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
  }
}
.wrap--service_contract .service_contract__various-hover:hover::after {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  background: #627f89;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__various-hover:hover::after {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    width: 0;
    height: 0;
  }
}
.wrap--service_contract .service_contract__various-hover:hover {
  position: inherit;
}
.wrap--service_contract .service_contract__various-hover:hover .service_contract__various-item-txts {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__various-hover:hover .service_contract__various-item-txts {
    color: #fff;
  }
}
.wrap--service_contract .service_contract__various-hover:hover .service_contract__various-item-txts {
  border-right: solid #fff 0.1rem;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__various-hover:hover .service_contract__various-item-txts {
    border-right: none;
  }
}
.wrap--service_contract .service_contract__various-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__various-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: #627f89;
    margin: 0 3rem;
    margin-bottom: 2.5rem;
    padding-top: 1.5rem;
  }
}
.wrap--service_contract .service_contract__various-item::after {
  content: "";
  background: url(../images/page/service_contract/img-arrow-main.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  width: 1.6rem;
  height: 1.7rem;
  top: 50%;
  right: 0%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__various-item::after {
    content: "";
    background: url(../images/page/service_contract/img-arrow-hov-main.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    width: 1rem;
    height: 1.2rem;
    top: 95%;
    right: 47%;
  }
}
.wrap--service_contract .service_contract__various-item:hover::after {
  content: "";
  background: url(../images/page/service_contract/img-arrow-hov-main.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  width: 1.6rem;
  height: 1.7rem;
  top: 50%;
  right: -1%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__various-item:hover::after {
    content: "";
    background: url(../images/page/service_contract/img-arrow-hov-main.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    width: 1rem;
    height: 1.2rem;
    top: 95%;
    right: 47%;
  }
}
.wrap--service_contract .service_contract__various-item-img {
  width: 56rem;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__various-item-img {
    margin: 0 calc(68% - 50vw);
    width: 75.5vw;
  }
}
.wrap--service_contract .service_contract__various-item-txts {
  padding: 8rem 6rem 0 7rem;
  border-right: solid #949695 0.1rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__various-item-txts {
    padding: 0;
    border-right: none;
    border-bottom: solid #fff 0.1rem;
    color: #fff;
    margin: 0 calc(17.6% - 20vw);
    width: 84vw;
    margin-bottom: 5rem;
  }
}
.wrap--service_contract .service_contract__various-item-txts dl {
  width: 32rem;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__various-item-txts dl {
    width: 100%;
  }
}
.wrap--service_contract .service_contract__various-item-heading {
  font-size: 2.4rem;
  font-weight: bold;
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__various-item-heading {
    font-size: 1.6rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    width: 27rem;
    margin: 0 auto;
  }
}
.wrap--service_contract .service_contract__various-item-txt {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__various-item-txt {
    font-size: 1.4rem;
    padding-bottom: 2.5rem;
    width: 27rem;
    margin: 0 auto;
  }
}
.wrap--service_contract .service_contract__various-btn-layout {
  text-align: center;
}
.wrap--service_contract .service_contract__various-btn-main {
  border-radius: 15rem;
  text-align: center;
  outline: none;
  background: #627f89;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  padding: 2.7rem 9.4rem 2.7rem 6.4rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 auto;
  letter-spacing: 0.2rem;
  position: relative;
  display: inline-block;
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__various-btn-main {
    font-size: 1.3rem;
    padding: 2rem 5rem 2rem 2.3rem;
    margin-top: 2rem;
  }
}
.wrap--service_contract .service_contract__various-btn-main::before {
  content: "";
  position: absolute;
  background: url(../images/common/img-various.png) no-repeat center center;
  background-size: contain;
  width: 4rem;
  height: 4rem;
  top: 50%;
  right: 0%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__various-btn-main::before {
    width: 3rem;
    height: 3rem;
  }
}
.wrap--service_contract .service_contract__various-btn-main:hover::before {
  content: "";
  position: absolute;
  background: url(../images/common/img-various-hov.png) no-repeat center center;
  background-size: contain;
  width: 4rem;
  height: 4rem;
  top: 50%;
  right: 0%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .wrap--service_contract .service_contract__various-btn-main:hover::before {
    width: 3rem;
    height: 3rem;
  }
}
.wrap--service_contract .service_contract__various-btn-main:hover {
  background: #fff;
  color: #627f89;
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

	■modifierを使用する場合
	【例】
	.top-sec__ttl{
		color: black;
		&--color{
			color: red;
		}
	}



----------------------------------------------------*/
.wrap--error .error {
  padding: 30rem 0 14rem;
}
@media screen and (max-width: 767px) {
  .wrap--error .error {
    padding: 5rem 0 6rem;
  }
}
.wrap--error .error__wrap {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wrap--error .error__wrap {
    padding-bottom: 0;
  }
}
.wrap--error .error__heading {
  font-size: 14rem;
  color: #ECEFF1;
  text-align: center;
  font-family: "soleil", sans-serif;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.5rem;
}
@media screen and (max-width: 767px) {
  .wrap--error .error__heading {
    font-size: 7rem;
    padding-top: 5rem;
  }
}
.wrap--error .error__subheading {
  font-size: 4rem;
  text-align: center;
  padding-bottom: 5rem;
  letter-spacing: 0.3rem;
  font-weight: bold;
  line-height: 1;
  color: #ECEFF1;
}
@media screen and (max-width: 767px) {
  .wrap--error .error__subheading {
    font-size: 4rem;
    line-height: 1.6;
    padding-bottom: 2.5rem;
  }
}
.wrap--error .error__text {
  font-size: 2.4rem;
  text-align: center;
  padding-bottom: 3rem;
  letter-spacing: 0.3rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .wrap--error .error__text {
    font-size: 1.8rem;
    line-height: 1.6;
    padding-bottom: 2rem;
  }
}
.wrap--error .error__main-txt {
  font-size: 1.6rem;
  padding-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .wrap--error .error__main-txt {
    font-size: 1.4rem;
    text-align: left;
    padding-bottom: 4.5rem;
  }
}
.wrap--error .error__main-txt p:first-child {
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .wrap--error .error__main-txt p:first-child {
    padding-bottom: 0;
  }
}
.wrap--error .error__contact {
  text-align: center;
  padding: 6rem 0 0;
}
@media screen and (max-width: 767px) {
  .wrap--error .error__contact {
    text-align: left;
    padding: 4.5rem 0 0;
  }
}
.wrap--error .error__contact-heading {
  font-size: 2rem;
  padding-bottom: 5rem;
  letter-spacing: 0.2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--error .error__contact-heading {
    padding-left: 4.5rem;
    padding-bottom: 1.9rem;
    font-size: 1.8rem;
  }
}
.wrap--error .error__contact-img {
  position: absolute;
  top: 14%;
  left: 37%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 3.5rem;
  height: 2.9rem;
}
@media screen and (max-width: 767px) {
  .wrap--error .error__contact-img {
    top: 22%;
    left: 4%;
    width: 3rem;
  }
}
.wrap--error .error__contact-item {
  font-size: 1.8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--error .error__contact-item {
    font-size: 1.4rem;
    padding-left: 1.8rem;
    line-height: 1.6;
  }
}
.wrap--error .error__contact-item p:nth-of-type(2) {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .wrap--error .error__contact-item p:nth-of-type(2) {
    font-size: 2.1rem;
    line-height: 1;
    padding-top: 0.5rem;
    font-weight: 500;
  }
}
.wrap--error .error__contact-item::before {
  content: "";
  position: absolute;
  background: #99AEB5;
  width: 0.5rem;
  height: 6.5rem;
  top: 50%;
  left: 22%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--error .error__contact-item::before {
    width: 0.5rem;
    height: 9rem;
    top: 50%;
    left: 0.5%;
  }
}
.wrap--error .error__contact-item::after {
  content: "";
  position: absolute;
  background: #99AEB5;
  width: 0.5rem;
  height: 6.5rem;
  top: 50%;
  right: 21%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 4rem;
}
@media screen and (max-width: 767px) {
  .wrap--error .error__contact-item::after {
    content: none;
  }
}
.wrap--error .error__contact-item--01 {
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 767px) {
  .wrap--error .error__contact-item--01 {
    margin-bottom: 2.5rem;
  }
}
.wrap--error .error__contact-item--02 {
  margin-top: 2.3rem;
}
@media screen and (max-width: 767px) {
  .wrap--error .error__contact-item--02 {
    margin-top: 0;
  }
}
.wrap--error .error__contact-line {
  border-bottom: solid #ECEFF1 0.1rem;
  width: 62.4rem;
  height: 0.1rem;
  margin: 0 auto;
}
.wrap--error .error__contact-time {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .wrap--error .error__contact-time {
    font-size: 1.1rem;
    font-weight: 400;
  }
}
.wrap--error .error__main-group {
  width: 80rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrap--error .error__main-group {
    width: auto;
  }
}
.wrap--error .error__contact-ann {
  padding-top: 2.5rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .wrap--error .error__contact-ann {
    font-size: 1.2rem;
    padding-top: 2rem;
    text-indent: -1.2rem;
    padding-left: 1.2rem;
  }
}
.wrap--error .error__contact-back {
  text-align: center;
}
.wrap--error .error__back-btn {
  border-radius: 15rem;
  text-align: center;
  outline: none;
  background: #99AEB5;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  padding: 2.7rem 12.4rem 2.7rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 auto;
  letter-spacing: 0.2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wrap--error .error__back-btn {
    position: relative;
    width: 22.5rem;
    display: block;
    font-size: 1.4rem;
    padding: 2rem 0;
  }
}
.wrap--error .error__back-btn::before {
  content: "";
  position: absolute;
  background: url(../images/page/thanks/img-thanks-arrow.png) no-repeat center center;
  background-size: contain;
  width: 4rem;
  height: 4rem;
  top: 50%;
  right: 2%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .wrap--error .error__back-btn::before {
    width: 3rem;
    height: 3rem;
  }
}
.wrap--error .error__back-btn:hover::before {
  content: "";
  position: absolute;
  background: url(../images/page/thanks/img-thanks-arrow-hov.png) no-repeat center center;
  background-size: contain;
  width: 4rem;
  height: 4rem;
  top: 50%;
  right: 2%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .wrap--error .error__back-btn:hover::before {
    width: 3rem;
    height: 3rem;
  }
}
.wrap--error .error__back-btn:hover {
  background: #ECEFF1;
  color: #627F89;
  border-radius: 15rem;
}

/*--------------------------
	animation
--------------------------*/
/*----------------------------------------------------
  リサイズ時のtransition停止
----------------------------------------------------*/
body.transition-stop * {
  -webkit-transition: none !important;
  transition: none !important;
}

/*----------------------------------------------------
  見出し アニメーション
----------------------------------------------------*/
.a-heading-A {
  opacity: 0;
  -webkit-transition: 0.65s;
  transition: 0.65s;
}
.a-heading-A.active {
  opacity: 1;
}

/*----------------------------------------------------
  anim-txts
*/
/*----------------------------------------------------
  使用方法：

<h1 class="as a-anim-txts">
  <span class="anim-txt anim-txt-0">テ</span>
  <span class="anim-txt anim-txt-1">キ</span>
  <span class="anim-txt anim-txt-2">ス</span>
  <span class="anim-txt anim-txt-3">ト</span>
</h1>
----------------------------------------------------*/
.a-anim-txts > span {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translate(60px, 0) skewX(-30deg) scale(1, 1);
  transform: translate(60px, 0) skewX(-30deg) scale(1, 1);
}
.a-anim-txts > span:nth-child(1) {
  -webkit-transition: 0.65s 0.0625s;
  transition: 0.65s 0.0625s;
}
.a-anim-txts > span:nth-child(2) {
  -webkit-transition: 0.65s 0.125s;
  transition: 0.65s 0.125s;
}
.a-anim-txts > span:nth-child(3) {
  -webkit-transition: 0.65s 0.1875s;
  transition: 0.65s 0.1875s;
}
.a-anim-txts > span:nth-child(4) {
  -webkit-transition: 0.65s 0.25s;
  transition: 0.65s 0.25s;
}
.a-anim-txts > span:nth-child(5) {
  -webkit-transition: 0.65s 0.3125s;
  transition: 0.65s 0.3125s;
}
.a-anim-txts > span:nth-child(6) {
  -webkit-transition: 0.65s 0.375s;
  transition: 0.65s 0.375s;
}
.a-anim-txts > span:nth-child(7) {
  -webkit-transition: 0.65s 0.4375s;
  transition: 0.65s 0.4375s;
}
.a-anim-txts > span:nth-child(8) {
  -webkit-transition: 0.65s 0.5s;
  transition: 0.65s 0.5s;
}
.a-anim-txts > span:nth-child(9) {
  -webkit-transition: 0.65s 0.5625s;
  transition: 0.65s 0.5625s;
}
.a-anim-txts > span:nth-child(10) {
  -webkit-transition: 0.65s 0.625s;
  transition: 0.65s 0.625s;
}
.a-anim-txts > span:nth-child(11) {
  -webkit-transition: 0.65s 0.6875s;
  transition: 0.65s 0.6875s;
}
.a-anim-txts > span:nth-child(12) {
  -webkit-transition: 0.65s 0.75s;
  transition: 0.65s 0.75s;
}
.a-anim-txts > span:nth-child(13) {
  -webkit-transition: 0.65s 0.8125s;
  transition: 0.65s 0.8125s;
}
.a-anim-txts > span:nth-child(14) {
  -webkit-transition: 0.65s 0.875s;
  transition: 0.65s 0.875s;
}
.a-anim-txts > span:nth-child(15) {
  -webkit-transition: 0.65s 0.9375s;
  transition: 0.65s 0.9375s;
}
.a-anim-txts > span:nth-child(16) {
  -webkit-transition: 0.65s 1s;
  transition: 0.65s 1s;
}
.a-anim-txts > span:nth-child(17) {
  -webkit-transition: 0.65s 1.0625s;
  transition: 0.65s 1.0625s;
}
.a-anim-txts > span:nth-child(18) {
  -webkit-transition: 0.65s 1.125s;
  transition: 0.65s 1.125s;
}
.a-anim-txts > span:nth-child(19) {
  -webkit-transition: 0.65s 1.1875s;
  transition: 0.65s 1.1875s;
}
.a-anim-txts > span:nth-child(20) {
  -webkit-transition: 0.65s 1.25s;
  transition: 0.65s 1.25s;
}
.a-anim-txts > span:nth-child(21) {
  -webkit-transition: 0.65s 1.3125s;
  transition: 0.65s 1.3125s;
}
.a-anim-txts > span:nth-child(22) {
  -webkit-transition: 0.65s 1.375s;
  transition: 0.65s 1.375s;
}
.a-anim-txts > span:nth-child(23) {
  -webkit-transition: 0.65s 1.4375s;
  transition: 0.65s 1.4375s;
}
.a-anim-txts > span:nth-child(24) {
  -webkit-transition: 0.65s 1.5s;
  transition: 0.65s 1.5s;
}
.a-anim-txts > span:nth-child(25) {
  -webkit-transition: 0.65s 1.5625s;
  transition: 0.65s 1.5625s;
}
.a-anim-txts > span:nth-child(26) {
  -webkit-transition: 0.65s 1.625s;
  transition: 0.65s 1.625s;
}
.a-anim-txts > span:nth-child(27) {
  -webkit-transition: 0.65s 1.6875s;
  transition: 0.65s 1.6875s;
}
.a-anim-txts > span:nth-child(28) {
  -webkit-transition: 0.65s 1.75s;
  transition: 0.65s 1.75s;
}
.a-anim-txts > span:nth-child(29) {
  -webkit-transition: 0.65s 1.8125s;
  transition: 0.65s 1.8125s;
}
.a-anim-txts > span:nth-child(30) {
  -webkit-transition: 0.65s 1.875s;
  transition: 0.65s 1.875s;
}
.a-anim-txts > span:nth-child(31) {
  -webkit-transition: 0.65s 1.9375s;
  transition: 0.65s 1.9375s;
}
.a-anim-txts > span:nth-child(32) {
  -webkit-transition: 0.65s 2s;
  transition: 0.65s 2s;
}
.a-anim-txts > span:nth-child(33) {
  -webkit-transition: 0.65s 2.0625s;
  transition: 0.65s 2.0625s;
}
.a-anim-txts > span:nth-child(34) {
  -webkit-transition: 0.65s 2.125s;
  transition: 0.65s 2.125s;
}
.a-anim-txts > span:nth-child(35) {
  -webkit-transition: 0.65s 2.1875s;
  transition: 0.65s 2.1875s;
}
.a-anim-txts > span:nth-child(36) {
  -webkit-transition: 0.65s 2.25s;
  transition: 0.65s 2.25s;
}
.a-anim-txts > span:nth-child(37) {
  -webkit-transition: 0.65s 2.3125s;
  transition: 0.65s 2.3125s;
}
.a-anim-txts > span:nth-child(38) {
  -webkit-transition: 0.65s 2.375s;
  transition: 0.65s 2.375s;
}
.a-anim-txts > span:nth-child(39) {
  -webkit-transition: 0.65s 2.4375s;
  transition: 0.65s 2.4375s;
}
.a-anim-txts > span:nth-child(40) {
  -webkit-transition: 0.65s 2.5s;
  transition: 0.65s 2.5s;
}
.a-anim-txts > span:nth-child(41) {
  -webkit-transition: 0.65s 2.5625s;
  transition: 0.65s 2.5625s;
}
.a-anim-txts > span:nth-child(42) {
  -webkit-transition: 0.65s 2.625s;
  transition: 0.65s 2.625s;
}
.a-anim-txts > span:nth-child(43) {
  -webkit-transition: 0.65s 2.6875s;
  transition: 0.65s 2.6875s;
}
.a-anim-txts > span:nth-child(44) {
  -webkit-transition: 0.65s 2.75s;
  transition: 0.65s 2.75s;
}
.a-anim-txts > span:nth-child(45) {
  -webkit-transition: 0.65s 2.8125s;
  transition: 0.65s 2.8125s;
}
.a-anim-txts > span:nth-child(46) {
  -webkit-transition: 0.65s 2.875s;
  transition: 0.65s 2.875s;
}
.a-anim-txts > span:nth-child(47) {
  -webkit-transition: 0.65s 2.9375s;
  transition: 0.65s 2.9375s;
}
.a-anim-txts > span:nth-child(48) {
  -webkit-transition: 0.65s 3s;
  transition: 0.65s 3s;
}
.a-anim-txts > span:nth-child(49) {
  -webkit-transition: 0.65s 3.0625s;
  transition: 0.65s 3.0625s;
}
.a-anim-txts > span:nth-child(50) {
  -webkit-transition: 0.65s 3.125s;
  transition: 0.65s 3.125s;
}
.a-anim-txts > span:nth-child(51) {
  -webkit-transition: 0.65s 3.1875s;
  transition: 0.65s 3.1875s;
}
.a-anim-txts > span:nth-child(52) {
  -webkit-transition: 0.65s 3.25s;
  transition: 0.65s 3.25s;
}
.a-anim-txts > span:nth-child(53) {
  -webkit-transition: 0.65s 3.3125s;
  transition: 0.65s 3.3125s;
}
.a-anim-txts > span:nth-child(54) {
  -webkit-transition: 0.65s 3.375s;
  transition: 0.65s 3.375s;
}
.a-anim-txts > span:nth-child(55) {
  -webkit-transition: 0.65s 3.4375s;
  transition: 0.65s 3.4375s;
}
.a-anim-txts > span:nth-child(56) {
  -webkit-transition: 0.65s 3.5s;
  transition: 0.65s 3.5s;
}
.a-anim-txts > span:nth-child(57) {
  -webkit-transition: 0.65s 3.5625s;
  transition: 0.65s 3.5625s;
}
.a-anim-txts > span:nth-child(58) {
  -webkit-transition: 0.65s 3.625s;
  transition: 0.65s 3.625s;
}
.a-anim-txts > span:nth-child(59) {
  -webkit-transition: 0.65s 3.6875s;
  transition: 0.65s 3.6875s;
}
.a-anim-txts > span:nth-child(60) {
  -webkit-transition: 0.65s 3.75s;
  transition: 0.65s 3.75s;
}
.a-anim-txts > span:nth-child(61) {
  -webkit-transition: 0.65s 3.8125s;
  transition: 0.65s 3.8125s;
}
.a-anim-txts > span:nth-child(62) {
  -webkit-transition: 0.65s 3.875s;
  transition: 0.65s 3.875s;
}
.a-anim-txts > span:nth-child(63) {
  -webkit-transition: 0.65s 3.9375s;
  transition: 0.65s 3.9375s;
}
.a-anim-txts > span:nth-child(64) {
  -webkit-transition: 0.65s 4s;
  transition: 0.65s 4s;
}
.a-anim-txts > span:nth-child(65) {
  -webkit-transition: 0.65s 4.0625s;
  transition: 0.65s 4.0625s;
}
.a-anim-txts > span:nth-child(66) {
  -webkit-transition: 0.65s 4.125s;
  transition: 0.65s 4.125s;
}
.a-anim-txts > span:nth-child(67) {
  -webkit-transition: 0.65s 4.1875s;
  transition: 0.65s 4.1875s;
}
.a-anim-txts > span:nth-child(68) {
  -webkit-transition: 0.65s 4.25s;
  transition: 0.65s 4.25s;
}
.a-anim-txts > span:nth-child(69) {
  -webkit-transition: 0.65s 4.3125s;
  transition: 0.65s 4.3125s;
}
.a-anim-txts > span:nth-child(70) {
  -webkit-transition: 0.65s 4.375s;
  transition: 0.65s 4.375s;
}
.a-anim-txts > span:nth-child(71) {
  -webkit-transition: 0.65s 4.4375s;
  transition: 0.65s 4.4375s;
}
.a-anim-txts > span:nth-child(72) {
  -webkit-transition: 0.65s 4.5s;
  transition: 0.65s 4.5s;
}
.a-anim-txts > span:nth-child(73) {
  -webkit-transition: 0.65s 4.5625s;
  transition: 0.65s 4.5625s;
}
.a-anim-txts > span:nth-child(74) {
  -webkit-transition: 0.65s 4.625s;
  transition: 0.65s 4.625s;
}
.a-anim-txts > span:nth-child(75) {
  -webkit-transition: 0.65s 4.6875s;
  transition: 0.65s 4.6875s;
}
.a-anim-txts > span:nth-child(76) {
  -webkit-transition: 0.65s 4.75s;
  transition: 0.65s 4.75s;
}
.a-anim-txts > span:nth-child(77) {
  -webkit-transition: 0.65s 4.8125s;
  transition: 0.65s 4.8125s;
}
.a-anim-txts > span:nth-child(78) {
  -webkit-transition: 0.65s 4.875s;
  transition: 0.65s 4.875s;
}
.a-anim-txts > span:nth-child(79) {
  -webkit-transition: 0.65s 4.9375s;
  transition: 0.65s 4.9375s;
}
.a-anim-txts > span:nth-child(80) {
  -webkit-transition: 0.65s 5s;
  transition: 0.65s 5s;
}
.a-anim-txts > span:nth-child(81) {
  -webkit-transition: 0.65s 5.0625s;
  transition: 0.65s 5.0625s;
}
.a-anim-txts > span:nth-child(82) {
  -webkit-transition: 0.65s 5.125s;
  transition: 0.65s 5.125s;
}
.a-anim-txts > span:nth-child(83) {
  -webkit-transition: 0.65s 5.1875s;
  transition: 0.65s 5.1875s;
}
.a-anim-txts > span:nth-child(84) {
  -webkit-transition: 0.65s 5.25s;
  transition: 0.65s 5.25s;
}
.a-anim-txts > span:nth-child(85) {
  -webkit-transition: 0.65s 5.3125s;
  transition: 0.65s 5.3125s;
}
.a-anim-txts > span:nth-child(86) {
  -webkit-transition: 0.65s 5.375s;
  transition: 0.65s 5.375s;
}
.a-anim-txts > span:nth-child(87) {
  -webkit-transition: 0.65s 5.4375s;
  transition: 0.65s 5.4375s;
}
.a-anim-txts > span:nth-child(88) {
  -webkit-transition: 0.65s 5.5s;
  transition: 0.65s 5.5s;
}
.a-anim-txts > span:nth-child(89) {
  -webkit-transition: 0.65s 5.5625s;
  transition: 0.65s 5.5625s;
}
.a-anim-txts > span:nth-child(90) {
  -webkit-transition: 0.65s 5.625s;
  transition: 0.65s 5.625s;
}
.a-anim-txts > span:nth-child(91) {
  -webkit-transition: 0.65s 5.6875s;
  transition: 0.65s 5.6875s;
}
.a-anim-txts > span:nth-child(92) {
  -webkit-transition: 0.65s 5.75s;
  transition: 0.65s 5.75s;
}
.a-anim-txts > span:nth-child(93) {
  -webkit-transition: 0.65s 5.8125s;
  transition: 0.65s 5.8125s;
}
.a-anim-txts > span:nth-child(94) {
  -webkit-transition: 0.65s 5.875s;
  transition: 0.65s 5.875s;
}
.a-anim-txts > span:nth-child(95) {
  -webkit-transition: 0.65s 5.9375s;
  transition: 0.65s 5.9375s;
}
.a-anim-txts > span:nth-child(96) {
  -webkit-transition: 0.65s 6s;
  transition: 0.65s 6s;
}
.a-anim-txts > span:nth-child(97) {
  -webkit-transition: 0.65s 6.0625s;
  transition: 0.65s 6.0625s;
}
.a-anim-txts > span:nth-child(98) {
  -webkit-transition: 0.65s 6.125s;
  transition: 0.65s 6.125s;
}
.a-anim-txts > span:nth-child(99) {
  -webkit-transition: 0.65s 6.1875s;
  transition: 0.65s 6.1875s;
}
.a-anim-txts > span:nth-child(100) {
  -webkit-transition: 0.65s 6.25s;
  transition: 0.65s 6.25s;
}
.a-anim-txts.active span {
  opacity: 1;
  -webkit-transform: translate(0, 0) skewX(0deg) scale(1, 1);
  transform: translate(0, 0) skewX(0deg) scale(1, 1);
}

/*----------------------------------------------------
  slide-box-A
*/
/*----------------------------------------------------
  使用方法：

  <div class="as a-slide-box-A">
    <img src="./img/sample.jpg" alt="" />
  </div>
----------------------------------------------------*/
.a-slide-box-A {
  overflow: hidden;
  opacity: 1;
  position: relative;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transition: 0.65s;
  transition: 0.65s;
}
.a-slide-box-A:after {
  background: #bbb; /* Old browsers */
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 1;
  -webkit-transition: 0.65s 0.65s;
  transition: 0.65s 0.65s;
}
.a-slide-box-A img {
  -webkit-transition: 0.65s 0.65s;
  transition: 0.65s 0.65s;
  -webkit-transform: scale(1.5, 1.5);
  transform: scale(1.5, 1.5);
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
.a-slide-box-A.a-slide-box-A--t {
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: top center;
  transform-origin: top center;
}
.a-slide-box-A.a-slide-box-A--b {
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
}
.a-slide-box-A.a-slide-box-A--l {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.a-slide-box-A.a-slide-box-A--r {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
.a-slide-box-A.active {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.a-slide-box-A.active:after {
  opacity: 0;
}
.a-slide-box-A.active img {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

/*----------------------------------------------------
  slide-box-B
*/
/*----------------------------------------------------
  使用方法：

  <div class="as a-slide-box-B">
    <div class="slide-box-B__bg">
      <img src="" alt="">
    </div>
  </div>
----------------------------------------------------*/
.a-slide-box-B {
  display: block;
}
.a-slide-box-B img {
  vertical-align: middle;
}
.a-slide-box-B .slide-box-B__bg {
  background: #fff;
  display: inline-block;
  position: relative;
  -webkit-transform-origin: right center;
  transform-origin: right center;
  overflow: hidden;
}
.a-slide-box-B .slide-box-B__bg img {
  opacity: 0;
  -webkit-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-transition: all 0.65s;
  transition: all 0.65s;
}
.a-slide-box-B .slide-box-B__bg:after {
  background: #fff;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
  margin-left: 100%;
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  -webkit-transition: all 0.65s;
  transition: all 0.65s;
}
.a-slide-box-B.a-slide-box-B--t .slide-box-B__bg {
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
}
.a-slide-box-B.a-slide-box-B--t .slide-box-B__bg img {
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
}
.a-slide-box-B.a-slide-box-B--t .slide-box-B__bg:after {
  margin: 100% 0 0 0;
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
}
.a-slide-box-B.a-slide-box-B--b .slide-box-B__bg {
  -webkit-transform-origin: top center;
  transform-origin: top center;
}
.a-slide-box-B.a-slide-box-B--b .slide-box-B__bg img {
  -webkit-transform-origin: top center;
  transform-origin: top center;
}
.a-slide-box-B.a-slide-box-B--b .slide-box-B__bg:after {
  margin: -100% 0 0 0;
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
}
.a-slide-box-B.a-slide-box-B--l .slide-box-B__bg {
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
.a-slide-box-B.a-slide-box-B--l .slide-box-B__bg img {
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
.a-slide-box-B.a-slide-box-B--l .slide-box-B__bg:after {
  margin: 0 0 0 100%;
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}
.a-slide-box-B.a-slide-box-B--r .slide-box-B__bg {
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.a-slide-box-B.a-slide-box-B--r .slide-box-B__bg img {
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.a-slide-box-B.a-slide-box-B--r .slide-box-B__bg:after {
  margin: 0 0 0 -100%;
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
}
.a-slide-box-B.active .slide-box-B__bg img {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}
.a-slide-box-B.active .slide-box-B__bg:after {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

/*----------------------------------------------------
  スライダー
----------------------------------------------------*/
.slide-gallery {
  overflow: hidden;
}
.slide-gallery .slide-gallery__inner {
  height: 220px;
  width: 3840px;
  -webkit-animation: slide 60s linear infinite;
  animation: slide 60s linear infinite;
  position: relative;
}
@-webkit-keyframes slide {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-1920px, 0, 0);
    transform: translate3d(-1920px, 0, 0);
  }
}
@keyframes slide {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-1920px, 0, 0);
    transform: translate3d(-1920px, 0, 0);
  }
}

/*--------------------------
	state
--------------------------*/
/*----------------------------------------------------

	JavaScriptなどの制御による状態の変化を表すスタイルの設定ファイルです。
	汎用的なstateのスタイルをまとめています。
	基本的には編集することはありません。

	命名規則として、クラス名の頭に 
	is-* という接頭辞をつけることを推奨します。

----------------------------------------------------*/
/*--------------------------
	レスポンシブ関係 ファブレットはなし
--------------------------*/
@media screen and (max-width: 1000px) {
  .is-pc {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .is-tab {
    display: none;
  }
}
@media screen and (min-width: 1001px) {
  .is-tab {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .is-pc_tab {
    display: none;
  }
}

@media screen and (min-width: 1001px) {
  .is-tab_sp {
    display: none;
  }
}