@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;
}

* {
  box-sizing: border-box;
}

*:before,
*:after {
  box-sizing: inherit;
}

/*----------------------------------------------------

	サイトの基本設定のファイルです。
	最初の設定以外、基本変更することはありません。

----------------------------------------------------*/
/*--------------------------
	フォントの設定
--------------------------*/
/*--------------------------
	カラーの設定
--------------------------*/
/*--------------------------
	レイアウトの設定
--------------------------*/
/*--------------------------
	グリッドのガター
--------------------------*/
/*--------------------------
	レスポンシブの設定
--------------------------*/
/*--------------------------
  アニメーションの設定
--------------------------*/
/*----------------------------------------------------

	Mixinをまとめたファイルです。
	基本的に変更することはありません。
	Mixinを追加したい場合、_mixin_●●.scssという
	別ファイルを生成し、追加してください。

----------------------------------------------------*/
/*--------------------------
	レスポンシブ関連
--------------------------*/
/*----------------------------------------------------

	自作関数をまとめたファイルです。
	基本的に変更することはありません。
	自作関数を追加したい場合、_functions_●●.scssという
	別ファイルを生成し、追加してください。

----------------------------------------------------*/
/*----------------------------------------------------

	初期設定を行うファイルです。
	デフォルトの設定を行う時以外、基本的に編集することはありません。

----------------------------------------------------*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
  font-size: 0.520833vw; /* 10px / 1920px * 100 */
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.66666667vw; /* 10px / 375px * 100 */
    scroll-padding-top: 6rem;
  }
}

body {
  background: #fff;
  color: #333;
  font-size: 20px;
  font-size: 2rem;
  font-family: "Noto Sans JP", 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: #0068B7;
  text-decoration: underline;
}
.u-link:hover {
  text-decoration: none;
}

.u-ul-default {
  margin: 1rem 0;
  padding-left: 4rem;
  list-style-type: disc;
}
@media screen and (max-width: 767px) {
  .u-ul-default {
    padding-left: 3rem;
  }
}
.u-ul-default li {
  list-style: inherit;
}

.u-ol-default {
  margin: 1rem 0;
  padding-left: 4rem;
  list-style-type: decimal;
}
@media screen and (max-width: 767px) {
  .u-ol-default {
    padding-left: 3rem;
  }
}
.u-ol-default li {
  list-style: inherit;
}

.u-ul-style > li {
  position: relative;
  padding-left: 1.2em;
}
.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: "●";
  color: #000;
}
.u-ul-style--disc-red > li::before {
  content: "●";
  color: #0068B7;
}
.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: #0068B7;
}

.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%;
}

/*--------------------------
	padding margin 調整用
--------------------------*/
.u-mt-s {
  margin-top: 2rem !important;
}
@media screen and (max-width: 767px) {
  .u-mt-s {
    margin-top: 1rem !important;
  }
}

.u-mt-m {
  margin-top: 4rem !important;
}
@media screen and (max-width: 767px) {
  .u-mt-m {
    margin-top: 2rem !important;
  }
}

.u-mt-l {
  margin-top: 6rem !important;
}
@media screen and (max-width: 767px) {
  .u-mt-l {
    margin-top: 3rem !important;
  }
}

.u-mt-xl {
  margin-top: 8rem !important;
}
@media screen and (max-width: 767px) {
  .u-mt-xl {
    margin-top: 4rem !important;
  }
}

.u-mb-s {
  margin-bottom: 2rem !important;
}
@media screen and (max-width: 767px) {
  .u-mb-s {
    margin-bottom: 1rem !important;
  }
}

.u-mb-m {
  margin-bottom: 4rem !important;
}
@media screen and (max-width: 767px) {
  .u-mb-m {
    margin-bottom: 2rem !important;
  }
}

.u-mb-l {
  margin-bottom: 6rem !important;
}
@media screen and (max-width: 767px) {
  .u-mb-l {
    margin-bottom: 3rem !important;
  }
}

.u-mb-xl {
  margin-bottom: 8rem !important;
}
@media screen and (max-width: 767px) {
  .u-mb-xl {
    margin-bottom: 4rem !important;
  }
}

.u-mt120 {
  margin-top: 12rem !important;
}

.u-mb120 {
  margin-bottom: 12rem !important;
}

.u-ml120 {
  margin-left: 12rem !important;
}

.u-mr120 {
  margin-right: 12rem !important;
}

.u-pt120 {
  padding-top: 12rem !important;
}

.u-pb120 {
  padding-bottom: 12rem !important;
}

.u-pl120 {
  padding-left: 12rem !important;
}

.u-pr120 {
  padding-right: 12rem !important;
}

.u-mt110 {
  margin-top: 11rem !important;
}

.u-mb110 {
  margin-bottom: 11rem !important;
}

.u-ml110 {
  margin-left: 11rem !important;
}

.u-mr110 {
  margin-right: 11rem !important;
}

.u-pt110 {
  padding-top: 11rem !important;
}

.u-pb110 {
  padding-bottom: 11rem !important;
}

.u-pl110 {
  padding-left: 11rem !important;
}

.u-pr110 {
  padding-right: 11rem !important;
}

.u-mt100 {
  margin-top: 10rem !important;
}

.u-mb100 {
  margin-bottom: 10rem !important;
}

.u-ml100 {
  margin-left: 10rem !important;
}

.u-mr100 {
  margin-right: 10rem !important;
}

.u-pt100 {
  padding-top: 10rem !important;
}

.u-pb100 {
  padding-bottom: 10rem !important;
}

.u-pl100 {
  padding-left: 10rem !important;
}

.u-pr100 {
  padding-right: 10rem !important;
}

.u-mt90 {
  margin-top: 9rem !important;
}

.u-mb90 {
  margin-bottom: 9rem !important;
}

.u-ml90 {
  margin-left: 9rem !important;
}

.u-mr90 {
  margin-right: 9rem !important;
}

.u-pt90 {
  padding-top: 9rem !important;
}

.u-pb90 {
  padding-bottom: 9rem !important;
}

.u-pl90 {
  padding-left: 9rem !important;
}

.u-pr90 {
  padding-right: 9rem !important;
}

.u-mt80 {
  margin-top: 8rem !important;
}

.u-mb80 {
  margin-bottom: 8rem !important;
}

.u-ml80 {
  margin-left: 8rem !important;
}

.u-mr80 {
  margin-right: 8rem !important;
}

.u-pt80 {
  padding-top: 8rem !important;
}

.u-pb80 {
  padding-bottom: 8rem !important;
}

.u-pl80 {
  padding-left: 8rem !important;
}

.u-pr80 {
  padding-right: 8rem !important;
}

.u-mt75 {
  margin-top: 7.5rem !important;
}

.u-mb75 {
  margin-bottom: 7.5rem !important;
}

.u-ml75 {
  margin-left: 7.5rem !important;
}

.u-mr75 {
  margin-right: 7.5rem !important;
}

.u-pt75 {
  padding-top: 7.5rem !important;
}

.u-pb75 {
  padding-bottom: 7.5rem !important;
}

.u-pl75 {
  padding-left: 7.5rem !important;
}

.u-pr75 {
  padding-right: 7.5rem !important;
}

.u-mt70 {
  margin-top: 7rem !important;
}

.u-mb70 {
  margin-bottom: 7rem !important;
}

.u-ml70 {
  margin-left: 7rem !important;
}

.u-mr70 {
  margin-right: 7rem !important;
}

.u-pt70 {
  padding-top: 7rem !important;
}

.u-pb70 {
  padding-bottom: 7rem !important;
}

.u-pl70 {
  padding-left: 7rem !important;
}

.u-pr70 {
  padding-right: 7rem !important;
}

.u-mt65 {
  margin-top: 6.5rem !important;
}

.u-mb65 {
  margin-bottom: 6.5rem !important;
}

.u-ml65 {
  margin-left: 6.5rem !important;
}

.u-mr65 {
  margin-right: 6.5rem !important;
}

.u-pt65 {
  padding-top: 6.5rem !important;
}

.u-pb65 {
  padding-bottom: 6.5rem !important;
}

.u-pl65 {
  padding-left: 6.5rem !important;
}

.u-pr65 {
  padding-right: 6.5rem !important;
}

.u-mt60 {
  margin-top: 6rem !important;
}

.u-mb60 {
  margin-bottom: 6rem !important;
}

.u-ml60 {
  margin-left: 6rem !important;
}

.u-mr60 {
  margin-right: 6rem !important;
}

.u-pt60 {
  padding-top: 6rem !important;
}

.u-pb60 {
  padding-bottom: 6rem !important;
}

.u-pl60 {
  padding-left: 6rem !important;
}

.u-pr60 {
  padding-right: 6rem !important;
}

.u-mt55 {
  margin-top: 5.5rem !important;
}

.u-mb55 {
  margin-bottom: 5.5rem !important;
}

.u-ml55 {
  margin-left: 5.5rem !important;
}

.u-mr55 {
  margin-right: 5.5rem !important;
}

.u-pt55 {
  padding-top: 5.5rem !important;
}

.u-pb55 {
  padding-bottom: 5.5rem !important;
}

.u-pl55 {
  padding-left: 5.5rem !important;
}

.u-pr55 {
  padding-right: 5.5rem !important;
}

.u-mt50 {
  margin-top: 5rem !important;
}

.u-mb50 {
  margin-bottom: 5rem !important;
}

.u-ml50 {
  margin-left: 5rem !important;
}

.u-mr50 {
  margin-right: 5rem !important;
}

.u-pt50 {
  padding-top: 5rem !important;
}

.u-pb50 {
  padding-bottom: 5rem !important;
}

.u-pl50 {
  padding-left: 5rem !important;
}

.u-pr50 {
  padding-right: 5rem !important;
}

.u-mt45 {
  margin-top: 4.5rem !important;
}

.u-mb45 {
  margin-bottom: 4.5rem !important;
}

.u-ml45 {
  margin-left: 4.5rem !important;
}

.u-mr45 {
  margin-right: 4.5rem !important;
}

.u-pt45 {
  padding-top: 4.5rem !important;
}

.u-pb45 {
  padding-bottom: 4.5rem !important;
}

.u-pl45 {
  padding-left: 4.5rem !important;
}

.u-pr45 {
  padding-right: 4.5rem !important;
}

.u-mt40 {
  margin-top: 4rem !important;
}

.u-mb40 {
  margin-bottom: 4rem !important;
}

.u-ml40 {
  margin-left: 4rem !important;
}

.u-mr40 {
  margin-right: 4rem !important;
}

.u-pt40 {
  padding-top: 4rem !important;
}

.u-pb40 {
  padding-bottom: 4rem !important;
}

.u-pl40 {
  padding-left: 4rem !important;
}

.u-pr40 {
  padding-right: 4rem !important;
}

.u-mt35 {
  margin-top: 3.5rem !important;
}

.u-mb35 {
  margin-bottom: 3.5rem !important;
}

.u-ml35 {
  margin-left: 3.5rem !important;
}

.u-mr35 {
  margin-right: 3.5rem !important;
}

.u-pt35 {
  padding-top: 3.5rem !important;
}

.u-pb35 {
  padding-bottom: 3.5rem !important;
}

.u-pl35 {
  padding-left: 3.5rem !important;
}

.u-pr35 {
  padding-right: 3.5rem !important;
}

.u-mt30 {
  margin-top: 3rem !important;
}

.u-mb30 {
  margin-bottom: 3rem !important;
}

.u-ml30 {
  margin-left: 3rem !important;
}

.u-mr30 {
  margin-right: 3rem !important;
}

.u-pt30 {
  padding-top: 3rem !important;
}

.u-pb30 {
  padding-bottom: 3rem !important;
}

.u-pl30 {
  padding-left: 3rem !important;
}

.u-pr30 {
  padding-right: 3rem !important;
}

.u-mt25 {
  margin-top: 2.5rem !important;
}

.u-mb25 {
  margin-bottom: 2.5rem !important;
}

.u-ml25 {
  margin-left: 2.5rem !important;
}

.u-mr25 {
  margin-right: 2.5rem !important;
}

.u-pt25 {
  padding-top: 2.5rem !important;
}

.u-pb25 {
  padding-bottom: 2.5rem !important;
}

.u-pl25 {
  padding-left: 2.5rem !important;
}

.u-pr25 {
  padding-right: 2.5rem !important;
}

.u-mt20 {
  margin-top: 2rem !important;
}

.u-mb20 {
  margin-bottom: 2rem !important;
}

.u-ml20 {
  margin-left: 2rem !important;
}

.u-mr20 {
  margin-right: 2rem !important;
}

.u-pt20 {
  padding-top: 2rem !important;
}

.u-pb20 {
  padding-bottom: 2rem !important;
}

.u-pl20 {
  padding-left: 2rem !important;
}

.u-pr20 {
  padding-right: 2rem !important;
}

.u-mt15 {
  margin-top: 1.5rem !important;
}

.u-mb15 {
  margin-bottom: 1.5rem !important;
}

.u-ml15 {
  margin-left: 1.5rem !important;
}

.u-mr15 {
  margin-right: 1.5rem !important;
}

.u-pt15 {
  padding-top: 1.5rem !important;
}

.u-pb15 {
  padding-bottom: 1.5rem !important;
}

.u-pl15 {
  padding-left: 1.5rem !important;
}

.u-pr15 {
  padding-right: 1.5rem !important;
}

.u-mt10 {
  margin-top: 1rem !important;
}

.u-mb10 {
  margin-bottom: 1rem !important;
}

.u-ml10 {
  margin-left: 1rem !important;
}

.u-mr10 {
  margin-right: 1rem !important;
}

.u-pt10 {
  padding-top: 1rem !important;
}

.u-pb10 {
  padding-bottom: 1rem !important;
}

.u-pl10 {
  padding-left: 1rem !important;
}

.u-pr10 {
  padding-right: 1rem !important;
}

.u-mt5 {
  margin-top: 0.5rem !important;
}

.u-mb5 {
  margin-bottom: 0.5rem !important;
}

.u-ml5 {
  margin-left: 0.5rem !important;
}

.u-mr5 {
  margin-right: 0.5rem !important;
}

.u-pt5 {
  padding-top: 0.5rem !important;
}

.u-pb5 {
  padding-bottom: 0.5rem !important;
}

.u-pl5 {
  padding-left: 0.5rem !important;
}

.u-pr5 {
  padding-right: 0.5rem !important;
}

.u-mt0 {
  margin-top: 0rem !important;
}

.u-mb0 {
  margin-bottom: 0rem !important;
}

.u-ml0 {
  margin-left: 0rem !important;
}

.u-mr0 {
  margin-right: 0rem !important;
}

.u-pt0 {
  padding-top: 0rem !important;
}

.u-pb0 {
  padding-bottom: 0rem !important;
}

.u-pl0 {
  padding-left: 0rem !important;
}

.u-pr0 {
  padding-right: 0rem !important;
}

