@charset "UTF-8";
/*# sourceMappingURL=style.css.map */
/* 相対値なものを調整するため指定
    1remを10pxに調整 */
html {
  font-size: 62.5%;
}

/* =============================================
フォント設定
第1フォントはGoogleから取ってきてます。
引用リンクはhtmlファイルに記載してます。
============================================= */
* {
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif, "YuGothic", "メイリオ";
}

/* =============================================
共通部分
インナー
マックス幅1600px
============================================= */
.inner {
  width: 87%;
  height: 100%;
  max-width: 1600px;
  min-width: 1000px;
  margin: 0 auto; /* 左右にのみ指定。上下の指定は各々で調整するので0に指定。 */
}

.page-top {
  position: fixed;
  width: 80px;
  height: 80px;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: #1166A0;
  padding: 12px;
  padding-top: 20px;
}

.section-title {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  text-align: center;
}
.section-title span {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 40px;
  font-weight: 800;
  color: #1166A0;
  border-bottom: 4px solid #1166A0;
  border-top: 4px solid #1166A0;
  border-radius: 0.2%;
}

.section-title--h {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  text-align: center;
}
.section-title--h span {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  border-bottom: 4px solid #fff;
  border-top: 4px solid #fff;
  border-radius: 0.2%;
}

.br-sp {
  display: none !important; /* スマホ時にのみ画像を表示 */
}

.img-pc {
  display: block !important; /* スマホ時にのみ表示 */
}

.img-sp {
  display: none !important; /* スマホ時にのみ表示 */
}

/* =============================================
PC部分
============================================= */
.header {
  width: 100%;
  height: 80px;
  top: 0; /* 画面上部ピッタリに指定 */
  left: 0; /* 左右の余白は無しに指定 */
  position: fixed; /* スクロールしても画面上部に固定 */
  z-index: 500; /* どんな時も一番前に */
  text-align: center; /* 文字を中央揃えの指定　(「お問合せは無料」テキストのためだけ) */
  background-color: rgba(239, 239, 239, 0.7); /* 背景設定。灰色の半透明 */
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.16); /* 下方向へのシャドウ */
  /* --- ロゴ --- */
  /* --- ヘッダーの右側 --- */
  /* --- 電話部分 --- */
  /* 電話のテキスト部分 */
  /* --- CTAボタン --- */
}
.header .inner {
  height: 80px;
  justify-content: space-between; /* 最初と最後の子要素を上下の端に配置し、残りの要素は均等に間隔をあけて配置 */
  display: flex;
  align-items: center;
}
.header .header__rogo {
  width: 160px;
  margin-top: 21px; /* 上部分のマージン指定 */
  margin-bottom: 20.4px; /* 下部分のマージン指定　画面幅を縮めた時に崩れないように */
}
.header .header__right {
  display: flex;
}
.header .tel {
  text-align: center;
}
.header .tel a {
  display: flex;
}
.header .tel a .header_tel-pc {
  width: 36px;
  height: auto;
  margin-top: 22px;
  margin-bottom: 20px;
  display: block !important; /* PC時にのみ画像を表示 */
}
.header .tel .header__sp-tel {
  display: none !important; /* PC時には表示させない */
}
.header .header__inner__teltext {
  margin-top: 22px; /* 上部分のマージン指定 */
  display: flex; /* 要素を横並び */
  text-align: center; /* テキストを上下中央揃え */
  margin-left: 0.83vw; /* アイコンとテキスト間のマージン設定 */
  font-size: 24px;
  font-weight: bold;
}
.header .header__innertext {
  margin-top: 14px;
  margin-right: 2.08vw;
  margin-left: 2.5vw;
  font-size: 18px;
  display: flex; /* 要素を横並び */
  font-weight: bold;
  line-height: 25px; /* 行間の調整 */
}
.header .header__cta {
  display: block !important; /* PC時にのみ画像を表示 */
  margin-top: 16px; /* ボタン自体の上のマージン指定 */
  font-size: 16px;
  align-items: center; /* 座布団と中コンテンツの中央揃え　コレ無くてもいいかもです。 */
  height: 50px; /* 座布団の高さ指定 */
  outline: none; /* ボタンの枠線消し */
  border-radius: 10px; /* 座布団の角丸の指定 */
  color: #fff; /* ボタン内の文字色指定 */
  font-weight: bold; /* ボタン内の文字ウェイト指定 */
  background-image: linear-gradient(#F48028, #EB8335); /* 座布団の色の指定　後々調整予定 */
  box-shadow: -2px -2px 2px rgba(126, 126, 126, 0.1); /* ボタンのシャドウ 水平方向 垂直方向 影のぼかし 色 */
  box-shadow: 3px 3px 5px rgba(41, 41, 41, 0.2);
  /* 下方向へのシャドウ */
}
.header .header__cta a {
  width: 100%;
  height: 100%;
  padding-right: 40px; /* ボタン内の余白の指定指定（4つとも） */
  padding-left: 40px;
  padding-top: 4px;
  padding-bottom: 4px;
  align-items: center; /* アイコンとテキストを中央揃え */
  display: flex; /* アイコンとテキストを横並び　これ無くても横並びにはできますが中央揃えが効かなくなります */
}
.header .header__cta span {
  margin-left: 30px; /* アイコンとテキスト間のマージン指定 */
}
.header .header__ctaーsp {
  display: none !important; /* PC時には表示させない */
}
.header .header__ctaーsp a {
  width: 100%;
  height: 100%;
  align-items: center; /* アイコンとテキストを中央揃え */
  display: flex;
}
.header .header__ctaーsp .ctaーsp {
  display: none !important; /* PC時には表示させない */
}

.section-FV {
  position: relative; /* 子要素の起点を指定 */
  width: 100vw; /* viewwidth */
  height: calc(100vh - 80px);
  max-height: 1200px;
  min-height: 850px;
  margin-top: 80px;
}
.section-FV .FV-img {
  position: absolute;
  z-index: -10;
  height: calc(100vh - 80px);
  max-height: 1200px;
  min-height: 850px;
  width: 100%;
  overflow-x: hidden;
  left: 0;
}
.section-FV .FV-img .FVimg-sp-none {
  width: auto;
  height: 100%;
  max-height: 1200px;
  min-height: 850px;
  display: block !important; /* PC時にのみ画像を表示 */
}
.section-FV .FV-img .FVimg-pc-none {
  display: none !important; /* PC時には表示させない */
}
.section-FV .inner {
  position: relative; /* ポジションの親 */
}
.section-FV .inner .FV-right {
  position: absolute; /* ポジションの子 */
  right: 0;
  top: 11vh; /* デザインより、数値は調整して見栄えを同じにしました */
  justify-content: flex-end;
}
.section-FV .inner .FV-right .FV-badge-sp {
  display: none !important; /* スマホ時にのみ表示させません */
}
.section-FV .inner .FV-right .Catchcopy p {
  text-align: right;
  color: #1166A0;
  font-size: min(3.645vw, 70px);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.25;
}
.section-FV .inner .FV-right .Catchcopy p span {
  font-size: 120%;
  font-weight: 700;
  -webkit-text-stroke: 2px #1166A0; /* 文字の縁取り線 */
}
.section-FV .inner .FV-right .Subcopy {
  margin-top: 3.89vh;
  text-align: right;
  font-size: min(1.875vw, 36px);
  line-height: 1.63; /* 行間の調整 */
}
.section-FV .inner .FV-right .bottom {
  align-items: flex-end; /* 横並びの下揃え */
  justify-content: flex-end;
  right: 0;
  margin-top: 10.75vh;
  margin-bottom: auto;
  display: flex;
}
.section-FV .inner .FV-right .bottom .left {
  text-align: center;
  margin-right: 3.3vw;
}
.section-FV .inner .FV-right .bottom .left .achievement {
  justify-content: center;
  display: flex;
  align-self: center; /* 横並びの中央揃え */
  text-align: center;
}
.section-FV .inner .FV-right .bottom .left .achievement img {
  margin-left: 13.5px;
  margin-right: 12.5px;
}
.section-FV .inner .FV-right .bottom .left .achievement p {
  font-size: min(1.25vw, 24px);
  font-weight: 700;
  color: #1a1a1a;
}
.section-FV .inner .FV-right .bottom .left .achievement p .※※ {
  vertical-align: 110%;
  font-size: min(0.9375vw, 18px);
  font-weight: 400;
  color: #1a1a1a;
}
.section-FV .inner .FV-right .bottom .left .achievement p span {
  font-size: min(2.6vw, 50px);
  font-weight: 900;
  color: #1166A0;
}
.section-FV .inner .FV-right .bottom .left .FV-text {
  margin-top: 2.1vh;
  font-size: min(1.25vw, 24px);
  font-weight: 700;
}
.section-FV .inner .FV-right .bottom .left .button .cta {
  align-self: center;
  margin-top: 32px;
  outline: none; /* ボタンの枠線消し */
  height: 120px; /* 座布団の高さ指定 */
  width: 480px; /* 座布団の幅指定 */
  border-radius: 20px; /* 座布団の角丸の指定 */
  font-size: 24px;
  font-weight: 600;
  color: #fff; /* ボタン内の文字色指定 */
  font-weight: 600; /* ボタン内の文字ウェイト指定 */
  background-color: #F28838; /* 座布団の色の指定　後々調整予定 */
  box-shadow: -2px -2px 2px rgba(126, 126, 126, 0.1); /* ボタンのシャドウ 水平方向 垂直方向 影のぼかし 色 */
  box-shadow: 3px 3px 5px rgba(41, 41, 41, 0.2);
}
.section-FV .inner .FV-right .bottom .left .button .cta a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  letter-spacing: 2px; /* 文字間指定 */
  line-height: 36px; /* 行間の調整 */
}
.section-FV .inner .FV-right .bottom .left .button .cta a img {
  align-self: center; /* ボタン内での上下中央 */
  margin-left: 64px;
  height: 38.81px;
  width: 54px;
}
.section-FV .inner .FV-right .bottom .left .button .cta a .cta-text-pc {
  text-align: center;
  align-items: center; /* アイコンとテキストを中央揃え */
  margin-left: 48PX;
}
.section-FV .inner .FV-right .bottom .left .button .cta a .cta-text-pc .cta-text-strong {
  font-size: 40px;
}
.section-FV .inner .FV-right .bottom .left .button .FV-badge {
  margin-left: 64px;
}
.section-FV .inner .FV-right .bottom .left .FV-text-sp {
  display: none !important; /* スマホ時にのみ表示させません */
}
.section-FV .inner .FV-right .FV-supplement {
  margin-top: 2.68vw;
  text-align: right;
  font-size: min(0.9375vw, 18px);
  font-weight: 400;
  color: #272727;
}

.section-worries {
  background-image: url(../image/section1-back.png);
  background-image: image-set(url(../image/section1-back.png) 1x, url(../image/section1-back@2x.png) 2x);
  background-image: -webkit-image-set(url(../image/section1-back.png) 1x, url(../image/section1-back@2x.png) 2x);
  margin-top: 0;
  background-repeat: no-repeat; /* 背景画像を繰り返し表示しない */
  background-size: cover;
  padding-top: 55.5px;
  padding-bottom: 82.2px;
}
.section-worries__title {
  position: relative; /* ポジションの親 */
  text-align: center;
  white-space: nowrap;
}
.section-worries__title img {
  text-align: center;
}
.section-worries__title p {
  position: absolute;
  top: 14%;
  left: 50%;
  transform: translateX(-50%);
  text-align: left;
  color: #1166A0;
  font-size: 40px;
  font-weight: 800;
}
.section-worries .inner .contents {
  /* --- カード共通 --- */
}
.section-worries .inner .contents .case1 {
  max-width: 1000px;
  width: 60%;
  margin: 0 auto;
  margin-top: 91.1px;
  transform: translateX(-15%);
}
.section-worries .inner .contents .case2 {
  max-width: 1000px;
  width: 60%;
  margin: 0 auto;
  margin-top: 50px;
}
.section-worries .inner .contents .case3 {
  max-width: 1000px;
  width: 60%;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 82px;
  transform: translateX(15%);
}
.section-worries .inner .contents .card-set {
  max-width: 920px;
  width: 57.49vw;
  height: auto;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-top-left-radius: 150px; /* 座布団の角丸の指定 */
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.16); /* カードのシャドウ 水平方向 垂直方向 影のぼかし 色 */
  position: relative;
  overflow: hidden;
}
.section-worries .inner .contents .card-set .card-img {
  max-width: 203px;
  width: 10.572vw;
  max-height: 122px;
  height: 11.29vh;
  margin-left: 21px;
  margin-right: 0.625vw;
}
.section-worries .inner .contents .card-set .card-img img {
  width: 100%;
}
.section-worries .inner .contents .card-set .case-text {
  z-index: 2;
  max-width: 577px;
  width: 62%;
  margin-top: 4%;
  margin-bottom: 4%;
  text-align: left;
}
.section-worries .inner .contents .card-set .case-text .case-title {
  margin-bottom: 3%;
  font-size: 3rem;
  font-weight: 800;
  color: #1166A0;
  line-height: 1.33;
}
.section-worries .inner .contents .card-set .case-text .case-detail {
  width: 106%;
  font-size: 2rem;
  line-height: 1.75;
}
.section-worries .inner .contents .card-set .case-number {
  top: 0;
  right: 0;
  transform: translate(37px, -85px);
  border-radius: 0px 0px 30px 0px;
  position: absolute;
}

.triangle {
  margin-top: 110px; /* 上のセクションの下パディングがはみ出しているため、ここは小さめに指定 */
  margin-bottom: 110px;
  text-align: center;
}

.section-resolution {
  margin-top: 110px;
}
.section-resolution__title {
  color: #1166A0;
  line-height: 1.25;
}
.section-resolution__contents {
  margin-top: 51.8px;
}
.section-resolution__contents .kaiketsu-pc {
  display: block !important; /* PC時にのみ画像を表示 */
  width: 100%;
  object-fit: cover;
}
.section-resolution__contents .kaiketsu-sp {
  display: none !important; /* PC時にのみ画像を表示 */
}

.section-cando-fm {
  margin-top: 180px;
}
.section-cando-fm__title .cando-pc {
  margin: 0 auto;
  text-align: center;
  display: block !important; /* PC時にのみ画像を表示 */
}
.section-cando-fm__title .cando-sp {
  display: none !important; /* PC時にのみ画像を表示 */
}
.section-cando-fm__contents .inner {
  position: relative; /* ポジションの親指定 */
}
.section-cando-fm__contents .inner .point1 {
  max-width: 1000px;
  margin: 0 auto;
  left: 80px;
  margin-top: 50px;
  position: absolute; /* (インナー基準の)ポジションの子指定 */
  position: relative; /* ポジションの親指定 */
}
.section-cando-fm__contents .inner .point1 .cando-pc-img {
  display: block !important; /* PC時にのみ表示 */
  text-align: center;
}
.section-cando-fm__contents .inner .point1 .cando-sp-img {
  display: none !important; /* PC時には表示させない */
}
.section-cando-fm__contents .inner .point1 .point1--text {
  position: absolute; /* ポジションの子指定 */
  top: 14%;
  left: 22%;
  right: 30%;
  text-align: left; /* 文字部分だけ左揃え */
}
.section-cando-fm__contents .inner .point1 .point1--text .point1--title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px; /* 行間の調整 */
  color: #454545;
}
.section-cando-fm__contents .inner .point1 .point1--text .point1--title span {
  color: #1166A0;
}
.section-cando-fm__contents .inner .point1 .point1--text .point1--detail {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px; /* 行間の調整 */
  color: #3e3e3e;
}
.section-cando-fm__contents .inner .point2 {
  max-width: 1000px;
  margin: 0 auto;
  right: 97px;
  position: absolute; /* (インナー基準の)ポジションの子指定 */
  position: relative; /* ポジションの親指定 */
}
.section-cando-fm__contents .inner .point2 .cando-pc-img {
  display: block !important; /* PC時にのみ表示 */
  text-align: center;
}
.section-cando-fm__contents .inner .point2 .cando-sp-img {
  display: none !important; /* PC時には表示させない */
}
.section-cando-fm__contents .inner .point2 .point2--text {
  position: absolute; /* ポジションの子指定 */
  top: 14%;
  left: 53%;
  text-align: left; /* 文字部分だけ左揃え */
}
.section-cando-fm__contents .inner .point2 .point2--text .point2--title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px; /* 行間の調整 */
  color: #454545;
}
.section-cando-fm__contents .inner .point2 .point2--text .point2--title span {
  color: #1166A0;
}
.section-cando-fm__contents .inner .point2 .point2--text .point2--detail {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px; /* 行間の調整 */
  color: #3e3e3e;
}
.section-cando-fm__contents .inner .point3 {
  max-width: 1000px;
  margin: 0 auto;
  left: 80px;
  position: absolute; /* (インナー基準の)ポジションの子指定 */
  position: relative; /* ポジションの親指定 */
}
.section-cando-fm__contents .inner .point3 .cando-pc-img {
  display: block !important; /* PC時にのみ表示 */
  text-align: center;
}
.section-cando-fm__contents .inner .point3 .cando-sp-img {
  display: none !important; /* PC時には表示させない */
}
.section-cando-fm__contents .inner .point3 .point3--text {
  position: absolute; /* ポジションの子指定 */
  top: 14%;
  left: 22%;
  right: 30%;
  text-align: left; /* 文字部分だけ左揃え */
}
.section-cando-fm__contents .inner .point3 .point3--text .point3--title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px; /* 行間の調整 */
  color: #454545;
}
.section-cando-fm__contents .inner .point3 .point3--text .point3--title span {
  color: #1166A0;
}
.section-cando-fm__contents .inner .point3 .point3--text .point3--detail {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px; /* 行間の調整 */
  color: #3e3e3e;
}
.section-cando-fm__contents .inner .cando-pc-img {
  display: block !important; /* PC時にのみ表示 */
}
.section-cando-fm__contents .inner .cando-sp-img {
  display: none !important; /* PC時には表示させない */
}