@media screen and (max-width: 1000px) {
  .u-mt120-tab {
    margin-top: 12rem !important;
  }
  .u-mb120-tab {
    margin-bottom: 12rem !important;
  }
  .u-ml120-tab {
    margin-left: 12rem !important;
  }
  .u-mr120-tab {
    margin-right: 12rem !important;
  }
  .u-pt120-tab {
    padding-top: 12rem !important;
  }
  .u-pb120-tab {
    padding-bottom: 12rem !important;
  }
  .u-pl120-tab {
    padding-left: 12rem !important;
  }
  .u-pr120-tab {
    padding-right: 12rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt110-tab {
    margin-top: 11rem !important;
  }
  .u-mb110-tab {
    margin-bottom: 11rem !important;
  }
  .u-ml110-tab {
    margin-left: 11rem !important;
  }
  .u-mr110-tab {
    margin-right: 11rem !important;
  }
  .u-pt110-tab {
    padding-top: 11rem !important;
  }
  .u-pb110-tab {
    padding-bottom: 11rem !important;
  }
  .u-pl110-tab {
    padding-left: 11rem !important;
  }
  .u-pr110-tab {
    padding-right: 11rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt100-tab {
    margin-top: 10rem !important;
  }
  .u-mb100-tab {
    margin-bottom: 10rem !important;
  }
  .u-ml100-tab {
    margin-left: 10rem !important;
  }
  .u-mr100-tab {
    margin-right: 10rem !important;
  }
  .u-pt100-tab {
    padding-top: 10rem !important;
  }
  .u-pb100-tab {
    padding-bottom: 10rem !important;
  }
  .u-pl100-tab {
    padding-left: 10rem !important;
  }
  .u-pr100-tab {
    padding-right: 10rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt90-tab {
    margin-top: 9rem !important;
  }
  .u-mb90-tab {
    margin-bottom: 9rem !important;
  }
  .u-ml90-tab {
    margin-left: 9rem !important;
  }
  .u-mr90-tab {
    margin-right: 9rem !important;
  }
  .u-pt90-tab {
    padding-top: 9rem !important;
  }
  .u-pb90-tab {
    padding-bottom: 9rem !important;
  }
  .u-pl90-tab {
    padding-left: 9rem !important;
  }
  .u-pr90-tab {
    padding-right: 9rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt80-tab {
    margin-top: 8rem !important;
  }
  .u-mb80-tab {
    margin-bottom: 8rem !important;
  }
  .u-ml80-tab {
    margin-left: 8rem !important;
  }
  .u-mr80-tab {
    margin-right: 8rem !important;
  }
  .u-pt80-tab {
    padding-top: 8rem !important;
  }
  .u-pb80-tab {
    padding-bottom: 8rem !important;
  }
  .u-pl80-tab {
    padding-left: 8rem !important;
  }
  .u-pr80-tab {
    padding-right: 8rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt75-tab {
    margin-top: 7.5rem !important;
  }
  .u-mb75-tab {
    margin-bottom: 7.5rem !important;
  }
  .u-ml75-tab {
    margin-left: 7.5rem !important;
  }
  .u-mr75-tab {
    margin-right: 7.5rem !important;
  }
  .u-pt75-tab {
    padding-top: 7.5rem !important;
  }
  .u-pb75-tab {
    padding-bottom: 7.5rem !important;
  }
  .u-pl75-tab {
    padding-left: 7.5rem !important;
  }
  .u-pr75-tab {
    padding-right: 7.5rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt70-tab {
    margin-top: 7rem !important;
  }
  .u-mb70-tab {
    margin-bottom: 7rem !important;
  }
  .u-ml70-tab {
    margin-left: 7rem !important;
  }
  .u-mr70-tab {
    margin-right: 7rem !important;
  }
  .u-pt70-tab {
    padding-top: 7rem !important;
  }
  .u-pb70-tab {
    padding-bottom: 7rem !important;
  }
  .u-pl70-tab {
    padding-left: 7rem !important;
  }
  .u-pr70-tab {
    padding-right: 7rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt65-tab {
    margin-top: 6.5rem !important;
  }
  .u-mb65-tab {
    margin-bottom: 6.5rem !important;
  }
  .u-ml65-tab {
    margin-left: 6.5rem !important;
  }
  .u-mr65-tab {
    margin-right: 6.5rem !important;
  }
  .u-pt65-tab {
    padding-top: 6.5rem !important;
  }
  .u-pb65-tab {
    padding-bottom: 6.5rem !important;
  }
  .u-pl65-tab {
    padding-left: 6.5rem !important;
  }
  .u-pr65-tab {
    padding-right: 6.5rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt60-tab {
    margin-top: 6rem !important;
  }
  .u-mb60-tab {
    margin-bottom: 6rem !important;
  }
  .u-ml60-tab {
    margin-left: 6rem !important;
  }
  .u-mr60-tab {
    margin-right: 6rem !important;
  }
  .u-pt60-tab {
    padding-top: 6rem !important;
  }
  .u-pb60-tab {
    padding-bottom: 6rem !important;
  }
  .u-pl60-tab {
    padding-left: 6rem !important;
  }
  .u-pr60-tab {
    padding-right: 6rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt55-tab {
    margin-top: 5.5rem !important;
  }
  .u-mb55-tab {
    margin-bottom: 5.5rem !important;
  }
  .u-ml55-tab {
    margin-left: 5.5rem !important;
  }
  .u-mr55-tab {
    margin-right: 5.5rem !important;
  }
  .u-pt55-tab {
    padding-top: 5.5rem !important;
  }
  .u-pb55-tab {
    padding-bottom: 5.5rem !important;
  }
  .u-pl55-tab {
    padding-left: 5.5rem !important;
  }
  .u-pr55-tab {
    padding-right: 5.5rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt50-tab {
    margin-top: 5rem !important;
  }
  .u-mb50-tab {
    margin-bottom: 5rem !important;
  }
  .u-ml50-tab {
    margin-left: 5rem !important;
  }
  .u-mr50-tab {
    margin-right: 5rem !important;
  }
  .u-pt50-tab {
    padding-top: 5rem !important;
  }
  .u-pb50-tab {
    padding-bottom: 5rem !important;
  }
  .u-pl50-tab {
    padding-left: 5rem !important;
  }
  .u-pr50-tab {
    padding-right: 5rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt45-tab {
    margin-top: 4.5rem !important;
  }
  .u-mb45-tab {
    margin-bottom: 4.5rem !important;
  }
  .u-ml45-tab {
    margin-left: 4.5rem !important;
  }
  .u-mr45-tab {
    margin-right: 4.5rem !important;
  }
  .u-pt45-tab {
    padding-top: 4.5rem !important;
  }
  .u-pb45-tab {
    padding-bottom: 4.5rem !important;
  }
  .u-pl45-tab {
    padding-left: 4.5rem !important;
  }
  .u-pr45-tab {
    padding-right: 4.5rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt40-tab {
    margin-top: 4rem !important;
  }
  .u-mb40-tab {
    margin-bottom: 4rem !important;
  }
  .u-ml40-tab {
    margin-left: 4rem !important;
  }
  .u-mr40-tab {
    margin-right: 4rem !important;
  }
  .u-pt40-tab {
    padding-top: 4rem !important;
  }
  .u-pb40-tab {
    padding-bottom: 4rem !important;
  }
  .u-pl40-tab {
    padding-left: 4rem !important;
  }
  .u-pr40-tab {
    padding-right: 4rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt35-tab {
    margin-top: 3.5rem !important;
  }
  .u-mb35-tab {
    margin-bottom: 3.5rem !important;
  }
  .u-ml35-tab {
    margin-left: 3.5rem !important;
  }
  .u-mr35-tab {
    margin-right: 3.5rem !important;
  }
  .u-pt35-tab {
    padding-top: 3.5rem !important;
  }
  .u-pb35-tab {
    padding-bottom: 3.5rem !important;
  }
  .u-pl35-tab {
    padding-left: 3.5rem !important;
  }
  .u-pr35-tab {
    padding-right: 3.5rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt30-tab {
    margin-top: 3rem !important;
  }
  .u-mb30-tab {
    margin-bottom: 3rem !important;
  }
  .u-ml30-tab {
    margin-left: 3rem !important;
  }
  .u-mr30-tab {
    margin-right: 3rem !important;
  }
  .u-pt30-tab {
    padding-top: 3rem !important;
  }
  .u-pb30-tab {
    padding-bottom: 3rem !important;
  }
  .u-pl30-tab {
    padding-left: 3rem !important;
  }
  .u-pr30-tab {
    padding-right: 3rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt25-tab {
    margin-top: 2.5rem !important;
  }
  .u-mb25-tab {
    margin-bottom: 2.5rem !important;
  }
  .u-ml25-tab {
    margin-left: 2.5rem !important;
  }
  .u-mr25-tab {
    margin-right: 2.5rem !important;
  }
  .u-pt25-tab {
    padding-top: 2.5rem !important;
  }
  .u-pb25-tab {
    padding-bottom: 2.5rem !important;
  }
  .u-pl25-tab {
    padding-left: 2.5rem !important;
  }
  .u-pr25-tab {
    padding-right: 2.5rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt20-tab {
    margin-top: 2rem !important;
  }
  .u-mb20-tab {
    margin-bottom: 2rem !important;
  }
  .u-ml20-tab {
    margin-left: 2rem !important;
  }
  .u-mr20-tab {
    margin-right: 2rem !important;
  }
  .u-pt20-tab {
    padding-top: 2rem !important;
  }
  .u-pb20-tab {
    padding-bottom: 2rem !important;
  }
  .u-pl20-tab {
    padding-left: 2rem !important;
  }
  .u-pr20-tab {
    padding-right: 2rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt15-tab {
    margin-top: 1.5rem !important;
  }
  .u-mb15-tab {
    margin-bottom: 1.5rem !important;
  }
  .u-ml15-tab {
    margin-left: 1.5rem !important;
  }
  .u-mr15-tab {
    margin-right: 1.5rem !important;
  }
  .u-pt15-tab {
    padding-top: 1.5rem !important;
  }
  .u-pb15-tab {
    padding-bottom: 1.5rem !important;
  }
  .u-pl15-tab {
    padding-left: 1.5rem !important;
  }
  .u-pr15-tab {
    padding-right: 1.5rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt10-tab {
    margin-top: 1rem !important;
  }
  .u-mb10-tab {
    margin-bottom: 1rem !important;
  }
  .u-ml10-tab {
    margin-left: 1rem !important;
  }
  .u-mr10-tab {
    margin-right: 1rem !important;
  }
  .u-pt10-tab {
    padding-top: 1rem !important;
  }
  .u-pb10-tab {
    padding-bottom: 1rem !important;
  }
  .u-pl10-tab {
    padding-left: 1rem !important;
  }
  .u-pr10-tab {
    padding-right: 1rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt5-tab {
    margin-top: 0.5rem !important;
  }
  .u-mb5-tab {
    margin-bottom: 0.5rem !important;
  }
  .u-ml5-tab {
    margin-left: 0.5rem !important;
  }
  .u-mr5-tab {
    margin-right: 0.5rem !important;
  }
  .u-pt5-tab {
    padding-top: 0.5rem !important;
  }
  .u-pb5-tab {
    padding-bottom: 0.5rem !important;
  }
  .u-pl5-tab {
    padding-left: 0.5rem !important;
  }
  .u-pr5-tab {
    padding-right: 0.5rem !important;
  }
}
@media screen and (max-width: 1000px) {
  .u-mt0-tab {
    margin-top: 0rem !important;
  }
  .u-mb0-tab {
    margin-bottom: 0rem !important;
  }
  .u-ml0-tab {
    margin-left: 0rem !important;
  }
  .u-mr0-tab {
    margin-right: 0rem !important;
  }
  .u-pt0-tab {
    padding-top: 0rem !important;
  }
  .u-pb0-tab {
    padding-bottom: 0rem !important;
  }
  .u-pl0-tab {
    padding-left: 0rem !important;
  }
  .u-pr0-tab {
    padding-right: 0rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt120-sp {
    margin-top: 12rem !important;
  }
  .u-mb120-sp {
    margin-bottom: 12rem !important;
  }
  .u-ml120-sp {
    margin-left: 12rem !important;
  }
  .u-mr120-sp {
    margin-right: 12rem !important;
  }
  .u-pt120-sp {
    padding-top: 12rem !important;
  }
  .u-pb120-sp {
    padding-bottom: 12rem !important;
  }
  .u-pl120-sp {
    padding-left: 12rem !important;
  }
  .u-pr120-sp {
    padding-right: 12rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt110-sp {
    margin-top: 11rem !important;
  }
  .u-mb110-sp {
    margin-bottom: 11rem !important;
  }
  .u-ml110-sp {
    margin-left: 11rem !important;
  }
  .u-mr110-sp {
    margin-right: 11rem !important;
  }
  .u-pt110-sp {
    padding-top: 11rem !important;
  }
  .u-pb110-sp {
    padding-bottom: 11rem !important;
  }
  .u-pl110-sp {
    padding-left: 11rem !important;
  }
  .u-pr110-sp {
    padding-right: 11rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt100-sp {
    margin-top: 10rem !important;
  }
  .u-mb100-sp {
    margin-bottom: 10rem !important;
  }
  .u-ml100-sp {
    margin-left: 10rem !important;
  }
  .u-mr100-sp {
    margin-right: 10rem !important;
  }
  .u-pt100-sp {
    padding-top: 10rem !important;
  }
  .u-pb100-sp {
    padding-bottom: 10rem !important;
  }
  .u-pl100-sp {
    padding-left: 10rem !important;
  }
  .u-pr100-sp {
    padding-right: 10rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt90-sp {
    margin-top: 9rem !important;
  }
  .u-mb90-sp {
    margin-bottom: 9rem !important;
  }
  .u-ml90-sp {
    margin-left: 9rem !important;
  }
  .u-mr90-sp {
    margin-right: 9rem !important;
  }
  .u-pt90-sp {
    padding-top: 9rem !important;
  }
  .u-pb90-sp {
    padding-bottom: 9rem !important;
  }
  .u-pl90-sp {
    padding-left: 9rem !important;
  }
  .u-pr90-sp {
    padding-right: 9rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt80-sp {
    margin-top: 8rem !important;
  }
  .u-mb80-sp {
    margin-bottom: 8rem !important;
  }
  .u-ml80-sp {
    margin-left: 8rem !important;
  }
  .u-mr80-sp {
    margin-right: 8rem !important;
  }
  .u-pt80-sp {
    padding-top: 8rem !important;
  }
  .u-pb80-sp {
    padding-bottom: 8rem !important;
  }
  .u-pl80-sp {
    padding-left: 8rem !important;
  }
  .u-pr80-sp {
    padding-right: 8rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt75-sp {
    margin-top: 7.5rem !important;
  }
  .u-mb75-sp {
    margin-bottom: 7.5rem !important;
  }
  .u-ml75-sp {
    margin-left: 7.5rem !important;
  }
  .u-mr75-sp {
    margin-right: 7.5rem !important;
  }
  .u-pt75-sp {
    padding-top: 7.5rem !important;
  }
  .u-pb75-sp {
    padding-bottom: 7.5rem !important;
  }
  .u-pl75-sp {
    padding-left: 7.5rem !important;
  }
  .u-pr75-sp {
    padding-right: 7.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt70-sp {
    margin-top: 7rem !important;
  }
  .u-mb70-sp {
    margin-bottom: 7rem !important;
  }
  .u-ml70-sp {
    margin-left: 7rem !important;
  }
  .u-mr70-sp {
    margin-right: 7rem !important;
  }
  .u-pt70-sp {
    padding-top: 7rem !important;
  }
  .u-pb70-sp {
    padding-bottom: 7rem !important;
  }
  .u-pl70-sp {
    padding-left: 7rem !important;
  }
  .u-pr70-sp {
    padding-right: 7rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt65-sp {
    margin-top: 6.5rem !important;
  }
  .u-mb65-sp {
    margin-bottom: 6.5rem !important;
  }
  .u-ml65-sp {
    margin-left: 6.5rem !important;
  }
  .u-mr65-sp {
    margin-right: 6.5rem !important;
  }
  .u-pt65-sp {
    padding-top: 6.5rem !important;
  }
  .u-pb65-sp {
    padding-bottom: 6.5rem !important;
  }
  .u-pl65-sp {
    padding-left: 6.5rem !important;
  }
  .u-pr65-sp {
    padding-right: 6.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt60-sp {
    margin-top: 6rem !important;
  }
  .u-mb60-sp {
    margin-bottom: 6rem !important;
  }
  .u-ml60-sp {
    margin-left: 6rem !important;
  }
  .u-mr60-sp {
    margin-right: 6rem !important;
  }
  .u-pt60-sp {
    padding-top: 6rem !important;
  }
  .u-pb60-sp {
    padding-bottom: 6rem !important;
  }
  .u-pl60-sp {
    padding-left: 6rem !important;
  }
  .u-pr60-sp {
    padding-right: 6rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt55-sp {
    margin-top: 5.5rem !important;
  }
  .u-mb55-sp {
    margin-bottom: 5.5rem !important;
  }
  .u-ml55-sp {
    margin-left: 5.5rem !important;
  }
  .u-mr55-sp {
    margin-right: 5.5rem !important;
  }
  .u-pt55-sp {
    padding-top: 5.5rem !important;
  }
  .u-pb55-sp {
    padding-bottom: 5.5rem !important;
  }
  .u-pl55-sp {
    padding-left: 5.5rem !important;
  }
  .u-pr55-sp {
    padding-right: 5.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt50-sp {
    margin-top: 5rem !important;
  }
  .u-mb50-sp {
    margin-bottom: 5rem !important;
  }
  .u-ml50-sp {
    margin-left: 5rem !important;
  }
  .u-mr50-sp {
    margin-right: 5rem !important;
  }
  .u-pt50-sp {
    padding-top: 5rem !important;
  }
  .u-pb50-sp {
    padding-bottom: 5rem !important;
  }
  .u-pl50-sp {
    padding-left: 5rem !important;
  }
  .u-pr50-sp {
    padding-right: 5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt45-sp {
    margin-top: 4.5rem !important;
  }
  .u-mb45-sp {
    margin-bottom: 4.5rem !important;
  }
  .u-ml45-sp {
    margin-left: 4.5rem !important;
  }
  .u-mr45-sp {
    margin-right: 4.5rem !important;
  }
  .u-pt45-sp {
    padding-top: 4.5rem !important;
  }
  .u-pb45-sp {
    padding-bottom: 4.5rem !important;
  }
  .u-pl45-sp {
    padding-left: 4.5rem !important;
  }
  .u-pr45-sp {
    padding-right: 4.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt40-sp {
    margin-top: 4rem !important;
  }
  .u-mb40-sp {
    margin-bottom: 4rem !important;
  }
  .u-ml40-sp {
    margin-left: 4rem !important;
  }
  .u-mr40-sp {
    margin-right: 4rem !important;
  }
  .u-pt40-sp {
    padding-top: 4rem !important;
  }
  .u-pb40-sp {
    padding-bottom: 4rem !important;
  }
  .u-pl40-sp {
    padding-left: 4rem !important;
  }
  .u-pr40-sp {
    padding-right: 4rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt35-sp {
    margin-top: 3.5rem !important;
  }
  .u-mb35-sp {
    margin-bottom: 3.5rem !important;
  }
  .u-ml35-sp {
    margin-left: 3.5rem !important;
  }
  .u-mr35-sp {
    margin-right: 3.5rem !important;
  }
  .u-pt35-sp {
    padding-top: 3.5rem !important;
  }
  .u-pb35-sp {
    padding-bottom: 3.5rem !important;
  }
  .u-pl35-sp {
    padding-left: 3.5rem !important;
  }
  .u-pr35-sp {
    padding-right: 3.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt30-sp {
    margin-top: 3rem !important;
  }
  .u-mb30-sp {
    margin-bottom: 3rem !important;
  }
  .u-ml30-sp {
    margin-left: 3rem !important;
  }
  .u-mr30-sp {
    margin-right: 3rem !important;
  }
  .u-pt30-sp {
    padding-top: 3rem !important;
  }
  .u-pb30-sp {
    padding-bottom: 3rem !important;
  }
  .u-pl30-sp {
    padding-left: 3rem !important;
  }
  .u-pr30-sp {
    padding-right: 3rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt25-sp {
    margin-top: 2.5rem !important;
  }
  .u-mb25-sp {
    margin-bottom: 2.5rem !important;
  }
  .u-ml25-sp {
    margin-left: 2.5rem !important;
  }
  .u-mr25-sp {
    margin-right: 2.5rem !important;
  }
  .u-pt25-sp {
    padding-top: 2.5rem !important;
  }
  .u-pb25-sp {
    padding-bottom: 2.5rem !important;
  }
  .u-pl25-sp {
    padding-left: 2.5rem !important;
  }
  .u-pr25-sp {
    padding-right: 2.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt20-sp {
    margin-top: 2rem !important;
  }
  .u-mb20-sp {
    margin-bottom: 2rem !important;
  }
  .u-ml20-sp {
    margin-left: 2rem !important;
  }
  .u-mr20-sp {
    margin-right: 2rem !important;
  }
  .u-pt20-sp {
    padding-top: 2rem !important;
  }
  .u-pb20-sp {
    padding-bottom: 2rem !important;
  }
  .u-pl20-sp {
    padding-left: 2rem !important;
  }
  .u-pr20-sp {
    padding-right: 2rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt15-sp {
    margin-top: 1.5rem !important;
  }
  .u-mb15-sp {
    margin-bottom: 1.5rem !important;
  }
  .u-ml15-sp {
    margin-left: 1.5rem !important;
  }
  .u-mr15-sp {
    margin-right: 1.5rem !important;
  }
  .u-pt15-sp {
    padding-top: 1.5rem !important;
  }
  .u-pb15-sp {
    padding-bottom: 1.5rem !important;
  }
  .u-pl15-sp {
    padding-left: 1.5rem !important;
  }
  .u-pr15-sp {
    padding-right: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt10-sp {
    margin-top: 1rem !important;
  }
  .u-mb10-sp {
    margin-bottom: 1rem !important;
  }
  .u-ml10-sp {
    margin-left: 1rem !important;
  }
  .u-mr10-sp {
    margin-right: 1rem !important;
  }
  .u-pt10-sp {
    padding-top: 1rem !important;
  }
  .u-pb10-sp {
    padding-bottom: 1rem !important;
  }
  .u-pl10-sp {
    padding-left: 1rem !important;
  }
  .u-pr10-sp {
    padding-right: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt5-sp {
    margin-top: 0.5rem !important;
  }
  .u-mb5-sp {
    margin-bottom: 0.5rem !important;
  }
  .u-ml5-sp {
    margin-left: 0.5rem !important;
  }
  .u-mr5-sp {
    margin-right: 0.5rem !important;
  }
  .u-pt5-sp {
    padding-top: 0.5rem !important;
  }
  .u-pb5-sp {
    padding-bottom: 0.5rem !important;
  }
  .u-pl5-sp {
    padding-left: 0.5rem !important;
  }
  .u-pr5-sp {
    padding-right: 0.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt0-sp {
    margin-top: 0rem !important;
  }
  .u-mb0-sp {
    margin-bottom: 0rem !important;
  }
  .u-ml0-sp {
    margin-left: 0rem !important;
  }
  .u-mr0-sp {
    margin-right: 0rem !important;
  }
  .u-pt0-sp {
    padding-top: 0rem !important;
  }
  .u-pb0-sp {
    padding-bottom: 0rem !important;
  }
  .u-pl0-sp {
    padding-left: 0rem !important;
  }
  .u-pr0-sp {
    padding-right: 0rem !important;
  }
}
/*--------------------------
	margin マイナス調整用
--------------------------*/
.u-mt-70-negative {
  margin-top: -7rem !important;
}

@media screen and (max-width: 767px) {
  .u-mt-40-negative-sp {
    margin-top: -4rem !important;
  }
}
/*--------------------------
	Layout
--------------------------*/
/*----------------------------------------------------

	レイアウト設定のファイルです。
	グリッドレイアウトのスタイルをまとめています。
	基本的には編集することはありません。

	命名規則として、クラス名の頭に 
	l-* (Layoutのl)という接頭辞をつけることを推奨します。

----------------------------------------------------*/
/*--------------------------
	グリッドシステム
--------------------------*/
.l-grid {
  display: flex;
  flex-wrap: wrap;
}
.l-grid_item {
  box-sizing: border-box;
  width: 16.667%;
}
.l-grid_item-1 {
  width: 8.33%;
}
.l-grid_item-2 {
  width: 16.667%;
}
.l-grid_item-3 {
  width: 25%;
}
.l-grid_item-4 {
  width: 33.333%;
}
.l-grid_item-5 {
  width: 41.666%;
}
.l-grid_item-6 {
  width: 50%;
}
.l-grid_item-7 {
  width: 58.333%;
}
.l-grid_item-8 {
  width: 66.666%;
}
.l-grid_item-9 {
  width: 75%;
}
.l-grid_item-10 {
  width: 83.33%;
}
.l-grid_item-11 {
  width: 91.666%;
}
.l-grid_item-12 {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .l-grid_item-1-tab {
    width: 8.33%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid_item-2-tab {
    width: 16.667%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid_item-3-tab {
    width: 25%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid_item-4-tab {
    width: 33.333%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid_item-5-tab {
    width: 41.666%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid_item-6-tab {
    width: 50%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid_item-7-tab {
    width: 58.333%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid_item-8-tab {
    width: 66.666%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid_item-9-tab {
    width: 75%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid_item-10-tab {
    width: 83.33%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid_item-11-tab {
    width: 91.666%;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid_item-12-tab {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid_item-1-sp {
    width: 8.33%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid_item-2-sp {
    width: 16.667%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid_item-3-sp {
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid_item-4-sp {
    width: 33.333%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid_item-5-sp {
    width: 41.666%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid_item-6-sp {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid_item-7-sp {
    width: 58.333%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid_item-8-sp {
    width: 66.666%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid_item-9-sp {
    width: 75%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid_item-10-sp {
    width: 83.33%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid_item-11-sp {
    width: 91.666%;
  }
}
@media screen and (max-width: 767px) {
  .l-grid_item-12-sp {
    width: 100%;
  }
}
.l-grid--ai-center {
  align-items: center;
}
.l-grid.l-gutter-s {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  margin-bottom: -1rem;
}
.l-grid.l-gutter-s > .l-grid_item {
  margin-bottom: 1rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.l-grid.l-gutter-m {
  margin-left: -1rem;
  margin-right: -1rem;
  margin-bottom: -2rem;
}
.l-grid.l-gutter-m > .l-grid_item {
  margin-bottom: 2rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
.l-grid.l-gutter-l {
  margin-left: -2rem;
  margin-right: -2rem;
  margin-bottom: -4rem;
}
.l-grid.l-gutter-l > .l-grid_item {
  margin-bottom: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
.l-grid.l-gutter-xl {
  margin-left: -3rem;
  margin-right: -3rem;
  margin-bottom: -6rem;
}
.l-grid.l-gutter-xl > .l-grid_item {
  margin-bottom: 6rem;
  padding-left: 3rem;
  padding-right: 3rem;
}
.l-grid.l-gutter-2l {
  margin-left: -4rem;
  margin-right: -4rem;
  margin-bottom: -8rem;
}
.l-grid.l-gutter-2l > .l-grid_item {
  margin-bottom: 8rem;
  padding-left: 4rem;
  padding-right: 4rem;
}
@media screen and (max-width: 1000px) {
  .l-grid.l-gutter-s-tab {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    margin-bottom: -1rem;
  }
  .l-grid.l-gutter-s-tab > .l-grid_item {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid.l-gutter-m-tab {
    margin-left: -1rem;
    margin-right: -1rem;
    margin-bottom: -2rem;
  }
  .l-grid.l-gutter-m-tab > .l-grid_item {
    margin-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (max-width: 1000px) {
  .l-grid.l-gutter-l-tab {
    margin-left: -2rem;
    margin-right: -2rem;
    margin-bottom: -4rem;
  }
  .l-grid.l-gutter-l-tab > .l-grid_item {
    margin-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-grid.l-gutter-s-sp {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    margin-bottom: -1rem;
  }
  .l-grid.l-gutter-s-sp > .l-grid_item {
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .l-grid.l-gutter-m-sp {
    margin-left: -1rem;
    margin-right: -1rem;
    margin-bottom: -2rem;
  }
  .l-grid.l-gutter-m-sp > .l-grid_item {
    margin-bottom: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .l-grid.l-gutter-l-sp {
    margin-left: -2rem;
    margin-right: -2rem;
    margin-bottom: -4rem;
  }
  .l-grid.l-gutter-l-sp > .l-grid_item {
    margin-bottom: 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.l-grid.l-grid-mb0 > .l-grid_item {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 1000px) {
  .l-grid.l-grid-mb0-tab > .l-grid_item {
    margin-bottom: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .l-grid.l-grid-mb0-sp > .l-grid_item {
    margin-bottom: 0 !important;
  }
}

/*----------------------------------------------------

	レイアウト設定のファイルです。
	レイアウトに関する汎用性の高いスタイルをまとめています。
	基本的には編集することはありません。

	命名規則として、クラス名の頭に 
	l-* (Layoutのl)という接頭辞をつけることを推奨します。

----------------------------------------------------*/
.l-section {
  margin: 8rem 0;
}
@media screen and (max-width: 767px) {
  .l-section {
    margin: 4rem 0;
  }
}

.l-inner {
  margin: 0 auto;
  padding: 0 15rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 1.5rem;
    width: 100%;
  }
}

.l-inner-s {
  margin: 0 auto;
  padding: 0 30rem;
}
@media screen and (max-width: 767px) {
  .l-inner-s {
    padding: 0 1.5rem;
    width: 100%;
  }
}

.l-flex {
  display: flex;
}
.l-flex--aic {
  align-items: center;
}

.l-pos-relative {
  position: relative;
}

.l-pos-center {
  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;
}

/*--------------------------
	module
--------------------------*/
.header {
  background: #fff;
  color: #000;
  position: fixed;
  top: 0;
  left: 0;
  height: 8rem;
  width: 100%;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .header {
    height: 6rem;
    line-height: 6rem;
  }
}
.header__hmbbtn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.header__pc {
  display: flex;
  justify-content: space-between;
  width: 95%;
  margin: 0 auto;
  height: 8rem;
  align-items: center;
}
.header__logo {
  width: 15%;
}
@media screen and (max-width: 850px) {
  .header__logo {
    width: 20%;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 70%;
  }
}
.header__nav-wrap {
  display: flex;
  justify-content: space-between;
}
.header__nav {
  display: flex;
  justify-content: space-between;
  font-size: 1.8rem;
  align-items: center;
  margin-right: 2rem;
}
.header__nav:last-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: block;
    padding-top: 6rem;
    width: 100%;
    margin: 0 auto;
  }
}
.header__menu {
  margin-right: 3rem;
  position: relative;
}
.header__menu:last-child {
  margin-right: 0;
}
.header__menu a {
  white-space: nowrap;
  transition: 0.15s;
}
@media screen and (max-width: 767px) {
  .header__menu a {
    font-size: 1.6rem;
    display: inline-block;
    padding-top: 1.1rem;
    padding-bottom: 1.1rem;
    position: relative;
    width: 100%;
    padding-left: 3rem;
  }
}
.header__menu a:hover {
  color: #0068B7;
}
@media screen and (max-width: 767px) {
  .header__menu a::after {
    content: "";
    min-width: 1.5rem;
    min-height: 1rem;
    position: absolute;
    top: 50%;
    right: 3rem;
    transform: translateY(-50%);
    background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="26.373" height="10.192" viewBox="0 0 26.373 10.192"><path id="btn-arrow" d="M1147.855,233h25.373l-9.479-8.446" transform="translate(-1147.855 -223.808)" fill="none" stroke="%23007ABD" stroke-linejoin="round" stroke-width="2"/></svg>') center center no-repeat;
    background-size: 100%;
  }
}
@media screen and (max-width: 767px) {
  .header__menu {
    margin-right: 0;
    border-bottom: 1px solid rgba(0, 104, 183, 0.4);
  }
  .header__menu:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.header__menu--en {
  font-size: 1rem;
  margin-left: 2rem;
  opacity: 0.5;
}
.header__menu.is-current {
  color: #0068B7;
}
.header__drop-wrap {
  position: fixed;
  top: 8rem;
  width: 100%;
  visibility: hidden;
}
.header__drop-menu {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.25s;
  padding: 3rem 0;
  width: 100%;
  background-color: #0068B7;
}
.header__drop-menu li {
  color: #fff;
  position: relative;
  padding: 0.5rem 0 0.5rem 2rem;
  width: 49%;
}
.header__drop-menu li::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-radius: 2px;
  transform: rotate(135deg);
  top: calc(50% - 2px);
  left: 0;
}
.header__drop-menu li:hover::before {
  opacity: 0.7;
}
.header__drop-menu li a:hover {
  color: #fff;
  opacity: 0.7;
}
.header__drop-menu.active {
  opacity: 1;
  visibility: visible;
}
.header__drop-list-small {
  font-size: 1.6rem;
  margin-left: 2rem;
  width: 47.5% !important;
}
@media screen and (max-width: 767px) {
  .header__drop-list-small {
    width: 100% !important;
    margin-left: 0;
  }
}
.header__drop-list-small::before {
  top: calc(50% - 6px) !important;
}
.header__drop-menu-sp {
  padding-bottom: 1.5rem;
  width: 91%;
  margin: 0 0 0 auto;
}
.header__drop-menu-sp li {
  line-height: 1.5;
  border-bottom: 1px dotted #ccc;
}
.header__drop-menu-sp li:last-of-type {
  border-bottom: none;
}
.header__drop-menu-sp a {
  font-size: 1.3rem;
  color: #5a5a5a;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 0;
}
.header__drop-icon {
  position: relative;
}
.header__drop-icon::after {
  position: absolute;
  content: "";
  bottom: 3.8rem;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 13px solid transparent;
  border-left: 12px solid #0068B7;
  transform: rotate(270deg) translateX(-50%);
}
.header__drop-icon--01::after {
  left: 38.5%;
}
.header__drop-icon--03::after {
  left: 48.3%;
}
.header__drop-flex {
  display: flex;
  gap: 2%;
  flex-wrap: wrap;
  width: 71%;
  margin: 0 auto;
}
.header__btn {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .header__btn {
    display: block;
    padding-top: 2rem;
    margin-bottom: 2rem;
    width: 85%;
  }
  .header__btn .header__menu {
    margin-bottom: 1rem;
    width: 100%;
  }
  .header__btn .header__menu a {
    padding: 0.7rem 0;
  }
  .header__btn .header__menu::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    padding: 0 1.5rem;
  }
}

.nav-link--has-child {
  cursor: default;
}
.nav-link--has-child::after {
  content: none !important;
}

.header--clone {
  background: rgba(255, 255, 255, 0.9);
  position: fixed;
  transform: translateY(0%);
  transition: 0.25s;
}
.header--clone.hidden {
  transform: translateY(-100%);
}
.header--clone.is-top {
  transform: translateY(-100%) !important;
}

.header-pc-genovision {
  width: 12.7rem;
}

.header-sp-geno {
  margin: 0 3rem;
  padding-bottom: 8rem;
  width: 85%;
}

.footer {
  background: #FFFFFF;
  position: relative;
  z-index: 1;
}
.footer__inner {
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .footer__inner {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .footer__inner {
    width: 90%;
  }
}
.footer__top {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  padding-top: 12rem;
  padding-bottom: 10rem;
  margin-bottom: 4.3rem;
}
@media screen and (max-width: 767px) {
  .footer__top {
    padding-top: 4rem;
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    display: block;
  }
}
.footer__logo {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 70%;
    margin: 0 auto 2rem;
  }
}
.footer__menu {
  display: flex;
  font-size: 14px;
  flex-wrap: wrap;
  width: 60%;
}
@media screen and (max-width: 1300px) {
  .footer__menu {
    font-size: 1.0769230769vw;
  }
}
@media screen and (max-width: 767px) {
  .footer__menu {
    display: block;
    width: 100%;
    font-size: 1.3rem;
  }
}
.footer__menu a {
  transition: 0.15s;
}
.footer__menu a:hover {
  color: #0068B7;
}
.footer__item {
  width: 60%;
  margin-bottom: 2rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .footer__item {
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .footer__item:last-child {
    margin-bottom: 0;
  }
}
.footer__item_r {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .footer__item_r {
    width: 100%;
  }
}
.footer__bottom {
  padding-bottom: 6rem;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    display: block;
    padding-bottom: 4rem;
    text-align: center;
  }
}
.footer__copy {
  font-size: 1.5rem;
  color: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 767px) {
  .footer__copy {
    font-size: 1.2rem;
  }
}
.footer__sns {
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .footer__sns {
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    justify-content: center;
  }
}
.footer__sns a {
  transition: 0.15s;
}
.footer__sns a:hover {
  opacity: 0.8;
}

#home-loader-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #0068B7;
  z-index: 9999;
}

#home-loader {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  font-size: 10px;
  text-indent: -9999em;
  border-radius: 50%;
  background: #ffffff;
  background: -moz-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: -webkit-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: -o-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: -ms-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: linear-gradient(to right, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
#home-loader::before {
  width: 50%;
  height: 50%;
  background: #ffffff;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
#home-loader::after {
  background: #0068B7;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.mv-wrap {
  background: #0068B7;
  padding-top: 8rem;
}
@media screen and (max-width: 767px) {
  .mv-wrap {
    padding-top: 6rem;
  }
}

.mv {
  position: relative;
  width: 100%;
  height: calc(100vh - 8rem);
  max-height: 56.25vw;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv {
    max-height: 100vh;
    height: 50rem;
  }
}
.mv__catch-copy {
  position: absolute;
  top: 20rem;
  left: 10%;
  line-height: 1.5;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .mv__catch-copy {
    text-align: center;
    top: 5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
}
.mv__none {
  display: none;
}
.mv__main-copy {
  font-size: 7rem;
  font-weight: bold;
  text-shadow: 0 3px 5px rgba(1, 21, 59, 0.8);
}
@media screen and (max-width: 767px) {
  .mv__main-copy {
    font-size: 3.2rem;
    margin-bottom: 1rem;
  }
}
.mv__main-copy--en {
  font-size: 4.5rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .mv__main-copy--en {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
}
.mv__sub-copy {
  font-size: 2.8rem;
  text-shadow: 0 2px 4px rgba(1, 21, 59, 0.8);
}
@media screen and (max-width: 767px) {
  .mv__sub-copy {
    font-size: 1.5rem;
  }
}
.mv__group {
  position: absolute;
  bottom: 10rem;
  left: 10%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .mv__group {
    transform: translateX(-50%);
    left: 50%;
    bottom: 5rem;
    width: 90%;
  }
}
.mv__group-ttl {
  position: relative;
  font-size: 2.4rem;
  text-shadow: 0 2px 4px rgba(1, 21, 59, 0.8);
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .mv__group-ttl {
    font-size: 1.2rem;
  }
}
.mv__group-ttl::after {
  position: absolute;
  content: "";
  background-color: #fff;
  text-shadow: 0 3px 5px rgba(1, 21, 59, 0.8);
  width: 13.7rem;
  height: 0.2rem;
  transform: translateY(-50%);
  top: 50%;
  right: -35%;
}
@media screen and (max-width: 767px) {
  .mv__group-ttl::after {
    width: 7rem;
  }
}
.mv__group-wrap {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .mv__group-wrap {
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
}
.mv__group-img {
  width: 29rem;
}
.mv__group-img img {
  width: 100%;
}
.mv video {
  vertical-align: middle;
  min-width: 100%;
  min-height: 100%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.1);
}
@media screen and (max-width: 767px) {
  .mv video {
    transform: translate(-50%, -50%) scale(0.7);
  }
}
.mv__main-copy, .mv__sub-copy, .mv__group-ttl, .mv__group-wrap,
.mv video {
  opacity: 0;
}

.mv-sub {
  width: 100%;
  background: url(/assets/images/common/sub-mv.jpg) no-repeat;
  background-size: cover;
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .mv-sub {
    text-align: center;
    background: url(/assets/images/common/sub-mv-sp.jpg) no-repeat center center;
    background-size: cover;
    height: 56.25vw;
    margin-top: 6rem;
    display: flex;
    align-items: center;
  }
}
.mv-sub__inner {
  padding-top: 11rem;
  padding-bottom: 11rem;
}
@media screen and (max-width: 767px) {
  .mv-sub__inner {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.mv-sub__ttl {
  font-size: 6.5rem;
  font-weight: lighter;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .mv-sub__ttl {
    font-size: 3.25rem;
    line-height: 1.3;
  }
}
.mv-sub__ttl--ja {
  font-size: 3rem;
  font-weight: normal;
  color: #fff;
  display: block;
}
@media screen and (max-width: 767px) {
  .mv-sub__ttl--ja {
    font-size: 2rem;
  }
}

.breadcrumb {
  display: flex;
  background: #fff;
  padding-top: 3rem;
  margin-bottom: 6rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding-top: 1.5rem;
    margin-bottom: 4rem;
    overflow-x: scroll;
    /*横にはみ出した要素をスクロールする*/
    white-space: nowrap;
    /*自動改行しないようにする*/
    flex-wrap: nowrap;
  }
}
.breadcrumb::-webkit-scrollbar {
  display: none;
}
.breadcrumb li {
  font-size: 2rem;
  padding: 0 1.7rem;
  color: #000;
  position: relative;
}
.breadcrumb li a {
  color: #0068B7;
}
@media screen and (max-width: 767px) {
  .breadcrumb li {
    font-size: 1.4rem;
  }
}
.breadcrumb li::before {
  content: ">";
  position: absolute;
  top: 50%;
  left: -0.3rem;
  transform: translate(0, -50%);
}
.breadcrumb li:first-child {
  color: #0068B7;
  padding-left: 0;
}
.breadcrumb li:first-child::before {
  content: "";
}

.menu-sp {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
}
.menu-sp.open {
  opacity: 1;
  pointer-events: auto;
}

.heading-A {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .heading-A {
    font-size: 4rem;
    margin-bottom: 3.5rem;
  }
}
.heading-A__ja {
  display: block;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .heading-A__ja {
    font-size: 1.7rem;
  }
}

.heading-B {
  font-size: 6rem;
  font-weight: normal;
  color: #000;
  line-height: 1.5;
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .heading-B {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
}
.heading-B__en {
  font-size: 3.5rem;
  color: #0068B7;
  display: block;
}
@media screen and (max-width: 767px) {
  .heading-B__en {
    font-size: 1.7rem;
  }
}

.heading-C {
  font-size: 3.5rem;
  color: #fff;
  background: #0068B7;
  width: 100%;
  padding: 1rem;
  border-radius: 40px;
}
@media screen and (max-width: 767px) {
  .heading-C {
    font-size: 1.7rem;
    padding: 0.8rem;
  }
}
.heading-C--white {
  background: #fff;
  color: #0068B7;
}

.heading-D {
  font-size: 4rem;
  border-top: 2px solid #0068B7;
  border-bottom: 2px solid #0068B7;
  text-align: center;
  font-weight: bold;
  padding-bottom: 3rem;
  padding-top: 1rem;
  margin-top: 8rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .heading-D {
    font-size: 2.5rem;
    padding-bottom: 1.5rem;
    padding-top: 0.5rem;
    margin-top: 4rem;
    line-height: 1.3;
  }
}
.heading-D__en {
  color: #0068B7;
  font-size: 2.5rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .heading-D__en {
    font-size: 1.7rem;
  }
}

.btn-A a {
  position: relative;
  font-size: 1.7rem;
  border: 2px solid #0068B7;
  border-radius: 5rem;
  padding: 1rem 6rem 1rem 4rem;
  background: #fff;
  color: #0068B7;
  transition: 0.15s;
  display: inline-block;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .btn-A a {
    font-size: 1.25rem;
    padding: 12.5px 42px 12.5px 32px;
  }
}
.btn-A a::before {
  content: "";
  position: absolute;
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
  min-width: 2.2rem;
  min-height: 1rem;
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="26.373" height="10.192" viewBox="0 0 26.373 10.192"><path id="btn-arrow" d="M1147.855,233h25.373l-9.479-8.446" transform="translate(-1147.855 -223.808)" fill="none" stroke="%23007ABD" stroke-linejoin="round" stroke-width="2"/></svg>') center center no-repeat;
  background-size: 100%;
}
.btn-A a:hover {
  background: rgba(0, 104, 184, 0.7);
  color: #fff;
}
.btn-A a:hover::before {
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="26.373" height="10.192" viewBox="0 0 26.373 10.192"><path id="btn-arrow" d="M1147.855,233h25.373l-9.479-8.446" transform="translate(-1147.855 -223.808)" fill="none" stroke="%23fff" stroke-linejoin="round" stroke-width="2"/></svg>') center center no-repeat;
  background-size: 100%;
}
.btn-A--l a {
  padding: 1.5rem 8rem 1.5rem 7rem;
  font-size: 2.2rem;
  border-radius: 45px;
}
@media screen and (max-width: 767px) {
  .btn-A--l a {
    padding: 1rem 5rem 1rem 4rem;
    font-size: 1.6rem;
    border-radius: 55px;
  }
}
.btn-A--blue a {
  background: #0068b7;
  color: #fff;
}
.btn-A--blue a::before {
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="26.373" height="10.192" viewBox="0 0 26.373 10.192"><path id="btn-arrow" d="M1147.855,233h25.373l-9.479-8.446" transform="translate(-1147.855 -223.808)" fill="none" stroke="%23fff" stroke-linejoin="round" stroke-width="2"/></svg>') center center no-repeat;
  background-size: 100%;
}
.btn-A--blue a:hover {
  background: #fff;
  color: #0068B7;
}
.btn-A--blue a:hover::before {
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="26.373" height="10.192" viewBox="0 0 26.373 10.192"><path id="btn-arrow" d="M1147.855,233h25.373l-9.479-8.446" transform="translate(-1147.855 -223.808)" fill="none" stroke="%23007ABD" stroke-linejoin="round" stroke-width="2"/></svg>') center center no-repeat;
  background-size: 100%;
}
.btn-A--orange a {
  background: #EE7916;
  border: 2px solid #EE7916;
  color: #fff;
}
.btn-A--orange a::before {
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="26.373" height="10.192" viewBox="0 0 26.373 10.192"><path id="btn-arrow" d="M1147.855,233h25.373l-9.479-8.446" transform="translate(-1147.855 -223.808)" fill="none" stroke="%23fff" stroke-linejoin="round" stroke-width="2"/></svg>') center center no-repeat;
  background-size: 100%;
}
.btn-A--orange a:hover {
  background: #fff;
  color: #EE7916;
}
.btn-A--orange a:hover::before {
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="26.373" height="10.192" viewBox="0 0 26.373 10.192"><path id="btn-arrow" d="M1147.855,233h25.373l-9.479-8.446" transform="translate(-1147.855 -223.808)" fill="none" stroke="%23EE7916" stroke-linejoin="round" stroke-width="2"/></svg>') center center no-repeat;
  background-size: 100%;
}
.btn-A--b-white a {
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.btn-A > a {
  text-align: center;
  line-height: 1.4;
  border-radius: 6rem;
}
.btn-A > a span {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .btn-A > a span {
    font-size: 1.25rem;
  }
}

.btn-B {
  width: 19rem;
  display: inline-block;
  border-radius: 40px;
  text-align: center;
  margin-right: 0;
  font-size: 1.5rem;
  color: #0068B7;
  border: 2px solid #0068B7;
  width: 19rem;
  transition: 0.15s;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .btn-B {
    padding-bottom: 0;
  }
}
.btn-B a {
  padding: 1.2rem 0;
  width: 100%;
  height: 100%;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .btn-B a {
    padding: 0.5rem 0;
    font-size: 1.7rem;
  }
}
.btn-B:hover {
  background: #0068B7;
}
.btn-B:hover a {
  color: #fff;
}
.btn-B--blue {
  background: #0068B7;
  color: #fff;
  border: 2px solid #0068B7;
  width: 19rem;
  transition: 0.15s;
}
.btn-B--blue:hover {
  background: #fff;
  border: 2px solid #0068B7;
}
.btn-B--blue:hover a {
  color: #0068B7;
}

.btn-wrap {
  display: flex;
  gap: 10rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .btn-wrap {
    display: block;
    text-align: center;
  }
  .btn-wrap .btn-A {
    margin-bottom: 2rem;
  }
  .btn-wrap .btn-A:last-child {
    margin-bottom: 0;
  }
}

.hmb-btn {
  position: relative;
  cursor: pointer;
  height: 6rem;
  width: 6rem;
}
.hmb-btn__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hmb-btn__hmb {
  position: relative;
  height: 2rem;
  width: 2.5rem;
}
.hmb-btn__hmb span {
  display: inline-block;
  transition: all 0.25s;
  /*アニメーションの設定*/
  position: absolute;
  left: 0;
  height: 2px;
  background: #0068B7;
  width: 100%;
}
.hmb-btn__hmb span:nth-of-type(1) {
  top: 0;
}
.hmb-btn__hmb span:nth-of-type(2) {
  top: 50%;
  transform: translate(0, -1px);
}
.hmb-btn__hmb span:nth-of-type(3) {
  bottom: 0;
}

.hmb-btn.active .hmb-btn__hmb span:nth-of-type(1) {
  top: 50%;
  left: 10%;
  transform: rotate(-45deg);
  width: 80%;
}
.hmb-btn.active .hmb-btn__hmb span:nth-of-type(2) {
  width: 50%;
  opacity: 0;
  /*真ん中の線は透過*/
}
.hmb-btn.active .hmb-btn__hmb span:nth-of-type(3) {
  top: 50%;
  left: 10%;
  transform: rotate(45deg);
  width: 80%;
}

.pagetop {
  background: rgba(0, 104, 183, 0.7);
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  padding: 0.5rem 2rem;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 996;
  cursor: pointer;
  transition: 0.25s;
  opacity: 0;
  pointer-events: none;
}
.pagetop.active {
  opacity: 1;
  pointer-events: all;
}

/*------------------------------
	ナビゲーション
------------------------------*/
/*------------------------------
	ページネーション
------------------------------*/
.wp-pagenavi {
  text-align: center;
  clear: both;
  margin: 6rem 0;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin: 4rem 0;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  background-color: #fff;
  border: none !important;
  color: #999;
  font-size: 2rem;
  padding: 0.8rem 1.5rem !important;
  margin: 0 1.5rem !important;
  white-space: nowrap;
  border-radius: 50%;
  transition: 0.25s ease-in-out;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    font-size: 1.4rem;
    padding: 0.5rem 1.2rem !important;
    margin: 0 0.5rem !important;
  }
}
.wp-pagenavi a:hover {
  color: #0068B7;
}
.wp-pagenavi span.current {
  color: #0068B7;
  font-weight: bold;
}

.wp-content-header {
  margin-bottom: 2rem;
}

/*------------------------------
	Content( 記事の本文 )
------------------------------*/
.wp-content {
  line-height: 1.8;
  margin-bottom: 8rem;
}
.wp-content:after {
  content: "";
  clear: both;
  display: block;
}
.wp-content strong {
  font-weight: bold;
}
.wp-content em {
  font-style: italic;
}
.wp-content blockquote {
  display: block;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 4rem;
  -webkit-margin-end: 4rem;
}
.wp-content {
  /* img */
}
.wp-content .aligncenter {
  display: block;
  margin: 0 auto;
}
.wp-content .alignright {
  float: right;
  margin-left: 1.5rem !important;
}
.wp-content .alignleft {
  float: left;
  margin-right: 1.5rem !important;
}
.wp-content img[class*=wp-image-],
.wp-content img[class*=attachment-] {
  height: auto;
  max-width: 100%;
  margin: 1.5rem 0;
}
.wp-content .wp-caption {
  max-width: 100%;
}
.wp-content p {
  display: block;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
.wp-content a {
  color: #0068B7;
  text-decoration: underline;
}
.wp-content a:hover {
  text-decoration: none;
}
.wp-content ul {
  margin: 1em 0;
  padding-left: 4rem;
  list-style-type: disc;
}
.wp-content ul li {
  list-style-type: disc;
}
.wp-content ol {
  margin: 1em 0;
  padding-left: 4rem;
  list-style-type: decimal;
}
.wp-content ol li {
  list-style-type: decimal;
}
.wp-content blockquote {
  margin: 0 0 1em 0;
  padding: 50px 50px 40px;
  background: #f2f2f2;
  background: -moz-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(248, 248, 248) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(255, 255, 255)), color-stop(100%, rgb(248, 248, 248)));
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f8f8f8',GradientType=0 );
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: relative;
  border: 1px solid #c1c1c1;
}
.wp-content blockquote:before {
  content: '"';
  font-style: italic;
  font-size: 4rem;
  font-weight: bold;
  line-height: 4rem;
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 2rem;
  left: 2rem;
  color: #999;
}
.wp-content blockquote:after {
  content: '"';
  font-style: italic;
  font-size: 4rem;
  font-weight: bold;
  text-align: left;
  line-height: 6rem;
  width: 3rem;
  height: 3rem;
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  color: #999;
}
.wp-content pre {
  margin: 1em 0;
  padding: 1em;
  color: #000000;
  white-space: pre-wrap; /* css-3 */
  white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
  white-space: -pre-wrap; /* Opera 4-6 */
  white-space: -o-pre-wrap; /* Opera 7 */
  word-wrap: break-word; /* Internet Explorer 5.5+ */
}
/*--------------------------
	page
--------------------------*/
.external_link::after {
  content: "\f1c5";
  padding-left: 1rem;
  font-family: bootstrap-icons;
}
@media screen and (max-width: 767px) {
  .external_link::after {
    padding-left: 0.5rem;
    font-size: 0.8em;
  }
}

.para-shadow {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .para-shadow {
    box-shadow: none;
  }
}

.sec-ttl-none {
  display: none;
}

.news-list__item {
  display: flex;
  align-items: center;
  gap: 4.5rem;
  margin-bottom: 3rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .news-list__item {
    gap: 2rem;
    margin-bottom: 2rem;
  }
}
.news-list__item:last-child {
  margin-bottom: 0;
}
.news-list__date {
  font-size: 4rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  width: 10%;
}
@media screen and (max-width: 767px) {
  .news-list__date {
    font-size: 2.5rem;
    width: 17%;
  }
}
.news-list__date span {
  font-size: 2rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .news-list__date span {
    font-size: 1.2rem;
  }
}
.news-list__ttl {
  display: block;
}
@media screen and (max-width: 767px) {
  .news-list__ttl {
    font-size: 1.3rem;
    width: 80%;
  }
}
.news-list__ttl a:hover {
  text-decoration: underline;
}
.news-list__label {
  display: inline-block;
  font-size: 1.4rem;
  border: 1px solid #fff;
  border-radius: 20px;
  text-align: center;
  white-space: nowrap;
  padding: 0 1rem;
}
@media screen and (max-width: 767px) {
  .news-list__label {
    font-size: 0.9rem;
  }
}
.news-list__link {
  display: block;
}

.service-item {
  display: flex;
  gap: 2.8rem;
  color: #fff;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .service-item {
    gap: 2.5rem;
    justify-content: space-between;
  }
}
.service-item:last-child {
  margin-bottom: 0;
}
.service-item__img {
  width: 8rem;
}
@media screen and (max-width: 767px) {
  .service-item__img {
    padding-left: 1rem;
  }
}
.service-item__category {
  border: 1px solid #fff;
  width: 30rem;
  border-radius: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service-item__category {
    font-size: 1.3rem;
    width: auto;
    min-width: 21rem;
    background: #9fc3e2;
    color: #0068B7;
    border: 1px solid #9fc3e2;
  }
}
.service-item__ttl {
  font-size: 3rem;
  font-weight: bold;
}
.service-item__ttl span {
  font-size: 2.3rem;
}
@media screen and (max-width: 767px) {
  .service-item__ttl {
    font-size: 2rem;
  }
  .service-item__ttl span {
    display: block;
    font-size: 1.5rem;
  }
}
.service-item__note {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .service-item__note {
    font-size: 1.2rem;
  }
}
.service-item__txt {
  font-size: 2.5rem;
  position: relative;
  padding-left: 10rem;
}
.service-item__txt::before {
  content: "";
  display: inline-block;
  height: 1px;
  width: 8.5rem;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .service-item__txt {
    font-size: 1.6rem;
    padding-left: 6rem;
  }
  .service-item__txt::before {
    width: 5rem;
  }
}
.service-item--blue {
  color: #0068B7;
}
.service-item--blue .service-item__category {
  background: #9FC3E2;
  border: 1px solid #9FC3E2;
}

.vp-cr-item {
  width: 90rem;
  padding: 10rem 15rem;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .vp-cr-item {
    width: 100%;
    padding: 2rem;
    margin: 0 auto;
    margin-bottom: 2rem;
    display: block;
  }
  .vp-cr-item:last-child {
    margin-bottom: 0;
  }
}
.vp-cr-item::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
.vp-cr-item:hover::after {
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  filter: blur(5px);
}
.vp-cr-item:hover .vp-cr-item__body {
  background: rgba(255, 255, 255, 0.7);
  color: #0068B7;
  transform: scale(1.05);
}
.vp-cr-item--value::after {
  background: url(/assets/images/top/bg_philosophy.jpg) no-repeat center center;
  background-size: cover;
}
.vp-cr-item--reviews::after {
  background: url(/assets/images/top/bg_reviews.jpg) no-repeat center center;
  background-size: cover;
}
.vp-cr-item__body {
  background: rgba(0, 104, 183, 0.7);
  padding: 4.5rem 0;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 2;
  transition: 0.25s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .vp-cr-item__body {
    padding: 2rem 0;
    margin: 0 auto;
  }
}
.vp-cr-item__body--left {
  padding: 7rem 0 4.5rem;
}
@media screen and (max-width: 767px) {
  .vp-cr-item__body--left {
    padding: 2rem 0;
  }
}
.vp-cr-item__ttl {
  font-size: 4.6rem;
  margin-bottom: 3.5rem;
  font-weight: lighter;
  line-height: 1.2;
}
.vp-cr-item__ttl span {
  display: block;
  font-size: 2.6rem;
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .vp-cr-item__ttl {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  .vp-cr-item__ttl span {
    font-size: 1.5rem;
  }
}

.page-link-item {
  width: 65%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .page-link-item {
    margin-bottom: 2rem;
    width: 100%;
  }
  .page-link-item:last-child {
    margin-bottom: 0;
  }
}
.page-link-item::before, .page-link-item::after {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
.page-link-item:hover::before {
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  filter: blur(5px);
}
.page-link-item:hover::after {
  background: rgba(0, 104, 183, 0.5);
}
.page-link-item--message::before {
  background: url(/assets/images/top/page_link_bg_01.jpg) no-repeat center center;
  background-size: cover;
}
.page-link-item--info::before {
  background: url(/assets/images/top/page_link_bg_02.jpg) no-repeat center center;
  background-size: cover;
}
.page-link-item--recruit::before {
  background: url(/assets/images/top/page_link_bg_03.jpg) no-repeat top center;
  background-size: contain;
}
.page-link-item__ttl {
  font-size: 4rem;
  padding: 12rem 0;
  width: 100%;
  display: inline-block;
  text-align: center;
  font-weight: lighter;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .page-link-item__ttl {
    font-size: 2.25rem;
    padding: 1.5rem 0;
  }
}
.page-link-item__ttl span {
  font-size: 2rem;
  display: block;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .page-link-item__ttl span {
    font-size: 1.25rem;
  }
}

.page-nation {
  display: flex;
  justify-content: center;
  width: 90%;
  max-width: 768px;
  gap: 1rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .page-nation {
    width: 85%;
    gap: 0.5rem;
  }
}
.page-nation span {
  border: 1px solid #0068B7;
  background: #0068B7;
  color: #fff;
  padding: 0 1rem;
}
.page-nation a {
  border: 1px solid #0068B7;
  padding: 0 1rem;
  transition: 0.15s;
}
.page-nation a:hover {
  background: #0068B7;
  color: #fff;
}
.page-nation #prev-frist {
  position: relative;
}
.page-nation #prev-frist::after {
  content: "« ";
}
.page-nation #prev {
  position: relative;
}
.page-nation #prev::after {
  content: "‹";
}
.page-nation #next {
  position: relative;
}
.page-nation #next::after {
  content: "›";
}
.page-nation #next-last {
  position: relative;
}
.page-nation #next-last::after {
  content: "» ";
}

.article-toc {
  background: #f9f9f9;
  padding: 2rem 3rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .article-toc {
    padding: 1rem 1.5rem;
    margin-bottom: 3rem;
  }
}
.article-toc__ttl {
  font-size: 2.8rem;
  font-weight: bold;
  margin-top: 0 !important;
  margin-bottom: 0.5rem !important;
}
@media screen and (max-width: 767px) {
  .article-toc__ttl {
    font-size: 2rem;
    margin-bottom: 0.25rem !important;
  }
}
.article-toc > ul {
  font-size: 2rem;
  margin: 0 !important;
  padding-left: 0 !important;
  list-style-type: none !important;
}
@media screen and (max-width: 767px) {
  .article-toc > ul {
    font-size: 1.6rem;
  }
}
.article-toc a {
  color: #000000 !important;
}
.article-toc .toc-h1 {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .article-toc .toc-h1 {
    font-size: 1.8rem;
  }
}
.article-toc .toc-h2 {
  padding-left: 1.8rem;
}
@media screen and (max-width: 767px) {
  .article-toc .toc-h2 {
    padding-left: 1.4rem;
  }
}
.article-toc .toc-h3 {
  padding-left: 3.6rem;
}
@media screen and (max-width: 767px) {
  .article-toc .toc-h3 {
    padding-left: 2.8rem;
  }
}
.article-toc .toc-h4 {
  padding-left: 5.4rem;
}
@media screen and (max-width: 767px) {
  .article-toc .toc-h4 {
    padding-left: 4.2rem;
  }
}
.article-toc .toc-h5 {
  padding-left: 7.2rem;
}
@media screen and (max-width: 767px) {
  .article-toc .toc-h5 {
    padding-left: 5.6rem;
  }
}

.fix-btn {
  position: fixed;
  transform: translateY(-50%);
  top: 70%;
  right: 0;
  z-index: 997;
}
@media screen and (max-width: 767px) {
  .fix-btn {
    top: 40%;
    width: 4rem;
  }
}
.fix-btn a {
  position: relative;
  color: #fff;
  background-color: #EE7916;
  font-size: 2rem;
  font-weight: bold;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  padding: 6rem 2rem 3rem 2rem;
  border-radius: 1rem 0 0 1rem;
  transition: 0.25s;
}
@media screen and (max-width: 767px) {
  .fix-btn a {
    font-size: 1.2rem;
    padding: 3rem 0 1.5rem 0;
    border-radius: 0.5rem 0 0 0.5rem;
    width: 100%;
    display: flex;
    align-items: center;
  }
}
.fix-btn a::before {
  position: absolute;
  content: "";
  background: url("/assets/images/service/jpp/fix-icon.svg") no-repeat center;
  background-size: contain;
  width: 2.5rem;
  height: 2.5rem;
  transform: translateX(-50%);
  left: 50%;
  top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .fix-btn a::before {
    width: 1.5rem;
    height: 1.5rem;
    top: 1rem;
  }
}
.fix-btn a:hover {
  opacity: 0.7;
}

.cms-cont {
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .cms-cont {
    margin-bottom: 4rem;
  }
}
.cms-cont h1 {
  font-size: 3rem;
  margin-bottom: 3rem;
  border-left: 10px solid #0068B7;
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .cms-cont h1 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}
.cms-cont h2 {
  font-size: 2.8rem;
  margin-bottom: 3rem;
  background: #dbeefc;
  padding: 0.8rem 2rem;
}
@media screen and (max-width: 767px) {
  .cms-cont h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.cms-cont h3 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 4rem;
}
.cms-cont h3::before {
  content: "";
  width: 3rem;
  height: 3rem;
  background: #0068B7;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cms-cont h3 br {
  display: none;
}
@media screen and (max-width: 767px) {
  .cms-cont h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    padding-left: 2.5rem;
  }
  .cms-cont h3::before {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.cms-cont h4 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  border-left: 10px solid #0068B7;
  border-bottom: 1px solid #0068B7;
  padding-left: 1rem;
}
.cms-cont h4 br {
  display: none;
}
@media screen and (max-width: 767px) {
  .cms-cont h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}
.cms-cont h5 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .cms-cont h5 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}
.cms-cont--knowledge h1 {
  border-width: 3px;
  padding-left: 1.5rem;
  padding: 0.25rem 0 0.5rem 1.5rem;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .cms-cont--knowledge h1 {
    margin-top: 4rem;
  }
}
.cms-cont--knowledge h3 {
  padding: 0.25rem 0 0.5rem 1.5rem;
}
.cms-cont--knowledge h3::before {
  width: 3px;
  height: 100%;
}
.cms-cont--knowledge h4 {
  border-left-width: 5px;
}
.cms-cont ul {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: disc;
}
.cms-cont ul li {
  list-style: inherit;
}
.cms-cont ol {
  margin: 1em 0;
  padding-left: 40px;
  list-style-type: decimal;
}
.cms-cont ol li {
  list-style: inherit;
}
.cms-cont strong {
  font-weight: bold;
}
.cms-cont em {
  font-style: italic;
}
.cms-cont blockquote {
  display: block;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 4rem;
  -webkit-margin-end: 4rem;
}
.cms-cont blockquote {
  margin: 0 0 1em 0;
  padding: 50px 50px 40px;
  background: #f2f2f2;
  background: -moz-linear-gradient(top, rgb(255, 255, 255) 0%, rgb(248, 248, 248) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgb(255, 255, 255)), color-stop(100%, rgb(248, 248, 248)));
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f8f8f8', GradientType=0);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  position: relative;
  border: 1px solid #c1c1c1;
}
.cms-cont blockquote:before {
  content: '"';
  font-style: italic;
  font-size: 4rem;
  font-weight: bold;
  line-height: 4rem;
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 2rem;
  left: 2rem;
  color: #999;
}
.cms-cont blockquote:after {
  content: '"';
  font-style: italic;
  font-size: 4rem;
  font-weight: bold;
  text-align: left;
  line-height: 6rem;
  width: 3rem;
  height: 3rem;
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  color: #999;
}
.cms-cont pre {
  margin: 1em 0;
  padding: 1em;
  color: #000000;
  white-space: pre-wrap;
  /* css-3 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
}
.cms-cont p {
  display: block;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  margin-bottom: 2rem;
  margin-top: 1rem;
}
.cms-cont a {
  color: #0068B7;
  text-decoration: underline;
}
.cms-cont a:hover {
  text-decoration: none;
}
.cms-cont figure {
  text-align: center;
  margin-bottom: 2rem;
}
.cms-cont table {
  width: 100%;
  border-collapse: collapse;
}
.cms-cont table th,
.cms-cont table td {
  border: 1px solid #e9e9e9;
  padding: 1rem;
  text-align: left;
}
.cms-cont table th {
  background-color: #f2f2f2;
}
.cms-cont table p {
  margin: 0;
}

.bg-blue {
  background: #F2F9FF;
  border-radius: 2rem;
}

.glucose-ttl {
  text-align: center;
  font-size: 3.3rem;
  color: #0068B7;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .glucose-ttl {
    font-size: 2rem;
  }
}

.sec-border {
  border-radius: 2rem;
  border: 1px solid #CCC;
  padding: 5rem;
}
@media screen and (max-width: 767px) {
  .sec-border {
    padding: 3rem 2rem;
  }
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {
	}
	※CSSに展開した場合

----------------------------------------------------*/
.contents.contents--top {
  background: #0068B7;
  color: #fff;
}
.contents.contents--top .news {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background: #0068B7;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .news {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.contents.contents--top .news__inner {
  position: relative;
  display: flex;
  max-width: 1600px;
  margin: 0 auto;
}
@media screen and (max-width: 1600px) {
  .contents.contents--top .news__inner {
    width: 85%;
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--top .news__inner {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--top .news .heading-A {
    margin-bottom: 3rem;
    text-align: center;
  }
}
.contents.contents--top .news .news-list {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .news .news-list {
    width: 100%;
    margin-bottom: 2.5rem;
  }
}
.contents.contents--top .news__wrap {
  width: 50%;
  position: relative;
  padding-left: 13rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .news__wrap {
    width: 100%;
    padding-left: 0;
  }
}
.contents.contents--top .news .btn-A {
  position: absolute;
  left: 13rem;
  top: 60%;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .news .btn-A {
    position: static;
    text-align: center;
  }
}
.contents.contents--top .news .btn-A a:hover {
  border: 2px solid #fff;
}
.contents.contents--top .co-ph {
  position: relative;
  padding-top: 34rem;
  padding-bottom: 5rem;
  background: #0068B7;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .co-ph {
    padding-top: 0;
    padding-bottom: 5.5rem;
  }
}
.contents.contents--top .co-ph__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 107.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .co-ph__img {
    position: static;
    width: 100%;
  }
}
.contents.contents--top .co-ph__img img {
  width: 100%;
}
.contents.contents--top .co-ph__body {
  color: #000;
  width: 50%;
  background: rgba(255, 255, 255, 0.9);
  margin: 0 0 0 auto;
  padding: 11.5rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .co-ph__body {
    background: rgb(255, 255, 255);
    position: static;
    width: 100%;
    padding: 5rem 3.5rem;
  }
}
.contents.contents--top .co-ph__secttl {
  font-size: 6.1rem;
  color: #0068B7;
  font-weight: lighter;
  line-height: 1.3;
  display: block;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .co-ph__secttl {
    font-size: 4rem;
    margin-bottom: 2rem;
    line-height: 1.3;
  }
}
.contents.contents--top .co-ph__ttl {
  font-size: 4.7rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .co-ph__ttl {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
}
.contents.contents--top .co-ph__subttl {
  font-size: 2.6rem;
  margin-bottom: 5.5rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .contents.contents--top .co-ph__subttl {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}
.contents.contents--top .co-ph__txt {
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .co-ph__txt {
    margin-bottom: 4rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--top .co-ph .btn-A {
    text-align: center;
  }
}
.contents.contents--top .service {
  position: relative;
  z-index: 2;
  background: rgba(0, 72, 127, 0.8);
}
@media screen and (max-width: 767px) {
  .contents.contents--top .service {
    padding-bottom: 12rem;
  }
}
.contents.contents--top .service__bg {
  position: relative;
}
.contents.contents--top .service__loop {
  position: absolute;
  top: -10rem;
  left: 0;
  display: flex;
  opacity: 0.6;
  color: #388FD1;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .service__loop {
    top: -8%;
  }
}
.contents.contents--top .service__character {
  font-size: 15rem;
  white-space: nowrap;
  font-weight: bold;
  padding-right: 12rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .service__character {
    font-size: 6rem;
    top: -8.5%;
    padding-right: 4rem;
  }
}
.contents.contents--top .service__wrap {
  width: 40%;
  position: absolute;
  top: 30%;
}
@media screen and (max-width: 800px) {
  .contents.contents--top .service__wrap {
    top: 23%;
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--top .service__wrap {
    top: 14%;
  }
}
.contents.contents--top .service__img {
  width: 50%;
  height: 65rem;
  position: absolute;
  left: 0;
  bottom: -6rem;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .service__img {
    width: 85%;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: -11%;
    height: 20rem;
  }
}
.contents.contents--top .service__img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.contents.contents--top .service__txt {
  position: absolute;
  color: #000;
  width: 70%;
  margin: 0 auto;
  top: 55%;
  line-height: 2;
  font-size: 1.6rem;
}
@media screen and (max-width: 800px) {
  .contents.contents--top .service__txt {
    top: 48%;
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--top .service__txt {
    line-height: 1.5;
    font-size: 1.1rem;
    top: 38%;
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--top .service .btn-A {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -24%;
  }
}
.contents.contents--top .service__body {
  margin: 0 0 0 auto;
  padding: 8rem 0 10rem;
  width: 50%;
  padding-left: 11.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .service__body {
    padding-top: 6rem;
    padding-bottom: 12rem;
    width: 85%;
    margin: 0 auto;
    padding-left: 0;
  }
}
.contents.contents--top .service .heading-A {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .service .heading-A {
    text-align: center;
    margin-bottom: 3rem;
  }
}
.contents.contents--top .service .service-list .service-item {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .service .service-list .service-item {
    margin-bottom: 3rem;
  }
}
.contents.contents--top .service-content {
  position: relative;
  z-index: 2;
  background: rgba(0, 72, 127, 0.8);
  padding: 17rem 0 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .service-content {
    padding: 0 0 2rem;
  }
}
.contents.contents--top .service-card-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 2vw;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .service-card-list {
    display: block;
    margin-bottom: 3rem;
  }
}
.contents.contents--top .service-card-list li {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .service-card-list li {
    width: 80%;
    margin: 0 auto 3rem;
  }
}
.contents.contents--top .service-card {
  height: auto;
  display: flex;
  flex-direction: column;
}
.contents.contents--top .service-card__left {
  margin-right: auto;
  margin-left: 2.79%;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .service-card__left {
    margin: 0 auto;
  }
}
.contents.contents--top .service-card__thumb {
  position: relative;
  bottom: -1px;
}
.contents.contents--top .service-card__thumb img {
  width: 100%;
}
.contents.contents--top .service-card__txt-area {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
  text-align: center;
  padding: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .service-card__txt-area {
    padding: 1.5rem;
  }
}
.contents.contents--top .service-card__ttl {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .service-card__ttl {
    font-size: 1.4rem;
  }
}
.contents.contents--top .service-card__ttl img {
  width: 24rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .service-card__ttl img {
    width: 70%;
  }
}
.contents.contents--top .knowledge {
  background: #F3FAFF;
  padding: 15rem 0 10rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .knowledge {
    padding: 10rem 0 6rem;
  }
}
.contents.contents--top .knowledge .heading-A {
  line-height: 1.2;
}
.contents.contents--top .knowledge .heading-A__ja {
  margin-top: 2rem;
}
.contents.contents--top .knowledge__inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .knowledge__inner {
    display: block;
    padding: 0 3rem;
  }
}
.contents.contents--top .knowledge__header {
  color: #0068B7;
  text-align: center;
  position: relative;
  z-index: 1;
  width: 40%;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .knowledge__header {
    margin-bottom: 4rem;
    width: 100%;
  }
}
.contents.contents--top .knowledge__slider {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .knowledge__slider {
    width: 100%;
  }
}
.contents.contents--top .knowledge-swiper {
  margin-left: 0;
  overflow: visible;
  padding-bottom: 4rem;
  position: relative;
  z-index: 0;
}
.contents.contents--top .knowledge-swiper .swiper-slide {
  transition: 0.25s;
}
.contents.contents--top .knowledge-swiper .swiper-slide a {
  display: block;
}
.contents.contents--top .knowledge-swiper .swiper-slide:not(.swiper-slide-active ~ .swiper-slide) {
  opacity: 0;
  pointer-events: none;
}
.contents.contents--top .knowledge-swiper .swiper-slide-active {
  opacity: 1 !important;
  pointer-events: all !important;
}
.contents.contents--top .knowledge-swiper .swiper-pagination {
  position: absolute;
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
  margin-right: 15rem;
  height: 0.4rem;
  width: 75%;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .knowledge-swiper .swiper-pagination {
    display: none;
  }
}
.contents.contents--top .knowledge-swiper .swiper-button-prev,
.contents.contents--top .knowledge-swiper .swiper-button-next {
  color: #000;
  position: absolute;
  bottom: -2.4rem;
  cursor: pointer;
  height: 5.2rem;
  width: 5.2rem;
  z-index: 99;
}
.contents.contents--top .knowledge-swiper .swiper-button-prev svg,
.contents.contents--top .knowledge-swiper .swiper-button-next svg {
  height: 100%;
  width: 100%;
  overflow: visible;
}
.contents.contents--top .knowledge-swiper .swiper-button-prev:hover svg rect,
.contents.contents--top .knowledge-swiper .swiper-button-next:hover svg rect {
  fill: #fff;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .knowledge-swiper .swiper-button-prev,
  .contents.contents--top .knowledge-swiper .swiper-button-next {
    bottom: auto;
    top: 45%;
    transform: translate(0, -50%);
    height: 4rem;
    width: 4.2rem;
  }
  .contents.contents--top .knowledge-swiper .swiper-button-prev svg rect,
  .contents.contents--top .knowledge-swiper .swiper-button-next svg rect {
    fill: #fff;
  }
}
.contents.contents--top .knowledge-swiper .swiper-button-prev {
  left: 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .knowledge-swiper .swiper-button-prev {
    left: -2rem;
  }
}
.contents.contents--top .knowledge-swiper .swiper-button-next {
  left: 6rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .knowledge-swiper .swiper-button-next {
    left: auto;
    right: -2rem;
  }
}
.contents.contents--top .knowledge-swiper.is-oneslide .swiper-button-prev,
.contents.contents--top .knowledge-swiper.is-oneslide .swiper-button-next {
  display: none;
}
.contents.contents--top .knowledge-card {
  max-width: 58rem;
}
.contents.contents--top .knowledge-card__inner {
  display: flex;
  flex-direction: column;
}
.contents.contents--top .knowledge-card__body {
  background: #fff;
  border-top: 1px solid #eee;
  color: #000;
  padding: 2rem 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .knowledge-card__body {
    padding: 1rem 2rem;
  }
}
.contents.contents--top .knowledge-card__thumb {
  overflow: hidden;
}
.contents.contents--top .knowledge-card__thumb img {
  height: 30rem;
  width: 100%;
  object-fit: cover;
  transition: 0.25s;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .knowledge-card__thumb img {
    height: 17.5rem;
  }
}
.contents.contents--top .knowledge-card__ttl {
  display: -webkit-box;
  min-height: 9.3rem;
  font-size: 2.6rem;
  margin-bottom: 2rem;
  transition: 0.25s;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .knowledge-card__ttl {
    min-height: 6.3rem;
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
.contents.contents--top .knowledge-card__date {
  color: #9D9D9D;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .knowledge-card__date {
    font-size: 1.6rem;
  }
}
.contents.contents--top .knowledge-card:hover .knowledge-card__ttl {
  color: #0068B7;
}
.contents.contents--top .knowledge-card:hover .knowledge-card__thumb img {
  transform: scale(1.05);
}
.contents.contents--top .vp-cr {
  position: relative;
  background: #F3FAFF;
}
.contents.contents--top .vp-cr__inner {
  width: 96%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .vp-cr__inner {
    width: 85%;
  }
}
.contents.contents--top .vp-cr__list {
  display: flex;
  gap: 2%;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 1;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .vp-cr__list {
    display: block;
    padding-bottom: 3.5rem;
  }
}
.contents.contents--top .vp-cr .page-link {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .vp-cr .page-link {
    display: block;
    padding-bottom: 4rem;
  }
}
.contents.contents--top .vp-cr .btn-A span {
  position: relative;
  font-size: 1.7rem;
  border: 2px solid #0068B7;
  border-radius: 5rem;
  padding: 1rem 6rem 1rem 4rem;
  background: #fff;
  color: #0068B7;
  transition: 0.15s;
  display: inline-block;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .vp-cr .btn-A span {
    font-size: 1.25rem;
    padding: 12.5px 42px 12.5px 32px;
  }
}
.contents.contents--top .vp-cr .btn-A span::before {
  content: "";
  position: absolute;
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
  min-width: 2.2rem;
  min-height: 1rem;
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="26.373" height="10.192" viewBox="0 0 26.373 10.192"><path id="btn-arrow" d="M1147.855,233h25.373l-9.479-8.446" transform="translate(-1147.855 -223.808)" fill="none" stroke="%23007ABD" stroke-linejoin="round" stroke-width="2"/></svg>') center center no-repeat;
  background-size: 100%;
  background-size: 100%;
}
.contents.contents--top .vp-cr .btn-A span:hover {
  background: rgba(0, 104, 184, 0.7);
  color: #fff;
}
.contents.contents--top .vp-cr .btn-A span:hover::before {
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="26.373" height="10.192" viewBox="0 0 26.373 10.192"><path id="btn-arrow" d="M1147.855,233h25.373l-9.479-8.446" transform="translate(-1147.855 -223.808)" fill="none" stroke="%23fff" stroke-linejoin="round" stroke-width="2"/></svg>') center center no-repeat;
  background-size: 100%;
}
.contents.contents--top .contact__bg {
  text-align: center;
  padding-top: 10rem;
  padding-bottom: 10rem;
  background: rgba(0, 72, 127, 0.8);
  position: relative;
}
@media screen and (max-width: 767px) {
  .contents.contents--top .contact__bg {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.contents.contents--top .contact .heading-A {
  position: relative;
}

.contents.contents--service .contact-link {
  position: fixed;
  top: 20rem;
  right: 0;
  border-radius: 10px 0px 0px 10px;
  background: #ee7916;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 2.5rem 2rem;
  flex-direction: column;
  gap: 2rem;
  transition: 0.2s;
  cursor: pointer;
  z-index: 900;
}
.contents.contents--service .contact-link.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.contents.contents--service .contact-link.is-visible {
  opacity: 1;
  pointer-events: visible;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .contact-link {
    width: 100%;
    top: auto;
    bottom: 0;
    border-radius: 10px 10px 0px 0px;
    flex-direction: row;
    justify-content: center;
    padding: 1rem;
    gap: 1.5rem;
  }
}
.contents.contents--service .contact-link:hover {
  opacity: 0.8;
}
.contents.contents--service .contact-link__svg {
  width: 5rem;
  height: 3.8rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .contact-link__svg {
    width: 3rem;
    height: 2.4rem;
  }
}
.contents.contents--service .contact-link__svg svg {
  width: 100%;
  height: 100%;
}
.contents.contents--service .contact-link__txt {
  font-size: 2.5rem;
  display: flex;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .contact-link__txt {
    font-size: 1.4rem;
  }
}
.contents.contents--service .contact-link__txt span {
  line-height: 1.3;
  white-space: pre;
  writing-mode: vertical-rl;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .contact-link__txt span {
    writing-mode: horizontal-tb;
    text-align: center;
  }
}
.contents.contents--service .service-header {
  padding-top: 10rem;
  padding-bottom: 10rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .service-header {
    padding-top: 4rem;
    padding-bottom: 3rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    text-align: left;
  }
}
.contents.contents--service .service-header__logo {
  margin-bottom: 10rem;
  max-width: 55rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .service-header__logo {
    margin-bottom: 4rem;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
.contents.contents--service .service-header__intro {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .service-header__intro {
    font-size: 1.8rem;
  }
}
.contents.contents--service .service-body {
  background: #0068b7;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .service-body {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.contents.contents--service .service-body .service-content {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 6rem 10rem;
  border-radius: 20px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .service-body .service-content {
    padding: 5rem 1.5rem 2rem;
    display: block;
    margin-bottom: 2.5rem;
  }
}
.contents.contents--service .service-body .service-content:last-of-type {
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .service-body .service-content:last-of-type {
    margin-bottom: 3rem;
  }
}
.contents.contents--service .service-body .service-content .service-item {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .service-body .service-content .service-item {
    margin-bottom: 2rem;
  }
}
.contents.contents--service .service-body .service-content__img {
  margin-right: 10rem;
  width: 57%;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .service-body .service-content__img {
    margin-right: auto;
    margin-left: auto;
    width: 80%;
    text-align: center;
    margin-bottom: 8rem;
  }
}
.contents.contents--service .service-body .service-content__pdf {
  position: absolute;
  left: 4rem;
  bottom: 12rem;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .service-body .service-content__pdf {
    left: 0;
    bottom: 0;
    top: 20rem;
    font-size: 1.5rem;
    padding: 0 2rem;
    text-align: center;
    line-height: 1.2;
  }
}
.contents.contents--service .service-body .service-content__pdf a {
  color: #0068b7;
  text-decoration: underline;
}
.contents.contents--service .service-body .service-content__wrap {
  width: 170%;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .service-body .service-content__wrap {
    width: 100%;
  }
}
.contents.contents--service .service-body .service-content__txt {
  font-size: 2.3rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .service-body .service-content__txt {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
.contents.contents--service .service-body .service-content__txt:nth-child(2) {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .service-body .service-content__txt:nth-child(2) {
    margin-bottom: 1.5rem;
  }
}
.contents.contents--service .service-body .service-content__subttl {
  font-size: 2.5rem;
  font-weight: bold;
  margin-left: 10rem;
  position: relative;
  color: #0068B7;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .service-body .service-content__subttl {
    font-size: 1.8rem;
    margin-left: 5rem;
    margin-bottom: 1rem;
  }
}
.contents.contents--service .service-body .service-content__subttl::before {
  content: "";
  height: 1px;
  width: 8.5rem;
  background: #0068B7;
  position: absolute;
  top: 50%;
  left: -10rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .contents.contents--service .service-body .service-content__subttl::before {
    width: 4rem;
    left: -5rem;
  }
}
.contents.contents--service .service-body .service-content__detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .service-body .service-content__detail {
    display: block;
  }
  .contents.contents--service .service-body .service-content__detail .btn-A {
    text-align: center;
  }
}
.contents.contents--service .service-body .service-content__detail p {
  width: 36%;
  font-size: 1.8rem;
}
@media screen and (max-width: 1000px) {
  .contents.contents--service .service-body .service-content__detail p {
    width: 32%;
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--service .service-body .service-content__detail p {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.contents.contents--service .service-body .service-content__about {
  border: 1px solid #cccccc;
  padding: 3rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .service-body .service-content__about {
    padding: 1.5rem;
  }
}
.contents.contents--service .service-body .service-content__about p {
  font-size: 1.8rem;
}
.contents.contents--service .service-body .service-content__about p span {
  display: block;
  font-size: 1.4rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .service-body .service-content__about p {
    font-size: 1.4rem;
  }
  .contents.contents--service .service-body .service-content__about p span {
    font-size: 1.2rem;
  }
}
.contents.contents--service .service-body .service-content__bluetext {
  font-size: 2.3rem;
  color: #0068B7;
  font-weight: 600;
}
.contents.contents--service .service-body .service-content__btn {
  display: flex;
  justify-content: space-around;
  width: 67%;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .service-body .service-content__btn {
    display: block;
    width: 100%;
  }
}
.contents.contents--service .service-body .service-content__btn .btn-A {
  width: 45%;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .service-body .service-content__btn .btn-A {
    margin-bottom: 2rem;
    width: 100%;
  }
}
.contents.contents--service .service-body .service-content__btn .btn-A a {
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 1.5rem 1.5rem 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .service-body .service-content__btn .btn-A a {
    width: 80%;
  }
}
.contents.contents--service .service-body-secondary {
  padding: 10rem 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .service-body-secondary {
    padding: 4rem 0;
  }
}
.contents.contents--service .service-body-secondary_text {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .service-body-secondary_text {
    font-size: 1.8rem;
  }
}
.contents.contents--service .service-body-secondary_title {
  color: #0068b7;
  font-size: 4rem;
  margin: 8rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .service-body-secondary_title {
    font-size: 2.5rem;
    margin: 4rem 0 2.5rem;
  }
}
.contents.contents--service .service-body-secondary_img img {
  width: 118rem;
}
.contents.contents--service .top-message__ttl {
  font-size: 5rem;
  color: #0068b7;
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .top-message__ttl {
    font-size: 3rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
}
.contents.contents--service .top-message__text {
  font-size: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .top-message__text {
    font-size: 1.8rem;
    text-align: left;
  }
}
.contents.contents--service .top-message__link {
  background-color: #dbeefc;
  display: inline-block;
  position: relative;
  transform: translateX(-50%);
  left: 50%;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .top-message__link {
    margin-top: 1rem;
    text-align: center;
  }
}
.contents.contents--service .top-message__link-txt {
  font-size: 1.8rem;
  padding: 1rem 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .top-message__link-txt {
    line-height: 1.3;
  }
}
.contents.contents--service .top-message__link a {
  color: #0068b7;
  text-decoration: underline;
}
.contents.contents--service .top-message__link a:hover {
  opacity: 0.7;
  transition: all 0.25s;
}
.contents.contents--service .top-message__link img {
  padding-left: 0.5rem;
}
@media screen and (max-width: 1000px) {
  .contents.contents--service .top-message__link img {
    padding-left: 1rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--service .top-message__link img {
    padding-left: 0.5rem;
    width: 2rem;
    height: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .wrap--glucose .pagetop {
    bottom: 7rem;
  }
}

@font-face {
  font-family: "DIN";
  src: url(/assets/font/fonts/AnyConv.com__DIN_Medium.woff);
}
.contents.contents--service .s-glucose .heading-D {
  color: #000;
  font-size: 4rem;
  border-top: 2px solid #0068b7;
  border-bottom: 2px solid #0068b7;
  text-align: center;
  font-weight: bold;
  padding-bottom: 3rem;
  padding-top: 1rem;
  margin-top: 8rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .heading-D {
    font-size: 2.5rem;
    padding-bottom: 1.5rem;
    padding-top: 0.5rem;
    margin-top: 4rem;
    line-height: 1.3;
  }
}
.contents.contents--service .s-glucose .heading-D__en {
  color: #0068b7;
  font-size: 2.5rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .heading-D__en {
    font-size: 1.7rem;
  }
}
.contents.contents--service .s-glucose .heading-E {
  display: flex;
  align-items: center;
  background-color: #dbeefc;
}
.contents.contents--service .s-glucose .heading-E__num {
  text-align: center;
  background-color: #0068b7;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  padding: 1.5rem 2.4rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .heading-E__num {
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
  }
}
.contents.contents--service .s-glucose .heading-E__num span {
  font-size: 5rem;
  font-family: "DIN";
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .heading-E__num span {
    font-size: 2.7rem;
  }
}
.contents.contents--service .s-glucose .heading-E__ttl {
  font-size: 3.5rem;
  color: #0068b7;
  font-weight: bold;
  padding-left: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .heading-E__ttl {
    font-size: 2rem;
    padding-left: 1.5rem;
    line-height: 1.3;
  }
}
.contents.contents--service .s-glucose .program__round {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin: 8rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .program__round {
    display: block;
    margin: 3rem 0 4rem;
  }
}
.contents.contents--service .s-glucose .program__round li {
  background: url(/assets/images/value/value-bg.png) no-repeat center;
  width: 40rem;
  height: 40rem;
  background-size: contain;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .program__round li {
    width: 32rem;
    height: 32rem;
    margin: 0 auto 3rem;
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .program__round li:last-child {
    margin-bottom: 0rem;
  }
}
.contents.contents--service .s-glucose .program__txt-area {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  text-align: center;
  width: 100%;
}
.contents.contents--service .s-glucose .program__txt-area-ttl {
  font-size: 3.4rem;
  font-weight: bold;
  color: #fff;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .program__txt-area-ttl {
    font-size: 2.5rem;
    padding-bottom: 1rem;
  }
}
.contents.contents--service .s-glucose .program__txt-area-txt {
  font-size: 2.5rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .program__txt-area-txt {
    font-size: 1.8rem;
  }
}
.contents.contents--service .s-glucose .program__txt-area-txt span {
  color: #0068b7;
  background-color: #fff;
  font-weight: bold;
  padding: 0 0.5rem;
}
.contents.contents--service .s-glucose .program__img {
  margin: 0 auto;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .program__img {
    width: 100%;
  }
}
.contents.contents--service .s-glucose .program__img img {
  width: 100%;
}
.contents.contents--service .s-glucose .features__ttl {
  font-size: 4rem;
  font-weight: bold;
  color: #0068b7;
  text-align: center;
  line-height: 1.4;
  padding-top: 6rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features__ttl {
    font-size: 2rem;
    padding-top: 2.5rem;
  }
}
.contents.contents--service .s-glucose .features__ttl--menu {
  font-size: 5rem;
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features__ttl--menu {
    font-size: 2.5rem;
    padding-top: 4rem;
  }
}
.contents.contents--service .s-glucose .features__list {
  display: flex;
  justify-content: center;
  gap: 2%;
  margin-top: 6rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features__list {
    margin-top: 2.5rem;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
}
.contents.contents--service .s-glucose .features__list li {
  background-color: #f6f6f6;
  border-radius: 50%;
  width: 40rem;
  height: 40rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features__list li {
    width: 25rem;
    height: 25rem;
  }
}
.contents.contents--service .s-glucose .features__txt-area {
  padding-top: 6rem;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features__txt-area {
    padding-top: 3rem;
  }
}
.contents.contents--service .s-glucose .features__txt-area img {
  width: 4rem;
  height: 4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features__txt-area img {
    width: 2rem;
    height: 2rem;
  }
}
.contents.contents--service .s-glucose .features__heading {
  font-size: 3rem;
  line-height: 1.4;
  padding-top: 1.5rem;
  font-weight: bold;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features__heading {
    font-size: 1.5rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.contents.contents--service .s-glucose .features__txt {
  text-align: center;
  font-size: 2.1rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features__txt {
    font-size: 1.4rem;
  }
}
.contents.contents--service .s-glucose .features__bg {
  background-color: #f6f6f6;
  margin-top: 8rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features__bg {
    margin-top: 4rem;
    padding-bottom: 4rem;
  }
}
.contents.contents--service .s-glucose .features__menu {
  display: flex;
  flex-wrap: wrap;
  width: 105rem;
  margin: 0 auto;
  gap: 3rem;
  padding-top: 5rem;
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features__menu {
    display: block;
    width: 100%;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.contents.contents--service .s-glucose .features__menu a {
  width: calc((100% - 6rem) * 1 / 3);
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features__menu a {
    width: 100%;
  }
}
@media screen and (min-width: 1000px) {
  .contents.contents--service .s-glucose .features__menu a:hover .features__menu-arrow {
    transition: all 0.25s;
    transform: translateY(3px);
  }
}
.contents.contents--service .s-glucose .features__menu li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  background-color: #0068b7;
  border-radius: 5rem;
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features__menu li {
    margin-bottom: 1.5rem;
  }
}
.contents.contents--service .s-glucose .features__menu-num {
  font-size: 1.7rem;
  text-align: center;
  line-height: 1;
  padding: 1em 0 1.5rem 1rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features__menu-num {
    font-size: 1.5rem;
    padding: 0.5em 0;
  }
}
.contents.contents--service .s-glucose .features__menu-num span {
  font-size: 4rem;
  font-family: "DIN";
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features__menu-num span {
    font-size: 2.5rem;
  }
}
.contents.contents--service .s-glucose .features__menu-ttl {
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features__menu-ttl {
    font-size: 1.6rem;
  }
}
.contents.contents--service .s-glucose .features__menu-arrow {
  width: 2rem;
  height: 2rem;
  position: relative;
  top: -0.2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features__menu-arrow {
    width: 1rem;
    height: 1rem;
  }
}
.contents.contents--service .s-glucose .features__bg-white {
  background-color: #fff;
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features__bg-white {
    border-radius: 1rem;
  }
}
.contents.contents--service .s-glucose .features-sec01 {
  padding-top: 8rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 {
    padding-top: 2rem;
  }
}
.contents.contents--service .s-glucose .features-sec01__txt-area-ttl {
  text-align: center;
  font-weight: bold;
  color: #0068b7;
  line-height: 1.5;
  margin-bottom: 5rem;
  font-size: 3.3rem;
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01__txt-area-ttl {
    margin-top: 4rem;
    margin-bottom: 3.5rem;
    font-size: 2rem;
  }
}
.contents.contents--service .s-glucose .features-sec01__txt-area {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01__txt-area {
    flex-direction: column-reverse;
    gap: 3.5rem;
    margin-bottom: 4rem;
  }
}
.contents.contents--service .s-glucose .features-sec01__txt-area-wrap {
  font-size: 2.5rem;
  width: 70rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01__txt-area-wrap {
    font-size: 1.8rem;
    width: 100%;
  }
}
.contents.contents--service .s-glucose .features-sec01__asterisk {
  font-size: 2.2rem;
  margin-top: 3rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01__asterisk {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
}
.contents.contents--service .s-glucose .features-sec01__text-area-img {
  width: 25rem;
  height: 25rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01__text-area-img {
    width: 17.5rem;
    height: 17.5rem;
    margin: 0 auto;
  }
}
.contents.contents--service .s-glucose .features-sec01 .doctor {
  border: 1px solid #cccccc;
  border-radius: 2rem;
  padding: 5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .doctor {
    margin-top: 2.5rem;
    padding: 1.5rem;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
  }
}
.contents.contents--service .s-glucose .features-sec01 .doctor__icon {
  width: 25rem;
  height: 25rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .doctor__icon {
    width: 17.5rem;
    height: 17.5rem;
  }
}
.contents.contents--service .s-glucose .features-sec01 .doctor__wrap {
  width: 70rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .doctor__wrap {
    width: 100%;
  }
}
.contents.contents--service .s-glucose .features-sec01 .doctor__name {
  font-size: 3.3rem;
  font-weight: bold;
  color: #0068b7;
  line-height: 1.5;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .doctor__name {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
}
.contents.contents--service .s-glucose .features-sec01 .doctor__name span {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .doctor__name span {
    font-size: 1.75rem;
  }
}
.contents.contents--service .s-glucose .features-sec01 .doctor__post {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .doctor__post {
    font-size: 1.4rem;
    margin-bottom: 3rem;
  }
}
.contents.contents--service .s-glucose .features-sec01 .doctor__txt {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .doctor__txt {
    font-size: 1.8rem;
  }
}
.contents.contents--service .s-glucose .features-sec01 .how-to-movie {
  padding: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .how-to-movie {
    padding: 2.5rem 2rem;
  }
}
.contents.contents--service .s-glucose .features-sec01 .how-to-movie__ttl {
  text-align: center;
  font-size: 3.3rem;
  color: #0068b7;
  line-height: 1.5;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .how-to-movie__ttl {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
}
.contents.contents--service .s-glucose .features-sec01 .how-to-movie__content {
  width: 76rem;
  height: 43rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .how-to-movie__content {
    width: 100%;
    height: 16rem;
  }
}
.contents.contents--service .s-glucose .features-sec01 .how-to-movie__content iframe {
  width: 100%;
  height: 100%;
}
.contents.contents--service .s-glucose .features-sec01 .criterion {
  padding: 7rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .criterion {
    padding: 4rem 0;
  }
}
.contents.contents--service .s-glucose .features-sec01 .criterion__ttl {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .criterion__ttl {
    margin-bottom: 2.5rem;
  }
}
.contents.contents--service .s-glucose .features-sec01 .criterion__img {
  text-align: center;
}
.contents.contents--service .s-glucose .features-sec01 .habits {
  padding: 5rem;
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .habits {
    padding: 3rem 2rem;
    margin-bottom: 4rem;
  }
}
.contents.contents--service .s-glucose .features-sec01 .habits__ttl {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .habits__ttl {
    margin-bottom: 3.5rem;
    white-space: nowrap;
  }
}
.contents.contents--service .s-glucose .features-sec01 .habits__wrap {
  width: 82rem;
  margin: 0 auto;
  font-size: 2.5rem;
  background: none;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .habits__wrap {
    width: 100%;
    font-size: 1.8rem;
  }
}
.contents.contents--service .s-glucose .features-sec01 .habits__wrap p {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .habits__wrap p {
    margin-bottom: 1rem;
  }
}
.contents.contents--service .s-glucose .features-sec01 .habits__items {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .habits__items {
    flex-direction: column;
    gap: 8rem;
    margin-bottom: 2.5rem;
  }
}
.contents.contents--service .s-glucose .features-sec01 .habits__img {
  width: 31.7rem;
  height: 27rem;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .habits__img {
    width: 16rem;
    height: 13.5rem;
  }
}
.contents.contents--service .s-glucose .features-sec01 .habits__item {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  font-size: 2.5rem;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .habits__item {
    gap: 2rem;
    font-size: 1.8rem;
  }
}
.contents.contents--service .s-glucose .features-sec01 .habits__item span {
  font-weight: bold;
  line-height: 1.5;
  color: #000;
}
.contents.contents--service .s-glucose .features-sec01 .habits__item:first-of-type .habits__img {
  width: 27rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .habits__item:first-of-type .habits__img {
    width: 16rem;
  }

  .contents.contents--service .s-glucose .features-sec01 .habits__item:first-of-type .habits__img img {
    width: auto;
  }
}
.contents.contents--service .s-glucose .features-sec01 .habits__item:first-of-type::after {
  content: "";
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="69" height="53" viewBox="0 0 69 53" fill="none"><path d="M3.5 23.1914C1.567 23.1914 0 24.7584 0 26.6914C0 28.6244 1.567 30.1914 3.5 30.1914V23.1914ZM67.9749 29.1663C69.3417 27.7994 69.3417 25.5834 67.9749 24.2165L45.701 1.94267C44.3342 0.575834 42.1181 0.575834 40.7513 1.94267C39.3844 3.3095 39.3844 5.52558 40.7513 6.89242L60.5503 26.6914L40.7513 46.4904C39.3844 47.8572 39.3844 50.0733 40.7513 51.4401C42.1181 52.807 44.3342 52.807 45.701 51.4401L67.9749 29.1663ZM3.5 26.6914V30.1914H65.5V26.6914V23.1914H3.5V26.6914Z" fill="%230068B7"/></svg>');
  width: 6.2rem;
  height: 5.3rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 30%;
  right: 0;
  transform: translate(60%, -50%);
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .habits__item:first-of-type::after {
    width: 3.1rem;
    height: 2.65rem;
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    top: 115%;
  }
}
.contents.contents--service .s-glucose .features-sec01 .habits__tag {
  text-align: center;
}
.contents.contents--service .s-glucose .features-sec01 .habits__tag span {
  font-size: 3rem;
  color: #ee7916;
  background: #fff;
  line-height: 1.5;
  padding: 1.5rem 3rem;
  border-radius: 100px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .habits__tag span {
    font-size: 2rem;
    padding: 0.7rem;
    width: 100%;
    display: inline-block;
  }
}
.contents.contents--service .s-glucose .features-sec01 .advantages {
  padding: 5rem 15rem;
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .advantages {
    padding: 3rem 2rem;
    margin-bottom: 4rem;
  }
}
.contents.contents--service .s-glucose .features-sec01 .advantages__ttl {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .advantages__ttl {
    margin-bottom: 3.5rem;
  }
}
.contents.contents--service .s-glucose .features-sec01 .advantages__list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .advantages__list {
    gap: 3rem;
  }
}
.contents.contents--service .s-glucose .features-sec01 .advantages__heading {
  color: #0068b7;
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  padding-left: 4.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .advantages__heading {
    font-size: 1.7rem;
    padding-left: 3.5rem;
    line-height: 1.5;
    margin-bottom: 0.3rem;
  }
}
.contents.contents--service .s-glucose .features-sec01 .advantages__heading::after {
  content: "";
  width: 3.5rem;
  height: 3.5rem;
  background-image: url('data:image/svg+xml;utf8,<svg width="35" height="36" viewBox="0 0 35 36" fill="none" xmlns="http://www.w3.org/2000/svg"><rect y="0.389648" width="35" height="35" rx="17.5" fill="%230068B7"/><path d="M25.248 14.2635C22.3414 17.4167 19.4316 20.57 16.525 23.7201C15.9088 24.388 14.9565 24.2111 14.3247 23.7201C12.8403 22.5674 11.3559 21.4177 9.87142 20.265C8.29984 19.0482 10.5187 16.9044 12.0716 18.109C13.1297 18.9293 14.1847 19.7496 15.2428 20.57C17.8445 17.7491 20.4461 14.9283 23.0478 12.1075C24.3953 10.6468 26.5893 12.8119 25.248 14.2635Z" fill="white"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .advantages__heading::after {
    width: 3rem;
    height: 3rem;
  }
}
.contents.contents--service .s-glucose .features-sec01 .advantages__item .u-ul-style {
  margin-left: 5rem;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .advantages__item .u-ul-style {
    font-size: 1.7rem;
    margin-left: 0.7rem;
  }
}
.contents.contents--service .s-glucose .features-sec01 .effect__ttl {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .effect__ttl {
    margin-bottom: 3.5rem;
  }
}
.contents.contents--service .s-glucose .features-sec01 .effect__txt {
  font-size: 2.5rem;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .effect__txt {
    font-size: 1.8rem;
    margin-bottom: 3.5rem;
    text-align: left;
  }
}
.contents.contents--service .s-glucose .features-sec01 .effect__txt span {
  color: #0068b7;
  font-weight: 400;
}
.contents.contents--service .s-glucose .features-sec01 .effect__img {
  margin-bottom: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .effect__img {
    margin-bottom: 3rem;
    width: 100%;
  }
}
.contents.contents--service .s-glucose .features-sec01 .effect__source {
  text-align: center;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec01 .effect__source {
    text-align: left;
    font-size: 1.4rem;
  }
}
.contents.contents--service .s-glucose .features-sec02 {
  padding-top: 8rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec02 {
    padding-top: 5rem;
  }
}
.contents.contents--service .s-glucose .features-sec02__top {
  display: flex;
  align-items: center;
  margin-top: 5rem;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec02__top {
    flex-direction: column-reverse;
    margin-top: 3rem;
  }
}
.contents.contents--service .s-glucose .features-sec02__txt-area-ttl {
  color: #0068b7;
  font-weight: bold;
  font-size: 3.3rem;
  line-height: 1.4;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec02__txt-area-ttl {
    font-size: 2rem;
    text-align: center;
    padding-bottom: 3.5rem;
  }
}
.contents.contents--service .s-glucose .features-sec02__txt-area-ttl a {
  text-decoration: underline;
}
.contents.contents--service .s-glucose .features-sec02__txt-area-ttl a:hover {
  opacity: 0.7;
  transition: all 0.25s;
}
.contents.contents--service .s-glucose .features-sec02__txt-area-ttl img {
  width: 2.5rem;
  height: 2.5rem;
  padding-left: 0.5rem;
}
.contents.contents--service .s-glucose .features-sec02__txt-area-txt {
  font-size: 2.3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec02__txt-area-txt {
    font-size: 1.8rem;
  }
}
.contents.contents--service .s-glucose .features-sec02__img-area {
  flex-shrink: 0;
  width: 23%;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec02__img-area {
    width: 70%;
    margin: 0 auto;
    padding-bottom: 3.5rem;
  }
}
.contents.contents--service .s-glucose .features-sec02__img-area img {
  width: 100%;
}
.contents.contents--service .s-glucose .features-sec02__faq-content {
  border: 1px solid #cccccc;
  border-radius: 2rem;
  padding: 4rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec02__faq-content {
    margin-top: 2.5rem;
    padding: 1.5rem;
  }
}
.contents.contents--service .s-glucose .features-sec02__faq-q {
  font-size: 2.8rem;
  font-weight: bold;
  position: relative;
  padding-left: 8rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec02__faq-q {
    padding-left: 4.5rem;
    padding-bottom: 1.5rem;
    font-size: 2rem;
  }
}
.contents.contents--service .s-glucose .features-sec02__faq-q::before {
  position: absolute;
  background: url(/assets/images/service/glucose/q-icon.svg) no-repeat center;
  content: "";
  width: 6.5rem;
  height: 6.5rem;
  background-size: contain;
  left: 0;
  top: -0.4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec02__faq-q::before {
    width: 3.5rem;
    height: 3.5rem;
    top: 0;
  }
}
.contents.contents--service .s-glucose .features-sec02__faq-a {
  font-size: 2.3rem;
  position: relative;
  padding-left: 8rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec02__faq-a {
    padding-left: 4.5rem;
    font-size: 1.8rem;
  }
}
.contents.contents--service .s-glucose .features-sec02__faq-a::before {
  position: absolute;
  background: url(/assets/images/service/glucose/a-icon.svg) no-repeat center;
  content: "";
  width: 6.5rem;
  height: 6.5rem;
  background-size: contain;
  left: 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec02__faq-a::before {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.contents.contents--service .s-glucose .features-sec02__glucose {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec02__glucose {
    margin-top: 2rem;
  }
}
.contents.contents--service .s-glucose .features-sec02__glucose-ttl {
  font-size: 4rem;
  color: #0068b7;
  font-weight: bold;
  border-top: 1px solid #0068b7;
  border-bottom: 1px solid #0068b7;
  text-align: center;
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec02__glucose-ttl {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.contents.contents--service .s-glucose .features-sec02__glucose-flex {
  display: flex;
  gap: 3%;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec02__glucose-flex {
    display: block;
    margin-top: 2rem;
  }
}
.contents.contents--service .s-glucose .features-sec02__glucose-box {
  background-color: #f6fbff;
  border-radius: 2rem;
  padding: 4rem;
  width: 48.5%;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec02__glucose-box {
    width: 100%;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
  }
}
.contents.contents--service .s-glucose .features-sec02__glucose-box-ttl {
  background-color: #0068b7;
  font-size: 2.3rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 5rem;
  padding: 0.5rem 0 0.5rem 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec02__glucose-box-ttl {
    font-size: 1.5rem;
    text-align: center;
    padding: 0.5rem 0;
    margin-bottom: 2.5rem;
  }
}
.contents.contents--service .s-glucose .features-sec02__glucose-box-txt {
  font-size: 2.3rem;
  line-height: 1.4;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec02__glucose-box-txt {
    margin-top: 2.5rem;
    font-size: 1.8rem;
  }
}
.contents.contents--service .s-glucose .features-sec02__glucose-box img {
  width: 100%;
}
.contents.contents--service .s-glucose .features-sec02__glucose-box02 {
  width: 100%;
  background-color: #f6fbff;
  border-radius: 2rem;
  padding: 4rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec02__glucose-box02 {
    margin-top: 0;
    padding: 1.5rem;
  }
}
.contents.contents--service .s-glucose .features-sec02__glucose-box02-txt {
  font-size: 2.3rem;
  line-height: 1.4;
  width: 60%;
  margin-left: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec02__glucose-box02-txt {
    font-size: 1.8rem;
    width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
}
.contents.contents--service .s-glucose .features-sec02__glucose-img {
  width: 56%;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec02__glucose-img {
    width: 100%;
  }
}
.contents.contents--service .s-glucose .features-sec02__glucose-img img {
  width: 100%;
}
.contents.contents--service .s-glucose .features-sec02__glucose-body {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec02__glucose-body {
    display: block;
  }
}
.contents.contents--service .s-glucose .features-sec02__case {
  border-radius: 2rem;
  background-color: #dbeefc;
  margin-top: 4rem;
  padding: 4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec02__case {
    margin-top: 2rem;
    padding: 1.5rem;
  }
}
.contents.contents--service .s-glucose .features-sec02__case-box {
  background-color: #fff;
  border-radius: 2rem;
}
.contents.contents--service .s-glucose .features-sec02__case-container {
  width: 87%;
  margin: 0 auto;
  position: relative;
  height: 24rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec02__case-container {
    width: 90%;
    height: 21rem;
  }
}
.contents.contents--service .s-glucose .features-sec02__case-container::before {
  position: absolute;
  background: url(/assets/images/service/glucose/case-icon.png) no-repeat center;
  content: "";
  width: 21rem;
  height: 21rem;
  left: 0;
  bottom: 0;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec02__case-container::before {
    transform: translateX(-50%);
    left: 50%;
    width: 10rem;
    height: 10rem;
  }
}
.contents.contents--service .s-glucose .features-sec02__case-txt {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  display: inline-block;
  position: relative;
  transform: translate(-50%, -50%);
  left: 62%;
  top: 50%;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec02__case-txt {
    font-size: 1.4rem;
    transform: translateX(-50%);
    left: 50%;
    top: 0;
    padding-top: 1.5rem;
  }
}
.contents.contents--service .s-glucose .features-sec02__case-txt span {
  color: #0068b7;
}
.contents.contents--service .s-glucose .features-sec02__case-ttl {
  font-size: 3.5rem;
  font-weight: bold;
  color: #0068b7;
  text-align: center;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec02__case-ttl {
    font-size: 1.5rem;
    padding: 2.5rem 0 0;
    line-height: 1.5;
  }
}
.contents.contents--service .s-glucose .features-sec02__case-img-area {
  display: flex;
  gap: 3%;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec02__case-img-area {
    display: block;
  }
}
.contents.contents--service .s-glucose .features-sec02__case-img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec02__case-img {
    padding-top: 2.5rem;
    width: 100%;
  }
}
.contents.contents--service .s-glucose .features-sec02__case-img img {
  width: 100%;
}
.contents.contents--service .s-glucose .features-sec03 {
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec03 {
    padding: 5rem 0 2.5rem;
  }
}
.contents.contents--service .s-glucose .features-sec03__ttl {
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  color: #0068b7;
  line-height: 1.5;
  margin-top: 5rem;
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec03__ttl {
    font-size: 2rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
.contents.contents--service .s-glucose .features-sec03__txt {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec03__txt {
    font-size: 1.8rem;
    text-align: left;
    margin-bottom: 4rem;
  }
}
.contents.contents--service .s-glucose .features-sec03__flex {
  display: flex;
  gap: 2%;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec03__flex {
    display: block;
    padding-top: 2.5rem;
  }
}
.contents.contents--service .s-glucose .features-sec03__flex li {
  width: 33.333%;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec03__flex li {
    margin-bottom: 1.7rem;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec03__flex li:last-of-type {
    margin-bottom: 0;
  }
}
.contents.contents--service .s-glucose .features-sec03__flex li img {
  width: 100%;
}
.contents.contents--service .s-glucose .features-sec03 .guidance {
  border-radius: 2rem;
  padding: 5rem;
  margin-bottom: 7rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec03 .guidance {
    padding: 3rem 2rem;
    margin-bottom: 4rem;
  }
}
.contents.contents--service .s-glucose .features-sec03 .guidance__ttl {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec03 .guidance__ttl {
    margin-bottom: 3rem;
  }
}
.contents.contents--service .s-glucose .features-sec03 .guidance__list {
  display: flex;
  justify-content: center;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec03 .guidance__list {
    flex-direction: column;
    gap: 3rem;
  }
}
.contents.contents--service .s-glucose .features-sec03 .guidance__item {
  width: 44rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec03 .guidance__item {
    width: 100%;
    gap: 2rem;
  }
}
.contents.contents--service .s-glucose .features-sec03 .guidance__img {
  width: 35rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec03 .guidance__img {
    width: 80%;
    margin: 0 auto;
  }
}
.contents.contents--service .s-glucose .features-sec03 .guidance__txt {
  font-size: 2.2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec03 .guidance__txt {
    font-size: 1.8rem;
  }
}
.contents.contents--service .s-glucose .features-sec03 .application {
  padding: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec03 .application {
    padding: 3rem 2rem;
  }
}
.contents.contents--service .s-glucose .features-sec03 .application__ttl {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec03 .application__ttl {
    margin-bottom: 2rem;
  }
}
.contents.contents--service .s-glucose .features-sec03 .application__txt {
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .features-sec03 .application__txt {
    font-size: 1.8rem;
    text-align: left;
  }
}
.contents.contents--service .s-glucose .interview__card-wrap {
  margin: 8rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .interview__card-wrap {
    margin: 4rem 0;
  }
}
.contents.contents--service .s-glucose .interview__card {
  display: flex;
  gap: 3%;
  align-items: center;
  padding: 5rem;
  background-color: #eef8ff;
  border-radius: 2rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .interview__card {
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 2.5rem;
  }
  .contents.contents--service .s-glucose .interview__card:nth-of-type(2) {
    flex-direction: column-reverse;
  }
}
.contents.contents--service .s-glucose .interview__card:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .interview__card:last-of-type {
    display: flex;
  }
}
.contents.contents--service .s-glucose .interview__img {
  flex-shrink: 0;
  width: 20%;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .interview__img {
    width: 50%;
    margin: 0 auto;
    padding-bottom: 1.5rem;
  }
}
.contents.contents--service .s-glucose .interview__img img {
  width: 100%;
}
.contents.contents--service .s-glucose .interview__name {
  font-size: 2.6rem;
  color: #fff;
  font-weight: bold;
  background-color: #0068b7;
  border-radius: 5rem;
  padding: 0 2rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .interview__name {
    font-size: 1.5rem;
    padding: 0 1rem;
    margin-bottom: 1rem;
  }
}
.contents.contents--service .s-glucose .interview__ttl {
  font-size: 3.3rem;
  font-weight: bold;
  color: #0068b7;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid #0068b7;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .interview__ttl {
    font-size: 2.1rem;
  }
}
.contents.contents--service .s-glucose .interview__txt {
  font-size: 2.5rem;
  padding-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .interview__txt {
    font-size: 1.8rem;
    padding-top: 1rem;
  }
}
.contents.contents--service .s-glucose .faq__contents {
  border: 1px solid #cccccc;
  border-radius: 2rem;
  padding: 4rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .faq__contents {
    margin-top: 2.5rem;
    padding: 1.5rem;
  }
}
.contents.contents--service .s-glucose .faq__q {
  font-size: 2.8rem;
  font-weight: bold;
  position: relative;
  padding-left: 8rem;
  cursor: pointer;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .faq__q {
    padding-left: 4.5rem;
    font-size: 2rem;
    padding-right: 2rem;
  }
}
.contents.contents--service .s-glucose .faq__q::before {
  position: absolute;
  background: url(/assets/images/service/glucose/q-icon.svg) no-repeat center;
  content: "";
  width: 6.5rem;
  height: 6.5rem;
  background-size: contain;
  left: 0;
  top: -0.4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .faq__q::before {
    width: 3.5rem;
    height: 3.5rem;
    top: 50%;
    transform: translateY(-50%);
  }
}
.contents.contents--service .s-glucose .faq__q::after {
  content: "";
  background: url(/assets/images/service/glucose/q-close.svg) no-repeat center center;
  width: 3rem;
  height: 3rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
  position: absolute;
  background-size: contain;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .faq__q::after {
    width: 2rem;
    height: 2rem;
  }
}
.contents.contents--service .s-glucose .faq__q.is-open::after {
  transform: translateY(-50%) rotate(0);
}
.contents.contents--service .s-glucose .faq__a {
  font-size: 2.3rem;
  position: relative;
  padding-left: 8rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .faq__a {
    padding-left: 4.5rem;
    font-size: 1.8rem;
  }
}
.contents.contents--service .s-glucose .faq__a span {
  font-weight: bold;
  display: block;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .faq__a span {
    margin-top: 3rem;
  }
}
.contents.contents--service .s-glucose .faq__a::before {
  position: absolute;
  background: url(/assets/images/service/glucose/a-icon.svg) no-repeat center;
  content: "";
  width: 6.5rem;
  height: 6.5rem;
  background-size: contain;
  left: 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .faq__a::before {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.contents.contents--service .s-glucose .faq__a-wrapper {
  transition: all 0.3s ease;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  opacity: 0;
}
.contents.contents--service .s-glucose .faq__a-wrapper.is-open {
  margin-top: 3.5rem;
  max-height: 1000px;
  overflow: visible;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .faq__a-wrapper.is-open {
    margin-top: 2.5rem;
  }
}
.contents.contents--service .s-glucose .faq__img {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .faq__img {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}
.contents.contents--service .s-glucose .faq .modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 997;
  justify-content: center;
  align-items: center;
}
.contents.contents--service .s-glucose .faq .modal-overlay.is-open {
  display: flex;
}
.contents.contents--service .s-glucose .faq .modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  max-height: 80vh;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
}
.contents.contents--service .s-glucose .faq .modal-close {
  position: absolute;
  top: -5rem;
  right: 1rem;
  font-size: 5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  z-index: 991;
}
.contents.contents--service .s-glucose .faq .modal-image {
  width: 100%;
  overflow-x: auto;
}
.contents.contents--service .s-glucose .faq .modal-image img {
  width: 50rem;
  height: auto;
  max-width: none;
}
.contents.contents--service .s-glucose .service-btn {
  text-align: center;
  margin-top: 8rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .service-btn {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
}
.contents.contents--service .s-glucose .service-btn span {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-glucose .service-btn span {
    font-size: 1.6rem;
  }
}
.contents.contents--service .s-glucose .service-btn .btn-A a {
  line-height: 1.4;
  font-weight: 400;
}

.contents.contents--service .s-health-mgmt .heading-D {
  font-size: 4rem;
  border-top: 2px solid #0068b7;
  border-bottom: 2px solid #0068b7;
  text-align: center;
  font-weight: bold;
  padding-bottom: 3rem;
  padding-top: 1rem;
  margin-top: 8rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .heading-D {
    font-size: 2.5rem;
    padding-bottom: 1.5rem;
    padding-top: 0.5rem;
    margin-top: 4rem;
    line-height: 1.3;
  }
}
.contents.contents--service .s-health-mgmt .heading-D__en {
  color: #0068b7;
  font-size: 2.5rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .heading-D__en {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .top-message__ttl {
    font-size: 2.5rem;
  }
}
.contents.contents--service .s-health-mgmt .top-message__txt {
  font-size: 2.5rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .top-message__txt {
    font-size: 1.8rem;
    padding-bottom: 1.5rem;
  }
}
.contents.contents--service .s-health-mgmt .top-message__txt:last-of-type {
  padding-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .top-message__txt:last-of-type {
    padding-bottom: 3rem;
  }
}
.contents.contents--service .s-health-mgmt .case {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 40rem;
  margin: 4rem auto 6rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .case {
    width: 80%;
    gap: 1.2rem;
    margin: 2.5rem auto 3rem;
  }
}
.contents.contents--service .s-health-mgmt .case img {
  width: 100%;
}
.contents.contents--service .s-health-mgmt .case__name {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #0068b7;
  background: #dbeefc;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .case__name {
    font-size: 1.5rem;
  }
}
.contents.contents--service .s-health-mgmt .case__ttl {
  color: #0068b7;
  font-size: 2.3rem;
  font-weight: 700;
  text-decoration: underline;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .case__ttl {
    font-size: 1.6rem;
  }
}
.contents.contents--service .s-health-mgmt .case__ttl a {
  transition: 0.25s all;
}
@media (hover: hover) and (pointer: fine) {
  .contents.contents--service .s-health-mgmt .case__ttl:hover a {
    opacity: 0.7;
  }
}
.contents.contents--service .s-health-mgmt .case__tag-wrap {
  display: flex;
  gap: 1.5rem;
}
.contents.contents--service .s-health-mgmt .case__tag {
  width: 50%;
}
.contents.contents--service .s-health-mgmt .case__tag-name {
  color: #0068b7;
  border: 1px solid #0068b7;
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .case__tag-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
}
.contents.contents--service .s-health-mgmt .features__container {
  background: #f5f5f5;
  border-radius: 2rem;
  margin-top: 3rem;
  padding: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .features__container {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
}
.contents.contents--service .s-health-mgmt .features__cont {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .features__cont {
    display: block;
    margin-bottom: -1rem;
  }
}
.contents.contents--service .s-health-mgmt .features__cont:last-of-type {
  margin-bottom: 0;
}
.contents.contents--service .s-health-mgmt .features__icon {
  width: 16.5rem;
  height: 16.5rem;
  border-radius: 100%;
  background: #0068b7;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .features__icon {
    position: relative;
    top: 2.5rem;
    width: 5.5rem;
    height: 5.5rem;
    margin: 0 auto;
  }
}
.contents.contents--service .s-health-mgmt .features__icon-txt {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .features__icon-txt {
    font-size: 1.2rem;
  }
}
.contents.contents--service .s-health-mgmt .features__icon-num {
  font-family: "DIN";
  font-size: 6rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .features__icon-num {
    font-size: 3rem;
  }
}
.contents.contents--service .s-health-mgmt .features__txt-area {
  background: #fff;
  border-radius: 2rem;
  padding: 2.4rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .features__txt-area {
    padding: 3rem 1.5rem 1.5rem 1.5rem;
  }
}
.contents.contents--service .s-health-mgmt .features__cont-ttl {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0068b7;
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .features__cont-ttl {
    font-size: 1.6rem;
  }
}
.contents.contents--service .s-health-mgmt .features__cont-txt {
  position: relative;
  font-size: 2.2rem;
  line-height: 1.4;
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .features__cont-txt {
    font-size: 1.4rem;
    padding-left: 1rem;
  }
}
.contents.contents--service .s-health-mgmt .features__cont-txt::before {
  position: absolute;
  content: "";
  border-left: 1px solid #0068b7;
  left: 0;
  height: 100%;
}
.contents.contents--service .s-health-mgmt .features__cont-txt--blue {
  color: #0068b7;
  font-weight: bold;
}
.contents.contents--service .s-health-mgmt .overview__txt {
  margin: 6rem 0;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .overview__txt {
    margin: 3rem 0;
    font-size: 1.8rem;
  }
}
.contents.contents--service .s-health-mgmt .overview__corp-ttl {
  font-size: 3.3rem;
  color: #0068b7;
  font-weight: bold;
  border-top: 1px solid #0068b7;
  border-bottom: 1px solid #0068b7;
  text-align: center;
  padding: 0.5rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .overview__corp-ttl {
    font-size: 2rem;
    line-height: 1.5;
  }
}
.contents.contents--service .s-health-mgmt .overview__corp-txt {
  margin: 4rem 0 6rem;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .overview__corp-txt {
    font-size: 1.8rem;
    margin: 2.5rem 0 3rem;
  }
}
.contents.contents--service .s-health-mgmt .overview__corp-btn {
  text-align: center;
}
.contents.contents--service .s-health-mgmt .overview__corp-btn a {
  font-weight: normal;
  width: 24vw;
  line-height: 1.4;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .overview__corp-btn a {
    font-size: 1.6rem;
    width: 85%;
  }
}
.contents.contents--service .s-health-mgmt .service__container {
  background: #fff2e6;
  margin: 8rem 0;
  padding: 8rem 15rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__container {
    margin: 3rem 0;
    padding: 3rem 1.5rem;
  }
}
.contents.contents--service .s-health-mgmt .service__link {
  display: flex;
  justify-content: center;
  gap: 11.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__link {
    display: block;
  }
}
.contents.contents--service .s-health-mgmt .service__link li {
  width: 35rem;
  height: 35rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__link li {
    margin-bottom: 1.5rem;
    width: 100%;
    height: 8rem;
  }
}
.contents.contents--service .s-health-mgmt .service__link li a {
  background: #fff;
  border-radius: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__link li a {
    border-radius: 5rem;
    font-size: 1.4rem;
    padding-top: 0;
    padding-left: 2rem;
  }
}
.contents.contents--service .s-health-mgmt .service__link li a::before {
  position: absolute;
  content: "";
  transform: translateX(-50%);
  top: 2.5rem;
  left: 50%;
  width: 9rem;
  height: 9rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__link li a::before {
    width: 4.5rem;
    height: 4.5rem;
    transform: translate(0, -50%);
    left: 1.5rem;
    top: 50%;
  }
}
.contents.contents--service .s-health-mgmt .service__link li a::after {
  position: absolute;
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2233%22%20height%3D%2218%22%20viewBox%3D%220%200%2033%2018%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M31.001%201.80664L16.5004%2016.3072L1.99837%201.80522%22%20stroke%3D%22%23EE7916%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E") no-repeat center;
  background-size: contain;
  width: 2.5rem;
  height: 2.5rem;
  transform: translate(-50%, -50%);
  top: 88%;
  left: 50%;
  transition: 0.25s;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__link li a::after {
    width: 1.5rem;
    height: 1.5rem;
    transform: translate(0, -50%);
    top: 50%;
    left: auto;
    right: 1.5rem;
  }
}
@media screen and (min-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__link li a:hover::after {
    top: 90%;
  }
}
.contents.contents--service .s-health-mgmt .service__link--first::before {
  background: url("/assets/images/service/health-mgmt/service-first-icon.svg") no-repeat center;
  background-size: contain;
}
.contents.contents--service .s-health-mgmt .service__link--top::before {
  background: url("/assets/images/service/health-mgmt/service-top-icon.svg") no-repeat center;
  background-size: contain;
  width: 8rem;
}
.contents.contents--service .s-health-mgmt .service__link--deep::before {
  background: url("/assets/images/service/health-mgmt/service-deep-icon.svg") no-repeat center;
  background-size: contain;
}
.contents.contents--service .s-health-mgmt .service__cont {
  margin-top: 10rem;
  background: #fff;
  border-radius: 2rem;
  padding: 6rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__cont {
    margin-top: 4rem;
    padding: 3rem 0;
  }
}
.contents.contents--service .s-health-mgmt .service__cont-wrap {
  width: 90%;
  margin: 0 auto;
}
.contents.contents--service .s-health-mgmt .service__cont-icon {
  width: 10%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__cont-icon {
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto;
  }
}
.contents.contents--service .s-health-mgmt .service__cont-ttl {
  position: relative;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  padding: 2rem 0 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__cont-ttl {
    font-size: 2.2rem;
    padding: 1rem 0 1.5rem;
  }
}
.contents.contents--service .s-health-mgmt .service__cont-ttl::after {
  position: absolute;
  content: "";
  border-bottom: 3px solid #ee7916;
  width: 10rem;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__cont-ttl::after {
    width: 5rem;
  }
}
.contents.contents--service .s-health-mgmt .service__cont-txt {
  font-size: 2.4rem;
  text-align: center;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__cont-txt {
    font-size: 1.8rem;
    padding-top: 2.5rem;
  }
}
.contents.contents--service .s-health-mgmt .service__cont-txt span {
  color: #ee7916;
  font-weight: bold;
}
.contents.contents--service .s-health-mgmt .service__cont-img-wrap {
  margin-top: 5rem;
  padding: 3rem;
  border: 0.25vw solid rgba(238, 238, 238, 0.9333333333);
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__cont-img-wrap {
    margin-top: 2.5rem;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2.5px solid rgba(238, 238, 238, 0.9333333333);
  }
}
.contents.contents--service .s-health-mgmt .service__cont-img {
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__cont-img {
    padding-bottom: 1.5rem;
    overflow-x: scroll;
    scrollbar-color: #0068b7 rgba(238, 238, 238, 0.9333333333);
  }
}
.contents.contents--service .s-health-mgmt .service__cont-img img {
  width: 90%;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__cont-img img {
    width: auto;
    max-width: 600px;
  }
}
.contents.contents--service .s-health-mgmt .service__icon {
  display: flex;
  gap: 2rem;
  margin-top: 9rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__icon {
    display: block;
    margin-top: 3rem;
    margin-left: 1rem;
  }
}
.contents.contents--service .s-health-mgmt .service__icon li {
  position: relative;
  border: 0.25vw solid rgba(238, 238, 238, 0.9333333333);
  border-radius: 2rem;
  width: 20%;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__icon li {
    border: 2.5px solid rgba(238, 238, 238, 0.9333333333);
    border-radius: 1rem;
    width: 90%;
    margin: 0 auto 1.7rem;
  }
}
.contents.contents--service .s-health-mgmt .service__icon li::after {
  position: absolute;
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2252%22%20height%3D%2224%22%20viewBox%3D%220%200%2052%2024%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M51.0607%2013.0607C51.6464%2012.4749%2051.6464%2011.5251%2051.0607%2010.9393L41.5147%201.3934C40.9289%200.807615%2039.9792%200.807615%2039.3934%201.3934C38.8076%201.97919%2038.8076%202.92894%2039.3934%203.51472L47.8787%2012L39.3934%2020.4853C38.8076%2021.0711%2038.8076%2022.0208%2039.3934%2022.6066C39.9792%2023.1924%2040.9289%2023.1924%2041.5147%2022.6066L51.0607%2013.0607ZM-1.31134e-07%2013.5L50%2013.5L50%2010.5L1.31134e-07%2010.5L-1.31134e-07%2013.5Z%22%20fill%3D%22%23CCCCCC%22%2F%3E%3C%2Fsvg%3E") no-repeat center;
  background-size: contain;
  width: 5rem;
  height: 2rem;
  transform: translateY(-50%);
  top: 50%;
  right: -5rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__icon li::after {
    transform: translate(-50%, 0) rotate(90deg);
    top: auto;
    bottom: -1.5rem;
    right: auto;
    left: 50%;
    width: 2rem;
    height: 1rem;
  }
}
.contents.contents--service .s-health-mgmt .service__icon li:last-of-type::after {
  background: none;
}
.contents.contents--service .s-health-mgmt .service__icon--top li {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__icon--top li {
    width: 100%;
  }
}
.contents.contents--service .s-health-mgmt .service__icon-num {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  top: -5rem;
  font-family: "DIN";
  font-size: 3.5rem;
  color: #ee7916;
  text-align: center;
  background: #fff;
  border: 0.2vw solid #ee7916;
  border-radius: 100%;
  width: 7rem;
  height: 7rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__icon-num {
    transform: translate(0, -50%);
    left: -2rem;
    top: 50%;
    font-size: 2rem;
    width: 4rem;
    height: 4rem;
    border: 1.5px solid #ee7916;
  }
}
.contents.contents--service .s-health-mgmt .service__icon-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 5rem 1rem 2rem 1rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__icon-body {
    flex-direction: row;
    justify-content: left;
    align-items: center;
    padding: 1rem 2rem 1rem 4rem;
    gap: 10%;
  }
}
.contents.contents--service .s-health-mgmt .service__icon-body--top {
  padding: 3rem 7rem 5rem 7rem;
  gap: 7%;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__icon-body--top {
    padding: 1.5rem;
  }
}
.contents.contents--service .s-health-mgmt .service__icon-txt {
  font-size: 1.8rem;
  font-weight: bold;
  padding-top: 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__icon-txt {
    font-size: 1.6rem;
    text-align: left;
    padding-top: 0;
    line-height: 1.4;
  }
}
.contents.contents--service .s-health-mgmt .service__icon-txt--top {
  padding-top: 0;
  padding-left: 3rem;
  text-align: left;
  position: relative;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__icon-txt--top {
    font-size: 1.2rem;
    padding-left: 1.5rem;
  }
}
.contents.contents--service .s-health-mgmt .service__icon-txt--top::before {
  position: absolute;
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2223%22%20height%3D%2220%22%20viewBox%3D%220%200%2023%2020%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M16.7334%201.01855H1.30566V18.4404H18.7275V11.995%22%20stroke%3D%22%23EE7916%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M21.6945%202.57861L11.1185%2013.1546L5.32031%207.35643%22%20stroke%3D%22%23EE7916%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E") no-repeat center;
  background-size: contain;
  width: 2rem;
  height: 2rem;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__icon-txt--top::before {
    width: 1rem;
    height: 1rem;
  }
}
.contents.contents--service .s-health-mgmt .service__icon-txt-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  margin: 0 auto;
}
.contents.contents--service .s-health-mgmt .service__icon-btn {
  text-align: center;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__icon-btn {
    margin-top: 2.5rem;
  }
}
.contents.contents--service .s-health-mgmt .service__icon-btn a {
  width: 24vw;
  font-size: 2.5rem;
  font-weight: normal;
  padding: 2rem 6rem 2rem 4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__icon-btn a {
    width: 95%;
    font-size: 1.6rem;
    padding: 1rem 6rem 1rem 4rem;
  }
}
.contents.contents--service .s-health-mgmt .service__icon-img {
  width: 40%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__icon-img {
    width: 25%;
    flex-shrink: 0;
    margin: 0;
  }
}
.contents.contents--service .s-health-mgmt .service__icon-img-top {
  width: 45%;
  margin: 0 auto;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__icon-img-top {
    width: 25%;
    margin-bottom: 0;
    flex-shrink: 0;
  }
}
.contents.contents--service .s-health-mgmt .service__icon-img-top:last-of-type {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .service__icon-img-top:last-of-type {
    margin-bottom: 0;
  }
}
.contents.contents--service .s-health-mgmt .contact__container {
  background-color: #f5f5f5;
  border-radius: 2rem;
  padding: 7rem 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .contact__container {
    padding: 3.5rem 1.5rem;
  }
}
.contents.contents--service .s-health-mgmt .contact__txt {
  font-size: 2.5rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .contact__txt {
    font-size: 1.8rem;
  }
}
.contents.contents--service .s-health-mgmt .contact__btn {
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .contact__btn {
    margin-top: 2.5rem;
  }
}
.contents.contents--service .s-health-mgmt .contact__btn a {
  font-weight: normal;
  text-align: center;
  width: 24vw;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .contact__btn a {
    width: 90%;
  }
}
.contents.contents--service .s-health-mgmt .contact__btn span {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-health-mgmt .contact__btn span {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .top-message__ttl {
    font-size: 2.5rem;
  }
}
.contents.contents--service .s-jpp .top-message__txt {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .top-message__txt {
    font-size: 1.8rem;
  }
}
.contents.contents--service .s-jpp .top-cont__wrap {
  display: flex;
  gap: 2rem;
  margin: 6rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .top-cont__wrap {
    display: block;
    margin: 3rem 0;
  }
}
.contents.contents--service .s-jpp .top-cont__cont {
  width: 50%;
  border: 0.3vw solid rgba(238, 238, 238, 0.9333333333);
  border-radius: 2rem;
  padding: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .top-cont__cont {
    width: 100%;
    border: 2px solid rgba(238, 238, 238, 0.9333333333);
    border-radius: 1rem;
    margin-bottom: 2rem;
    padding: 2.5rem 2rem;
  }
}
.contents.contents--service .s-jpp .top-cont__cont-icon {
  flex-shrink: 0;
  width: 20%;
}
.contents.contents--service .s-jpp .top-cont__cont-ttl {
  font-size: 4.4rem;
  font-weight: bold;
  color: #0068b7;
  border-top: 2px solid #0068b7;
  border-bottom: 2px solid #0068b7;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .top-cont__cont-ttl {
    font-size: 2.5rem;
  }
}
.contents.contents--service .s-jpp .top-cont__cont-sub-ttl {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  padding: 3rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .top-cont__cont-sub-ttl {
    font-size: 2rem;
    padding: 1rem 0;
  }
}
.contents.contents--service .s-jpp .top-cont__cont-list li {
  position: relative;
  font-size: 2rem;
  margin-bottom: 1rem;
  padding-left: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .top-cont__cont-list li {
    font-size: 1.5rem;
    padding-left: 2rem;
  }
}
.contents.contents--service .s-jpp .top-cont__cont-list li::before {
  position: absolute;
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2223%22%20height%3D%2220%22%20viewBox%3D%220%200%2023%2020%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M16.7334%201.01855H1.30566V18.4404H18.7275V11.995%22%20stroke%3D%22%230068B7%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M21.6945%202.57861L11.1185%2013.1546L5.32031%207.35643%22%20stroke%3D%22%230068B7%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E") no-repeat center;
  background-size: contain;
  width: 2rem;
  height: 2rem;
  top: 1rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .top-cont__cont-list li::before {
    top: 0.8rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}
.contents.contents--service .s-jpp .top-cont__ttl-area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .top-cont__ttl-area {
    gap: 2rem;
  }
}
.contents.contents--service .s-jpp .topics .heading-A {
  font-weight: 100;
  color: #0068b7;
  text-align: center;
}
.contents.contents--service .s-jpp .topics .heading-A__ja {
  font-weight: 400;
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .topics .heading-A__ja {
    font-size: 1.8rem;
  }
}
.contents.contents--service .s-jpp .topics__container {
  background: #f5f5f5;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .topics__container {
    padding: 3rem 0;
  }
}
.contents.contents--service .s-jpp .topics__wrap {
  width: 85%;
  display: flex;
  align-items: center;
  gap: 10rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .topics__wrap {
    display: block;
  }
}
.contents.contents--service .s-jpp .topics__ttl-area {
  flex-shrink: 0;
}
.contents.contents--service .s-jpp .topics__data-area {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .topics__data-area {
    gap: 1rem;
  }
}
.contents.contents--service .s-jpp .topics__cate {
  font-size: 1.4rem;
  text-align: center;
  color: #0068b7;
  background: #fff;
  border-radius: 5rem;
  width: 20%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .topics__cate {
    width: 45%;
  }
}
.contents.contents--service .s-jpp .topics__data {
  font-size: 2rem;
  font-weight: bold;
  color: #0068b7;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .topics__data {
    font-size: 1.5rem;
  }
}
.contents.contents--service .s-jpp .topics__cont {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .topics__cont {
    margin-bottom: 2rem;
  }
}
.contents.contents--service .s-jpp .topics__cont:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .topics__cont:last-of-type {
    margin-bottom: 3rem;
  }
}
.contents.contents--service .s-jpp .topics__cont-ttl {
  color: #0068b7;
  font-size: 2rem;
  padding-top: 1rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .topics__cont-ttl {
    font-size: 1.6rem;
  }
}
.contents.contents--service .s-jpp .topics__cont-ttl a {
  transition: 0.25s;
  word-break: inherit;
  overflow-wrap: break-word;
}
.contents.contents--service .s-jpp .topics__cont-ttl a:hover {
  opacity: 0.7;
}
.contents.contents--service .s-jpp .topics__cont-ttl span {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .topics .btn-A {
    text-align: center;
  }
}
.contents.contents--service .s-jpp .overview__cont {
  border: 5px solid #dbeefc;
  border-radius: 2rem;
  margin: 6rem 0 12rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .overview__cont {
    margin: 3rem 0 5rem;
  }
}
.contents.contents--service .s-jpp .overview__top {
  padding: 5rem 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .overview__top {
    padding: 1.5rem;
  }
}
.contents.contents--service .s-jpp .overview__top::after {
  position: absolute;
  content: "";
  box-sizing: border-box;
  border: 6rem solid transparent;
  border-left: 4rem solid #fff;
  transform: translateX(-50%) rotate(90deg);
  left: 50%;
  bottom: -10.5rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .overview__top::after {
    border: 3rem solid transparent;
    border-left: 2rem solid #fff;
    bottom: -5.5rem;
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .overview__img {
    overflow-x: scroll;
    scrollbar-color: #0068b7 rgba(238, 238, 238, 0.9333333333);
    padding-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .overview__img img {
    max-width: 1020px;
  }
}
.contents.contents--service .s-jpp .overview__bottom {
  background: #dbeefc;
  position: relative;
}
.contents.contents--service .s-jpp .overview__bottom::before {
  position: absolute;
  content: "";
  background: url("/assets/images/service/jpp/overview-icon.svg") no-repeat center;
  background-size: contain;
  width: 27.4rem;
  height: 12.5rem;
  left: 4rem;
  bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .overview__bottom::before {
    width: 21rem;
    height: 9.6rem;
    bottom: -0.5rem;
    transform: translateX(-50%);
    left: 50%;
  }
}
.contents.contents--service .s-jpp .overview__txt-area {
  text-align: center;
  padding: 7rem 0 4rem 12rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .overview__txt-area {
    padding: 4rem 1.5rem 11rem 1.5rem;
  }
}
.contents.contents--service .s-jpp .overview__ttl {
  font-size: 3rem;
  font-weight: bold;
  color: #0068b7;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .overview__ttl {
    font-size: 2.2rem;
  }
}
.contents.contents--service .s-jpp .overview__txt {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .overview__txt {
    font-size: 1.8rem;
  }
}
.contents.contents--service .s-jpp .feature__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem 5rem;
  margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .feature__wrap {
    display: block;
    margin-top: 3rem;
  }
}
.contents.contents--service .s-jpp .feature__cont {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .feature__cont {
    width: 100%;
  }
}
.contents.contents--service .s-jpp .feature__cont-ttl {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0068b7;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .feature__cont-ttl {
    font-size: 1.6rem;
  }
}
.contents.contents--service .s-jpp .feature__cont-list {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .feature__cont-list {
    margin-top: 0.5rem;
  }
}
.contents.contents--service .s-jpp .feature__cont-list li {
  position: relative;
  font-size: 2.2rem;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .feature__cont-list li {
    font-size: 1.4rem;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
  }
}
.contents.contents--service .s-jpp .feature__cont-list li::before {
  position: absolute;
  content: "";
  border-left: 1px solid #0068b7;
  height: 100%;
  left: 0;
}
.contents.contents--service .s-jpp .feature__img {
  text-align: center;
  margin-top: 7rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .feature__img {
    margin-top: 2.5rem;
  }
}
.contents.contents--service .s-jpp .news__list {
  margin: 6rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .news__list {
    margin: 3rem 0;
  }
}
.contents.contents--service .s-jpp .news__list li {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .news__list li {
    display: block;
  }
}
.contents.contents--service .s-jpp .news__data-area {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 25%;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .news__data-area {
    width: 65%;
    gap: 1rem;
  }
}
.contents.contents--service .s-jpp .news__cate {
  flex-shrink: 0;
  color: #0068b7;
  font-size: 1.4rem;
  border: 1px solid #0068b7;
  border-radius: 5rem;
  width: 45%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .news__cate {
    width: 60%;
  }
}
.contents.contents--service .s-jpp .news__data {
  font-size: 2rem;
  font-weight: bold;
  color: #0068b7;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .news__data {
    font-size: 1.5rem;
  }
}
.contents.contents--service .s-jpp .news__ttl {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .news__ttl {
    font-size: 1.6rem;
    padding-top: 1rem;
  }
}
.contents.contents--service .s-jpp .news__ttl a {
  transition: 0.25s;
  word-break: inherit;
  overflow-wrap: break-word;
}
.contents.contents--service .s-jpp .news__ttl a:hover {
  opacity: 0.7;
}
.contents.contents--service .s-jpp .news__ttl span {
  text-decoration: underline;
}
.contents.contents--service .s-jpp .news__btn {
  text-align: center;
}
.contents.contents--service .s-jpp .news__btn a {
  width: 24vw;
  padding: 2rem 6rem 2rem 4rem;
  font-size: 2.5rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .news__btn a {
    width: 85%;
    font-size: 1.6rem;
    padding: 1rem 6rem 1rem 4rem;
  }
}
.contents.contents--service .s-jpp .contact {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .contact {
    margin-top: 4rem;
  }
}
.contents.contents--service .s-jpp .contact__container {
  background: #f5f5f5;
  border-radius: 2rem;
  padding: 7rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .contact__container {
    padding: 3rem 0;
    border-radius: 1rem;
  }
}
.contents.contents--service .s-jpp .contact__ttl {
  font-size: 2.5rem;
  font-weight: normal;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .contact__ttl {
    font-size: 1.8rem;
  }
}
.contents.contents--service .s-jpp .contact__btn {
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .contact__btn {
    margin-top: 2.5rem;
  }
}
.contents.contents--service .s-jpp .contact__btn a {
  font-weight: normal;
  text-align: center;
  width: 24vw;
  line-height: 1.4;
  border-radius: 6rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .contact__btn a {
    width: 90%;
  }
}
.contents.contents--service .s-jpp .contact__btn span {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp .contact__btn span {
    font-size: 1.6rem;
  }
}

.contents.contents--service .s-jpp-en .top-cont__cont-ttl {
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp-en .top-cont__cont-ttl {
    font-size: 2.3rem;
  }
}
.contents.contents--service .s-jpp-en .overview__txt-area {
  padding: 7rem 3rem 4rem 30rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp-en .overview__txt-area {
    padding: 4rem 1.5rem 11rem 1.5rem;
  }
}
.contents.contents--service .s-jpp-en .contact__btn a {
  width: 26vw;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-jpp-en .contact__btn a {
    width: 90%;
  }
}

.contents.contents--service .s-movacal .heading-D {
  font-size: 4rem;
  border-top: 2px solid #0068b7;
  border-bottom: 2px solid #0068b7;
  text-align: center;
  font-weight: bold;
  padding-bottom: 3rem;
  padding-top: 1rem;
  margin-top: 8rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-movacal .heading-D {
    font-size: 2.5rem;
    padding-bottom: 1.5rem;
    padding-top: 0.5rem;
    margin-top: 4rem;
    line-height: 1.3;
  }
}
.contents.contents--service .s-movacal .heading-D__en {
  color: #0068b7;
  font-size: 2.5rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-movacal .heading-D__en {
    font-size: 1.7rem;
  }
}
.contents.contents--service .s-movacal .movacal__txt {
  margin-top: 6rem;
  text-align: center;
  line-height: 1.6;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-movacal .movacal__txt {
    margin-top: 3rem;
    font-size: 1.8rem;
  }
}
.contents.contents--service .s-movacal .movacal__list {
  display: flex;
  justify-content: center;
  gap: 8rem;
  padding: 6rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-movacal .movacal__list {
    flex-direction: column;
    gap: 3rem;
    margin: 0 auto;
    padding: 3rem 0 1rem;
    width: 90%;
  }
}
.contents.contents--service .s-movacal .movacal-nav a {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-movacal .movacal-nav a {
    flex-direction: row;
    gap: 1.5rem;
  }
}
.contents.contents--service .s-movacal .movacal-nav__img {
  margin: 0 auto;
  width: 30.1rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-movacal .movacal-nav__img {
    width: 30%;
  }
}
.contents.contents--service .s-movacal .movacal-nav figure {
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-movacal .movacal-nav figure {
    width: 70%;
  }
}
.contents.contents--service .s-movacal .movacal-nav figure::after {
  position: absolute;
  width: 3.3rem;
  height: 1.9rem;
  background: url("/assets/images/service/movacal/nav-icon.png") no-repeat;
  background-size: contain;
  bottom: -6rem;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  transition: 0.25s ease;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-movacal .movacal-nav figure::after {
    width: 1.8rem;
    height: 1rem;
    bottom: 0;
  }
}
.contents.contents--service .s-movacal .movacal-nav figure img {
  width: auto;
  height: 4.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-movacal .movacal-nav figure img {
    height: 2.5rem;
  }
}
.contents.contents--service .s-movacal .movacal-nav figcaption {
  padding-top: 1rem;
  line-height: 1.2;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-movacal .movacal-nav figcaption {
    padding-top: 0.5rem;
    font-size: 1.4rem;
  }
}
.contents.contents--service .s-movacal .movacal-nav:hover figure::after {
  transform: translate(-50%, 52.5%);
}
.contents.contents--service .s-movacal .movacal-box {
  margin-top: 6rem;
  padding: 6rem 17rem 5rem;
  background-color: #f1fbff;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-movacal .movacal-box {
    margin-top: 3rem;
    padding: 1.5rem 1.5rem 2rem;
  }
}
.contents.contents--service .s-movacal .movacal-box__head {
  position: relative;
  text-align: right;
}
.contents.contents--service .s-movacal .movacal-box__thumbnail {
  position: absolute;
  width: 53rem;
  height: auto;
  top: 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-movacal .movacal-box__thumbnail {
    position: static;
    width: 100%;
  }
}
.contents.contents--service .s-movacal .movacal-box__thumbnail img {
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-movacal .movacal-box__thumbnail img {
    border-radius: 1rem 1rem 0 0;
  }
}
.contents.contents--service .s-movacal .movacal-box__detail {
  display: inline-block;
  margin-top: 9rem;
  padding: 9.3rem 5rem;
  min-width: 78.6rem;
  background-color: #fff;
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-movacal .movacal-box__detail {
    margin-top: 0;
    padding: 2rem 1rem;
    min-width: 100%;
    border-radius: 0 0 1rem 1rem;
  }
}
.contents.contents--service .s-movacal .movacal-box__detail .u-align-c img {
  width: auto;
  height: 6.1rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-movacal .movacal-box__detail .u-align-c img {
    margin: 0 auto;
    width: 80%;
    height: auto;
  }
}
.contents.contents--service .s-movacal .movacal-box__txt {
  margin-top: 3rem;
  line-height: 1.4;
  text-align: center;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-movacal .movacal-box__txt {
    margin-top: 1.5rem;
    font-size: 1.35rem;
  }
}
.contents.contents--service .s-movacal .movacal-box--green {
  background-color: #f4fbf2;
}
.contents.contents--service .s-movacal .movacal-box--green .movacal-function__ttl {
  color: #58a100;
}
.contents.contents--service .s-movacal .movacal-box--green .movacal-function__txt {
  border-left: 1.2px solid #58a100;
}
.contents.contents--service .s-movacal .movacal-box--pink {
  background-color: #fff4ff;
}
.contents.contents--service .s-movacal .movacal-box--pink .movacal-function__ttl {
  color: #ed516b;
}
.contents.contents--service .s-movacal .movacal-box--pink .movacal-function__txt {
  border-left: 1.2px solid #ed516b;
}
.contents.contents--service .s-movacal .movacal-box--yellow {
  background-color: #fffeed;
}
.contents.contents--service .s-movacal .movacal-box--yellow .movacal-function__ttl {
  color: #dccc00;
}
.contents.contents--service .s-movacal .movacal-box--yellow .movacal-function__txt {
  border-left: 1.2px solid #dccc00;
}
.contents.contents--service .s-movacal .movacal-function {
  margin: 5rem 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-movacal .movacal-function {
    margin: 2.5rem 0;
  }
}
.contents.contents--service .s-movacal .movacal-function__box {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-movacal .movacal-function__box {
    align-items: flex-start;
    gap: 1.5rem;
  }
}
.contents.contents--service .s-movacal .movacal-function__box dt {
  position: relative;
  width: 19.5rem;
  height: 19.5rem;
  background-color: #fff;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-movacal .movacal-function__box dt {
    width: 8rem;
    height: 8rem;
  }
}
.contents.contents--service .s-movacal .movacal-function__box dd {
  width: calc(100% - 19.5rem - 2rem);
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-movacal .movacal-function__box dd {
    width: calc(100% - 8rem - 0.75rem);
  }
}
.contents.contents--service .s-movacal .movacal-function__img {
  position: absolute;
  width: auto;
  height: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contents.contents--service .s-movacal .movacal-function__ttl {
  color: #0068b7;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-movacal .movacal-function__ttl {
    line-height: 1.4;
    font-size: 1.6rem;
  }
}
.contents.contents--service .s-movacal .movacal-function__txt {
  margin-top: 1rem;
  padding-left: 2.4rem;
  line-height: 1.4;
  font-size: 2.2rem;
  border-left: 1.2px solid #0068b7;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-movacal .movacal-function__txt {
    margin-top: 0.5rem;
    padding-left: 1.2rem;
    font-size: 1.4rem;
  }
}
.contents.contents--service .s-movacal .movacal-function__btn {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  gap: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-movacal .movacal-function__btn {
    grid-template-columns: auto;
    gap: 2rem;
  }
}
.contents.contents--service .s-movacal .movacal-function__btn .btn-A a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 9rem;
  height: 100%;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-movacal .movacal-function__btn .btn-A a {
    padding: 1rem 5rem;
    height: 5.5rem;
  }
}
.contents.contents--service .s-movacal .support-office {
  margin: 6rem auto 8rem;
  width: 61.8rem;
  height: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-movacal .support-office {
    margin: 3rem 0 4rem;
    width: 34.5rem;
  }
}
.contents.contents--service .s-movacal .support-office a {
  transition: 0.25s;
}
.contents.contents--service .s-movacal .support-office a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .top-message__ttl {
    font-size: 2.5rem;
  }
}
.contents.contents--service .s-cohort .top-message__txt {
  font-size: 2.5rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .top-message__txt {
    font-size: 1.8rem;
    padding-bottom: 1.5rem;
  }
}
.contents.contents--service .s-cohort .research {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .research {
    margin-top: 1rem;
  }
}
.contents.contents--service .s-cohort .research__container {
  background: #dbeefc;
  border-radius: 2rem;
  padding: 5rem 14rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .research__container {
    border-radius: 1rem;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
  }
}
.contents.contents--service .s-cohort .research__wrap {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .research__wrap {
    display: block;
  }
}
.contents.contents--service .s-cohort .research__ttl {
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  background: #0068b7;
  border-radius: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .research__ttl {
    font-size: 1.7rem;
  }
}
.contents.contents--service .s-cohort .research__cont {
  background: #fff;
  border-radius: 2rem;
  margin: 2rem 0;
  padding: 2rem 3rem;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .research__cont {
    border-radius: 1rem;
    width: 100%;
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .research__cont:last-of-type {
    margin: 2rem 0 1rem;
  }
}
.contents.contents--service .s-cohort .research__cont-ttl {
  font-size: 2.1rem;
  font-weight: bold;
  text-align: center;
  background: #eeeeee;
  border-radius: 5rem;
  margin-bottom: 2.5rem;
  line-height: 1.3;
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .research__cont-ttl {
    font-size: 1.6rem;
    line-height: 1.4;
    padding: 0.5rem 0;
    margin-bottom: 1.5rem;
  }
}
.contents.contents--service .s-cohort .research__flex {
  display: flex;
  align-items: baseline;
  gap: 2.5rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .research__flex {
    gap: 1.6rem;
  }
}
.contents.contents--service .s-cohort .research__icon {
  width: 11%;
  flex-shrink: 0;
}
.contents.contents--service .s-cohort .research__list-ttl {
  color: #0068b7;
  font-size: 2rem;
  font-weight: bold;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .research__list-ttl {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
.contents.contents--service .s-cohort .research__list li {
  position: relative;
  font-size: 1.8rem;
  line-height: 1.3;
  margin-bottom: 1rem;
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .research__list li {
    font-size: 1.4rem;
  }
}
.contents.contents--service .s-cohort .research__list li::before {
  position: absolute;
  content: "";
  border-left: 1px solid #0068b7;
  height: 100%;
  left: 0;
}
.contents.contents--service .s-cohort .research__notice {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .research__notice {
    font-size: 1.4rem;
  }
}
.contents.contents--service .s-cohort .feature__container {
  background: #dbeefc;
  border-radius: 2rem;
  margin: 6rem 0;
  padding: 5rem 14rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .feature__container {
    border-radius: 1rem;
    margin: 3rem 0;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
  }
}
.contents.contents--service .s-cohort .feature__icon {
  width: 16.5rem;
  height: 16.5rem;
  border-radius: 100%;
  background: #0068b7;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .feature__icon {
    position: absolute;
    top: -0.8rem;
    left: 4rem;
    width: 5.5rem;
    height: 5.5rem;
  }
}
.contents.contents--service .s-cohort .feature__icon-txt {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .feature__icon-txt {
    font-size: 1.2rem;
  }
}
.contents.contents--service .s-cohort .feature__icon-num {
  font-family: "DIN";
  font-size: 6rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .feature__icon-num {
    font-size: 3rem;
  }
}
.contents.contents--service .s-cohort .feature__flex {
  background: #fff;
  border-radius: 2rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .feature__flex {
    border-radius: 1rem;
    padding: 5rem 1.5rem 1.5rem 1.5rem;
    gap: 1.5rem;
  }
}
.contents.contents--service .s-cohort .feature__cont {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .feature__cont {
    display: block;
    position: relative;
    margin-bottom: 2rem;
  }
}
.contents.contents--service .s-cohort .feature__cont:last-of-type {
  margin-bottom: 0;
}
.contents.contents--service .s-cohort .feature__cont-notice {
  padding-top: 1rem;
  font-size: 2.2rem;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .feature__cont-notice {
    font-size: 1.4rem;
  }
}
.contents.contents--service .s-cohort .feature__ttl {
  color: #0068b7;
  font-size: 2.5rem;
  font-weight: bold;
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .feature__ttl {
    font-size: 1.6rem;
    text-align: right;
    position: absolute;
    transform: translateX(-50%);
    left: 54%;
    top: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .feature__ttl--02 {
    left: 42%;
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .feature__ttl--03 {
    left: 49%;
  }
}
.contents.contents--service .s-cohort .feature__list li {
  position: relative;
  font-size: 2.2rem;
  line-height: 1.3;
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .feature__list li {
    font-size: 1.4rem;
    padding-left: 1rem;
  }
}
.contents.contents--service .s-cohort .feature__list li::before {
  position: absolute;
  content: "";
  border-left: 1px solid #0068b7;
  height: 100%;
  left: 0;
}
.contents.contents--service .s-cohort .feature__img {
  flex-shrink: 0;
  width: 19%;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .feature__img {
    width: 26%;
  }
}
.contents.contents--service .s-cohort .case__ttl {
  color: #0068b7;
  font-size: 3.3rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .case__ttl {
    font-size: 2.1rem;
  }
}
.contents.contents--service .s-cohort .case-data {
  padding: 6rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .case-data {
    padding: 3rem 0;
  }
}
.contents.contents--service .s-cohort .case-data__txt {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .case-data__txt {
    font-size: 1.8rem;
  }
}
.contents.contents--service .s-cohort .case-data__img {
  margin-top: 6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .case-data__img {
    margin-top: 3rem;
  }
}
.contents.contents--service .s-cohort .results__btn {
  margin: 4rem 0 8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .results__btn {
    margin: 2rem 0 4rem;
    gap: 2rem;
  }
}
.contents.contents--service .s-cohort .results__btn .btn-A a {
  font-size: 2rem;
  width: 41vw;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .results__btn .btn-A a {
    width: 100%;
    font-size: 1.6rem;
    font-weight: normal;
    border-radius: 1.5rem;
    border: 1px solid #0068b7;
    padding: 11px 42px 11px 15px;
  }
}
.contents.contents--service .s-cohort .results__btn .btn-A a::before {
  right: 4%;
}
.contents.contents--service .s-cohort .contact__container {
  background: #f5f5f5;
  padding: 7rem 0;
  text-align: center;
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .contact__container {
    border-radius: 1rem;
    padding: 3rem 0;
  }
}
.contents.contents--service .s-cohort .contact__ttl {
  color: #0068b7;
  font-size: 3.3rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .contact__ttl {
    font-size: 2.1rem;
  }
}
.contents.contents--service .s-cohort .contact__list {
  text-align: left;
  width: 60%;
  margin: 2rem auto 6rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .contact__list {
    width: 90%;
    margin: 2rem auto 3rem;
  }
}
.contents.contents--service .s-cohort .contact__list li {
  font-size: 2.5rem;
  position: relative;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .contact__list li {
    font-size: 1.6rem;
    padding-left: 1.5rem;
  }
}
.contents.contents--service .s-cohort .contact__list li::before {
  position: absolute;
  content: "・";
  top: 0;
  left: 0;
}
.contents.contents--service .s-cohort .contact__list .list-none {
  padding-left: 0;
}
.contents.contents--service .s-cohort .contact__list .list-none::before {
  content: none;
}
.contents.contents--service .s-cohort .contact .btn-A a {
  font-weight: normal;
  line-height: 1.4;
  width: 22vw;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .contact .btn-A a {
    width: 90%;
  }
}
.contents.contents--service .s-cohort .contact .btn-A a span {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--service .s-cohort .contact .btn-A a span {
    font-size: 1.6rem;
  }
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

----------------------------------------------------*/
.contents.contents--message .heading-B {
  text-align: center;
}
.contents.contents--message .message_flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--message .message_flex {
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
  }
}
.contents.contents--message .message_flex .image-president {
  width: 35%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--message .message_flex .image-president {
    width: 20rem;
    margin-bottom: 3rem;
  }
}
.contents.contents--message .message_flex .message_text {
  width: 95rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--message .message_flex .message_text {
    width: auto;
  }
}
.contents.contents--message .message_flex .message_top {
  color: #0068b7;
  font-size: 3.5rem;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--message .message_flex .message_top {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
.contents.contents--message .message_flex .message_main {
  font-size: 2.5rem;
  line-height: 2.1;
}
@media screen and (max-width: 767px) {
  .contents.contents--message .message_flex .message_main {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.contents.contents--message .message_main {
  font-size: 2.5rem;
  line-height: 2.1;
}
@media screen and (max-width: 767px) {
  .contents.contents--message .message_main {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.contents.contents--message .message-succession {
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--message .message-succession {
    margin-bottom: 5rem;
  }
}
.contents.contents--message .message-succession .message_main {
  font-size: 2.5rem;
  line-height: 2.1;
}
@media screen and (max-width: 767px) {
  .contents.contents--message .message-succession .message_main {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.contents.contents--message .message-succession .president_name {
  font-size: 3rem;
  font-family: "ヒラギノ角ゴ ProN";
  text-align: right;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--message .message-succession .president_name {
    font-size: 1.7rem;
  }
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

----------------------------------------------------*/
.contents.contents--news .article-inner {
  margin: 0 auto;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  .contents.contents--news .article-inner {
    padding: 0 1.5rem;
    width: 100%;
  }
}
.contents.contents--news .heading-B {
  text-align: center;
}
.contents.contents--news .tab-list {
  display: flex;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--news .tab-list {
    padding-bottom: 2.5rem;
  }
}
.contents.contents--news .tab-list__item {
  width: 33.3333333333%;
  border: 1px solid #0068b7;
  display: inline-block;
  text-align: center;
  color: #0068B7;
  border-left: none;
  cursor: pointer;
}
.contents.contents--news .tab-list__item:first-child {
  border-left: 1px solid #0068b7;
}
.contents.contents--news .tab-list__item a {
  display: inline-block;
  width: 100%;
  padding: 15px 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--news .tab-list__item a {
    font-size: 1.2rem;
    padding: 10px 0;
  }
}
.contents.contents--news .tab-list__item:hover {
  background: rgb(0, 104, 183);
  color: #fff;
}
.contents.contents--news .tab-list__item.active {
  background: transparent;
  border-bottom: none;
  color: #0068b7;
}
.contents.contents--news .tab-list__item.active a {
  cursor: default;
}
.contents.contents--news .tab-contents .tab-content {
  display: none;
}
.contents.contents--news .tab-contents .tab-content a {
  display: flex;
}
@media screen and (max-width: 767px) {
  .contents.contents--news .tab-contents .tab-content a {
    display: block;
  }
}
.contents.contents--news .tab-contents .tab-content__wrap {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--news .tab-contents .tab-content__wrap {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.contents.contents--news .tab-contents .tab-content__wrap a:hover {
  color: #0068B7;
}
.contents.contents--news .tab-contents .tab-content__date {
  white-space: nowrap;
  margin-right: 3rem;
}
@media screen and (max-width: 950px) {
  .contents.contents--news .tab-contents .tab-content__date {
    width: 29%;
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--news .tab-contents .tab-content__date {
    font-size: 1.4rem;
    margin-right: 1rem;
    width: 100%;
  }
}
.contents.contents--news .tab-contents .tab-content__ttl {
  word-break: break-word;
}
@media screen and (max-width: 950px) {
  .contents.contents--news .tab-contents .tab-content__ttl {
    width: 72%;
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--news .tab-contents .tab-content__ttl {
    width: 100%;
  }
}
.contents.contents--news .tab-contents .tab-content__category {
  display: inline-block;
  font-size: 1.6rem;
  color: #0068B7;
  border: 1px solid #0068B7;
  border-radius: 20px;
  padding: 0.5rem 1.5rem;
  margin-left: 3rem;
  text-align: center;
  min-width: 16rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--news .tab-contents .tab-content__category {
    font-size: 1.2rem;
    margin-left: 1rem;
    padding: 0 1rem;
    margin-top: 1.5rem;
    min-width: auto;
  }
}
.contents.contents--news .tab-contents .show {
  display: block;
}

.date-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .date-wrap {
    margin-bottom: 3rem;
  }
}
.date-wrap__category {
  font-size: 1.9rem;
  color: #0068B7;
  border: 1px solid #0068B7;
  border-radius: 25px;
  margin-right: 3rem;
  padding: 0 3rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .date-wrap__category {
    margin-right: 2.5rem;
    font-size: 1.4rem;
    padding: 0 2.5rem;
  }
}
.date-wrap time {
  font-size: 2.4rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .date-wrap time {
    font-size: 1.5rem;
  }
}

.news-ttl {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 2rem;
  margin-bottom: 8rem;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .news-ttl {
    padding-bottom: 1.5rem;
    margin-bottom: 3rem;
    font-size: 2rem;
  }
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

----------------------------------------------------*/
.contents.contents--knowledge .heading-B {
  text-align: center;
}
.contents.contents--knowledge .category-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-list {
    padding-top: 0;
    gap: 1rem;
  }
}
.contents.contents--knowledge .category-list a {
  font-size: 2.2rem;
  padding: 0.5rem 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-list a {
    font-size: 1.2rem;
    padding: 0.2rem 1rem;
  }
}
.contents.contents--knowledge .category-item {
  transition: 0.25s;
}
.contents.contents--knowledge .category-item--gray {
  border: 0.3rem solid #707070;
  border-radius: 5rem;
  color: #707070;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--gray {
    line-height: 2rem;
    border: 0.1rem solid #707070;
  }
}
.contents.contents--knowledge .category-item--gray:hover {
  color: white;
  background-color: #707070;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--gray:hover {
    color: white;
  }
}
.contents.contents--knowledge .category-item--gray.active {
  color: white;
  background-color: #707070;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--gray.active {
    color: white;
  }
}
.contents.contents--knowledge .category-item--blue {
  border: 0.3rem solid #0068B7;
  border-radius: 5rem;
  color: #0068B7;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--blue {
    line-height: 2rem;
    border: 0.1rem solid #0068B7;
  }
}
.contents.contents--knowledge .category-item--blue:hover {
  color: white;
  background-color: #0068B7;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--blue:hover {
    color: white;
  }
}
.contents.contents--knowledge .category-item--blue.active {
  color: white;
  background-color: #0068B7;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--blue.active {
    color: white;
  }
}
.contents.contents--knowledge .category-item--lightpink {
  border: 0.3rem solid #F96C6C;
  border-radius: 5rem;
  color: #F96C6C;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--lightpink {
    line-height: 2rem;
    border: 0.1rem solid #F96C6C;
  }
}
.contents.contents--knowledge .category-item--lightpink:hover {
  color: white;
  background-color: #F96C6C;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--lightpink:hover {
    color: white;
  }
}
.contents.contents--knowledge .category-item--lightpink.active {
  color: white;
  background-color: #F96C6C;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--lightpink.active {
    color: white;
  }
}
.contents.contents--knowledge .category-item--green {
  border: 0.3rem solid #1D8582;
  border-radius: 5rem;
  color: #1D8582;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--green {
    line-height: 2rem;
    border: 0.1rem solid #1D8582;
  }
}
.contents.contents--knowledge .category-item--green:hover {
  color: white;
  background-color: #1D8582;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--green:hover {
    color: white;
  }
}
.contents.contents--knowledge .category-item--green.active {
  color: white;
  background-color: #1D8582;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--green.active {
    color: white;
  }
}
.contents.contents--knowledge .category-item--lightblue {
  border: 0.3rem solid #42BDDC;
  border-radius: 5rem;
  color: #42BDDC;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--lightblue {
    line-height: 2rem;
    border: 0.1rem solid #42BDDC;
  }
}
.contents.contents--knowledge .category-item--lightblue:hover {
  color: white;
  background-color: #42BDDC;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--lightblue:hover {
    color: white;
  }
}
.contents.contents--knowledge .category-item--lightblue.active {
  color: white;
  background-color: #42BDDC;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--lightblue.active {
    color: white;
  }
}
.contents.contents--knowledge .category-item--orange {
  border: 0.3rem solid #EE7916;
  border-radius: 5rem;
  color: #EE7916;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--orange {
    line-height: 2rem;
    border: 0.1rem solid #EE7916;
  }
}
.contents.contents--knowledge .category-item--orange:hover {
  color: white;
  background-color: #EE7916;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--orange:hover {
    color: white;
  }
}
.contents.contents--knowledge .category-item--orange.active {
  color: white;
  background-color: #EE7916;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--orange.active {
    color: white;
  }
}
.contents.contents--knowledge .category-item--yellow {
  border: 0.3rem solid #e0cc19;
  border-radius: 5rem;
  color: #e0cc19;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--yellow {
    line-height: 2rem;
    border: 0.1rem solid #e0cc19;
  }
}
.contents.contents--knowledge .category-item--yellow:hover {
  color: white;
  background-color: #e0cc19;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--yellow:hover {
    color: white;
  }
}
.contents.contents--knowledge .category-item--yellow.active {
  color: white;
  background-color: #e0cc19;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--yellow.active {
    color: white;
  }
}
.contents.contents--knowledge .category-item--lightpurple {
  border: 0.3rem solid #ba2dfc;
  border-radius: 5rem;
  color: #ba2dfc;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--lightpurple {
    line-height: 2rem;
    border: 0.1rem solid #ba2dfc;
  }
}
.contents.contents--knowledge .category-item--lightpurple:hover {
  color: white;
  background-color: #ba2dfc;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--lightpurple:hover {
    color: white;
  }
}
.contents.contents--knowledge .category-item--lightpurple.active {
  color: white;
  background-color: #ba2dfc;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--lightpurple.active {
    color: white;
  }
}
.contents.contents--knowledge .category-item--red {
  border: 0.3rem solid #bd1919;
  border-radius: 5rem;
  color: #bd1919;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--red {
    line-height: 2rem;
    border: 0.1rem solid #bd1919;
  }
}
.contents.contents--knowledge .category-item--red:hover {
  color: white;
  background-color: #bd1919;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--red:hover {
    color: white;
  }
}
.contents.contents--knowledge .category-item--red.active {
  color: white;
  background-color: #bd1919;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--red.active {
    color: white;
  }
}
.contents.contents--knowledge .category-item--lightgreen {
  border: 0.3rem solid #5ed427;
  border-radius: 5rem;
  color: #5ed427;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--lightgreen {
    line-height: 2rem;
    border: 0.1rem solid #5ed427;
  }
}
.contents.contents--knowledge .category-item--lightgreen:hover {
  color: white;
  background-color: #5ed427;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--lightgreen:hover {
    color: white;
  }
}
.contents.contents--knowledge .category-item--lightgreen.active {
  color: white;
  background-color: #5ed427;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--lightgreen.active {
    color: white;
  }
}
.contents.contents--knowledge .category-item--purple {
  border: 0.3rem solid #5913b4;
  border-radius: 5rem;
  color: #5913b4;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--purple {
    line-height: 2rem;
    border: 0.1rem solid #5913b4;
  }
}
.contents.contents--knowledge .category-item--purple:hover {
  color: white;
  background-color: #5913b4;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--purple:hover {
    color: white;
  }
}
.contents.contents--knowledge .category-item--purple.active {
  color: white;
  background-color: #5913b4;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--purple.active {
    color: white;
  }
}
.contents.contents--knowledge .category-item--brown {
  border: 0.3rem solid #804400;
  border-radius: 5rem;
  color: #804400;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--brown {
    line-height: 2rem;
    border: 0.1rem solid #804400;
  }
}
.contents.contents--knowledge .category-item--brown:hover {
  color: white;
  background-color: #804400;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--brown:hover {
    color: white;
  }
}
.contents.contents--knowledge .category-item--brown.active {
  color: white;
  background-color: #804400;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--brown.active {
    color: white;
  }
}
.contents.contents--knowledge .category-item--pink {
  border: 0.3rem solid #f055aa;
  border-radius: 5rem;
  color: #f055aa;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--pink {
    line-height: 2rem;
    border: 0.1rem solid #f055aa;
  }
}
.contents.contents--knowledge .category-item--pink:hover {
  color: white;
  background-color: #f055aa;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--pink:hover {
    color: white;
  }
}
.contents.contents--knowledge .category-item--pink.active {
  color: white;
  background-color: #f055aa;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .category-item--pink.active {
    color: white;
  }
}
.contents.contents--knowledge .contents-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 9.7rem;
  gap: 0 3.2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .contents-list {
    margin-top: 4rem;
    display: block;
  }
}
.contents.contents--knowledge .contents-list li {
  width: 32%;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .contents-list li {
    width: 100%;
    margin-bottom: 2.5rem;
  }
}
.contents.contents--knowledge .contents-sect {
  width: 100%;
}
.contents.contents--knowledge .contents-sect:hover {
  color: #0068B7;
}
.contents.contents--knowledge .contents-sect:hover img {
  transform: scale(1.05);
}
.contents.contents--knowledge .contents-head {
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
}
.contents.contents--knowledge .contents-head img {
  width: 100%;
  height: 28.8rem;
  object-fit: cover;
  transition: 0.25s;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .contents-head img {
    height: 20rem;
    width: 100%;
  }
}
.contents.contents--knowledge .contents-categoryList {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  top: 0;
}
.contents.contents--knowledge .contents-category {
  background-color: #707070;
  font-size: 2rem;
  color: white;
  padding: 1rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .contents-category {
    font-size: 1.7rem;
    padding: 0.3rem 0.7rem;
  }
}
.contents.contents--knowledge .contents-category--blue {
  background-color: #0068B7;
}
.contents.contents--knowledge .contents-category--lightpink {
  background-color: #F96C6C;
}
.contents.contents--knowledge .contents-category--green {
  background-color: #1D8582;
}
.contents.contents--knowledge .contents-category--lightblue {
  background-color: #42BDDC;
}
.contents.contents--knowledge .contents-category--orange {
  background-color: #EE7916;
}
.contents.contents--knowledge .contents-category--yellow {
  background-color: #e0cc19;
}
.contents.contents--knowledge .contents-category--lightpurple {
  background-color: #ba2dfc;
}
.contents.contents--knowledge .contents-category--red {
  background-color: #bd1919;
}
.contents.contents--knowledge .contents-category--lightgreen {
  background-color: #5ed427;
}
.contents.contents--knowledge .contents-category--purple {
  background-color: #5913b4;
}
.contents.contents--knowledge .contents-category--brown {
  background-color: #804400;
}
.contents.contents--knowledge .contents-category--pink {
  background-color: #f055aa;
}
.contents.contents--knowledge .contents-ttl {
  font-size: 2.6rem;
  margin: 3rem 0 3.5rem 0;
  font-weight: bold;
  line-height: 3.5rem;
  transition: 0.25s;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .contents-ttl {
    font-size: 1.8rem;
    margin: 2rem 0 1.5rem 0;
    line-height: 2.4rem;
  }
}
.contents.contents--knowledge .contents-date {
  font-size: 2rem;
  font-weight: bold;
  color: #9D9D9D;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .contents-date {
    font-size: 1.4rem;
  }
}
.contents.contents--knowledge .keyword {
  background-color: #F3F3F3;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .keyword {
    margin-top: 4rem;
  }
}
.contents.contents--knowledge .keyword-ttl {
  font-size: 4rem;
  color: #0068B7;
  text-align: center;
  padding: 5rem 0 4rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .keyword-ttl {
    font-size: 3rem;
    padding: 2.4rem 0;
  }
}
.contents.contents--knowledge .keyword-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .keyword-list {
    padding-bottom: 2.5rem;
    gap: 1rem;
  }
}
.contents.contents--knowledge .keyword-item {
  transition: 0.25s;
  color: #0068B7;
  font-size: 2rem;
  background-color: white;
  border-radius: 5rem;
  padding: 0.5rem 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .keyword-item {
    font-size: 1.3rem;
    padding: 0.3rem 1rem;
  }
}
.contents.contents--knowledge .keyword-item:hover {
  color: white;
  background-color: #0068B7;
}
.contents.contents--knowledge .keyword-item.active {
  color: white;
  background-color: #0068B7;
}
.contents.contents--knowledge .knowledge-keyword-ttl {
  font-size: 2.8rem;
  text-align: center;
  margin-top: 9.7rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .knowledge-keyword-ttl {
    font-size: 1.8rem;
    margin-top: 4rem;
  }
}
.contents.contents--knowledge .page-wrapper {
  display: flex;
  justify-content: space-between;
}
.contents.contents--knowledge .page-left {
  width: 67%;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .page-left {
    width: 100%;
  }
}
.contents.contents--knowledge .page-left__ttl {
  font-size: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .page-left__ttl {
    font-size: 2.7rem;
    line-height: 4rem;
  }
}
.contents.contents--knowledge .page-left__date-cate {
  display: flex;
  font-size: 1.6rem;
  color: #9D9D9D;
  margin-bottom: 2.8rem;
  font-weight: bold;
  gap: 0 4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .page-left__date-cate {
    display: block;
    font-size: 1.6rem;
    line-height: 2.2rem;
    margin: 1.8rem 0;
  }
}
.contents.contents--knowledge .page-left__category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 3rem;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .page-left__category-list {
    width: 100%;
    gap: 0 1rem;
    margin-top: 1.5rem;
  }
}
.contents.contents--knowledge .page-left__ttl-under {
  position: relative;
}
.contents.contents--knowledge .page-left__keyword {
  display: flex;
  gap: 2rem;
  max-width: 90%;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .page-left__keyword {
    gap: 1rem;
    max-width: 100%;
  }
}
.contents.contents--knowledge .page-left__keyword li {
  background-color: #F3FAFF;
  border-radius: 5rem;
  padding: 0.3rem 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .page-left__keyword li {
    font-size: 1.3rem;
    padding: 0.2rem 1.5rem;
  }
}
.contents.contents--knowledge .page-left__keyword li:hover {
  color: white;
  background-color: #0068B7;
}
.contents.contents--knowledge .page-left__thumb {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .page-left__thumb {
    margin-top: 2.5rem;
  }
}
.contents.contents--knowledge .page-left__thumb img {
  width: 100%;
  height: 68rem;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .page-left__thumb img {
    height: 20rem;
  }
}
.contents.contents--knowledge .page-left__body {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .page-left__body {
    margin-top: 2.5rem;
  }
}
.contents.contents--knowledge .page-left__page-btn {
  align-items: center;
  margin: 5rem 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .page-left__page-btn {
    margin: 3rem 0 1rem 0;
  }
}
.contents.contents--knowledge .page-left__prev a {
  position: relative;
  font-size: 1.7rem;
  display: inline-block;
  padding-left: 3.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .page-left__prev a {
    font-size: 1.25rem;
  }
}
.contents.contents--knowledge .page-left__prev a::before {
  content: "";
  position: absolute;
  left: 7%;
  top: 50%;
  transform: translateY(-50%);
  min-width: 2.2rem;
  min-height: 1rem;
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="26.374" height="10.192" viewBox="0 0 26.374 10.192"><path id="パス_159" data-name="パス 159" d="M1173.228,233h-25.374l9.479-8.445" transform="translate(-1146.855 -223.808)" fill="none" stroke="%23007ABD" stroke-linejoin="round" stroke-width="2"/></svg>') center center no-repeat;
  background-size: 100%;
}
.contents.contents--knowledge .page-left__next a {
  position: relative;
  font-size: 1.7rem;
  display: inline-block;
  padding-right: 3.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .page-left__next a {
    font-size: 1.25rem;
  }
}
.contents.contents--knowledge .page-left__next a::before {
  content: "";
  position: absolute;
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
  min-width: 2.2rem;
  min-height: 1rem;
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="26.373" height="10.192" viewBox="0 0 26.373 10.192"><path id="btn-arrow" d="M1147.855,233h25.373l-9.479-8.446" transform="translate(-1147.855 -223.808)" fill="none" stroke="%23007ABD" stroke-linejoin="round" stroke-width="2"/></svg>') center center no-repeat;
  background-size: 100%;
}
.contents.contents--knowledge .page-left__footer {
  margin-top: 9rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .page-left__footer {
    margin-top: 5.5rem;
  }
}
.contents.contents--knowledge .page-left__icon {
  display: flex;
  justify-content: end;
  position: absolute;
  right: 0;
  bottom: 3.5%;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .page-left__icon {
    top: -0.6rem;
  }
}
.contents.contents--knowledge .page-left__icon-f {
  display: flex;
  justify-content: end;
}
.contents.contents--knowledge .page-left__facebook {
  width: 3.4rem;
  height: auto;
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .page-left__facebook {
    margin-right: 1.5rem;
  }
}
.contents.contents--knowledge .page-left__twitter {
  width: 3.4rem;
  height: auto;
}
.contents.contents--knowledge .page-right {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .contents.contents--knowledge .page-right {
    display: none;
  }
}
.contents.contents--knowledge .page-right__ttl {
  align-items: center;
  display: flex;
  gap: 5rem;
  border-bottom: 0.3rem solid #0068B7;
}
.contents.contents--knowledge .page-right__ttl h2 {
  font-size: 3rem;
  font-weight: bold;
}
.contents.contents--knowledge .page-right__ttl p {
  font-size: 2rem;
  font-weight: normal;
}
.contents.contents--knowledge .page-right__content {
  width: 100%;
}
.contents.contents--knowledge .page-right__content-item {
  margin: 4rem 0 4.4rem 0;
}
.contents.contents--knowledge .page-right__content-item img {
  width: 100%;
  height: 27rem;
  object-fit: cover;
  transition: 0.25s;
}
.contents.contents--knowledge .page-right__content-item p {
  transition: 0.25s;
  padding-top: 1.5rem;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 3.5rem;
}
.contents.contents--knowledge .page-right__content-item:hover {
  color: #0068B7;
}
.contents.contents--knowledge .page-right__content-item:hover img {
  transform: scale(1.05);
}
.contents.contents--knowledge .page-right__content-img {
  border: 1px solid #eee;
  overflow: hidden;
}
.contents.contents--knowledge .page-right__category {
  padding-top: 3rem;
}
.contents.contents--knowledge .page-right__category-list {
  margin: 4rem 0 0 3rem;
}
.contents.contents--knowledge .page-right__category-list a {
  font-size: 2.4rem;
  transition: 0.25s;
}
.contents.contents--knowledge .page-right__category-list a:hover {
  color: #0068B7;
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

----------------------------------------------------*/
.contents.contents--customer .customer {
  padding-top: 6rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--customer .customer {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.contents.contents--customer .heading-B {
  text-align: center;
}
.contents.contents--customer .customer-list {
  display: flex;
}
.contents.contents--customer .customer-list__item {
  width: 50%;
  border: 1px solid #0068B7;
  padding: 15px 0;
  display: inline-block;
  text-align: center;
  color: #0068B7;
  border-left: none;
  cursor: pointer;
  transition: 0.25s;
}
@media screen and (max-width: 767px) {
  .contents.contents--customer .customer-list__item {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    line-height: 1.5;
  }
}
.contents.contents--customer .customer-list__item:first-child {
  border-left: 1px solid #0068B7;
}
.contents.contents--customer .customer-list__item:hover {
  background: rgb(0, 104, 183);
  color: #fff;
}
.contents.contents--customer .customer-list__item.active {
  background: transparent;
  border-bottom: none;
  color: #0068B7;
  cursor: default;
}
.contents.contents--customer .customer-contents .customer-content {
  display: none;
}
.contents.contents--customer .customer-contents .customer-content__wrap {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #CCCCCC;
  padding-top: 10rem;
  padding-bottom: 10rem;
  gap: 20rem;
  margin-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--customer .customer-contents .customer-content__wrap:last-of-type {
    padding-bottom: 4rem;
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--customer .customer-contents .customer-content__wrap {
    display: block;
    padding-top: 4rem;
    padding-bottom: 4rem;
    margin-bottom: 10rem;
  }
}
.contents.contents--customer .customer-contents .customer-content__img {
  width: 60%;
  margin: 0 auto 4rem;
}
.contents.contents--customer .customer-contents .customer-content__faq {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--customer .customer-contents .customer-content__faq {
    margin-top: 2.5rem;
  }
}
.contents.contents--customer .customer-contents .customer-content__faq:first-child {
  margin-top: 0;
}
.contents.contents--customer .customer-contents .customer-content__question {
  color: #fff;
  background: #0068B7;
  border-radius: 40px;
  font-size: 3.3rem;
  padding: 1rem 8.5rem;
  position: relative;
  cursor: pointer;
  transition: 0.25s;
}
@media screen and (max-width: 767px) {
  .contents.contents--customer .customer-contents .customer-content__question {
    font-size: 1.7rem;
    padding: 1rem 6rem;
    border-radius: 70px;
  }
}
.contents.contents--customer .customer-contents .customer-content__question::before {
  content: "Q";
  width: 5.5rem;
  height: 5.5rem;
  color: #0068B7;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-size: 4rem;
  line-height: 4.5rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .contents.contents--customer .customer-contents .customer-content__question::before {
    width: 4rem;
    height: 4rem;
    left: 7px;
    line-height: 3.5rem;
    font-size: 2.5rem;
  }
}
.contents.contents--customer .customer-contents .customer-content__question::after {
  content: "";
  width: 3.5rem;
  height: 3.5rem;
  background: url(/assets/images/customer/customer-arrow.png) no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: 0.25s;
}
@media screen and (max-width: 767px) {
  .contents.contents--customer .customer-contents .customer-content__question::after {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.contents.contents--customer .customer-contents .customer-content .is-active {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--customer .customer-contents .customer-content .is-active {
    margin-bottom: 2.5rem;
  }
}
.contents.contents--customer .customer-contents .customer-content .is-active::after {
  transform: translateY(-50%) rotate(-180deg);
}
.contents.contents--customer .customer-contents .customer-content__answer {
  height: 0;
  overflow: hidden;
  transition: 0.2s ease height;
}
@media screen and (max-width: 767px) {
  .contents.contents--customer .customer-contents .customer-content__answer {
    font-size: 1.5rem;
  }
}
.contents.contents--customer .customer-contents .show {
  display: block;
}
.contents.contents--customer .btn-A {
  text-align: center;
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

----------------------------------------------------*/
.contents.contents--contact input[type=radio] {
  display: none;
}
.contents.contents--contact input[type=text],
.contents.contents--contact input[type=email],
.contents.contents--contact input[type=tel],
.contents.contents--contact input[type=number],
.contents.contents--contact input[type=password],
.contents.contents--contact input[type=radio],
.contents.contents--contact select {
  appearance: none;
  margin: 0;
  padding: 0;
  width: 100%;
  background: #fff;
  font-size: 16px;
  color: inherit;
  font-family: inherit;
  background-color: #fff;
  background-image: none;
  border: none;
  border-radius: 5px;
}
.contents.contents--contact input[type=text]:focus,
.contents.contents--contact input[type=email]:focus,
.contents.contents--contact input[type=tel]:focus,
.contents.contents--contact input[type=number]:focus,
.contents.contents--contact input[type=password]:focus,
.contents.contents--contact input[type=radio]:focus,
.contents.contents--contact select:focus {
  box-shadow: none;
  outline: none;
}
.contents.contents--contact input[type=checkbox] {
  scale: 2;
}
.contents.contents--contact textarea {
  appearance: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100px; /* textareaはheight指定 */
  background: #fff;
  font-size: 16px;
  color: inherit;
  font-family: inherit;
  background-color: #fff;
  background-image: none;
  border: none;
  border-radius: 5px;
  padding: 1.8rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--contact textarea {
    padding: 1rem;
  }
}
.contents.contents--contact textarea:focus {
  box-shadow: none;
  outline: none;
}
.contents.contents--contact .contact {
  padding-top: 6rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--contact .contact {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.contents.contents--contact .heading-B {
  text-align: center;
}
.contents.contents--contact .contact-header {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--contact .contact-header {
    margin-top: 3rem;
  }
}
.contents.contents--contact .contact-header__ttl {
  font-size: 4rem;
  font-weight: normal;
  margin-bottom: 3.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--contact .contact-header__ttl {
    font-size: 2rem;
  }
}
.contents.contents--contact .contact-header__note {
  margin-bottom: 9rem;
  font-size: 2.5rem;
}
.contents.contents--contact .contact-header__note p {
  font-weight: bold;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--contact .contact-header__note {
    font-size: 1.5rem;
    margin-bottom: 4.5rem;
  }
  .contents.contents--contact .contact-header__note p {
    margin-bottom: 1rem;
  }
}
.contents.contents--contact .contact-header__list a {
  color: #0068B7;
}
.contents.contents--contact .u-ul-style--disc li::before {
  padding-right: 1rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--contact .u-ul-style--disc li::before {
    padding-right: 0.5rem;
  }
}
.contents.contents--contact .contact-link {
  position: relative;
  transition: 0.15s;
}
.contents.contents--contact .contact-link img {
  padding-left: 1rem;
}
.contents.contents--contact .contact-link:hover {
  opacity: 0.7;
}
.contents.contents--contact form {
  margin-bottom: 5rem;
}
.contents.contents--contact form dl {
  display: flex;
  gap: 2.5rem;
}
.contents.contents--contact form dl:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--contact form dl {
    display: block;
    margin-bottom: 3rem;
  }
}
.contents.contents--contact form dl dt {
  width: 20%;
  border-bottom: 1px solid #0068B7;
  padding: 2rem 1rem;
  font-size: 2.2rem;
  font-weight: 600;
}
.contents.contents--contact form dl dt .requires {
  position: relative;
  display: block;
}
.contents.contents--contact form dl dt .requires::after {
  content: "必須";
  font-size: 1.8rem;
  color: #b70000;
  border: 1px solid #b70000;
  padding: 0 1.7rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .contents.contents--contact form dl dt {
    width: 100%;
    padding: 0 0 1rem;
    font-size: 1.7rem;
    font-weight: bold;
    margin-bottom: 0;
  }
  .contents.contents--contact form dl dt .requires {
    display: inline-block;
  }
  .contents.contents--contact form dl dt .requires::after {
    font-size: 1.3rem;
    right: -9rem;
  }
}
.contents.contents--contact form dl dd {
  width: 80%;
  border-bottom: 1px solid #cccccc;
  padding: 2rem 1rem;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--contact form dl dd {
    width: 100%;
    font-size: 1.5rem;
    padding: 2rem 0.5rem;
  }
}
.contents.contents--contact form dl .dd-box {
  padding: 1rem 0;
}
.contents.contents--contact form dl .dd-box-item {
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--contact form dl .dd-box-item {
    padding: 1rem 0.5rem;
  }
}
.contents.contents--contact form dl .radio-flex {
  display: flex;
}
@media screen and (max-width: 767px) {
  .contents.contents--contact form dl .radio-flex {
    display: block;
  }
}
.contents.contents--contact form dl .radio-style {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: 100%;
}
.contents.contents--contact form dl .radio-style::before {
  background: #fff;
  border: 1px solid #cccccc;
  border-radius: 50%;
  content: "";
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
  box-sizing: content-box;
}
.contents.contents--contact form dl .radio-style::after {
  background: #0068b7;
  border-radius: 50%;
  content: "";
  display: block;
  height: 10px;
  left: 9px;
  margin-top: -4px;
  opacity: 0;
  position: absolute;
  top: 50%;
  width: 10px;
}
.contents.contents--contact form dl input[type=radio]:checked + .radio-style::after {
  opacity: 1;
}
.contents.contents--contact form dl input[type=text],
.contents.contents--contact form dl input[type=tel],
.contents.contents--contact form dl input[type=number],
.contents.contents--contact form dl input[type=email] {
  border: 1px solid #cccccc;
  font-size: 2.2rem;
  padding: 1.8rem;
  width: 80rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--contact form dl input[type=text],
  .contents.contents--contact form dl input[type=tel],
  .contents.contents--contact form dl input[type=number],
  .contents.contents--contact form dl input[type=email] {
    width: 100%;
    font-size: 16px;
    padding: 1.5rem 1rem;
  }
}
.contents.contents--contact form dl textarea {
  border: 1px solid #cccccc;
}
.contents.contents--contact form dl input[type=tel] {
  width: 30rem;
  margin-right: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--contact form dl input[type=tel] {
    width: 100%;
    margin-right: 0;
  }
}
.contents.contents--contact form dl #number01 {
  margin-right: 2rem;
  width: 30rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--contact form dl #number01 {
    width: 100%;
    margin-right: 0;
  }
}
.contents.contents--contact form dl .col2-box {
  display: flex;
}
@media screen and (max-width: 767px) {
  .contents.contents--contact form dl .col2-box {
    display: block;
  }
}
.contents.contents--contact form dl .sub-item-title {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .contents.contents--contact form dl .sub-item-title {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.contents.contents--contact form dl select {
  background: #fff;
  border: none;
  font-size: 2.2rem;
  padding: 1.8rem;
  width: 30rem;
  border: 1px solid #cccccc;
}
@media screen and (max-width: 767px) {
  .contents.contents--contact form dl select {
    font-size: 1.5rem;
    padding: 1.7rem;
    width: 100%;
  }
}
.contents.contents--contact form dl .sub-item-input {
  position: relative;
}
.contents.contents--contact form dl .sub-item-input::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%) rotate(135deg);
}
.contents.contents--contact .large-select {
  max-width: 100%;
  width: 110rem;
}
.contents.contents--contact .error-txt {
  display: none;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--contact .error-txt {
    font-size: 1.3rem;
  }
}
.contents.contents--contact .error {
  background-color: rgb(255, 235, 235);
}
.contents.contents--contact .error .error-txt {
  display: block;
  color: #cc0000;
  margin-bottom: 3px;
  font-weight: bold;
}
.contents.contents--contact .font-bold {
  font-weight: bold;
}
.contents.contents--contact .check-btn {
  text-align: center;
  margin-bottom: 8rem;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--contact .check-btn {
    font-size: 1.5rem;
    margin-bottom: 4rem;
  }
}
.contents.contents--contact .check-btn input {
  margin-bottom: 0.7rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--contact .check-btn input {
    margin-bottom: 0.5rem;
  }
}
.contents.contents--contact .check-btn label {
  padding-left: 1rem;
}
.contents.contents--contact .btn-A {
  text-align: center;
}

.contents.contents--contact-done .contact-done {
  margin: 12rem 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--contact-done .contact-done {
    margin: 6rem 0;
  }
}
.contents.contents--contact-done .contact-done-h {
  font-size: 3.6rem;
  font-weight: bold;
  margin-bottom: 4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--contact-done .contact-done-h {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

----------------------------------------------------*/
.contents.contents--recruit .heading-B {
  text-align: center;
}
.contents.contents--recruit .description {
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--recruit .description {
    margin-bottom: 4rem;
  }
}
.contents.contents--recruit .description dl {
  display: flex;
}
@media screen and (max-width: 767px) {
  .contents.contents--recruit .description dl {
    flex-direction: column;
    margin-bottom: 1.5rem;
  }
}
.contents.contents--recruit .description dl dt {
  border-bottom: 1px solid #0068B7;
  font-size: 2.2rem;
  font-weight: bold;
  margin-right: 2.5rem;
  padding: 5rem 0;
  width: 35rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--recruit .description dl dt {
    font-size: 1.75rem;
    padding: 1.5rem 0;
    margin: 0;
    width: auto;
  }
}
.contents.contents--recruit .description dl dd {
  border-bottom: 1px solid #ccc;
  font-size: 2.2rem;
  width: 124rem;
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--recruit .description dl dd {
    font-size: 1.5rem;
    width: auto;
    padding: 1.5rem 0;
  }
}
.contents.contents--recruit .description dl dd p {
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--recruit .description dl dd p {
    margin-bottom: 1rem;
  }
}
.contents.contents--recruit .description dl dd table {
  border-collapse: separate;
  border-spacing: 5px;
}
@media screen and (max-width: 767px) {
  .contents.contents--recruit .description dl dd table {
    border-spacing: 0;
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--recruit .description dl dd table tr {
    display: flex;
    flex-direction: column;
  }
}
.contents.contents--recruit .description dl dd table tr th {
  background-color: #F1F4F6;
  font-weight: normal;
  text-align: left;
  padding: 1rem 0 1rem 2rem;
  width: 20rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--recruit .description dl dd table tr th {
    width: auto;
    padding-left: 1rem;
  }
}
.contents.contents--recruit .description dl dd table tr td {
  padding: 1rem 0 1rem 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--recruit .description dl dd table tr td {
    padding-left: 0;
  }
}
.contents.contents--recruit .recruit {
  text-align: center;
}
.contents.contents--recruit .recruit .heading-B {
  text-align: center;
}
.contents.contents--recruit .recruit__txt {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--recruit .recruit__txt {
    font-size: 1.8rem;
    margin-bottom: 3.5rem;
    text-align: left;
  }
}
.contents.contents--recruit .recruit__ttl {
  font-size: 3.8rem;
  color: #0068B7;
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--recruit .recruit__ttl {
    font-size: 1.9rem;
    margin-bottom: 2.5rem;
  }
}
.contents.contents--recruit .recruit__select {
  position: relative;
  max-width: 73rem;
  margin: 0 auto;
  transition: 0.15s;
}
@media screen and (max-width: 767px) {
  .contents.contents--recruit .recruit__select {
    width: 100%;
  }
}
.contents.contents--recruit .recruit__select a {
  font-size: 3rem;
  margin: 0 auto;
  border: none;
  background: #F1F8FE;
  padding: 4rem 18rem 4rem 3rem;
  color: #0068B7;
  border-radius: 20px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .contents.contents--recruit .recruit__select a {
    padding: 2rem 0rem 2rem 1.5rem;
    font-size: 1.5rem;
    width: 100%;
  }
}
.contents.contents--recruit .recruit__select::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  min-width: 22px;
  min-height: 10px;
  background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="26.373" height="10.192" viewBox="0 0 26.373 10.192"><path id="btn-arrow" d="M1147.855,233h25.373l-9.479-8.446" transform="translate(-1147.855 -223.808)" fill="none" stroke="%23007ABD" stroke-linejoin="round" stroke-width="2"/></svg>') center center no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 767px) {
  .contents.contents--recruit .recruit__select::after {
    right: 5%;
  }
}
.contents.contents--recruit .recruit__select:hover {
  opacity: 0.5;
}
.contents.contents--recruit .btn-A {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--recruit .btn-A {
    margin-bottom: 4rem;
  }
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

----------------------------------------------------*/
.contents.contents--corporate .heading-B {
  text-align: center;
}
.contents.contents--corporate .corporate-about {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--corporate .corporate-about {
    flex-direction: column-reverse;
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--corporate .about-data {
    margin-bottom: 4rem;
  }
}
.contents.contents--corporate .about-data dl {
  display: flex;
  justify-content: center;
}
.contents.contents--corporate .about-data dl dt {
  border-bottom: 1px solid #0068B7;
  font-weight: bold;
  margin-right: 2.5rem;
  padding: 2rem 0;
  width: 16rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--corporate .about-data dl dt {
    padding: 1rem 0;
  }
}
.contents.contents--corporate .about-data dl dd {
  border-bottom: 1px solid #ccc;
  padding: 2rem 0;
  width: 62.3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--corporate .about-data dl dd {
    padding: 1rem 0;
  }
}
.contents.contents--corporate .about-data dl dd a {
  text-decoration: underline;
}
.contents.contents--corporate .about-data dl dd a:hover {
  opacity: 0.7;
  transition: all 0.25s;
}
.contents.contents--corporate .about-data .about-flex {
  display: flex;
}
.contents.contents--corporate .about-data .about-flex__post {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .contents.contents--corporate .about-data .about-flex__post {
    width: 55%;
  }
}
.contents.contents--corporate .corporate-map {
  width: 74rem;
  height: 100rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--corporate .corporate-map {
    width: 39rem;
    height: 22.5rem;
    position: relative;
    left: -26px;
  }
}
.contents.contents--corporate .corporate-map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}
.contents.contents--corporate .business-contents-title {
  font-size: 6rem;
  font-weight: normal;
  text-align: center;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--corporate .business-contents-title {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
}
.contents.contents--corporate .business-contents .busi-txt {
  text-align: center;
  padding-bottom: 5rem;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--corporate .business-contents .busi-txt {
    padding-bottom: 3rem;
    font-size: 1.8rem;
  }
}
.contents.contents--corporate .business-contents .business-content {
  border: 1px solid #0068B7;
  padding: 5rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--corporate .business-contents .business-content {
    padding: 1.8rem;
    margin-bottom: 2.5rem;
  }
}
.contents.contents--corporate .business-contents .business-content .busi-pf-img {
  text-align: center;
  margin: 0 auto;
  width: 70%;
}
@media screen and (max-width: 767px) {
  .contents.contents--corporate .business-contents .business-content .busi-pf-img {
    width: 100%;
  }
}
.contents.contents--corporate .health-guidance-txt {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--corporate .health-guidance-txt {
    font-size: 1.2rem;
  }
}
.contents.contents--corporate .btn-A {
  text-align: center;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--corporate .btn-A {
    margin-bottom: 4rem;
  }
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

----------------------------------------------------*/
@media screen and (max-width: 767px) {
  .contents.contents--philosophy .philosophy-contents-wrap {
    padding: 0;
    margin-bottom: 5rem;
  }
}
.contents.contents--philosophy .philosophy-img {
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--philosophy .philosophy-img {
    margin-bottom: 2.5rem;
    position: static;
  }
}
.contents.contents--philosophy .philosophy-comment {
  background-color: #fff;
  padding: 0 8rem;
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--philosophy .philosophy-comment {
    position: static;
    padding: 0;
    margin-bottom: 5rem;
  }
}
.contents.contents--philosophy .philosophy-comment .comment-title {
  color: #0068b7;
  font-size: 5.2rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--philosophy .philosophy-comment .comment-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }
}
.contents.contents--philosophy .philosophy-comment .comment-top {
  font-size: 3.3rem;
  margin-bottom: 8rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contents.contents--philosophy .philosophy-comment .comment-top {
    font-size: 1.6rem;
    margin-bottom: 4rem;
  }
}
.contents.contents--philosophy .philosophy-comment p {
  font-size: 3rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--philosophy .philosophy-comment p {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
  }
}
.contents.contents--philosophy .philosophy-comment .last-paragraph {
  margin-bottom: 0;
}
.contents.contents--philosophy .flex-btn {
  display: flex;
  justify-content: center;
  gap: 10rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--philosophy .flex-btn {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
}
.contents.contents--philosophy .contact-btn {
  text-align: center;
  margin-top: 13rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--philosophy .contact-btn {
    margin-bottom: 4rem;
    margin-top: 7rem;
  }
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

----------------------------------------------------*/
.contents.contents--value .top-message {
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--value .top-message {
    margin-bottom: 4rem;
  }
}
.contents.contents--value .top-message__txt {
  text-align: center;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--value .top-message__txt {
    text-align: left;
    font-size: 1.8rem;
  }
}
.contents.contents--value .value .btn-wrap {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--value .value .btn-wrap {
    margin-top: 4rem;
  }
}
.contents.contents--value .val-container {
  background: #F4F7F9;
  border-radius: 2rem;
  padding: 5rem;
  margin: 4rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--value .val-container {
    border-radius: 1rem;
    margin: 2.5rem 0;
    padding: 2.5rem;
  }
}
.contents.contents--value .val-container__ttl-area {
  display: flex;
  align-items: center;
  gap: 1%;
}
@media screen and (max-width: 767px) {
  .contents.contents--value .val-container__ttl-area {
    display: block;
    text-align: center;
  }
}
.contents.contents--value .val-container__ttl-blue {
  color: #0068B7;
  font-size: 2.1rem;
  font-weight: bold;
  text-align: center;
  background: #fff;
  border: 1px solid #0068B7;
  border-radius: 5rem;
  width: 35%;
  padding: 0.5rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--value .val-container__ttl-blue {
    width: 100%;
    font-size: 1.6rem;
  }
}
.contents.contents--value .val-container__ttl-blue span {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--value .val-container__ttl-blue span {
    font-size: 1.1rem;
  }
}
.contents.contents--value .val-container__ttl {
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--value .val-container__ttl {
    font-size: 2.1rem;
    padding-top: 1rem;
  }
}
.contents.contents--value .val-container__txt {
  font-size: 2.2rem;
  margin: 1rem 0 3.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--value .val-container__txt {
    font-size: 1.6rem;
    margin: 1rem 0 2rem;
  }
}
.contents.contents--value .val-container__btn-area {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--value .val-container__btn-area {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--value .val-container__btn-area .btn-A {
    margin-bottom: 1rem;
  }
}
.contents.contents--value .val-container__btn-area .btn-A a {
  font-size: 2.2rem;
  font-weight: normal;
  padding: 1rem 7rem 1rem 4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--value .val-container__btn-area .btn-A a {
    font-size: 1.4rem;
    line-height: 1.3;
    width: 100%;
    text-align: center;
    padding: 10px 42px 10px 32px;
  }
}
.contents.contents--value .val-container__btn-area .btn-A a::before {
  right: 5%;
}
.contents.contents--value .health__list {
  margin: 1rem 0 3.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--value .health__list {
    margin: 1rem 0 2rem;
  }
}
.contents.contents--value .health__list li {
  position: relative;
  font-size: 2.2rem;
  padding-left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--value .health__list li {
    font-size: 1.6rem;
  }
}
.contents.contents--value .health__list li::before {
  position: absolute;
  content: "・";
  font-size: 2.2rem;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--value .health__list li::before {
    top: -0.5rem;
  }
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

----------------------------------------------------*/
.contents.contents--information-security-policy .heading-top {
  font-size: 6rem;
  font-weight: normal;
  color: #000;
  line-height: 1.5;
  margin-bottom: 8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--information-security-policy .heading-top {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
}
.contents.contents--information-security-policy .wrapper {
  margin: 15rem 0 5rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--information-security-policy .wrapper {
    margin-top: 0;
  }
}
.contents.contents--information-security-policy .comment-top {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--information-security-policy .comment-top {
    font-size: 1.5rem;
  }
}
.contents.contents--information-security-policy .section-wrap {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--information-security-policy .section-wrap {
    margin-top: 2rem;
  }
}
.contents.contents--information-security-policy .section-wrap .sec-title {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--information-security-policy .section-wrap .sec-title {
    font-size: 1.8rem;
  }
}
.contents.contents--information-security-policy p {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--information-security-policy p {
    font-size: 1.5rem;
  }
}
.contents.contents--information-security-policy .content-end {
  text-align: right;
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

----------------------------------------------------*/
.contents.contents--management .wrapper {
  margin-top: 15rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--management .wrapper {
    margin-top: 0;
  }
}
.contents.contents--management .comment-top {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--management .comment-top {
    font-size: 1.4rem;
  }
}
.contents.contents--management .section-wrap {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--management .section-wrap {
    margin-top: 2rem;
  }
}
.contents.contents--management .section-wrap .sec-title {
  font-size: 3rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--management .section-wrap .sec-title {
    font-size: 1.8rem;
  }
}
.contents.contents--management .section-wrap .content-top {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--management .section-wrap .content-top {
    margin-bottom: 1.5rem;
  }
}
.contents.contents--management .section-wrap p {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--management .section-wrap p {
    font-size: 1.5rem;
  }
}
.contents.contents--management .section-wrap .table {
  border-collapse: collapse;
  max-width: 110rem;
}
.contents.contents--management .section-wrap .table th {
  font-size: 2.5rem;
  border-bottom: 1px solid #e0e0e0;
  line-height: 1.5;
  padding: 1.9rem;
  text-align: center;
  vertical-align: middle;
  width: 33%;
}
@media screen and (max-width: 767px) {
  .contents.contents--management .section-wrap .table th {
    font-size: 1.5rem;
    padding: 0.8rem;
  }
}
.contents.contents--management .section-wrap .table td {
  font-size: 2.5rem;
  border-bottom: 1px solid #e0e0e0;
  line-height: 1.5;
  padding: 1.9rem;
  text-align: center;
  vertical-align: middle;
  width: 33%;
}
@media screen and (max-width: 767px) {
  .contents.contents--management .section-wrap .table td {
    font-size: 1.5rem;
    padding: 0.8rem;
  }
}
.contents.contents--management .section-wrap ul {
  margin-bottom: 2rem;
}
.contents.contents--management .section-wrap li {
  font-size: 2.5rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--management .section-wrap li {
    font-size: 1.5rem;
    margin-top: 1.5rem;
  }
}
.contents.contents--management .section-wrap .link {
  color: #0068B7;
}

.contents.contents--genovision-dock .genovision-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16rem;
  width: 1200px;
  margin: 0 auto;
  padding-top: 4rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 1500px) {
  .contents.contents--genovision-dock .genovision-header {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .genovision-header {
    display: block;
    width: 100%;
    padding-top: 0;
    padding-bottom: 4rem;
  }
}
.contents.contents--genovision-dock .genovision-header__logo {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .genovision-header__logo {
    width: 85%;
    margin: 0 auto;
    margin-bottom: 4rem;
  }
}
.contents.contents--genovision-dock .genovision-header__txt {
  font-size: 2.5rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .genovision-header__txt {
    font-size: 1.6rem;
    text-align: center;
  }
}
.contents.contents--genovision-dock .geno-feature {
  background: #F6F6F6;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .geno-feature {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.contents.contents--genovision-dock .geno-feature__ttl {
  font-size: 4rem;
  color: #0068B7;
  margin-bottom: 5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .geno-feature__ttl {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}
.contents.contents--genovision-dock .geno-feature__wrap {
  display: flex;
  justify-content: space-between;
  gap: 6rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .geno-feature__wrap {
    display: block;
  }
}
.contents.contents--genovision-dock .geno-feature__wrap .fw-bold {
  color: #0068B7;
  font-weight: bold;
}
.contents.contents--genovision-dock .geno-feature__img {
  width: 64%;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .geno-feature__img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.contents.contents--genovision-dock .geno-feature__txt {
  font-size: 2.3rem;
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .geno-feature__txt {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
  }
}
.contents.contents--genovision-dock .geno-feature__txt a {
  color: #0068B7;
}
.contents.contents--genovision-dock .geno-about {
  background: #fff;
  padding: 3rem;
  border-radius: 10px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .geno-about {
    padding: 1.5rem;
  }
}
.contents.contents--genovision-dock .geno-about__ttl {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #0068B7;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .geno-about__ttl {
    font-size: 1.7rem;
    margin-bottom: 0;
  }
}
.contents.contents--genovision-dock .geno-about__txt {
  font-size: 2.3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .geno-about__txt {
    font-size: 1.4rem;
  }
}
.contents.contents--genovision-dock .geno-about__txt span {
  color: #0068B7;
}
.contents.contents--genovision-dock .geno-about__txt a {
  color: #0068B7;
}
.contents.contents--genovision-dock .geno-point {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .geno-point {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .contents.contents--genovision-dock .geno-point .btn-A {
    text-align: center;
  }
}
.contents.contents--genovision-dock .geno-point__list section {
  border: 1px solid #CCCCCC;
  border-radius: 10px;
  display: flex;
  padding: 5rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 1500px) {
  .contents.contents--genovision-dock .geno-point__list section {
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .geno-point__list section {
    display: block;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
  }
}
.contents.contents--genovision-dock .geno-point__wrap {
  width: 100%;
}
@media screen and (max-width: 1500px) {
  .contents.contents--genovision-dock .geno-point__wrap {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .geno-point__wrap {
    width: 100%;
  }
}
.contents.contents--genovision-dock .geno-point__img {
  width: 18%;
}
.contents.contents--genovision-dock .geno-point__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .geno-point__flex {
    display: block;
  }
}
.contents.contents--genovision-dock .geno-point__width {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .geno-point__width {
    width: 100%;
  }
}
.contents.contents--genovision-dock .geno-point__ttl {
  font-size: 3rem;
  color: #0068B7;
  margin-bottom: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .geno-point__ttl {
    font-size: 2rem;
    padding-left: 6.5rem;
    position: relative;
  }
  .contents.contents--genovision-dock .geno-point__ttl::before {
    content: "";
    width: 5rem;
    height: 5rem;
    background: url(../images/service/genovision-dock/point-01.png) no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .geno-point__ttl--02::before {
    background: url(../images/service/genovision-dock/point-02.png) no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .geno-point__ttl--03::before {
    background: url(../images/service/genovision-dock/point-03.png) no-repeat;
    background-size: cover;
  }
}
.contents.contents--genovision-dock .geno-point__txt {
  font-size: 2.3rem;
  margin-bottom: 2rem;
}
.contents.contents--genovision-dock .geno-point__txt span {
  font-size: 1.4rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .geno-point__txt {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
  .contents.contents--genovision-dock .geno-point__txt span {
    font-size: 1.2rem;
  }
}
.contents.contents--genovision-dock .geno-point__action {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .geno-point__action {
    margin: 0 auto;
    width: 70%;
    text-align: center;
  }
}
.contents.contents--genovision-dock .bg-blue {
  background: #F3FAFF;
}
.contents.contents--genovision-dock .enquete {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .enquete {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}
.contents.contents--genovision-dock .enquete .enquete-header {
  text-align: center;
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .enquete .enquete-header {
    margin-bottom: 4rem;
  }
}
.contents.contents--genovision-dock .enquete .enquete-header__ttl {
  font-weight: bold;
  font-size: 4rem;
  margin-bottom: 5rem;
  color: #0068B7;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .enquete .enquete-header__ttl {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
}
.contents.contents--genovision-dock .enquete .enquete-header__txt {
  font-size: 2.3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .enquete .enquete-header__txt {
    font-size: 1.8rem;
  }
}
.contents.contents--genovision-dock .enquete .enquete-body__ttl {
  font-size: 3.3rem;
  padding-left: 8rem;
  position: relative;
  margin-bottom: 5rem;
}
.contents.contents--genovision-dock .enquete .enquete-body__ttl::before {
  content: "";
  width: 6.5rem;
  height: 6.5rem;
  position: absolute;
  background: url(../images/service/genovision-dock/question-icon.png) no-repeat;
  background-size: cover;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .enquete .enquete-body__ttl {
    font-size: 1.6rem;
    padding-left: 4.5rem;
    margin-bottom: 2.5rem;
  }
  .contents.contents--genovision-dock .enquete .enquete-body__ttl::before {
    width: 3rem;
    height: 3rem;
  }
}
.contents.contents--genovision-dock .enquete .enquete-body__content {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  padding: 6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .enquete .enquete-body__content {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding: 1.5rem;
  }
}
.contents.contents--genovision-dock .customer {
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .customer {
    padding-bottom: 2rem;
  }
}
.contents.contents--genovision-dock .customer__ttl {
  color: #0068B7;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .customer__ttl {
    font-size: 2.4rem;
  }
}
.contents.contents--genovision-dock .customer-cont {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  background: #fff;
  border-radius: 2rem;
  margin: 5rem 0;
  padding: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .customer-cont {
    display: block;
    border-radius: 1rem;
    margin: 2rem 0;
    padding: 2rem;
    position: relative;
  }
}
.contents.contents--genovision-dock .customer-cont__icon {
  flex-shrink: 0;
  width: 23rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .customer-cont__icon {
    width: 9rem;
    height: auto;
  }
}
.contents.contents--genovision-dock .customer-cont__icon img {
  width: 100%;
}
.contents.contents--genovision-dock .customer-cont__name {
  display: inline-block;
  color: #0068B7;
  font-size: 2.6rem;
  font-weight: bold;
  border: 1px solid #0068B7;
  border-radius: 5rem;
  padding: 0 1.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .customer-cont__name {
    font-size: 1.5rem;
    position: absolute;
    transform: translate(-50%, 0);
    top: 5rem;
    left: 65%;
    width: 57%;
    text-align: center;
  }
}
.contents.contents--genovision-dock .customer-cont__txt {
  font-size: 2.5rem;
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .customer-cont__txt {
    font-size: 1.8rem;
  }
}
.contents.contents--genovision-dock .customer-voice-medica {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--genovision-dock .customer-voice-medica {
    margin-top: 4rem;
  }
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

----------------------------------------------------*/
.contents.contents--ethics .wrapper {
  margin-top: 15rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--ethics .wrapper {
    margin-top: 0;
  }
}
.contents.contents--ethics .wrapper p {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--ethics .wrapper p {
    font-size: 1.5rem;
  }
}
.contents.contents--ethics .wrapper li {
  font-size: 2.5rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--ethics .wrapper li {
    font-size: 1.5rem;
  }
}
.contents.contents--ethics .wrapper .list-02 li {
  list-style-type: none;
  margin-top: 0;
}
.contents.contents--ethics .wrapper .content-end {
  text-align: right;
}
.contents.contents--ethics .section-wrap-01 {
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--ethics .section-wrap-01 {
    margin-bottom: 2.5rem;
  }
}
.contents.contents--ethics .section-wrap-01 .sec-title-01 {
  border-bottom: 1px solid #c5c5c5;
  font-size: 3rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--ethics .section-wrap-01 .sec-title-01 {
    font-size: 1.8rem;
  }
}
.contents.contents--ethics .section-wrap-01 .comment-top {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--ethics .section-wrap-01 .comment-top {
    font-size: 1.5rem;
  }
}
.contents.contents--ethics .section-wrap-02 {
  margin-top: 3rem;
}
.contents.contents--ethics .section-wrap-02 .sec-title-02 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--ethics .section-wrap-02 .sec-title-02 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
}
.contents.contents--ethics .table-wrap {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--ethics .table-wrap {
    margin-top: 2.5rem;
    overflow: scroll;
  }
}
.contents.contents--ethics .table-wrap table {
  border-collapse: collapse;
  width: 100%;
  line-height: 2.5rem;
  margin: 2rem auto 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--ethics .table-wrap table {
    margin: 0 auto;
    width: 120rem;
  }
}
.contents.contents--ethics .table-wrap table thead {
  background: #eee;
}
.contents.contents--ethics .table-wrap table thead th {
  font-size: 2.5rem;
  font-weight: bold;
  padding: 1rem 1.5rem;
  border: 1px solid #ccc;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .contents.contents--ethics .table-wrap table thead th {
    font-size: 2rem;
    padding: 1rem 1rem;
  }
}
.contents.contents--ethics .table-wrap table tbody td {
  font-size: 2.2rem;
  padding: 1rem 1.5rem;
  height: 9.7rem;
  border: 1px solid #ccc;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .contents.contents--ethics .table-wrap table tbody td {
    font-size: 1.8rem;
  }
}
.contents.contents--ethics .table-wrap table tbody td a {
  color: #0068B7;
}
.contents.contents--ethics .table-wrap table .bi {
  font-size: 3rem;
  color: #0068B7;
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

----------------------------------------------------*/
.contents.contents--privacy {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--privacy {
    font-size: 1.5rem;
  }
}
.contents.contents--privacy .wrapper {
  margin: 15rem 0 5rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--privacy .wrapper {
    margin-top: 0;
  }
}
.contents.contents--privacy .wrapper a {
  color: #0068B7;
}
.contents.contents--privacy .wrapper .section-wrap-01 {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--privacy .wrapper .section-wrap-01 {
    margin-top: 2rem;
  }
}
.contents.contents--privacy .wrapper .section-wrap-01 .sec-title-01 {
  font-size: 3rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--privacy .wrapper .section-wrap-01 .sec-title-01 {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
  }
}
.contents.contents--privacy .wrapper .section-wrap-01 p {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--privacy .wrapper .section-wrap-01 p {
    margin-bottom: 1.25rem;
  }
}
.contents.contents--privacy .wrapper .section-wrap-01 table {
  margin: 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--privacy .wrapper .section-wrap-01 table {
    margin: 0.8rem 0;
    font-size: 1.4rem;
  }
}
.contents.contents--privacy .wrapper .section-wrap-02 {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--privacy .wrapper .section-wrap-02 {
    margin-top: 2rem;
  }
}
.contents.contents--privacy .wrapper .section-wrap-02 .sec-title-02 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--privacy .wrapper .section-wrap-02 .sec-title-02 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
}
.contents.contents--privacy .wrapper .section-wrap-02 .list-01 li {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--privacy .wrapper .section-wrap-02 .list-01 li {
    margin-top: 1rem;
  }
}
.contents.contents--privacy .wrapper .section-wrap-02 .list-01 li a {
  padding-right: 1rem;
}
.contents.contents--privacy .wrapper .section-wrap-02 .list-01 li a::after {
  content: "\f1c5";
  font-family: bootstrap-icons;
  font-size: 2.5rem;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .contents.contents--privacy .wrapper .section-wrap-02 .list-01 li a::after {
    font-size: 1.5rem;
  }
}
.contents.contents--privacy .wrapper .section-wrap-02 .list-02 li {
  margin-left: 1em;
}
.contents.contents--privacy .wrapper .section-wrap-02 .list-02 li a {
  padding-right: 1rem;
}
.contents.contents--privacy .wrapper .section-wrap-02 .list-02 li a::after {
  content: "\f756";
  font-family: bootstrap-icons;
  font-size: 2.5rem;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .contents.contents--privacy .wrapper .section-wrap-02 .list-02 li a::after {
    font-size: 1.7rem;
  }
}
.contents.contents--privacy .content-end {
  text-align: right;
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {		
	}
	※CSSに展開した場合

----------------------------------------------------*/
.contents.contents--using-this-site {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--using-this-site {
    font-size: 1.5rem;
  }
}
.contents.contents--using-this-site .wrapper {
  margin: 15rem 0 5rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--using-this-site .wrapper {
    margin-top: 0;
  }
}
.contents.contents--using-this-site a {
  color: #0068b7;
}
.contents.contents--using-this-site .section-wrap-01 {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--using-this-site .section-wrap-01 {
    margin-top: 2rem;
  }
}
.contents.contents--using-this-site .section-wrap-01 .sec-title-01 {
  font-size: 3rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--using-this-site .section-wrap-01 .sec-title-01 {
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
  }
}
.contents.contents--using-this-site .section-wrap-01 p {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--using-this-site .section-wrap-01 p {
    font-size: 1.5rem;
  }
}
.contents.contents--using-this-site .section-wrap-01 li {
  margin-top: 2rem;
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--using-this-site .section-wrap-01 li {
    margin-top: 1rem;
    font-size: 1.5rem;
  }
}
.contents.contents--using-this-site .section-wrap-01 .list-02 li {
  list-style: none;
  margin-top: 0;
}
.contents.contents--using-this-site .section-wrap-01 table {
  border-collapse: collapse;
  width: 90%;
  line-height: 2.5rem;
  margin: 2rem auto;
}
@media screen and (max-width: 767px) {
  .contents.contents--using-this-site .section-wrap-01 table {
    margin: 0.8rem 0;
    width: 100%;
  }
}
.contents.contents--using-this-site .section-wrap-01 table thead {
  background-color: #eee;
}
.contents.contents--using-this-site .section-wrap-01 table thead th {
  border: 1px solid #ccc;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  padding: 1rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--using-this-site .section-wrap-01 table thead th {
    font-size: 1.5rem;
  }
}
.contents.contents--using-this-site .section-wrap-01 table tbody td {
  border: 1px solid #ccc;
  font-size: 2.5rem;
  line-height: 32px;
  padding: 1rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--using-this-site .section-wrap-01 table tbody td {
    font-size: 1.5rem;
  }
}
.contents.contents--using-this-site .content-end {
  text-align: right;
}

/*----------------------------------------------------

	各ページの独自モジュールスタイルのCSS。

	【記述ルール】
	{ ページ名(top, about等) }○○○○

	階層はルートクラスより、三階層までが基本
	【例】
	.top-sec .top-sec__ttl span {
	}
	※CSSに展開した場合

----------------------------------------------------*/
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .mental-skill .l-inner {
    padding: 0rem;
  }
}
.contents.contents--mental-skill .mental-skill .heading-D {
  padding: 4rem 0;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .mental-skill .heading-D {
    padding: 2rem 0;
    line-height: 1.2;
    margin: 0 2rem;
  }
}
.contents.contents--mental-skill .common__txt-bold {
  font-weight: bold;
}
.contents.contents--mental-skill .common__txt-b {
  font-weight: bold;
  color: #0068B7;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .common__ttl-center {
    text-align: center;
  }
}
.contents.contents--mental-skill .mental__inner {
  margin: 0 10rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .mental__inner {
    margin: 0;
  }
}
.contents.contents--mental-skill .mental-section {
  background-color: #FFF;
  border-radius: 20px;
  padding: 8rem 0;
  margin: 10rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .mental-section {
    margin: 4rem 0;
    padding: 2.5rem 1.5rem;
  }
}
.contents.contents--mental-skill .mental__wrap {
  position: relative;
  background-color: #DBEEFC;
  margin: 30rem 0 8rem 0;
  padding: 8rem 15rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .mental__wrap {
    margin: 11rem 0 4rem 0;
    padding: 2rem;
  }
}
.contents.contents--mental-skill .mental-ttl {
  font-size: 4rem;
  color: #0068B7;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .mental-ttl {
    font-size: 2rem;
  }
}
.contents.contents--mental-skill .mental-sub {
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .mental-sub {
    font-size: 1.5rem;
  }
}
.contents.contents--mental-skill .mental__heading-ttl {
  font-size: 3.3rem;
  color: #0068B7;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .mental__heading-ttl {
    font-size: 2.1rem;
  }
}
.contents.contents--mental-skill .mental__heading-sub {
  font-size: 4rem;
  text-align: center;
  position: relative;
  padding-bottom: 3.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .mental__heading-sub {
    font-size: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.contents.contents--mental-skill .mental__heading-sub::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 28rem;
  height: 2px;
  background-color: #0068B7;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .mental__heading-sub::after {
    width: 50%;
  }
}
.contents.contents--mental-skill .mental__heading-span {
  font-size: 2.4rem;
  display: block;
  margin-top: -0.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .mental__heading-span {
    font-size: 1.75rem;
  }
}
.contents.contents--mental-skill .mental__subject {
  width: 85%;
  position: absolute;
  top: -2.5%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  border: 1px #0068B7 solid;
  border-radius: 20px;
  padding: 5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .mental__subject {
    width: 90%;
    top: -1%;
    padding: 2.5rem 2rem;
  }
}
.contents.contents--mental-skill .mental__subject-wrap {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
  gap: 2%;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .mental__subject-wrap {
    display: block;
    margin: 0;
  }
}
.contents.contents--mental-skill .mental__subject-01 {
  display: flex;
  gap: 2%;
  width: 100%;
  align-items: center;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .mental__subject-01 {
    font-size: 1.5rem;
    margin-top: 2rem;
    gap: 5%;
  }
}
.contents.contents--mental-skill .mental__subject-02 {
  width: 120%;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .mental__subject-02 {
    width: 100%;
  }
}
.contents.contents--mental-skill .mental__subject-check {
  width: 3.5rem;
  height: 3.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .mental__subject-check {
    width: 2rem;
    height: 2rem;
  }
}
.contents.contents--mental-skill .mental__athlete {
  margin: 10rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .mental__athlete {
    margin: 23rem 0 4rem 0;
  }
}
.contents.contents--mental-skill .mental__athlete-txt {
  font-size: 2.5rem;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .mental__athlete-txt {
    font-size: 1.8rem;
    margin-top: 3.5rem;
  }
}
.contents.contents--mental-skill .mental__athlete-txt span {
  display: inline-block;
  padding-top: 2.5rem;
}
.contents.contents--mental-skill .top-message__ttl {
  font-size: 5rem;
  color: #0068B7;
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .top-message__ttl {
    font-size: 2.5rem;
    line-height: 1.5;
    margin-bottom: 4rem;
  }
}
.contents.contents--mental-skill .top-message__text {
  font-size: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .top-message__text {
    font-size: 1.8rem;
    text-align: left;
  }
}
.contents.contents--mental-skill .feature__wrap {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .feature__wrap {
    margin-top: 6rem;
  }
}
.contents.contents--mental-skill .feature__cont {
  display: flex;
  gap: 5%;
  border: 1px #0068B7 solid;
  border-radius: 20px;
  padding: 3rem 4rem 4rem 4rem;
  margin: 3rem 0;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .feature__cont {
    display: block;
    padding: 4.5rem 2rem 2rem 2rem;
    position: relative;
    margin: 5rem 0 0 0;
  }
}
.contents.contents--mental-skill .feature__cont-01 {
  display: flex;
  align-items: center;
  gap: 2%;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .feature__cont-01 {
    margin-bottom: 2.5rem;
  }
}
.contents.contents--mental-skill .feature__cont-ttl {
  font-size: 2.8rem;
  color: #0068B7;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .feature__cont-ttl {
    font-size: 1.6rem;
  }
}
.contents.contents--mental-skill .feature__cont-txt {
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .feature__cont-txt {
    font-size: 1.5rem;
  }
}
.contents.contents--mental-skill .feature__cont-img {
  width: 14rem;
  height: 100%;
  flex-shrink: 0;
}
.contents.contents--mental-skill .feature__cont-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .feature__cont-img {
    display: flex;
    width: 100%;
    gap: 6%;
    align-items: center;
  }
  .contents.contents--mental-skill .feature__cont-img img {
    width: 5rem;
  }
}
.contents.contents--mental-skill .feature__cont-exam {
  background-color: #F5F5F5;
  font-size: 1.8rem;
  padding: 2rem;
  margin-top: 3rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .feature__cont-exam {
    font-size: 1.2rem;
    margin-top: 2.5rem;
    padding: 1rem;
  }
}
.contents.contents--mental-skill .feature__exam-row {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .feature__exam-row {
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
}
.contents.contents--mental-skill .feature__exam-wrap {
  display: inline-block;
  min-width: 12em;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .feature__exam-wrap {
    display: block;
    min-width: auto;
    margin-bottom: 0.3rem;
  }
}
.contents.contents--mental-skill .feature__exam-separator {
  margin-right: 0.5em;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .feature__exam-separator {
    display: block;
    min-width: auto;
    margin-bottom: 0.3rem;
  }
}
.contents.contents--mental-skill .feature__exam-content {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .feature__exam-content {
    display: block;
    flex: none;
  }
}
.contents.contents--mental-skill .feature__icon {
  width: 8rem;
  height: 8rem;
  border-radius: 100%;
  background: #0068B7;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .feature__icon {
    position: absolute;
    top: -3.8rem;
    left: 50%;
    transform: translateX(-50%);
    width: 7rem;
    height: 7rem;
  }
}
.contents.contents--mental-skill .feature__icon-txt {
  font-size: 1.9rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .feature__icon-txt {
    font-size: 1.2rem;
  }
}
.contents.contents--mental-skill .feature__icon-num {
  font-family: "DIN";
  font-size: 3.9rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .feature__icon-num {
    font-size: 3rem;
  }
}
.contents.contents--mental-skill .lecturer__cont {
  border: 1px solid #0068B7;
  border-radius: 2rem;
  padding: 5rem 4rem;
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .lecturer__cont {
    margin-top: 2.5rem;
    flex-direction: column;
    gap: 3rem;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
  }
}
.contents.contents--mental-skill .lecturer__icon {
  width: 25rem;
  height: 25rem;
  text-align: center;
  align-content: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .lecturer__icon {
    width: 17.5rem;
    height: 17.5rem;
    margin: 0 auto;
  }
}
.contents.contents--mental-skill .lecturer__wrap {
  width: 70rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .lecturer__wrap {
    width: 100%;
  }
}
.contents.contents--mental-skill .lecturer__name {
  font-size: 3.3rem;
  font-weight: bold;
  color: #0068B7;
  line-height: 1.5;
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .lecturer__name {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    text-align: center;
  }
}
.contents.contents--mental-skill .lecturer__name span {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .lecturer__name span {
    font-size: 1.6rem;
  }
}
.contents.contents--mental-skill .lecturer__post {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 2.5rem;
  position: relative;
  padding-left: 1.5rem;
}
.contents.contents--mental-skill .lecturer__post::after {
  position: absolute;
  background-color: #0068B7;
  width: 1.2px;
  height: 1.5rem;
  content: "";
  left: 0;
  top: 25%;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .lecturer__post::after {
    height: 80%;
    top: 12%;
  }
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .lecturer__post {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}
.contents.contents--mental-skill .lecturer__txt {
  font-size: 2.2rem;
  margin: 3rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .lecturer__txt {
    font-size: 1.7rem;
    margin: 2rem 0;
  }
}
.contents.contents--mental-skill .archive-container {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .archive-container {
    margin-top: 3.5rem;
  }
}
.contents.contents--mental-skill .archive__wrap {
  margin: 3rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .archive__wrap {
    margin: 1.5rem 0 0 0;
  }
}
.contents.contents--mental-skill .archive__cont {
  background-color: #EEF8FF;
  border-radius: 20px;
  padding: 4rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .archive__cont {
    padding: 2rem;
  }
}
.contents.contents--mental-skill .archive__cont-wrap {
  display: flex;
  gap: 5%;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .archive__cont-wrap {
    display: block;
  }
}
.contents.contents--mental-skill .archive__cont-img {
  padding: 2rem 0;
  background-color: #FFF;
  border-radius: 10px;
  width: 31.5rem;
  text-align: center;
  margin-top: 3rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .archive__cont-img {
    width: 26.5rem;
    padding: 1.5rem 0;
    margin-top: 1.5rem;
  }
}
.contents.contents--mental-skill .archive__cont-img img {
  width: 22.7rem;
  height: 8rem;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .archive__cont-img img {
    width: 18rem;
    height: 5rem;
  }
}
.contents.contents--mental-skill .archive__ttl {
  font-size: 2.8rem;
  color: #0068B7;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .archive__ttl {
    font-size: 1.65rem;
  }
}
.contents.contents--mental-skill .archive__ttl-sub {
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .archive__ttl-sub {
    font-size: 1.4rem;
  }
}
.contents.contents--mental-skill .archive__txt {
  font-size: 2.2rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .archive__txt {
    font-size: 1.5rem;
  }
}
.contents.contents--mental-skill .program__wrap {
  display: flex;
  gap: 3%;
  margin-top: 6rem;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .program__wrap {
    margin-top: 3.7rem;
    gap: 5%;
  }
}
.contents.contents--mental-skill .program__cont {
  width: 100%;
}
.contents.contents--mental-skill .program__are {
  width: 30%;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .program__are {
    width: 70%;
  }
}
.contents.contents--mental-skill .program__ttl {
  font-weight: bold;
  color: #0068B7;
  padding-bottom: 2rem;
  border-bottom: #0068B7 1px solid;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .program__ttl {
    font-size: 1.5rem;
    padding-bottom: 1rem;
  }
}
.contents.contents--mental-skill .program__txt {
  margin: 3.5rem 0 2rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .program__txt {
    font-size: 1.4rem;
    height: 20%;
    margin: 2.25rem 0 4rem 0;
  }
}
.contents.contents--mental-skill .program__txt::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #CCCCCC;
  right: 0;
  bottom: -1.5rem;
}
.contents.contents--mental-skill .voice__wrap {
  margin: 8rem 0;
  display: flex;
  justify-content: center;
  gap: 3%;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .voice__wrap {
    display: block;
    margin: 3.5rem 0 0 0;
  }
}
.contents.contents--mental-skill .voice__cont {
  background-color: #F7F7F7;
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .voice__cont {
    flex-wrap: nowrap;
    padding: 1.25rem;
    margin-top: 1.25rem;
    gap: 7%;
    align-items: center;
  }
}
.contents.contents--mental-skill .voice__cont-img {
  background-color: #FFF;
  width: 14.5rem;
  height: 14.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px #0068B7 solid;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .voice__cont-img {
    width: 7.2rem;
    height: 7.2rem;
    flex-shrink: 0;
  }
}
.contents.contents--mental-skill .voice__cont-img img {
  width: 11rem;
  height: 13rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .voice__cont-img img {
    width: 5rem;
    height: 7rem;
  }
}
.contents.contents--mental-skill .voice__cont-txt {
  font-size: 2.2rem;
  margin-top: 3.5rem;
  padding: 2rem;
  background-color: #FFF;
  border-radius: 20px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .voice__cont-txt {
    font-size: 1.8rem;
    margin: 0;
    padding: 1.25rem;
  }
}
.contents.contents--mental-skill .voice__cont-txt::after {
  content: "";
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 2rem solid transparent;
  border-right: 2rem solid transparent;
  border-bottom: 2rem solid white;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .voice__cont-txt::after {
    border-top: 1.5rem solid transparent;
    border-bottom: 1.5rem solid transparent;
    border-right: 1.5rem solid white;
    left: -3rem;
    top: 50%;
    transform: translateY(-50%);
  }
}
.contents.contents--mental-skill .contact {
  margin: 0;
}
.contents.contents--mental-skill .contact__container {
  background: #FFF;
  text-align: center;
  border-radius: 2rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .contact__container {
    border-radius: 1rem;
    padding: 0;
  }
}
.contents.contents--mental-skill .contact__ttl {
  color: #0068B7;
  font-size: 3.3rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .contact__ttl {
    font-size: 2.1rem;
  }
}
.contents.contents--mental-skill .contact__txt {
  font-size: 2.5rem;
  padding: 5rem 0 6rem 0;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .contact__txt {
    font-size: 1.4rem;
    padding: 2.5rem 0 3.5rem 0;
  }
}
.contents.contents--mental-skill .contact__list {
  text-align: left;
  width: 60%;
  margin: 2rem auto 6rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .contact__list {
    width: 90%;
    margin: 2rem auto 3rem;
  }
}
.contents.contents--mental-skill .contact__list li {
  font-size: 2.5rem;
  position: relative;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .contact__list li {
    font-size: 1.6rem;
    padding-left: 1.5rem;
  }
}
.contents.contents--mental-skill .contact__list li::before {
  position: absolute;
  content: "・";
  top: 0;
  left: 0;
}
.contents.contents--mental-skill .contact__list .list-none {
  padding-left: 0;
}
.contents.contents--mental-skill .contact__list .list-none::before {
  content: none;
}
.contents.contents--mental-skill .contact .btn-A a {
  font-weight: normal;
  line-height: 1.4;
  width: 22vw;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .contact .btn-A a {
    width: 90%;
  }
}
.contents.contents--mental-skill .contact .btn-A a span {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .contents.contents--mental-skill .contact .btn-A a span {
    font-size: 1.6rem;
  }
}

/*--------------------------
	animation
--------------------------*/
/*----------------------------------------------------
  リサイズ時のtransition停止
----------------------------------------------------*/
body.transition-stop * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

/*----------------------------------------------------
  見出し アニメーション
----------------------------------------------------*/
.a-heading-A {
  opacity: 0;
  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);
  -moz-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) {
  transition: 0.65s 0.0625s;
}
.a-anim-txts > span:nth-child(2) {
  transition: 0.65s 0.125s;
}
.a-anim-txts > span:nth-child(3) {
  transition: 0.65s 0.1875s;
}
.a-anim-txts > span:nth-child(4) {
  transition: 0.65s 0.25s;
}
.a-anim-txts > span:nth-child(5) {
  transition: 0.65s 0.3125s;
}
.a-anim-txts > span:nth-child(6) {
  transition: 0.65s 0.375s;
}
.a-anim-txts > span:nth-child(7) {
  transition: 0.65s 0.4375s;
}
.a-anim-txts > span:nth-child(8) {
  transition: 0.65s 0.5s;
}
.a-anim-txts > span:nth-child(9) {
  transition: 0.65s 0.5625s;
}
.a-anim-txts > span:nth-child(10) {
  transition: 0.65s 0.625s;
}
.a-anim-txts > span:nth-child(11) {
  transition: 0.65s 0.6875s;
}
.a-anim-txts > span:nth-child(12) {
  transition: 0.65s 0.75s;
}
.a-anim-txts > span:nth-child(13) {
  transition: 0.65s 0.8125s;
}
.a-anim-txts > span:nth-child(14) {
  transition: 0.65s 0.875s;
}
.a-anim-txts > span:nth-child(15) {
  transition: 0.65s 0.9375s;
}
.a-anim-txts > span:nth-child(16) {
  transition: 0.65s 1s;
}
.a-anim-txts > span:nth-child(17) {
  transition: 0.65s 1.0625s;
}
.a-anim-txts > span:nth-child(18) {
  transition: 0.65s 1.125s;
}
.a-anim-txts > span:nth-child(19) {
  transition: 0.65s 1.1875s;
}
.a-anim-txts > span:nth-child(20) {
  transition: 0.65s 1.25s;
}
.a-anim-txts > span:nth-child(21) {
  transition: 0.65s 1.3125s;
}
.a-anim-txts > span:nth-child(22) {
  transition: 0.65s 1.375s;
}
.a-anim-txts > span:nth-child(23) {
  transition: 0.65s 1.4375s;
}
.a-anim-txts > span:nth-child(24) {
  transition: 0.65s 1.5s;
}
.a-anim-txts > span:nth-child(25) {
  transition: 0.65s 1.5625s;
}
.a-anim-txts > span:nth-child(26) {
  transition: 0.65s 1.625s;
}
.a-anim-txts > span:nth-child(27) {
  transition: 0.65s 1.6875s;
}
.a-anim-txts > span:nth-child(28) {
  transition: 0.65s 1.75s;
}
.a-anim-txts > span:nth-child(29) {
  transition: 0.65s 1.8125s;
}
.a-anim-txts > span:nth-child(30) {
  transition: 0.65s 1.875s;
}
.a-anim-txts > span:nth-child(31) {
  transition: 0.65s 1.9375s;
}
.a-anim-txts > span:nth-child(32) {
  transition: 0.65s 2s;
}
.a-anim-txts > span:nth-child(33) {
  transition: 0.65s 2.0625s;
}
.a-anim-txts > span:nth-child(34) {
  transition: 0.65s 2.125s;
}
.a-anim-txts > span:nth-child(35) {
  transition: 0.65s 2.1875s;
}
.a-anim-txts > span:nth-child(36) {
  transition: 0.65s 2.25s;
}
.a-anim-txts > span:nth-child(37) {
  transition: 0.65s 2.3125s;
}
.a-anim-txts > span:nth-child(38) {
  transition: 0.65s 2.375s;
}
.a-anim-txts > span:nth-child(39) {
  transition: 0.65s 2.4375s;
}
.a-anim-txts > span:nth-child(40) {
  transition: 0.65s 2.5s;
}
.a-anim-txts > span:nth-child(41) {
  transition: 0.65s 2.5625s;
}
.a-anim-txts > span:nth-child(42) {
  transition: 0.65s 2.625s;
}
.a-anim-txts > span:nth-child(43) {
  transition: 0.65s 2.6875s;
}
.a-anim-txts > span:nth-child(44) {
  transition: 0.65s 2.75s;
}
.a-anim-txts > span:nth-child(45) {
  transition: 0.65s 2.8125s;
}
.a-anim-txts > span:nth-child(46) {
  transition: 0.65s 2.875s;
}
.a-anim-txts > span:nth-child(47) {
  transition: 0.65s 2.9375s;
}
.a-anim-txts > span:nth-child(48) {
  transition: 0.65s 3s;
}
.a-anim-txts > span:nth-child(49) {
  transition: 0.65s 3.0625s;
}
.a-anim-txts > span:nth-child(50) {
  transition: 0.65s 3.125s;
}
.a-anim-txts > span:nth-child(51) {
  transition: 0.65s 3.1875s;
}
.a-anim-txts > span:nth-child(52) {
  transition: 0.65s 3.25s;
}
.a-anim-txts > span:nth-child(53) {
  transition: 0.65s 3.3125s;
}
.a-anim-txts > span:nth-child(54) {
  transition: 0.65s 3.375s;
}
.a-anim-txts > span:nth-child(55) {
  transition: 0.65s 3.4375s;
}
.a-anim-txts > span:nth-child(56) {
  transition: 0.65s 3.5s;
}
.a-anim-txts > span:nth-child(57) {
  transition: 0.65s 3.5625s;
}
.a-anim-txts > span:nth-child(58) {
  transition: 0.65s 3.625s;
}
.a-anim-txts > span:nth-child(59) {
  transition: 0.65s 3.6875s;
}
.a-anim-txts > span:nth-child(60) {
  transition: 0.65s 3.75s;
}
.a-anim-txts > span:nth-child(61) {
  transition: 0.65s 3.8125s;
}
.a-anim-txts > span:nth-child(62) {
  transition: 0.65s 3.875s;
}
.a-anim-txts > span:nth-child(63) {
  transition: 0.65s 3.9375s;
}
.a-anim-txts > span:nth-child(64) {
  transition: 0.65s 4s;
}
.a-anim-txts > span:nth-child(65) {
  transition: 0.65s 4.0625s;
}
.a-anim-txts > span:nth-child(66) {
  transition: 0.65s 4.125s;
}
.a-anim-txts > span:nth-child(67) {
  transition: 0.65s 4.1875s;
}
.a-anim-txts > span:nth-child(68) {
  transition: 0.65s 4.25s;
}
.a-anim-txts > span:nth-child(69) {
  transition: 0.65s 4.3125s;
}
.a-anim-txts > span:nth-child(70) {
  transition: 0.65s 4.375s;
}
.a-anim-txts > span:nth-child(71) {
  transition: 0.65s 4.4375s;
}
.a-anim-txts > span:nth-child(72) {
  transition: 0.65s 4.5s;
}
.a-anim-txts > span:nth-child(73) {
  transition: 0.65s 4.5625s;
}
.a-anim-txts > span:nth-child(74) {
  transition: 0.65s 4.625s;
}
.a-anim-txts > span:nth-child(75) {
  transition: 0.65s 4.6875s;
}
.a-anim-txts > span:nth-child(76) {
  transition: 0.65s 4.75s;
}
.a-anim-txts > span:nth-child(77) {
  transition: 0.65s 4.8125s;
}
.a-anim-txts > span:nth-child(78) {
  transition: 0.65s 4.875s;
}
.a-anim-txts > span:nth-child(79) {
  transition: 0.65s 4.9375s;
}
.a-anim-txts > span:nth-child(80) {
  transition: 0.65s 5s;
}
.a-anim-txts > span:nth-child(81) {
  transition: 0.65s 5.0625s;
}
.a-anim-txts > span:nth-child(82) {
  transition: 0.65s 5.125s;
}
.a-anim-txts > span:nth-child(83) {
  transition: 0.65s 5.1875s;
}
.a-anim-txts > span:nth-child(84) {
  transition: 0.65s 5.25s;
}
.a-anim-txts > span:nth-child(85) {
  transition: 0.65s 5.3125s;
}
.a-anim-txts > span:nth-child(86) {
  transition: 0.65s 5.375s;
}
.a-anim-txts > span:nth-child(87) {
  transition: 0.65s 5.4375s;
}
.a-anim-txts > span:nth-child(88) {
  transition: 0.65s 5.5s;
}
.a-anim-txts > span:nth-child(89) {
  transition: 0.65s 5.5625s;
}
.a-anim-txts > span:nth-child(90) {
  transition: 0.65s 5.625s;
}
.a-anim-txts > span:nth-child(91) {
  transition: 0.65s 5.6875s;
}
.a-anim-txts > span:nth-child(92) {
  transition: 0.65s 5.75s;
}
.a-anim-txts > span:nth-child(93) {
  transition: 0.65s 5.8125s;
}
.a-anim-txts > span:nth-child(94) {
  transition: 0.65s 5.875s;
}
.a-anim-txts > span:nth-child(95) {
  transition: 0.65s 5.9375s;
}
.a-anim-txts > span:nth-child(96) {
  transition: 0.65s 6s;
}
.a-anim-txts > span:nth-child(97) {
  transition: 0.65s 6.0625s;
}
.a-anim-txts > span:nth-child(98) {
  transition: 0.65s 6.125s;
}
.a-anim-txts > span:nth-child(99) {
  transition: 0.65s 6.1875s;
}
.a-anim-txts > span:nth-child(100) {
  transition: 0.65s 6.25s;
}
.a-anim-txts.active span {
  opacity: 1;
  -webkit-transform: translate(0, 0) skewX(0deg) scale(1, 1);
  -moz-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);
  -moz-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  transform-origin: top center;
  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;
  transition: 0.65s 0.65s;
}
.a-slide-box-A img {
  transition: 0.65s 0.65s;
  -webkit-transform: scale(1.5, 1.5);
  -moz-transform: scale(1.5, 1.5);
  transform: scale(1.5, 1.5);
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  transform-origin: center center;
}
.a-slide-box-A.a-slide-box-A--t {
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  transform-origin: top center;
}
.a-slide-box-A.a-slide-box-A--b {
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: bottom center;
  -moz-transform-origin: bottom center;
  transform-origin: bottom center;
}
.a-slide-box-A.a-slide-box-A--l {
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  transform-origin: left center;
}
.a-slide-box-A.a-slide-box-A--r {
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  transform-origin: right center;
}
.a-slide-box-A.active {
  -webkit-transform: scale(1, 1);
  -moz-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);
  -moz-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;
  -moz-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);
  -moz-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  transform-origin: right center;
  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);
  -moz-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  transition: all 0.65s;
}
.a-slide-box-B.a-slide-box-B--t .slide-box-B__bg {
  -webkit-transform-origin: bottom center;
  -moz-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;
  -moz-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%);
  -moz-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;
  -moz-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;
  -moz-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%);
  -moz-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;
  -moz-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;
  -moz-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);
  -moz-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;
  -moz-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;
  -moz-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);
  -moz-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);
  -moz-transform: scale(1, 1);
  transform: scale(1, 1);
}
.a-slide-box-B.active .slide-box-B__bg:after {
  -webkit-transform: translate(0, 0);
  -moz-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;
  -moz-animation: slide 60s linear infinite;
  animation: slide 60s linear infinite;
  position: relative;
}
@keyframes slide {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-1920px, 0, 0);
    -moz-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;
  }
}

/*# sourceMappingURL=style.css.map */