.passing-cta {
  position: relative;
  display: inline-block;
  margin-top: 157.8px;
  width: 100%;
  height: 511px;
  background: #1166A0;
}
.passing-cta .inner {
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: flex-start;
  top: 145px;
  left: 50%;
  transform: translateX(-50%);
  margin: auto;
}
.passing-cta .inner .passing-cta__left {
  text-align: center;
}
.passing-cta .inner .passing-cta__left span {
  font-size: 30px;
  font-weight: 600;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 25px;
  padding-right: 25px;
  color: #1166A0;
  line-height: 1.5;
  background-color: #fff;
  white-space: nowrap;
}
.passing-cta .inner .passing-cta__left p {
  margin-top: 31px;
  font-size: 20px;
  color: #fff;
  line-height: 33px; /* 行間の調整 */
}
.passing-cta .inner .passing-cta__right {
  margin-left: 116px;
  justify-content: center; /* 縦並び */
}
.passing-cta .inner .passing-cta__right .right-bold {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}
.passing-cta .inner .passing-cta__right .button .cta-b {
  align-self: center;
  margin-top: 15.4px;
  outline: none; /* ボタンの枠線消し */
  height: 120px; /* 座布団の高さ指定 */
  width: 480px; /* 座布団の幅指定 */
  border-radius: 10px; /* 座布団の角丸の指定 */
  font-size: 24px;
  font-weight: 600;
  color: #fff; /* ボタン内の文字色指定 */
  font-weight: 600; /* ボタン内の文字ウェイト指定 */
  background-color: #F28838; /* 座布団の色の指定　後々調整予定 */
  box-shadow: -2px -2px 2px rgba(126, 126, 126, 0.1); /* ボタンのシャドウ 水平方向 垂直方向 影のぼかし 色 */
  box-shadow: 3px 3px 5px rgba(41, 41, 41, 0.2);
}
.passing-cta .inner .passing-cta__right .button .cta-b a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  letter-spacing: 2px; /* 文字間指定 */
  line-height: 36px; /* 行間の調整 */
}
.passing-cta .inner .passing-cta__right .button .cta-b a img {
  align-self: center; /* ボタン内での上下中央 */
  margin-left: 64px;
  height: 38.81px;
  width: 54px;
}
.passing-cta .inner .passing-cta__right .button .cta-b a .cta-text-pc {
  text-align: center;
  align-items: center; /* アイコンとテキストを中央揃え */
  margin-left: 48PX;
}
.passing-cta .inner .passing-cta__right .button .cta-b a .cta-text-pc .cta-text-strong {
  font-size: 40px;
}
.passing-cta .inner .passing-cta__right .passing-cta__right--detail {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #fff;
  text-align: center;
}

/* --- 吹き出しのシッポ部分 --- */
.passing-cta:before {
  content: ""; /* borderで三角形を作る */
  border: 73px solid transparent;
  border-bottom: 99px solid #1166A0; /* 配置する */
  position: absolute;
  top: -29%;
  left: 50%;
  transform: translateX(-50%);
}

.voice {
  background-image: url(../image/Voice-back.png);
  background-image: image-set(url(../image/Voice-back.png) 1x, url(../image/Voice-back@2x.png) 2x);
  background-image: -webkit-image-set(url(../image/Voice-back.png) 1x, url(../image/Voice-back@2x.png) 2x);
  margin-top: 0;
  padding-top: 280px;
  padding-bottom: 120px;
  position: relative;
}
.voice__section-title {
  width: 402px;
  padding-top: 10px;
  position: absolute;
  top: 99.7px;
  left: 50%;
  transform: translateX(-50%);
}
.voice__section-title span {
  background-color: #fff;
  background-size: 402px, 40px;
}
.voice__contents .inner {
  display: flex;
  flex-wrap: wrap; /* 子要素を横に並べて上から下に折り返させる */
  max-width: 1040px;
  justify-content: center;
}
.voice__contents .inner .voice-set .voice-text {
  width: 480px;
  height: 520px;
  padding: 0 3rem;
  padding-top: 7%;
  background-color: #FFE5BC;
  box-shadow: 6px 3px 3px rgba(0, 0, 0, 0.16); /* 下方向へのシャドウ */
  border-top-left-radius: 20px; /* 座布団の角丸の指定 */
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 0px;
}
.voice__contents .inner .voice-set .voice-text .voice-title {
  margin-bottom: 32px;
  font-size: 22px;
  font-weight: 700;
  align-items: center;
  line-height: 32px; /* 行間の調整 */
  color: #1a1a1a;
}
.voice__contents .inner .voice-set .voice-text .voice-title span {
  color: #D61D1D;
}
.voice__contents .inner .voice-set .voice-text .voice-sub {
  width: auto;
  padding-bottom: 0.1em;
  font-size: 14px;
  color: #1a1a1a;
  letter-spacing: 0.1em; /* 文字間の調整 */
  line-height: 36px; /* 行間の調整 */
  background-image: linear-gradient(180deg, transparent calc(100% - 1px), #707070 100%); /* 行間の調整　！要調整！ */
  background-size: 100% 36px;
}
.voice__contents .inner .voice-set .voice-text .voice-sub span {
  color: #D61D1D;
}
.voice__contents .inner .voice-set .voice-bottom {
  margin-top: 18px;
  display: flex;
  align-items: baseline;
}
.voice__contents .inner .voice-set .voice-bottom p {
  margin-left: 16px;
  font-size: 21px;
  font-weight: 700;
  color: #1a1a1a;
}
.voice__contents .inner .voice-set .voice-bottom p span {
  margin-left: 8px;
  font-size: 16px;
  font-weight: 500;
}
.voice__contents .inner .voice1 {
  margin-top: 0;
}
.voice__contents .inner .voice2 {
  margin-top: 176px;
  margin-left: 80px;
}
.voice__contents .inner .voice3 {
  margin-top: 0;
}
.voice__contents .inner .voice4 {
  margin-top: 140px;
  margin-left: 80px;
}

.award {
  text-align: center;
  margin-top: 0;
}
.award__logo {
  width: 100vw;
  padding-top: 90px;
  padding-bottom: 170px;
  box-shadow: 0px 9px 6px -6px inset rgba(0, 0, 0, 0.16); /* 箱の内側へのシャドウ */
}
.award__logo p {
  margin: 0 auto;
  font-size: 30px;
  font-weight: 700;
  white-space: nowrap; /* 改行させないために */
}
.award__batch .batch-set {
  display: flex;
  justify-content: center;
}
.award__batch .batch-set p {
  align-content: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 40px; /* 行間の調整 */
}
.award__batch .batch-set p span {
  font-size: 40px;
  font-weight: 700;
}
.award__batch .award-img {
  margin: 0 auto;
  margin-top: 18px;
}
.award__batch .award-img img {
  margin: 0 auto;
}
.award .badge-wrap {
	max-width: 747px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: space-between;
}
.award .badge-wrap img {
	width: 18%;
}

.splide {
  max-width: 1040px;
  margin: 0 auto;
  margin-top: 41px;
}
.splide ul {
  display: flex;
  margin-top: 22px;
}
.splide ul:first-of-type {
  margin-top: 0;
}
.splide li {
  width: 155px;
  height: 50px;
}
.splide li img {
  width: 100%;
}
.splide li p {
  font-size: 14px;
  line-height: 50px;
}

.flow {
  height: 546px;
  background-color: #1166A0;
  margin-top: 180px;
  padding-top: 77px;
  text-align: center;
}
.flow__title {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
}
.flow__contents {
  margin-top: 80px;
}
.flow__contents img {
  margin: 0 auto;
}

.flow-plus {
  margin-top: 16px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #1a1a1a;
}

.question {
  margin-top: 180px;
}
.question__title {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  color: #1166A0;
  margin-bottom: 70px;
}
.question__contents {
  margin-top: 52px;
}

.question-set {
  width: 100%;
  max-width: 1200px;
  border: 1px solid #1166A0;
  padding: 46px 76px 75px 76px;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 50px;
}
.question-set .question-query {
  padding: 19px;
  padding-left: 0;
  border-bottom: 2px solid #1166A0;
  display: flex;
}
.question-set .question-query .Q {
  font-size: 33px;
  font-weight: 700;
  color: #1166A0;
}
.question-set .question-query .question-text {
  margin-left: 30px;
  font-size: 35px;
  font-weight: 700;
  color: #000;
}
.question-set .question-answer {
  margin-top: 20px;
  display: flex;
}
.question-set .question-answer .A {
  margin-right: 32px;
  font-size: 33px;
  font-weight: 600;
  color: #EDB83F;
}
.question-set .question-answer .answer-text {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px; /* 行間の調整 */
  color: #000;
}

.cv {
  margin-top: 180px;
}
.cv .h1 .another {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
}
.cv .form {
  margin-top: 28px;
  padding-top: 107px;
  padding-bottom: 108px;
  background-color: #1166A0;
}
.cv #satori__creative_container {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 14px;
}

.claris {
  margin: 0 auto;
  margin-top: 160px;
  width: 88%;
}
.claris__logo-box {
  display: flex;
  justify-content: center;
}
.claris__logo-box .left {
  width: 550px;
  height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid;
}
.claris__logo-box .left img {
  width: 200px;
}
.claris__logo-box .right {
  max-width: 550px;
  max-height: 85px;
  width: auto;
  height: auto;
  background-color: #000;
  border: 1px solid #000;
}
.claris__logo-box .right p {
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(5%, 27%);
  font-size: min(1.2vw, 16px);
  color: #fff;
  line-height: 1.5625;
}
.claris .trademark {
  margin-top: 40px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}

footer {
  height: 90px;
  margin-top: 80px;
  background-color: #1166A0;
  position: relative;
}
footer .footer__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
footer .footer__inner small {
  font-size: 20px;
}

/* ==============================
thanksページ
============================== */
.thanks {
  padding-top: 140px;
  max-width: 1140px;
  min-height: calc(100vh - 170px);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 90px;
  text-align: center;
}
.thanks h1 {
  font-size: 44px;
  font-weight: 700;
}
.thanks p {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.75;
}
.thanks hr {
  margin-top: 50px;
  border: 0;
  border-bottom: 1px dashed #aaa;
}
.thanks button {
  margin-top: 50px;
  color: #2ea7e0;
  background-color: transparent;
  border: 2px solid #2ea7e0;
  min-width: 166px;
  border-radius: 20px;
  transition: all 0.2s cubic-bezier(0.02, 0.42, 0.24, 0.74);
}
.thanks button a {
  width: 100%;
  height: 100%;
  display: block;
  padding: 11px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.thanks button:hover {
  background-color: #2ea7e0;
  color: #fff;
}

/* =====================================================================
   =============================================
                  タブレット版
  1200px〜1041pxまで範囲内 1100px×800pxで一番綺麗になるように
  =====================================================================
  ============================================= */
@media screen and (max-width: 1200px) {
  .page-top {
    position: fixed;
    width: 60px;
    height: 60px;
    right: 0;
    bottom: 0;
    z-index: 200;
    background: #1166A0;
    padding: 12px;
    padding-top: 19px;
  }
  .page-top img {
    width: 35px;
    height: auto;
  }
  .inner {
    width: 90%;
    height: 100%;
    margin: 0 auto; /* 左右にのみ指定。上下の指定は各々で調整するので0に指定。 */
  }
  .header .inner .header__right .tel a .header_tel-pc {
    width: 36px;
  }
  .header .inner .header__right .tel a p {
    margin-left: 10px;
  }
  .header .inner .header__right .header__innertext {
    margin-left: 40px;
    margin-right: 24px;
    font-weight: 600;
    line-height: 27px;
  }
  .header .inner .header__right .header__button .header__cta {
    padding-left: 32px;
    padding-right: 32px;
    font-size: 14px;
  }
  .header .inner .header__right .header__button .header__cta img {
    width: 33px;
    height: auto;
  }
  .section-FV .inner .FV-right {
    top: 13vh;
  }
  .section-FV .inner .FV-right .Catchcopy p {
    -webkit-text-stroke: 1px #1166A0;
  }
  .section-FV .inner .FV-right .Catchcopy p span {
    -webkit-text-stroke: 1px #1166A0;
  }
  .section-FV .inner .FV-right .bottom {
    margin-top: 8vh;
  }
  .section-FV .inner .FV-right .bottom .left .achievement p {
    font-size: 18px;
  }
  .section-FV .inner .FV-right .bottom .left .achievement p span {
    font-size: 36px;
    font-weight: 700;
    -webkit-text-stroke: 1px #1166A0;
  }
  .section-FV .inner .FV-right .bottom .left .achievement p .※※ {
    vertical-align: 60%;
    font-size: 18px;
    font-weight: 400;
    color: #1a1a1a;
    -webkit-text-stroke: 0.1px #1a1a1a;
  }
  .section-FV .inner .FV-right .bottom .left .FV-text {
    margin-top: 16px;
    font-size: 20px;
  }
  .section-FV .inner .FV-right .bottom .left .button {
    margin-top: -3px;
  }
  .section-FV .inner .FV-right .bottom .left .button .cta {
    height: 110px;
    width: 440px;
    border-radius: 10px;
    font-size: 22px;
  }
  .section-FV .inner .FV-right .bottom .left .button .cta a img {
    margin-left: 48px;
  }
  .section-FV .inner .FV-right .bottom .FV-badge img {
    width: 190px;
    height: auto;
  }
  .section-FV .inner .FV-right .FV-supplement {
    margin-top: 19px;
    font-size: 14px;
  }
  .section-worries {
    background-position: center;
  }
  .section-worries .inner .contents .card-set {
    width: 80vw;
  }
  .section-worries .inner .contents .card-set .case-text {
    max-width: none;
    width: 65%;
  }
  .section-worries .inner .contents .case1 {
    transform: translateX(-18%);
    margin: 0 auto;
    margin-top: 91.1px;
  }
  .section-worries .inner .contents .case2 {
    transform: translateX(-18%);
  }
  .section-worries .inner .contents .case3 {
    transform: translateX(-18%);
    margin-top: 50px;
  }
  .section-cando-fm__title img {
    width: 640px;
    height: auto;
  }
  .section-cando-fm__contents {
    width: 100%;
  }
  .section-cando-fm__contents .inner {
    position: static;
  }
  .section-cando-fm__contents .inner .point1 {
    width: 100%;
    width: 800px;
    margin: 0 auto;
    left: 0;
  }
  .section-cando-fm__contents .inner .point1 img {
    width: 800px;
    margin: 0 auto;
  }
  .section-cando-fm__contents .inner .point1 .point1--text {
    top: 12%;
    left: 19%;
  }
  .section-cando-fm__contents .inner .point1 .point1--text .point1--title {
    font-size: 26px;
    line-height: 36px;
  }
  .section-cando-fm__contents .inner .point1 .point1--text .point1--detail {
    margin-top: 12px;
    font-size: min(1.25vw, 17px);
    line-height: 26px;
  }
  .section-cando-fm__contents .inner .point2 {
    width: 100%;
    width: 800px;
    margin: 0 auto;
    margin-top: 20px;
    left: 0;
  }
  .section-cando-fm__contents .inner .point2 img {
    width: 800px;
    margin: 0 auto;
  }
  .section-cando-fm__contents .inner .point2 .point2--text {
    top: 11%;
    left: 50%;
  }
  .section-cando-fm__contents .inner .point2 .point2--text .point2--title {
    font-size: 26px;
    line-height: 36px;
  }
  .section-cando-fm__contents .inner .point2 .point2--text .point2--detail {
    width: 96%;
    margin-top: 12px;
    font-size: min(1.25vw, 17px);
    line-height: 26px;
  }
  .section-cando-fm__contents .inner .point3 {
    width: 100%;
    width: 800px;
    margin: 0 auto;
    left: 0;
    margin-top: 20px;
  }
  .section-cando-fm__contents .inner .point3 img {
    width: 800px;
    margin: 0 auto;
  }
  .section-cando-fm__contents .inner .point3 .point3--text {
    top: 11%;
    left: 19%;
  }
  .section-cando-fm__contents .inner .point3 .point3--text .point3--title {
    font-size: 26px;
    line-height: 36px;
  }
  .section-cando-fm__contents .inner .point3 .point3--text .point3--detail {
    margin-top: 12px;
    font-size: min(1.25vw, 17px);
    line-height: 26px;
  }
  .passing-cta .inner .passing-cta__left span {
    font-size: 23px;
  }
  .passing-cta .inner .passing-cta__left p {
    font-size: 18px;
    line-height: 32px;
  }
  .passing-cta .inner .passing-cta__right {
    margin-left: 90px;
    justify-content: center;
  }
  .passing-cta .inner .passing-cta__right .right-bold {
    font-size: 33px;
  }
  .passing-cta .inner .passing-cta__right .button .cta-b {
    height: 100px;
    width: 400px;
  }
  .passing-cta .inner .passing-cta__right .button .cta-b a {
    font-size: 20px;
    line-height: 32px;
  }
  .passing-cta .inner .passing-cta__right .button .cta-b a img {
    margin-left: 50px;
  }
  .passing-cta .inner .passing-cta__right .button .cta-b a p {
    font-size: 22px;
    margin-left: 30px;
  }
  .passing-cta .inner .passing-cta__right .button .cta-b a p span {
    font-size: 32px;
  }
  .passing-cta .inner .passing-cta__right .button .cta-b a p .cta-text-sp {
    font-size: 22px;
  }
  .passing-cta .inner .passing-cta__right .passing-cta__right--detail {
    margin-top: 10px;
    font-size: 15px;
    line-height: 22px;
  }
  .voice__contents .inner {
    display: block;
    align-items: center;
  }
  .voice__contents .inner .voice2 {
    margin-top: 70px;
    margin-left: 0;
  }
  .voice__contents .inner .voice3 {
    margin-top: 70px;
    margin-left: 0;
  }
  .voice__contents .inner .voice4 {
    margin-top: 70px;
    margin-left: 0;
  }
  .voice__contents .inner .voice-set {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 0 auto;
  }
  .voice__contents .inner .voice-set .voice-text {
    height: 560px;
    padding: 0 3rem;
    padding-top: 7%;
  }
  .award__logo {
    padding-top: 60px;
  }
  .award__logo p {
    font-size: 22px;
  }
  .award__batch .batch-set p span {
    font-size: 34px;
  }
  .flow {
    height: 480px;
  }
  .flow__contents img {
    width: 800px;
    height: auto;
  }
  .question .question-set {
    max-width: 1000px;
    padding: 46px 60px 75px 60px;
  }
}
/* =====================================================================
   =============================================
          タブレット〜スマホの調整枠
  画面サイズが1040pxから下の幅を綺麗に
  =====================================================================
  ============================================= */
@media screen and (max-width: 1040px) {
  .img-pc {
    display: none !important; /* スマホ時にのみ表示 */
  }
  .inner {
    min-width: 720px;
  }
  .img-sp {
    display: block !important; /* スマホ時にのみ表示 */
  }
  .br-sp {
    display: block !important; /* スマホ時にのみ適用 */
  }
  .inner {
    margin: 0 auto;
  }
  .header {
    height: 80px;
    width: 100%;
    top: 0;
    position: fixed;
    z-index: 500;
    background-color: rgba(239, 239, 239, 0.7); /* 背景設定。灰色の半透明 */
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.16); /* 下方向へのシャドウ */
  }
  .header .inner {
    height: 100%;
    width: 94vw;
    margin: 0 auto;
    justify-content: space-between; /* 最初と最後の子要素を上下の端に配置し、残りの要素は均等に間隔をあけて配置 */
    display: flex;
    /* --- レスポンシブ時のCTAボタン --- */ /* よく分からん */
  }
  .header .inner .header__logo { /* --- ロゴ --- */
    width: min(6vw, 24px);
    height: auto;
    margin-top: 13px;
    margin-bottom: 13px;
  }
  .header .inner .header__logo img {
    height: 24px;
  }
  .header .inner .header__right { /* --- ヘッダーの右側 --- */
    display: flex;
  }
  .header .inner .header__right .tel { /* --- 電話部分 --- */
    /* --- レスポンシブ時の電話ボタン --- */
  }
  .header .inner .header__right .tel .header_tel-pc {
    display: none !important; /* スマホ時には表示させない */
  }
  .header .inner .header__right .tel .header__inner__teltext {
    display: none !important; /* スマホ時には表示させない */
  }
  .header .inner .header__right .tel .header__sp-tel {
    display: block !important; /* スマホ時にのみ画像を表示 */
    width: 40px;
    height: 40px;
    margin-top: 2px;
    margin-right: 40px;
    background-image: linear-gradient(#1A6CA3, #2972A3); /* 本当は斜めにグラかけたい */
    border-radius: 6px; /* 座布団の角丸の指定 */
    box-shadow: 4px 4px 5px rgba(41, 41, 41, 0.2); /* ボタンのシャドウ 水平方向 垂直方向 影のぼかし 色 */
    box-shadow: -2px -2px 6px rgba(126, 126, 126, 0.1); /* ボタンのシャドウ 水平方向 垂直方向 影のぼかし 色 */
  }
  .header .inner .header__right .tel .header__sp-tel img {
    height: 23px;
    width: 23px;
    margin: 0 auto;
  }
  .header .inner .header__innertext {
    display: none !important; /* スマホ時には表示させない */
  }
  .header .inner .header__cta {
    display: none !important; /* スマホ時には表示させない */
  }
  .header .inner .header__ctaーsp {
    display: block !important; /* スマホ時にのみ画像を表示 */
    height: 40px;
    width: 40px;
    margin-top: 2px;
    margin-right: 0;
    border-radius: 6px; /* 座布団の角丸の指定 */
    background-image: linear-gradient(#F48028, #EB8335); /* 座布団の色の指定　後々調整予定 */
    box-shadow: -2px -2px 2px rgba(126, 126, 126, 0.1); /* ボタンのシャドウ 水平方向 垂直方向 影のぼかし 色 */
    box-shadow: 3px 3px 5px rgba(41, 41, 41, 0.2); /* 下方向へのシャドウ */
  }
  .header .inner .header__ctaーsp a img {
    display: block !important; /* スマホ時にのみ画像を表示 */
    width: 23.5px;
    height: 18.8px;
    margin: 0 auto;
  }
  .section-worries {
    background-position: center;
    padding-bottom: 66.8px;
  }
  .section-worries__title {
    position: relative;
    text-align: center;
    white-space: nowrap;
    width: 100%;
    height: 70px;
    background: #fff;
  }
  .section-worries__title img {
    display: none !important; /* スマホ時にのみ表示 */
  }
  .section-worries__title p {
    font-size: 40px;
    font-weight: 900;
  }
  .section-worries .inner .contents .card-set {
    width: 80vw;
  }
  .section-worries .inner .contents .card-set .card-img {
    width: auto;
    height: auto;
  }
  .section-worries .inner .contents .card-set .case-text .case-title {
    font-size: 3.26vw;
    line-height: 1.33;
  }
  .section-worries .inner .contents .card-set .case-text .case-detail {
    width: 102%;
    font-size: 2.17vw;
    line-height: 1.7;
  }
  .section-worries .inner .case1 {
    width: 100%;
  }
  .section-worries .inner .case2 {
    width: 100%;
  }
  .section-worries .inner .case3 {
    width: 100%;
  }
  .section-cando-fm .inner .point1 {
    width: 100%;
  }
  .section-cando-fm .inner .point1 img {
    width: 100%;
  }
  .section-cando-fm .inner .point2 {
    width: 100%;
  }
  .section-cando-fm .inner .point2 img {
    width: 100%;
  }
  .section-cando-fm .inner .point3 {
    width: 100%;
  }
  .section-cando-fm .inner .point3 img {
    width: 100%;
  }
  .passing-cta {
    margin-top: 37px;
    width: 100%;
    height: 317px;
  }
  .passing-cta .inner {
    display: block; /* インライン要素をブロック要素に変換 */
    top: 67px;
  }
  .passing-cta .inner .passing-cta__left {
    text-align: center;
  }
  .passing-cta .inner .passing-cta__left span {
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #fff;
  }
  .passing-cta .inner .passing-cta__left p {
    margin-top: 15px;
    font-size: 12px;
    line-height: 1.4; /* 行間の調整 */
  }
  .passing-cta .inner .passing-cta__right {
    margin-left: 0;
    margin-right: auto;
    margin-left: auto;
  }
  .passing-cta .inner .passing-cta__right .right-bold {
    display: none !important;
  }
  .passing-cta .inner .passing-cta__right .button .cta-b {
    display: block;
    margin: 20px auto 0;
    height: 74px; /* 座布団の高さ指定 */
    width: 320px; /* 座布団の幅指定 */
    border-radius: 10px; /* 座布団の角丸の指定 */
    color: #fff; /* ボタン内の文字色指定 */
    font-weight: 600; /* ボタン内の文字ウェイト指定 */
  }
  .passing-cta .inner .passing-cta__right .button .cta-b a {
    display: flex;
    align-self: center;
    letter-spacing: 2px; /* 文字間指定 */
    line-height: 36px; /* 行間の調整 */
  }
  .passing-cta .inner .passing-cta__right .button .cta-b a img {
    align-self: center; /* ボタン内での上下中央 */
    margin-left: 55px;
    height: 28.75px;
    width: 40px;
  }
  .passing-cta .inner .passing-cta__right .button .cta-b a .cta-text-pc {
    text-align: center;
    align-items: center; /* アイコンとテキストを中央揃え */
    margin-left: 32px;
    font-size: 12px;
    line-height: 1.3;
  }
  .passing-cta .inner .passing-cta__right .button .cta-b a .cta-text-pc .cta-text-strong {
    font-size: 20px;
  }
  .passing-cta .inner .passing-cta__right .button .cta-b a .cta-text-pc .cta-text-sp {
    font-size: 14px;
  }
  .passing-cta .inner .passing-cta__right .passing-cta__right--detail {
    display: none !important;
  }
  .passing-cta:before { /* --- 吹き出しのシッポ部分 --- */
    content: ""; /* borderで三角形を作る */
    border: 27px solid transparent;
    border-bottom: 37px solid #1166A0; /* 配置する */
    position: absolute;
    top: -18%;
    left: 50%;
    transform: translateX(-50%);
  }
  .voice__contents .inner .voice2 {
    margin-top: 12vh;
  }
  .voice__contents .inner .voice3 {
    margin-top: 12vh;
  }
  .voice__contents .inner .voice4 {
    margin-top: 12vh;
  }
  .flow {
    height: auto;
    margin-top: 70px;
    padding-top: 39px;
    padding-bottom: 35px;
  }
  .flow__contents {
    margin-top: 29px;
    padding: 6%;
  }
  .flow__contents img {
    margin: 0 auto;
    max-width: 100%;
  }
  .flow-plus {
    margin: 0 auto;
    margin-top: 10px;
    font-size: 2vw;
    font-weight: 400;
  }
  .claris__logo-box .right p {
    width: 80%;
    transform: translate(13%, 30%);
    font-size: 1.4vw;
  }
  footer .footer__inner small {
    font-size: 14px;
  }
}
/* =====================================================================
   =============================================
                  スマホ版
  画面サイズが800px以下の場合、ここの記述が適用される
  =====================================================================
  ============================================= */
@media screen and (max-width: 800px) {
  .page-top {
    position: fixed;
    width: 40px;
    height: 40px;
    padding: 10px;
    padding-top: 14px;
  }
  .page-top img {
    width: 19.87px;
    height: 12.89px;
  }
  .img-pc {
    display: none !important; /* スマホ時にのみ表示 */
  }
  .inner {
    width: 94vw;
    height: 100%;
    min-width: 352px;
    margin: 0 auto;
  }
  .header {
    height: 50px;
    width: 100%;
    top: 0;
    position: fixed;
    z-index: 500;
    background-color: rgba(239, 239, 239, 0.7); /* 背景設定。灰色の半透明 */
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.16); /* 下方向へのシャドウ */
  }
  .header .inner {
    height: 100%;
    width: 94vw;
    margin: 0 auto;
    justify-content: space-between; /* 最初と最後の子要素を上下の端に配置し、残りの要素は均等に間隔をあけて配置 */
    display: flex;
    /* --- レスポンシブ時のCTAボタン --- */ /* よく分からん */
  }
  .header .inner .header__logo { /* --- ロゴ --- */
    width: auto;
    margin-top: 13px;
    margin-bottom: 13px;
  }
  .header .inner .header__logo img {
    height: 24px;
  }
  .header .inner .header__right { /* --- ヘッダーの右側 --- */
    display: flex;
  }
  .header .inner .header__right .tel { /* --- 電話部分 --- */
    /* --- レスポンシブ時の電話ボタン --- */
  }
  .header .inner .header__right .tel .header_tel-pc {
    display: none !important; /* スマホ時には表示させない */
  }
  .header .inner .header__right .tel .header__inner__teltext {
    display: none !important; /* スマホ時には表示させない */
  }
  .header .inner .header__right .tel .header__sp-tel {
    display: block !important; /* スマホ時にのみ画像を表示 */
    width: 40px;
    height: 40px;
    margin-top: 2px;
    margin-right: 24px;
    background-image: linear-gradient(#1A6CA3, #2972A3); /* 本当は斜めにグラかけたい */
    border-radius: 6px; /* 座布団の角丸の指定 */
    box-shadow: 4px 4px 5px rgba(41, 41, 41, 0.2); /* ボタンのシャドウ 水平方向 垂直方向 影のぼかし 色 */
    box-shadow: -2px -2px 6px rgba(126, 126, 126, 0.1); /* ボタンのシャドウ 水平方向 垂直方向 影のぼかし 色 */
  }
  .header .inner .header__right .tel .header__sp-tel img {
    height: 23px;
    width: 23px;
    margin: 0 auto;
  }
  .header .inner .header__innertext {
    display: none !important; /* スマホ時には表示させない */
  }
  .header .inner .header__cta {
    display: none !important; /* スマホ時には表示させない */
  }
  .header .inner .header__ctaーsp {
    display: block !important; /* スマホ時にのみ画像を表示 */
    height: 40px;
    width: 40px;
    margin-top: 2px;
    margin-right: 0;
    border-radius: 6px; /* 座布団の角丸の指定 */
    background-image: linear-gradient(#F48028, #EB8335); /* 座布団の色の指定　後々調整予定 */
    box-shadow: -2px -2px 2px rgba(126, 126, 126, 0.1); /* ボタンのシャドウ 水平方向 垂直方向 影のぼかし 色 */
    box-shadow: 3px 3px 5px rgba(41, 41, 41, 0.2); /* 下方向へのシャドウ */
  }
  .header .inner .header__ctaーsp a img {
    display: block !important; /* スマホ時にのみ画像を表示 */
    width: 23.5px;
    height: 18.8px;
    margin: 0 auto;
  }
  .section-title {
    justify-content: center;
    text-align: center;
    padding-top: 6.5px;
    padding-bottom: 6.5px;
    font-weight: 700;
    color: #1166A0;
    border-bottom: 4px solid #1166A0;
    border-top: 4px solid #1166A0;
    border-radius: 0.2%;
    line-height: 2.2em;
  }
  .section-title span {
    border: none;
    font-size: min(20px, 5vw);
  }
  .section-title--h {
    padding-top: 6.5px;
    padding-bottom: 6.5px;
    font-size: 20px;
    color: #fff;
  }
  .section-title--h span {
    font-size: min(20px, 5vw);
  }
  .section-FV {
    position: relative; /* 子要素の起点を指定 */
    width: 100vw; /* viewwidth */
    height: calc(100vh - 50px);
    margin-top: 50px;
  }
  .section-FV .FV-img {
    position: absolute;
    z-index: -10;
    width: auto;
    left: 0;
  }
  .section-FV .FV-img .FVimg-sp-none {
    display: none !important; /* PC時には表示させない */
  }
  .section-FV .FV-img .FVimg-pc-none {
    display: block !important; /* PC時にのみ画像を表示 */
    width: 100vw;
    height: auto;
  }
  .section-FV .inner {
    position: relative; /* ポジションの親 */
  }
  .section-FV .inner .FV-right {
    position: absolute; /* ポジションの子 */
    top: 14vh; /* デザインより、数値は調整して見栄えを同じにしました */
    justify-content: flex-end;
  }
  .section-FV .inner .FV-right .FV-badge-sp {
    display: block !important; /* スマホ時にのみ表示 */
    text-align: right;
  }
  .section-FV .inner .FV-right .FV-badge-sp img {
    width: 32.5vw;
  }
  .section-FV .inner .FV-right .Catchcopy {
    margin-top: 5.38vh;
  }
  .section-FV .inner .FV-right .Catchcopy p {
    text-align: right;
    color: #1166A0;
    font-size: 5.5vw;
    font-weight: 900;
    -webkit-text-stroke: 0.1px #1166A0; /* 文字の縁取り線 */
    letter-spacing: 0.04em;
    line-height: 1.58;
  }
  .section-FV .inner .FV-right .Catchcopy p span {
    font-size: 128%;
    font-weight: 700;
    -webkit-text-stroke: 0.1px #1166A0; /* 文字の縁取り線 */
  }
  .section-FV .inner .FV-right .Subcopy {
    margin: 0 auto;
    margin-top: 2.65vh;
    text-align: center;
    font-size: 3vw;
    font-weight: 700;
    line-height: 1.5; /* 行間の調整 */
  }
  .section-FV .inner .FV-right .bottom {
    align-items: flex-end; /* 横並びの下揃え */
    justify-content: flex-end;
    right: 0;
    margin-top: 2.4vh;
    margin-bottom: auto;
    display: block; /* インライン要素をブロック要素に変換 */
    /* --- 左側の部分 --- */
  }
  .section-FV .inner .FV-right .bottom .left {
    text-align: center;
    margin-right: 3.3vw;
  }
  .section-FV .inner .FV-right .bottom .left .achievement {
    margin-top: 2.44vh;
    justify-content: center;
    display: flex;
    align-self: center; /* 横並びの中央揃え */
    text-align: center;
  }
  .section-FV .inner .FV-right .bottom .left .achievement img {
    height: 4.6vh;
    margin-left: 1.75vw;
    margin-right: 1vw;
  }
  .section-FV .inner .FV-right .bottom .left .achievement p {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
  }
  .section-FV .inner .FV-right .bottom .left .achievement p .※※ {
    vertical-align: 110%;
    font-size: 10px;
    font-weight: 500;
    color: #1a1a1a;
  }
  .section-FV .inner .FV-right .bottom .left .achievement p span {
    font-size: 28px;
    font-weight: 700;
    color: #1166A0;
  }
  .section-FV .inner .FV-right .bottom .left .FV-text {
    display: none !important; /* スマホ時にのみ表示させません */
  }
  .section-FV .inner .FV-right .bottom .left .button .cta {
    align-self: center;
    margin-top: 0.86vh;
    outline: none; /* ボタンの枠線消し */
    height: 74px; /* 座布団の高さ指定 */
    width: 320px; /* 座布団の幅指定 */
    border-radius: 10px; /* 座布団の角丸の指定 */
    font-size: 24px;
    font-weight: 600;
    color: #fff; /* ボタン内の文字色指定 */
    font-weight: 600; /* ボタン内の文字ウェイト指定 */
    background-color: #F28838; /* 座布団の色の指定　後々調整予定 */
    box-shadow: -2px -2px 2px rgba(126, 126, 126, 0.1); /* ボタンのシャドウ 水平方向 垂直方向 影のぼかし 色 */
    box-shadow: 3px 3px 5px rgba(41, 41, 41, 0.2);
  }
  .section-FV .inner .FV-right .bottom .left .button .cta a {
    display: flex;
    align-self: center;
    letter-spacing: 2px; /* 文字間指定 */
    line-height: 36px; /* 行間の調整 */
  }
  .section-FV .inner .FV-right .bottom .left .button .cta a img {
    align-self: center; /* ボタン内での上下中央 */
    margin-left: 55px;
    height: 28.75px;
    width: 40px;
  }
  .section-FV .inner .FV-right .bottom .left .button .cta a .cta-text-pc {
    text-align: center;
    align-items: center; /* アイコンとテキストを中央揃え */
    margin-left: 32px;
    font-size: 12px;
    line-height: 1.3;
  }
  .section-FV .inner .FV-right .bottom .left .button .cta a .cta-text-pc .cta-text-strong {
    font-size: 20px;
  }
  .section-FV .inner .FV-right .bottom .left .button .cta a .cta-text-pc .cta-text-sp {
    font-size: 14px;
  }
  .section-FV .inner .FV-right .bottom .left .FV-text-sp {
    display: block !important; /* スマホ時にのみ表示 */
    margin-top: 1.14vh;
  }
  .section-FV .inner .FV-right .bottom .left .FV-text-sp p {
    font-size: 14px;
    font-weight: 400;
  }
  .section-FV .inner .FV-right .bottom .FV-badge {
    display: none !important; /* スマホ時にのみ表示させません */
  }
  .section-FV .inner .FV-right .bottom .FV-badge img {
    width: 32.5vw;
  }
  .section-FV .inner .FV-right .FV-supplement {
    margin-top: 2.72vh;
    text-align: right;
    font-size: 12px;
    font-weight: 300;
    color: #272727;
  }
  .section-worries {
    background-position: center;
    padding-bottom: 66.8px;
  }
  .section-worries__title {
    position: relative;
    text-align: center;
    white-space: nowrap;
    width: 100%;
    height: 43px;
    background: #fff;
  }
  .section-worries__title img {
    display: none !important; /* スマホ時にのみ表示 */
  }
  .section-worries__title p {
    position: absolute;
    top: 19.6%;
    color: #1166A0;
    font-size: min(20px, 7.18vh);
    font-weight: 800;
  }
  .section-worries .inner .contents .card-set {
    width: 100%;
    border-top-left-radius: 100px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
  }
  .section-worries .inner .contents .card-set .card-img {
    width: 18.75vw;
    margin: auto;
    margin-left: 4vw;
    margin-right: 0;
  }
  .section-worries .inner .contents .card-set .case-text {
    margin-right: 1.5vw;
  }
  .section-worries .inner .contents .card-set .case-text .case-title {
    font-size: 3.26vw;
    line-height: 1.33;
  }
  .section-worries .inner .contents .card-set .case-text .case-detail {
    width: 102%;
    font-size: 2.17vw;
    line-height: 1.7;
  }
  .section-worries .inner .contents .card-set .case-number {
    width: 16.25vw;
    transform: translate(7px, -30px);
  }
  .section-worries .inner .contents .card-set .case-number img {
    width: 100%;
    height: auto;
  }
  .section-worries .inner .contents .case1 {
    width: 100%;
    transform: translateX(0%);
  }
  .section-worries .inner .contents .case2 {
    width: 100%;
    transform: translateX(0%);
  }
  .section-worries .inner .contents .case3 {
    width: 100%;
    transform: translateX(0%);
  }
  .section-resolution {
    margin-top: 110px;
  }
  .section-resolution__title {
    color: #1166A0;
    line-height: 50px; /* 行間の調整 */
  }
  .section-resolution__title .section-title {
    margin-bottom: 0;
  }
  .section-resolution__contents {
    margin-top: 0;
  }
  .section-resolution__contents .kaiketsu-pc {
    display: none !important; /* レスポンシブ時には画像を表示させない */
  }
  .section-resolution__contents .kaiketsu-sp {
    width: 100%;
    object-fit: cover;
    display: block !important; /* レスポンシブ時にのみ画像を表示 */
  }
  .triangle {
    margin-top: 48px;
    margin-bottom: 40px;
  }
  .triangle img {
    width: 48px;
  }
  .section-cando-fm {
    margin-top: 80px;
  }
  .section-cando-fm__title .cando-pc {
    display: none !important;
  }
  .section-cando-fm__title .cando-sp {
    display: block !important;
    width: 80vw;
    margin: 0 auto;
  }
  .section-cando-fm .inner {
    position: relative; /* ポジションの親指定 */
  }
  .section-cando-fm .inner .point1 {
    position: absolute; /* (インナー基準の)ポジションの子指定 */
    max-width: 100%;
    margin: 0 auto;
    left: 0;
    margin-top: 40px;
    position: relative; /* ポジションの親指定 */
  }
  .section-cando-fm .inner .point1 .cando-pc-img {
    display: none !important; /* スマホ時には表示させない */
  }
  .section-cando-fm .inner .point1 .cando-sp-img {
    display: block !important; /* スマホ時には表示させる */
    text-align: center;
  }
  .section-cando-fm .inner .point1 .point1--text {
    position: absolute;
    top: 31%;
    left: 7%;
    right: 10%;
    text-align: left;
  }
  .section-cando-fm .inner .point1 .point1--text .point1--title {
    font-size: 4vw;
    font-weight: 700;
    line-height: 1.25;
    color: #454545;
  }
  .section-cando-fm .inner .point1 .point1--text .point1--title span {
    color: #1166A0;
  }
  .section-cando-fm .inner .point1 .point1--text .point1--detail {
    margin-top: 12px;
    font-size: 3vw;
    font-weight: 400;
    line-height: 1.3;
    color: #3e3e3e;
  }
  .section-cando-fm .inner .point2 {
    max-width: 100%;
    margin: 0 auto;
    right: 0;
    position: absolute; /* (インナー基準の)ポジションの子指定 */
    position: relative; /* ポジションの親指定 */
  }
  .section-cando-fm .inner .point2 .cando-pc-img {
    display: none !important;
  }
  .section-cando-fm .inner .point2 .cando-sp-img {
    display: block !important;
    text-align: center;
  }
  .section-cando-fm .inner .point2 .point2--text {
    position: absolute; /* ポジションの子指定 */
    top: 30%;
    left: 8%;
    right: 11%;
    text-align: right; /* 文字部分だけ左揃え */
  }
  .section-cando-fm .inner .point2 .point2--text .point2--title {
    font-size: 4vw;
    font-weight: 700;
    line-height: 1.5; /* 行間の調整 */
    color: #454545;
  }
  .section-cando-fm .inner .point2 .point2--text .point2--title span {
    color: #1166A0;
  }
  .section-cando-fm .inner .point2 .point2--text .point2--detail {
    width: 100%;
    margin-top: 8px;
    text-align: left;
    font-size: 3vw;
    font-weight: 400;
    line-height: 1.3; /* 行間の調整 */
    color: #3e3e3e;
  }
  .section-cando-fm .inner .point3 {
    max-width: 100%;
    margin: 0 auto;
    left: 0;
    position: absolute; /* (インナー基準の)ポジションの子指定 */
    position: relative; /* ポジションの親指定 */
  }
  .section-cando-fm .inner .point3 .cando-pc-img {
    display: none !important;
  }
  .section-cando-fm .inner .point3 .cando-sp-img {
    display: block !important;
    text-align: center;
  }
  .section-cando-fm .inner .point3 .point3--text {
    position: absolute; /* ポジションの子指定 */
    top: 31%;
    left: 7%;
    right: 11%;
    text-align: left; /* 文字部分だけ左揃え */
  }
  .section-cando-fm .inner .point3 .point3--text .point3--title {
    font-size: 4vw;
    font-weight: 700;
    line-height: 1.5; /* 行間の調整 */
    color: #454545;
  }
  .section-cando-fm .inner .point3 .point3--text .point3--title span {
    color: #1166A0;
  }
  .section-cando-fm .inner .point3 .point3--text .point3--detail {
    margin-top: 12px;
    font-size: 3vw;
    font-weight: 400;
    line-height: 1.3; /* 行間の調整 */
    color: #3e3e3e;
  }
  .passing-cta {
    margin-top: 37px;
    width: 100%;
    height: 317px;
  }
  .passing-cta .inner {
    display: block; /* インライン要素をブロック要素に変換 */
    top: 67px;
  }
  .passing-cta .inner .passing-cta__left {
    text-align: center;
  }
  .passing-cta .inner .passing-cta__left span {
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #fff;
  }
  .passing-cta .inner .passing-cta__left p {
    margin-top: 15px;
    font-size: 12px;
    line-height: 1.4; /* 行間の調整 */
  }
  .passing-cta .inner .passing-cta__right {
    margin-left: 0;
    margin-right: auto;
    margin-left: auto;
  }
  .passing-cta .inner .passing-cta__right .right-bold {
    display: none !important;
  }
  .passing-cta .inner .passing-cta__right .button .cta-b {
    display: block;
    margin: 20px auto 0;
    height: 74px; /* 座布団の高さ指定 */
    width: 320px; /* 座布団の幅指定 */
    border-radius: 10px; /* 座布団の角丸の指定 */
    color: #fff; /* ボタン内の文字色指定 */
    font-weight: 600; /* ボタン内の文字ウェイト指定 */
  }
  .passing-cta .inner .passing-cta__right .button .cta-b a {
    display: flex;
    align-self: center;
    letter-spacing: 2px; /* 文字間指定 */
    line-height: 36px; /* 行間の調整 */
  }
  .passing-cta .inner .passing-cta__right .button .cta-b a img {
    align-self: center; /* ボタン内での上下中央 */
    margin-left: 55px;
    height: 28.75px;
    width: 40px;
  }
  .passing-cta .inner .passing-cta__right .button .cta-b a .cta-text-pc {
    text-align: center;
    align-items: center; /* アイコンとテキストを中央揃え */
    margin-left: 32px;
    font-size: 12px;
    line-height: 1.3;
  }
  .passing-cta .inner .passing-cta__right .button .cta-b a .cta-text-pc .cta-text-strong {
    font-size: 20px;
  }
  .passing-cta .inner .passing-cta__right .button .cta-b a .cta-text-pc .cta-text-sp {
    font-size: 14px;
  }
  .passing-cta .inner .passing-cta__right .passing-cta__right--detail {
    display: none !important;
  }
  .passing-cta:before { /* --- 吹き出しのシッポ部分 --- */
    content: ""; /* borderで三角形を作る */
    border: 27px solid transparent;
    border-bottom: 37px solid #1166A0; /* 配置する */
    position: absolute;
    top: -18%;
    left: 50%;
    transform: translateX(-50%);
  }
  .voice__section-title .section-title {
    background-color: #fff;
  }
  .voice__section-title .section-title span {
    background-color: transparent;
  }
  .voice__contents .inner {
    display: block;
  }
  .voice__contents .inner .voice-set {
    width: 100%;
  }
  .voice__contents .inner .voice-set .voice-text {
    width: auto;
    height: auto;
    padding-top: 42px;
    padding-bottom: 43px;
  }
  .voice__contents .inner .voice-set .voice-text .voice-title {
    margin: auto auto;
    font-size: 16px;
    line-height: 1.375;
    text-align: left;
  }
  .voice__contents .inner .voice-set .voice-sub {
    text-align: left;
    margin-top: 12px;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 30px;
  }
  .voice__contents .inner .voice-set .voice-sub br {
    display: none !important; /* スマホ時には適用させない */
  }
  .voice__contents .inner .voice1 {
    text-align: center;
  }
  .voice__contents .inner .voice2 {
    margin-top: 70px;
    margin-left: 0;
  }
  .voice__contents .inner .voice3 {
    margin-top: 70px;
    margin-left: 0;
  }
  .voice__contents .inner .voice4 {
    margin-top: 70px;
    margin-left: 0;
  }
  .award__logo {
    margin-top: 0;
  }
  .award__logo p {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.57;
  }
  .award__batch .batch-set p {
    font-size: 12px;
    line-height: 1.4;
  }
  .award__batch .batch-set p span {
    font-size: 20px;
  }
  .award__batch .batch-set p span .sp-small {
    font-size: 12px;
  }
  .question .question-set {
    padding: 4% 4% 6% 4%;
  }
  .question .question-set .question-query {
    display: block;
    text-align: left;
  }
  .question .question-set .question-query .Q {
    font-size: 20px;
  }
  .question .question-set .question-query .question-text {
    margin-top: 10px;
    margin-left: 0;
    font-size: 20px;
    line-height: 1.5;
  }
  .question .question-set .question-answer {
    display: block;
    text-align: left;
  }
  .question .question-set .question-answer .A {
    font-size: 20px;
  }
  .question .question-set .question-answer .answer-text {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.5;
  }
  .cv .h1 .another {
    font-size: 20px;
    line-height: 1.5;
    color: #2D2C2C;
  }
  .claris__logo-box {
    display: block;
    max-width: 94vw;
    margin: 0 auto;
  }
  .claris__logo-box .left {
    width: auto;
    height: auto;
    padding-top: 20px;
    padding-bottom: 21px;
  }
  .claris__logo-box .right {
    max-height: 1020px;
    max-width: 100%;
    width: 100%;
    height: auto;
    padding: 26px 20px;
  }
  .claris__logo-box .right p {
    top: 0;
    left: 0;
    transform: none;
    width: auto;
    font-size: 16px;
    line-height: 1.56;
  }
  .claris .trademark {
    max-width: 94vw;
    margin: 40px auto;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.57;
  }
  .claris .trademark br {
    display: none !important;
  }
  .claris .trademark br .br-sp {
    display: block !important; /* スマホ時にのみ適用 */
  }
  footer {
    height: 40px;
    margin-top: 60px;
  }
  footer .footer__inner small {
    font-size: 12px;
  }
  .thanks {
    min-height: calc(100vh - 100px);
  }
  .thanks h1 {
    font-size: 32px;
  }
}/*# sourceMappingURL=style.css.map */