@charset "UTF-8";
/*===============================================================
	読み込み
===============================================================*/
/*===============================================================
	変数
===============================================================*/
/*　画面左右のマージン　*/
/*　幅　*/
/*	グリッド幅  */
/*	セクション、コンテンツ間のマージン　*/
/*===============================================================
	色 _color.scss
===============================================================*/
/*===============================================================

	_reset.scss 2021/9/24

===============================================================*/
/* 初期化
----------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  vertical-align: baseline;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
}

blockquote,
q {
  quotes: none;
}

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

input,
textarea {
  margin: 0;
  padding: 0;
}

input[type=submit],
textarea {
  font-family: inherit;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

body {
  font-family: "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", Osaka, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
th,
td,
dt,
dd,
div {
  font-size: 1.6rem;
}

caption,
th,
td {
  text-align: left;
  vertical-align: top;
}

img {
  vertical-align: top;
  border: 0;
}

ul,
li {
  list-style: none;
}

option {
  padding-right: 1em;
}

address,
caption {
  font-style: normal;
  font-weight: normal;
}

a {
  text-decoration: underline;
}

ul a,
li a {
  zoom: 1;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

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

/*===============================================================
	_mixin.scss
===============================================================*/
/*===============================================================
	ボタン
	@include btn_base(#c00,#000,#fff,#fff,auto);
===============================================================*/
/*===============================================================
	矢印
	@include mx_arw();	
===============================================================*/
/*===============================================================
	三角
	@include mx_sankaku(幅,高さ,色,色hover,向き);	
===============================================================*/
/*===============================================================
	センタリング
	@include mx_margin_center();	
===============================================================*/
/*===============================================================
	斜線の背景
	@include mx_slash($color1,$color2,$width);	
===============================================================*/
/*===============================================================
	グラデーション
	@include mx_grade(色1,色2,向き（横:h / 縦:v）)
===============================================================*/
/*===============================================================
	font
===============================================================*/
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("/common/font/noto_sans/NotoSansCJKjp-Regular_subset.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: bold;
  font-weight: 800;
  src: url("/common/font/noto_sans/NotoSansCJKjp-Bold_subset.woff") format("woff");
}
@font-face {
  font-family: "YakuHanJP";
  font-style: normal;
  font-weight: normal;
  src: url("/common/font/yakuhan/YakuHanJP-Regular.woff2") format("woff2"), url("/common/font/yakuhan/YakuHanJP-Regular.woff") format("woff");
}
@font-face {
  font-family: "YakuHanJP";
  font-style: normal;
  font-weight: bold;
  src: url("/common/font/yakuhan/YakuHanJP-Bold.woff2") format("woff2"), url("/common/font/yakuhan/YakuHanJP-Bold.woff") format("woff");
}
body {
  font-family: "Noto Sans CJK JP", "YakuHanJP", sans-serif;
}

/*===============================================================
	フォント
===============================================================*/
/*-------------------------------------------------------------
フォントサイズ
-------------------------------------------------------------*/
.fs_bass {
  font-size: 1.6rem;
}

.fs_xs {
  font-size: 1rem;
}

.fs_sm {
  font-size: 1.4rem;
}

.fs_md {
  font-size: 2rem;
}

.fs_lg {
  font-size: 2.5rem;
}

.fs_xl {
  font-size: 3rem;
}

.fs_xxl {
  font-size: 4rem;
}

.fs_xxxl {
  font-size: 5rem;
}

/* for TABLET */
/* SP */
@media screen and (max-width: 800px) {
  .fs_bass {
    font-size: 4vw;
  }
  .fs_xs {
    font-size: 3.2vw;
  }
  .fs_sm {
    font-size: 3.8vw;
  }
  .fs_md {
    font-size: 4.2vw;
  }
  .fs_lg {
    font-size: 4.2vw;
  }
  .fs_xl {
    font-size: 4.5vw;
  }
  .fs_xxl {
    font-size: 4.5vw;
  }
  .fs_xxxl {
    font-size: 5vw;
  }
}
/* for SP */
/*-------------------------------------------------------------
line-height
-------------------------------------------------------------*/
.lh_20 {
  line-height: 2;
}

.lh_19 {
  line-height: 1.9;
}

.lh_18 {
  line-height: 1.8;
}

.lh_17 {
  line-height: 1.7;
}

.lh_16 {
  line-height: 1.6;
}

.lh_15 {
  line-height: 1.5;
}

.lh_14 {
  line-height: 1.4;
}

.lh_13 {
  line-height: 1.3;
}

.lh_12 {
  line-height: 1.2;
}

.lh_11 {
  line-height: 1.1;
}

.lh_10 {
  line-height: 1;
}

/*===============================================================

	_common.scss 2021/9/24

===============================================================*/
/* html/body設定
----------------------------------------------------------------*/
body {
  width: 100%;
  color: #000;
  background: #fff;
  text-align: left;
  position: relative;
  overflow-x: hidden;
  -webkit-text-size-adjust: none;
  /* 縦横文字サイズ同じ */
  -webkit-font-smoothing: antialiased;
  font-family: "Noto Sans CJK JP", "YakuHanJP", sans-serif !important;
}
body * {
  font-family: "Noto Sans CJK JP", "YakuHanJP", sans-serif !important;
}

a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #0087AD;
  -webkit-transition: color 0.3s, opacity 0.3s;
  transition: color 0.3s, opacity 0.3s;
  text-decoration: none;
}

a:hover {
  color: #0098c3;
  text-decoration: none;
}

/* a:focus {
	outline: 2px;
	box-shadow: 0 0 20px 0 $c_focus;
} */
a:focus,
button:focus,
select:focus {
  outline: 2px;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
.select_wrap:focus-within {
  outline: 2px;
  -webkit-box-shadow: 0 0 20px 0 #0087AD;
          box-shadow: 0 0 20px 0 #0087AD;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.select_wrap:focus-within {
  outline: 2px;
  -webkit-box-shadow: 0 0 20px 0 #0087AD;
          box-shadow: 0 0 20px 0 #0087AD;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～640px */
@media only screen and (max-width: 800px) {
  body {
    overflow-x: hidden;
  }
}
/* for SP max-width: 800px */
/*===============================================================

	基本文字サイズ、装飾

===============================================================*/
h1,
h2,
h3,
h4 {
  line-height: 1.5;
  font-weight: bold;
}

p {
  line-height: 2;
}

sup {
  margin: 0;
  padding: 0;
  font-size: 1.1rem;
}

.bold {
  font-weight: bold;
}

.txt_caption {
  font-size: small;
  line-height: 1.4;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  li,
  th,
  td,
  dt,
  dd,
  div {
    line-height: 1.6;
  }
  div,
  p {
    line-height: 1.8;
  }
  li {
    line-height: 1.6;
  }
}
/* for SP max-width: 800px */
/*===============================================================

	基本文字サイズ、装飾

===============================================================*/
@font-face {
  font-family: "icomoon2024";
  src: url("../../common/font/iconmoon/icomoon2024.eot?9csyn6");
  src: url("../../common/font/iconmoon/icomoon2024.eot?9csyn6#iefix") format("embedded-opentype"), url("../../common/font/iconmoon/icomoon2024.ttf?9csyn6") format("truetype"), url("../../common/font/iconmoon/icomoon2024.woff?9csyn6") format("woff"), url("../../common/font/iconmoon/icomoon2024.svg?9csyn6#icomoon2024") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon_], [class*=" icon_"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon2024" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon_account_thin:before {
  content: "\e900";
}

.icon_arw_down_thin:before {
  content: "\e901";
}

.icon_arw_left_thin:before {
  content: "\e902";
}

.icon_arw_right_thin:before {
  content: "\e903";
}

.icon_arw_up_thin:before {
  content: "\e904";
}

.icon_bookmark_thin:before {
  content: "\e905";
}

.icon_calendar_thin:before {
  content: "\e906";
}

.icon_cart_thin:before {
  content: "\e907";
}

.icon_caution_thin:before {
  content: "\e908";
}

.icon_comment_thin:before {
  content: "\e909";
}

.icon_chat_thin:before {
  content: "\e90a";
}

.icon_check_thin:before {
  content: "\e90b";
}

.icon_clock_thin:before {
  content: "\e90c";
}

.icon_closs_thin:before {
  content: "\e90d";
}

.icon_document_thin:before {
  content: "\e90e";
}

.icon_download_thin:before {
  content: "\e90f";
}

.icon_eye_none_thin:before {
  content: "\e910";
}

.icon_eye_thin:before {
  content: "\e911";
}

.icon_favorite_thin:before {
  content: "\e912";
}

.icon_file_thin:before {
  content: "\e913";
}

.icon_filter_thin:before {
  content: "\e914";
}

.icon_home_thin:before {
  content: "\e915";
}

.icon_image_thin:before {
  content: "\e916";
}

.icon_information_thin:before {
  content: "\e917";
}

.icon_list_thin:before {
  content: "\e918";
}

.icon_lock_thin:before {
  content: "\e919";
}

.icon_mail_thin:before {
  content: "\e91a";
}

.icon_map_thin:before {
  content: "\e91b";
}

.icon_minus_thin:before {
  content: "\e91c";
}

.icon_mobile_thin:before {
  content: "\e91d";
}

.icon_new_tab_thin:before {
  content: "\e91e";
}

.icon_new_window_thin:before {
  content: "\e91f";
}

.icon_pdf_thin:before {
  content: "\e920";
}

.icon_plus_thin:before {
  content: "\e921";
}

.icon_refresh_thin:before {
  content: "\e922";
}

.icon_replay_thin:before {
  content: "\e923";
}

.icon_round_play_thin:before {
  content: "\e924";
}

.icon_round_stop_thin:before {
  content: "\e925";
}

.icon_search_thin:before {
  content: "\e926";
}

.icon_setting_thin:before {
  content: "\e927";
}

.icon_share_thin:before {
  content: "\e928";
}

.icon_star_thin:before {
  content: "\e929";
}

.icon_stop_thin:before {
  content: "\e92a";
}

.icon_tel_thin:before {
  content: "\e92b";
}

.icon_unlock_thin:before {
  content: "\e92c";
}

.icon_upload_thin:before {
  content: "\e92d";
}

.icon_video_thin:before {
  content: "\e92e";
}

.icon_zoom_in_thin:before {
  content: "\e92f";
}

.icon_zoom_out_thin:before {
  content: "\e930";
}

.icon_sns_facebook:before {
  content: "\e931";
}

.icon_sns_instagram:before {
  content: "\e932";
}

.icon_sns_note:before {
  content: "\e933";
}

.icon_sns_x:before {
  content: "\e934";
}

.icon_sns_youtube:before {
  content: "\e935";
}

.icon_download:before {
  content: "\e937";
}

.icon_arw_down:before {
  content: "\e938";
}

.icon_arw_left:before {
  content: "\e939";
}

.icon_arw:before,
.icon_arw_right:before {
  content: "\e93a";
}

.icon_arw_s_down:before {
  content: "\e93b";
}

.icon_arw_s_left:before {
  content: "\e93c";
}

.icon_arw_s_right:before {
  content: "\e93d";
}

.icon_arw_s_up:before {
  content: "\e93e";
}

.icon_arw_l_down:before {
  content: "\e93f";
}

.icon_arw_l_left:before {
  content: "\e940";
}

.icon_arw_l_right:before {
  content: "\e941";
}

.icon_arw_l_up:before {
  content: "\e942";
}

.icon_arw_up:before {
  content: "\e943";
}

.icon_paus:before {
  content: "\e944";
}

.icon_play:before {
  content: "\e945";
}

.icon_record:before {
  content: "\e946";
}

.icon_stop:before {
  content: "\e947";
}

.icon_dots:before {
  content: "\e948";
}

.icon_dots_v:before {
  content: "\e949";
}

.icon_sankaku_down:before {
  content: "\e94a";
}

.icon_sankaku_left:before {
  content: "\e94b";
}

.icon_sankaku:before,
.icon_sankaku_right:before {
  content: "\e94c";
}

.icon_sankaku_up:before {
  content: "\e94d";
}

.icon_clip:before {
  content: "\e94e";
}

.icon_music:before {
  content: "\e94f";
}

.icon_calculator:before {
  content: "\e950";
}

.icon_camera:before {
  content: "\e951";
}

.icon_check:before {
  content: "\e952";
}

.icon_heart:before {
  content: "\e953";
}

.icon_help:before {
  content: "\e954";
}

.icon_home1:before {
  content: "\e955";
}

.icon_photo:before {
  content: "\e956";
}

.icon_pc:before {
  content: "\e957";
}

.icon_map_pin:before {
  content: "\e958";
}

.icon_search:before {
  content: "\e959";
}

.icon_mail:before {
  content: "\e95a";
}

.icon_map:before {
  content: "\e95b";
}

.icon_message:before {
  content: "\e95c";
}

.icon_mobile:before {
  content: "\e95d";
}

.icon_blank:before {
  content: "\e95e";
}

.icon_share:before {
  content: "\e95f";
}

.icon_cart:before {
  content: "\e960";
}

.icon_info:before {
  content: "\ea0c";
}

.icon_pdf:before {
  content: "\eadf";
}

.icon_word:before {
  content: "\eae1";
}

.icon_excel:before {
  content: "\eae2";
}

/*===============================================================

	skip_link

===============================================================*/
.skip_link {
  z-index: 99999;
  position: absolute;
  top: -100px;
  left: 5px;
  background-color: #0087AD;
  color: #fff;
  width: 22rem;
  line-height: 3;
  text-align: center;
  font-weight: bold;
  border-radius: 5px;
  font-size: 1.8rem;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.skip_link:focus {
  top: 5px;
}
.skip_link:hover {
  background-color: #0087AD;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .skip_link {
    width: 20rem;
    font-size: 1.6rem;
  }
}

/*===============================================================

	_utils.scss 2021/9/24

===============================================================*/
.align_center {
  text-align: center !important;
}

.align_right {
  text-align: right !important;
}

.align_left {
  text-align: left !important;
}

@media only screen and (max-width: 800px) {
  .sp_align_center {
    text-align: center !important;
  }
  .sp_align_right {
    text-align: right !important;
  }
  .sp_align_left {
    text-align: left !important;
  }
}
/* for SP  */
/*===============================================================

	フロート関係

===============================================================*/
.clear {
  width: 100%;
  overflow: hidden;
}

.clearboth {
  clear: both;
}

.cf:before,
.cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}

.flol {
  float: left;
}

.flor {
  float: right;
}

/*===============================================================

	PC/SP/TABLET

===============================================================*/
.sp {
  display: none;
}

.tablet {
  display: none;
}

.sp {
  display: none;
}

.sp_tablet {
  display: none;
}

.none {
  display: none !important;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {
  .pc {
    display: none;
  }
  .tablet,
  .pc_tablet,
  .sp_tablet {
    display: block;
  }
}
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  .sp {
    display: block;
  }
  .pc_tablet,
  .tablet {
    display: none;
  }
}
/* for SP max-width: 800px */
/*-------------------------------------------------------------
	font	
-------------------------------------------------------------*/
.font_ss {
  font-size: smaller;
  font-size: 70%;
}

.font_s {
  font-size: small;
  font-size: 80%;
}

.font_m {
  font-size: medium;
  font-size: 90%;
}

.font_l {
  font-size: large;
  font-size: 120%;
}

.font_xl {
  font-size: larger;
  font-size: 140%;
}

/*===============================================================

	img fig

===============================================================*/
.fig img,
.fitimg img,
.photo img {
  width: 100%;
  height: auto;
}

.video_container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video_container iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
/* for SP max-width: 800px */
/*===============================================================
js_multilinkarea js_linkarea
===============================================================*/
.js_linkarea,
.js_multilinkarea {
  cursor: pointer;
}

/*===============================================================
    js_scroll
===============================================================*/
.js_scroll {
  -webkit-transition: all 1s;
  transition: all 1s;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
/*===============================================================
    js_fadein
===============================================================*/
.js_fadein {
  opacity: 0;
  /* タブレット */
  /* SP */
}
.js_fadein.is_active {
  opacity: 1;
}
/*===============================================================
    js_fadein_up
===============================================================*/
.js_fadein_up {
  opacity: 0;
  -webkit-transform: translateY(3vw);
          transform: translateY(3vw);
}
.js_fadein_up.is_active {
  opacity: 1;
  -webkit-transform: translateY(0vw);
          transform: translateY(0vw);
}

/*===============================================================
    js_fadein_down
===============================================================*/
.js_fadein_down {
  opacity: 0;
  -webkit-transform: translateY(-3vw);
          transform: translateY(-3vw);
}
.js_fadein_down.is_active {
  opacity: 1;
  -webkit-transform: translateY(0vw);
          transform: translateY(0vw);
}

/*===============================================================
    js_fadein_left
===============================================================*/
.js_fadein_left {
  opacity: 0;
  -webkit-transform: translateX(-3vw);
          transform: translateX(-3vw);
}
.js_fadein_left.is_active {
  opacity: 1;
  -webkit-transform: translateX(0vw);
          transform: translateX(0vw);
}

/*===============================================================
    js_fadein_right
===============================================================*/
.js_fadein_right {
  opacity: 0;
  -webkit-transform: translateX(3vw);
          transform: translateX(3vw);
}
.js_fadein_right.is_active {
  opacity: 1;
  -webkit-transform: translateX(0vw);
          transform: translateX(0vw);
}

/*===============================================================
    js_fadein_photo
===============================================================*/
.js_fadein_photo {
  overflow: hidden;
}
.js_fadein_photo img {
  -webkit-transition: all 1s;
  transition: all 1s;
  opacity: 0;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.js_fadein_photo.is_active img {
  opacity: 1;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/*===============================================================
	js_gsap_parallax_photo
===============================================================*/
.js_gsap_parallax_photo_reverse,
.js_gsap_parallax_photo {
  background-color: #000;
  overflow: hidden;
}

/*===============================================================
	js_2step
===============================================================*/
.js_2step, .js_2step_down, .js_2step_up {
  display: inline-block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.js_2step::before, .js_2step_down::before, .js_2step_up::before, .js_2step::after, .js_2step_down::after, .js_2step_up::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-color: #eee;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: all 0.5s cubic-bezier(0.51, -0.01, 0.21, 1.01);
  transition: all 0.5s cubic-bezier(0.51, -0.01, 0.21, 1.01);
  z-index: 2;
}
.js_2step::after, .js_2step_down::after, .js_2step_up::after {
  background-color: #fff;
}
.js_2step.is_active::before, .is_active.js_2step_down::before, .is_active.js_2step_up::before, .js_2step.is_active::after, .is_active.js_2step_down::after, .is_active.js_2step_up::after {
  -webkit-transform-origin: 0 right;
          transform-origin: 0 right;
}
.js_2step.is_active::after, .is_active.js_2step_down::after, .is_active.js_2step_up::after {
  left: auto;
  right: 0;
  width: 0%;
}
.js_2step.is_active::before, .is_active.js_2step_down::before, .is_active.js_2step_up::before {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  left: auto;
  right: 0;
  width: 0%;
}

/*===============================================================
	js_2step_up
===============================================================*/
.js_2step_up.is_active::before, .js_2step_up.is_active::after {
  -webkit-transform-origin: top 0;
          transform-origin: top 0;
  top: 0;
  bottom: auto;
  left: auto;
  right: auto;
  width: 100%;
  height: 0%;
}

/*===============================================================
	js_2step_down
===============================================================*/
.js_2step_down.is_active::before, .js_2step_down.is_active::after {
  -webkit-transform-origin: bottom 0;
          transform-origin: bottom 0;
  top: auto;
  bottom: 0;
  left: auto;
  right: auto;
  width: 100%;
  height: 0%;
}

/*===============================================================

	マージン

===============================================================*/
.mt0 {
  margin-top: 0px !important;
}

.mt05 {
  margin-top: 0.5rem !important;
}

.mt10 {
  margin-top: 1rem !important;
}

.mt15 {
  margin-top: 1.5rem !important;
}

.mt20 {
  margin-top: 2rem !important;
}

.mt25 {
  margin-top: 2.5rem !important;
}

.mt30 {
  margin-top: 3rem !important;
}

.mt40 {
  margin-top: 4rem !important;
}

.mt50 {
  margin-top: 5rem !important;
}

.mt60 {
  margin-top: 6rem !important;
}

.mt70 {
  margin-top: 7rem !important;
}

.mt80 {
  margin-top: 8rem !important;
}

.mt90 {
  margin-top: 9rem !important;
}

.mt100 {
  margin-top: 10rem !important;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {
  .mt0 {
    margin-top: 0px !important;
  }
  .mt05 {
    margin-top: 0.47vw !important;
  }
  .mt10 {
    margin-top: 0.93vw !important;
  }
  .mt15 {
    margin-top: 1.4vw !important;
  }
  .mt20 {
    margin-top: 1.87vw !important;
  }
  .mt25 {
    margin-top: 2.34vw !important;
  }
  .mt30 {
    margin-top: 2.8vw !important;
  }
  .mt40 {
    margin-top: 3.74vw !important;
  }
  .mt50 {
    margin-top: 4.67vw !important;
  }
  .mt60 {
    margin-top: 5.61vw !important;
  }
  .mt70 {
    margin-top: 6.54vw !important;
  }
  .mt80 {
    margin-top: 7.48vw !important;
  }
  .mt90 {
    margin-top: 8.41vw !important;
  }
  .mt100 {
    margin-top: 9.35vw !important;
  }
  .mb05 {
    margin-bottom: 0.47vw !important;
  }
  .mb10 {
    margin-bottom: 0.93vw !important;
  }
  .mb15 {
    margin-bottom: 1.4vw !important;
  }
  .mb20 {
    margin-bottom: 1.87vw !important;
  }
  .mb25 {
    margin-bottom: 2.34vw !important;
  }
  .mb30 {
    margin-bottom: 2.8vw !important;
  }
  .mt05 {
    margin-top: 0.47vw !important;
  }
  .mt10 {
    margin-top: 0.93vw !important;
  }
  .mt15 {
    margin-top: 1.4vw !important;
  }
  .mt20 {
    margin-top: 1.87vw !important;
  }
  .mt25 {
    margin-top: 2.34vw !important;
  }
  .mt30 {
    margin-top: 2.8vw !important;
  }
  .mt40 {
    margin-top: 3.74vw !important;
  }
  .mt50 {
    margin-top: 4.67vw !important;
  }
  .mt60 {
    margin-top: 5.61vw !important;
  }
  .mt70 {
    margin-top: 6.54vw !important;
  }
  .mt80 {
    margin-top: 7.48vw !important;
  }
  .mt90 {
    margin-top: 8.41vw !important;
  }
  .mt100 {
    margin-top: 9.35vw !important;
  }
  .mb05 {
    margin-bottom: 0.47vw !important;
  }
  .mb10 {
    margin-bottom: 0.93vw !important;
  }
  .mb15 {
    margin-bottom: 1.4vw !important;
  }
  .mb20 {
    margin-bottom: 1.87vw !important;
  }
  .mb25 {
    margin-bottom: 2.34vw !important;
  }
  .mb30 {
    margin-bottom: 2.8vw !important;
  }
  .mb40 {
    margin-bottom: 3.74vw !important;
  }
  .mb50 {
    margin-bottom: 4.67vw !important;
  }
  .mb60 {
    margin-bottom: 5.61vw !important;
  }
  .mb70 {
    margin-bottom: 6.54vw !important;
  }
  .mb80 {
    margin-bottom: 7.48vw !important;
  }
  .mb90 {
    margin-bottom: 8.41vw !important;
  }
  .mb100 {
    margin-bottom: 9.35vw !important;
  }
}
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media screen and (max-width: 800px) {
  .mt05 {
    margin-top: 0.63vw !important;
  }
  .mt10 {
    margin-top: 1.25vw !important;
  }
  .mt15 {
    margin-top: 1.88vw !important;
  }
  .mt20 {
    margin-top: 2.5vw !important;
  }
  .mt25 {
    margin-top: 3.13vw !important;
  }
  .mt30 {
    margin-top: 3.75vw !important;
  }
  .mt40 {
    margin-top: 5vw !important;
  }
  .mt50 {
    margin-top: 6.25vw !important;
  }
  .mt60 {
    margin-top: 7.5vw !important;
  }
  .mt70 {
    margin-top: 8.75vw !important;
  }
  .mt80 {
    margin-top: 10vw !important;
  }
  .mt90 {
    margin-top: 11.25vw !important;
  }
  .mt100 {
    margin-top: 12.5vw !important;
  }
  .mt0_sp {
    margin-top: 0 !important;
  }
  .mt05_sp {
    margin-top: 0.63vw !important;
  }
  .mt10_sp {
    margin-top: 1.25vw !important;
  }
  .mt15_sp {
    margin-top: 1.88vw !important;
  }
  .mt20_sp {
    margin-top: 2.5vw !important;
  }
  .mt25_sp {
    margin-top: 3.13vw !important;
  }
  .mt30_sp {
    margin-top: 3.75vw !important;
  }
  .mt40_sp {
    margin-top: 5vw !important;
  }
  .mt50_sp {
    margin-top: 6.25vw !important;
  }
  .mt60_sp {
    margin-top: 7.5vw !important;
  }
  .mt70_sp {
    margin-top: 8.75vw !important;
  }
  .mt80_sp {
    margin-top: 10vw !important;
  }
  .mt90_sp {
    margin-top: 11.25vw !important;
  }
  .mt100_sp {
    margin-top: 12.5vw !important;
  }
  .mb05_sp {
    margin-bottom: 0.63vw !important;
  }
  .mb10_sp {
    margin-bottom: 1.25vw !important;
  }
  .mb15_sp {
    margin-bottom: 1.88vw !important;
  }
  .mb20_sp {
    margin-bottom: 2.5vw !important;
  }
  .mb25_sp {
    margin-bottom: 3.13vw !important;
  }
  .mb30_sp {
    margin-bottom: 3.75vw !important;
  }
  .mb40_sp {
    margin-bottom: 5vw !important;
  }
  .mb50_sp {
    margin-bottom: 6.25vw !important;
  }
  .mb60_sp {
    margin-bottom: 7.5vw !important;
  }
  .mb70_sp {
    margin-bottom: 8.75vw !important;
  }
  .mb80_sp {
    margin-bottom: 10vw !important;
  }
  .mb90_sp {
    margin-bottom: 11.25vw !important;
  }
  .mb100_sp {
    margin-bottom: 12.5vw !important;
  }
}
/* for SP max-width: 800px */
/*-------------------------------------------------------------
 margin-bottom
-------------------------------------------------------------*/
.mb0 {
  margin-bottom: 0rem !important;
}

.mb05 {
  margin-bottom: 0.5rem !important;
}

.mb10 {
  margin-bottom: 1rem !important;
}

.mb15 {
  margin-bottom: 1.5rem !important;
}

.mb20 {
  margin-bottom: 2rem !important;
}

.mb25 {
  margin-bottom: 2.5rem !important;
}

.mb30 {
  margin-bottom: 3rem !important;
}

.mb40 {
  margin-bottom: 4rem !important;
}

.mb50 {
  margin-bottom: 5rem !important;
}

.mb60 {
  margin-bottom: 6rem !important;
}

.mb70 {
  margin-bottom: 7rem !important;
}

.mb80 {
  margin-bottom: 8rem !important;
}

.mb90 {
  margin-bottom: 9rem !important;
}

.mb100 {
  margin-bottom: 10rem !important;
}

@media screen and (max-width: 800px) {
  .mb05 {
    margin-bottom: 0.63vw !important;
  }
  .mb10 {
    margin-bottom: 1.25vw !important;
  }
  .mb15 {
    margin-bottom: 1.88vw !important;
  }
  .mb20 {
    margin-bottom: 2.5vw !important;
  }
  .mb25 {
    margin-bottom: 3.13vw !important;
  }
  .mb30 {
    margin-bottom: 3.75vw !important;
  }
  .mb40 {
    margin-bottom: 5vw !important;
  }
  .mb50 {
    margin-bottom: 6.25vw !important;
  }
  .mb60 {
    margin-bottom: 7.5vw !important;
  }
  .mb70 {
    margin-bottom: 8.75vw !important;
  }
  .mb80 {
    margin-bottom: 10vw !important;
  }
  .mb90 {
    margin-bottom: 11.25vw !important;
  }
  .mb100 {
    margin-bottom: 12.5vw !important;
  }
}
/* for SP */
/*-------------------------------------------------------------
 margin-left
-------------------------------------------------------------*/
.ml0 {
  margin-left: 0rem !important;
}

.ml05 {
  margin-left: 0.5rem !important;
}

.ml10 {
  margin-left: 1rem !important;
}

.ml15 {
  margin-left: 1.5rem !important;
}

.ml20 {
  margin-left: 2rem !important;
}

.ml25 {
  margin-left: 2.5rem !important;
}

.ml30 {
  margin-left: 3rem !important;
}

.ml40 {
  margin-left: 4rem !important;
}

.ml50 {
  margin-left: 5rem !important;
}

.ml60 {
  margin-left: 6rem !important;
}

.ml70 {
  margin-left: 7rem !important;
}

.ml80 {
  margin-left: 8rem !important;
}

.ml90 {
  margin-left: 9rem !important;
}

.ml100 {
  margin-left: 10rem !important;
}

@media screen and (max-width: 800px) {
  .ml05 {
    margin-left: 0.63vw !important;
  }
  .ml10 {
    margin-left: 1.25vw !important;
  }
  .ml15 {
    margin-left: 1.88vw !important;
  }
  .ml20 {
    margin-left: 2.5vw !important;
  }
  .ml25 {
    margin-left: 3.13vw !important;
  }
  .ml30 {
    margin-left: 3.75vw !important;
  }
  .ml40 {
    margin-left: 5vw !important;
  }
  .ml50 {
    margin-left: 6.25vw !important;
  }
  .ml60 {
    margin-left: 7.5vw !important;
  }
  .ml70 {
    margin-left: 8.75vw !important;
  }
  .ml80 {
    margin-left: 10vw !important;
  }
  .ml90 {
    margin-left: 11.25vw !important;
  }
  .ml100 {
    margin-left: 12.5vw !important;
  }
}
/* for SP */
/*-------------------------------------------------------------
 margin-right
-------------------------------------------------------------*/
.mr0 {
  margin-right: 0rem !important;
}

.mr05 {
  margin-right: 0.5rem !important;
}

.mr10 {
  margin-right: 1rem !important;
}

.mr15 {
  margin-right: 1.5rem !important;
}

.mr20 {
  margin-right: 2rem !important;
}

.mr25 {
  margin-right: 2.5rem !important;
}

.mr30 {
  margin-right: 3rem !important;
}

.mr40 {
  margin-right: 4rem !important;
}

.mr50 {
  margin-right: 5rem !important;
}

.mr60 {
  margin-right: 6rem !important;
}

.mr70 {
  margin-right: 7rem !important;
}

.mr80 {
  margin-right: 8rem !important;
}

.mr90 {
  margin-right: 9rem !important;
}

.mr100 {
  margin-right: 10rem !important;
}

@media screen and (max-width: 800px) {
  .mr05 {
    margin-right: 0.63vw !important;
  }
  .mr10 {
    margin-right: 1.25vw !important;
  }
  .mr15 {
    margin-right: 1.88vw !important;
  }
  .mr20 {
    margin-right: 2.5vw !important;
  }
  .mr25 {
    margin-right: 3.13vw !important;
  }
  .mr30 {
    margin-right: 3.75vw !important;
  }
  .mr40 {
    margin-right: 5vw !important;
  }
  .mr50 {
    margin-right: 6.25vw !important;
  }
  .mr60 {
    margin-right: 7.5vw !important;
  }
  .mr70 {
    margin-right: 8.75vw !important;
  }
  .mr80 {
    margin-right: 10vw !important;
  }
  .mr90 {
    margin-right: 11.25vw !important;
  }
  .mr100 {
    margin-right: 12.5vw !important;
  }
}
/* for SP */
/*===============================================================

	padding

===============================================================*/
.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

@media screen and (max-width: 800px) {
  .pt0_sp {
    padding-top: 0 !important;
  }
}

@media screen and (max-width: 800px) {
  .pb0_sp {
    padding-bottom: 0 !important;
  }
}

/*===============================================================

    c_return_to_top

===============================================================*/
.c_return_to_top {
  width: 100%;
  overflow: hidden;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      //	#btn_pagetop
  ===============================================================*/
}
.c_return_to_top a {
  display: block;
  right: 3rem;
  bottom: 3rem;
  width: 5rem;
  height: 5rem;
  color: #fff;
  background-color: #333;
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
  z-index: 101;
  position: fixed;
  border-radius: 3rem;
  -webkit-transform: translateY(10rem);
          transform: translateY(10rem);
}
.c_return_to_top.show a {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.c_return_to_top a:hover {
  background-color: #000;
}
.c_return_to_top a::after {
  position: absolute;
  content: " ";
  width: 1rem;
  height: 1rem;
  top: 2.2rem;
  left: 0;
  right: 0;
  bottom: auto;
  margin: auto;
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-radius: 2px;
}
@media screen and (max-width: 800px) {
  .c_return_to_top a {
    width: 40px;
    height: 40px;
    right: 3vw;
    bottom: 3vw;
  }
  .c_return_to_top a::after {
    width: 8px;
    height: 8px;
    top: 17px;
    left: 0;
    right: 0;
    bottom: auto;
  }
}

/*===============================================================

    テーブル

===============================================================*/
.c_table, .editor-styles-wrapper .wp-block-table,
.entry-content .wp-block-table {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      //	c_table
  ===============================================================*/
}
.c_table table, .editor-styles-wrapper .wp-block-table table,
.entry-content .wp-block-table table {
  width: 100%;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.5;
  border-collapse: separate;
  border-spacing: 0;
  border-bottom: solid 1px #ccc;
}
.c_table th, .editor-styles-wrapper .wp-block-table th,
.entry-content .wp-block-table th,
.c_table td,
.editor-styles-wrapper .wp-block-table td,
.entry-content .wp-block-table td {
  padding: 1rem;
  border: solid 1px #ccc;
  border-bottom: 0;
}
.c_table th, .editor-styles-wrapper .wp-block-table th,
.entry-content .wp-block-table th {
  font-weight: bold;
  border-right: 0;
  background: rgba(0, 0, 0, 0.05);
}
.c_table td + td, .editor-styles-wrapper .wp-block-table td + td,
.entry-content .wp-block-table td + td {
  border-left: 0;
}
.c_table tr:nth-child(odd), .editor-styles-wrapper .wp-block-table tr:nth-child(odd),
.entry-content .wp-block-table tr:nth-child(odd) {
  background: #fff;
}
.c_table tr:nth-child(even), .editor-styles-wrapper .wp-block-table tr:nth-child(even),
.entry-content .wp-block-table tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 800px) {
  .c_table table, .editor-styles-wrapper .wp-block-table table,
  .entry-content .wp-block-table table {
    padding: 0;
    margin-top: 0px;
    width: 100%;
    min-width: 100%;
  }
  .c_table th, .editor-styles-wrapper .wp-block-table th,
  .entry-content .wp-block-table th,
  .c_table td,
  .editor-styles-wrapper .wp-block-table td,
  .entry-content .wp-block-table td {
    padding: 1.5vw;
    font-size: 1.5rem;
    font-size: 3.5vw;
    line-height: 1.6;
  }
  .c_table tr:nth-child(odd), .editor-styles-wrapper .wp-block-table tr:nth-child(odd),
  .entry-content .wp-block-table tr:nth-child(odd),
  .c_table tr:nth-child(even),
  .editor-styles-wrapper .wp-block-table tr:nth-child(even),
  .entry-content .wp-block-table tr:nth-child(even) {
    background: #fff;
  }
}

[class^=c_btn] a,
[class^=c_btn] a:hover {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/*===============================================================

    btn_list

===============================================================*/
.c_btn_list, .c_btn_list_round {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
      btn_list_2column	
  -------------------------------------------------------------*/
  /*===============================================================
      //	btn_list
  ===============================================================*/
}
.c_btn_list li, .c_btn_list_round li {
  margin-top: 2rem;
}
.c_btn_list a, .c_btn_list_round a {
  text-decoration: none;
  display: block;
  padding: 2rem;
  border: solid 2px #0087AD;
  background-color: #fff;
  color: #000;
}
.c_btn_list a .label, .c_btn_list_round a .label {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.4;
}
.c_btn_list a:hover, .c_btn_list_round a:hover {
  text-decoration: none;
  border: solid 2px #0087AD;
  background-color: #0087AD;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .c_btn_list li, .c_btn_list_round li {
    margin-top: 1.5rem;
  }
  .c_btn_list a, .c_btn_list_round a {
    padding: 1.5rem 0.5rem;
  }
  .c_btn_list a .label, .c_btn_list_round a .label {
    font-size: 1.6rem;
  }
}
.c_btn_list.c_btn_list_2column, .c_btn_list_2column.c_btn_list_round {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_btn_list.c_btn_list_2column li, .c_btn_list_2column.c_btn_list_round li {
  width: calc((100% - 2rem) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c_btn_list.c_btn_list_2column li a, .c_btn_list_2column.c_btn_list_round li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 800px) {
  .c_btn_list.c_btn_list_2column, .c_btn_list_2column.c_btn_list_round {
    margin-top: -1.5rem;
  }
  .c_btn_list.c_btn_list_2column li, .c_btn_list_2column.c_btn_list_round li {
    width: calc((100% - 3vw) / 2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/*-------------------------------------------------------------
    c_btn_list_round	
-------------------------------------------------------------*/
.c_btn_list_round {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_btn_list_round a {
  border-radius: 1rem;
}
@media screen and (max-width: 800px) {
  .c_btn_list_round a {
    border-radius: 3vw;
  }
}

/*===============================================================

    btn_round

===============================================================*/
.c_btn, .c_btn_round {
  width: 30%;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
* + .c_btn, * + .c_btn_round {
  margin-top: 3rem;
}
.c_btn a, .c_btn_round a {
  display: block;
  text-align: center;
  color: #fff;
  background-color: #000;
  padding: 1.5rem 0;
  border-radius: 5px;
  font-weight: bold;
  position: relative;
}
.c_btn a .label, .c_btn_round a .label {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.3;
}
.c_btn a:hover, .c_btn_round a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #0087AD;
}
@media screen and (max-width: 800px) {
  .c_btn, .c_btn_round {
    width: 90%;
  }
  * + .c_btn, * + .c_btn_round {
    margin-top: 3rem;
  }
  .c_btn + .c_btn, .c_btn_round + .c_btn, .c_btn + .c_btn_round, .c_btn_round + .c_btn_round {
    margin-top: 1.5rem;
  }
  .c_btn a, .c_btn_round a {
    padding: 2.5vw 0;
  }
  .c_btn a .label, .c_btn_round a .label {
    font-size: 1.6rem;
  }
}

/*===============================================================
    //	btn
===============================================================*/
/*-------------------------------------------------------------
    c_btn_round	
-------------------------------------------------------------*/
.c_btn_round {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_btn_round a {
  border-radius: 5rem;
}
@media screen and (max-width: 800px) {
  .c_btn_round a {
    border-radius: 100vw;
  }
}

/*-------------------------------------------------------------
    icon	
-------------------------------------------------------------*/
span + [class^=icon_],
span + [class*=" icon_"] {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.5rem;
  margin: auto;
  height: 1em;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
/*-------------------------------------------------------------
    btn_line	
-------------------------------------------------------------*/
.c_btn_line {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_btn_line a {
  border: solid 1px #000;
  background-color: #fff;
  color: #000;
  padding: calc(1.5rem - 10px) 0;
}
.c_btn_line a:hover {
  border: solid 2px #0087AD;
}
@media screen and (max-width: 800px) {
  .c_btn_line a {
    padding: calc(2.5vw - 2px) 0;
  }
}

/*-------------------------------------------------------------
    btn_flex	
-------------------------------------------------------------*/
.c_btn_flex {
  width: auto;
  display: inline-block;
  min-width: inherit;
  max-width: 60rem;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_btn_flex a {
  padding-left: 3rem;
  padding-right: 3rem;
}
/*-------------------------------------------------------------
    btn_deactive	
-------------------------------------------------------------*/
.c_btn_deactive {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_btn_deactive a {
  pointer-events: none;
  border: dashed 2px rgba(0, 0, 0, 0.5);
  background-color: transparent;
  color: #000;
  padding: calc(1.5rem - 2px) 0;
}
.c_btn_deactive a .label {
  opacity: 0.5;
}
.c_btn_deactive a [class^=icon_],
.c_btn_deactive a [class*=" icon_"] {
  opacity: 0.2;
}
.c_btn_deactive a:focus {
  outline: none !important;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  -webkit-box-shadow: 0 0 20px 0 transparent;
          box-shadow: 0 0 20px 0 transparent;
}
/*===============================================================

    c_btn_white

===============================================================*/
.c_btn_white a {
  background-color: #fff;
  color: #0087AD;
}
.c_btn_white a:hover {
  background-color: #fff;
  color: #0087AD;
  opacity: 0.7;
}
/*===============================================================

    c_btns

===============================================================*/
.c_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -3rem;
  gap: 0 1.5rem;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      //	c_btns
  ===============================================================*/
}
.c_btns .c_btn,
.c_btns .c_btn_round {
  margin: 0 1rem;
  margin-top: 3rem;
}
@media screen and (max-width: 800px) {
  .c_btns {
    margin-top: -1.5rem;
  }
  .c_btns .c_btn,
  .c_btns .c_btn_round {
    margin: 0 1rem;
    margin-top: 1.5rem;
  }
}

/*-------------------------------------------------------------
    btn_article	
-------------------------------------------------------------*/
.c_btn_article {
  width: 20%;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_btn_article a {
  border: solid 1px #000;
  background-color: transparent;
  color: #000;
  padding: calc(1.5rem - 10px) 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c_btn_article a .label {
  font-weight: normal;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c_btn_article a:hover {
  border: solid 1px #0087AD;
  background-color: transparent;
}
.c_btn_article a:hover .label {
  color: #0087AD;
}
@media screen and (max-width: 800px) {
  .c_btn_article {
    width: 70%;
  }
  .c_btn_article a {
    padding: calc(2.5vw - 2px) 0;
  }
  .c_btn_article a .label {
    font-size: 4vw;
  }
}

/*-------------------------------------------------------------
    btn_article	
-------------------------------------------------------------*/
.c_btn_recruit {
  max-width: 37rem;
}

/*===============================================================

    c_txtlink

===============================================================*/
.c_txtlink {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      //	c_txtlink
  ===============================================================*/
}
.c_txtlink a {
  color: #0087AD;
  text-decoration: none;
  display: inline-block;
  position: relative;
}
.c_txtlink a:hover {
  color: #0098c3;
}
.c_txtlink [class^=icon_],
.c_txtlink [class*=" icon_"] {
  right: -1.2em;
}
.c_txtlink .icon_arw {
  vertical-align: -1px;
}
/*===============================================================

	c_datalist

===============================================================*/
.c_datalist {
  text-align: left;
  /* タブレット以下 */
  /* for tablet max-width: 960px */
  /* SP向けレイアウトの指定：～736px */
  /* for SP max-width: 736px */
}
.c_datalist dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  overflow: hidden;
  border-bottom: solid 1px #ccc;
}
.c_datalist dt,
.c_datalist dd {
  border-top: solid 1px #ccc;
  padding: 2rem 1rem;
}
.c_datalist dt {
  width: 25%;
  font-weight: bold;
}
.c_datalist dd {
  width: 75%;
}
@media screen and (max-width: 800px) {
  .c_datalist {
    width: 100%;
    margin-top: 5vw;
  }
  .c_datalist dt,
  .c_datalist dd {
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.4;
  }
  .c_datalist dt {
    padding: 1.5rem 0 0 0;
  }
  .c_datalist dd {
    width: 100%;
    border-top: none;
    padding: 0px 0 1.5rem 0;
    margin-top: 0.5rem;
  }
}

/*-------------------------------------------------------------
    c_indent_list	
-------------------------------------------------------------*/
.c_indent_list {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_indent_list li {
  padding-left: 1em;
  text-indent: -1em;
}
.c_indent_list li + li {
  margin-top: 5px;
}
/*---------------------------------------------------------------
		リスト
	---------------------------------------------------------------*/
.c_ul_list li, .editor-styles-wrapper ul li,
.entry-content ul li {
  position: relative;
  padding-left: 1.6rem;
}
.c_ul_list li::after, .editor-styles-wrapper ul li::after,
.entry-content ul li::after {
  content: "";
  position: absolute;
  top: 0.95rem;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #0087AD;
}
.c_ul_list li + li, .editor-styles-wrapper ul li + li,
.entry-content ul li + li {
  margin-top: 0.5rem;
}
@media screen and (max-width: 800px) {
  .c_ul_list li, .editor-styles-wrapper ul li,
  .entry-content ul li {
    padding-left: 1.5rem;
  }
  .c_ul_list li::after, .editor-styles-wrapper ul li::after,
  .entry-content ul li::after {
    top: 1.15rem;
    width: 0.5rem;
    height: 0.5rem;
  }
  .c_ul_list li + li, .editor-styles-wrapper ul li + li,
  .entry-content ul li + li {
    margin-top: 0.5rem;
  }
}

/*---------------------------------------------------------------
		番号付きリスト
	---------------------------------------------------------------*/
.c_ol_list, .editor-styles-wrapper ol,
.entry-content ol {
  counter-reset: li;
}
.c_ol_list li, .editor-styles-wrapper ol li,
.entry-content ol li {
  position: relative;
  padding-left: 2rem;
}
.c_ol_list li:before, .editor-styles-wrapper ol li:before,
.entry-content ol li:before {
  content: counter(li) "";
  position: absolute;
  top: 0;
  left: 0;
  font-weight: bold;
  color: #0087AD;
  counter-increment: li;
}
.c_ol_list li + li, .editor-styles-wrapper ol li + li,
.entry-content ol li + li {
  margin-top: 0.5rem;
}
@media screen and (max-width: 800px) {
  .c_ol_list li, .editor-styles-wrapper ol li,
  .entry-content ol li {
    padding-left: 1.5rem;
  }
  .c_ol_list li + li, .editor-styles-wrapper ol li + li,
  .entry-content ol li + li {
    margin-top: 0.5rem;
  }
}

/*===============================================================

	_headline.scss 2021/9/24

===============================================================*/
/*-------------------------------------------------------------
	mixin	
-------------------------------------------------------------*/
/*-------------------------------------------------------------
	headline	
-------------------------------------------------------------*/
.headline .title {
  font-size: 4rem;
  line-height: 1.3;
}
.headline .lead {
  font-size: 2rem;
}
.headline .title + .lead {
  margin-top: 1.5rem;
}
.headline .lead + .title {
  margin-top: 0.5rem;
}
.content * + .headline {
  margin-top: 10rem;
}
@media screen and (max-width: 800px) {
  .headline .title {
    font-size: 6.5vw;
    line-height: 1.4;
  }
  .headline .lead {
    font-size: 4vw;
    line-height: 1.7;
  }
  .headline .title + .lead {
    margin-top: 3vw;
  }
  .headline .lead + .title {
    margin-top: 0.5rem;
  }
  .content * + .headline {
    margin-top: 5vw;
  }
}

/*-------------------------------------------------------------
	content_title	
-------------------------------------------------------------*/
.content_title {
  margin-bottom: 3rem;
}
.content_title .title {
  font-size: 3rem;
}
.content_title .lead {
  font-size: 2rem;
  line-height: 1.6;
}
.content_title .title + .lead {
  margin-top: 1.5rem;
}
.content_title .lead + .title {
  margin-top: 1rem;
}
.content * + .content_title {
  margin-top: 10rem;
}
@media screen and (max-width: 800px) {
  .content_title .title {
    font-size: 2rem;
  }
  .content_title .lead {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .content_title .title + .lead {
    margin-top: 1rem;
  }
  .content_title .lead + .title {
    margin-top: 1rem;
  }
  .content * + .content_title {
    margin-top: 5vw;
  }
}

/*-------------------------------------------------------------
	lv_1	
-------------------------------------------------------------*/
.lv_1 .title {
  font-size: 3rem;
  line-height: 1.4;
  position: relative;
  padding-left: 3rem !important;
}
.lv_1 .title::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 2rem;
  height: 2rem;
  background-color: #0087AD;
}
.lv_1 .lead {
  font-size: 2rem;
}
.content * + .lv_1 {
  margin-top: 10rem;
}
@media screen and (max-width: 800px) {
  .lv_1 .title {
    font-size: 5.5vw;
  }
  .lv_1 .lead {
    font-size: 4vw;
    line-height: 1.5;
  }
  .lv_1 .title + .lead {
    margin-top: 0.5rem;
  }
  .lv_1 .lead + .title {
    margin-top: 0vw;
  }
  .content * + .lv_1 {
    margin-top: 5vw;
  }
}

/*-------------------------------------------------------------
	lv_2	
-------------------------------------------------------------*/
.lv_2 .title {
  font-size: 2.5rem;
  font-size: 2.5rem;
  position: relative;
  padding-left: 3rem !important;
}
.lv_2 .title::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 2rem;
  height: 2rem;
  background-color: #D07861;
}
.lv_2 .lead {
  font-size: 1.8rem;
}
.lv_2 .title + .lead {
  margin-top: 0.5rem;
}
@media screen and (max-width: 800px) {
  .lv_2 .title {
    font-size: 5vw;
  }
  .lv_2 .lead {
    font-size: 4vw;
  }
  .lv_2 .title + .lead {
    margin-top: 1rem;
  }
  .lv_2 .lead + .title {
    margin-top: 0vw;
  }
}

/*-------------------------------------------------------------
	lv_3	
-------------------------------------------------------------*/
.lv_3 .title {
  font-size: 2rem;
}
.lv_3 .lead {
  font-size: 1.4rem;
}
@media screen and (max-width: 800px) {
  .lv_3 .title {
    font-size: 2rem;
  }
  .lv_3 .lead {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .lv_3 .title + .lead {
    margin-top: 1rem;
  }
  .lv_3 .lead + .title {
    margin-top: 0vw;
  }
  .lv_3.block_title + .block {
    margin-top: 1.5vw;
  }
}

/*-------------------------------------------------------------
	lv_4	
-------------------------------------------------------------*/
.lv_4 .title {
  font-size: 1.8rem;
}
.lv_4 .lead {
  font-size: 1.4rem;
}
@media screen and (max-width: 800px) {
  .lv_4 .title {
    font-size: 1.8rem;
  }
  .lv_4 .lead {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .lv_4 .title + .lead {
    margin-top: 1rem;
  }
  .lv_4 .lead + .title {
    margin-top: 0vw;
  }
  .lv_4.block_title + .block {
    margin-top: 1vw;
  }
}

/*-------------------------------------------------------------
	mt_heading	
-------------------------------------------------------------*/
.mt_heading {
  margin-top: 15rem !important;
}
@media screen and (max-width: 800px) {
  .mt_heading {
    margin-top: 15vw !important;
  }
}

.heading_workflow + p {
  font-size: 1.6rem !important;
}
@media screen and (max-width: 800px) {
  .heading_workflow + p {
    font-size: 3.5vw !important;
  }
}

/*===============================================================

	pankuzu

===============================================================*/
.pankuzu {
  text-align: left;
  padding: 0;
  margin-top: 1rem;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.pankuzu li {
  display: inline-block;
  padding-left: 0.8rem;
}
.pankuzu li:first-child {
  padding-left: 0;
}
.pankuzu li a {
  text-decoration: none;
  position: relative;
  padding-right: 1.8rem;
  color: #000;
}
.pankuzu li a:hover {
  color: #0087AD;
}
.pankuzu li a::after {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  border-right: solid 1px #0087AD;
  border-bottom: solid 1px #0087AD;
  width: 0.6rem;
  height: 0.6rem;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.pankuzu h1 {
  font-weight: normal;
}
@media screen and (max-width: 800px) {
  .pankuzu {
    padding: 3vw 0vw;
    padding-bottom: 0;
    margin-top: -3vw;
  }
  .pankuzu h1,
  .pankuzu li {
    padding-left: 1.5vw;
    font-size: 2.5vw;
  }
  .pankuzu li a {
    padding-right: 3vw;
  }
  .pankuzu li a:hover {
    color: #c00;
  }
  .pankuzu li a::after {
    width: 1.5vw;
    height: 1.5vw;
  }
  .pankuzu .update {
    font-size: 3.5vw;
  }
}

.detail .pankuzu .large_width,
.detail .pankuzu .content_width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.detail .pankuzu .large_width .update,
.detail .pankuzu .content_width .update {
  text-align: right;
}
@media screen and (max-width: 800px) {
  .detail .pankuzu .large_width,
  .detail .pankuzu .content_width {
    display: block;
  }
  .detail .pankuzu .large_width h1,
  .detail .pankuzu .content_width h1 {
    font-size: 100%;
  }
}

/*===============================================================

    c_photo

===============================================================*/
.c_photo {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      //	c_photo
  ===============================================================*/
}
.c_photo img {
  width: 100%;
  height: auto;
}
/*===============================================================

    c_column

===============================================================*/
.c_column, .c_column_round {
  border: solid 1px #ccc;
  padding: 5rem;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      //	c_column
  ===============================================================*/
}
@media screen and (max-width: 800px) {
  .c_column, .c_column_round {
    padding: 2.4vw;
  }
}

/*-------------------------------------------------------------
    c_column_round	
-------------------------------------------------------------*/
.c_column_round {
  border-radius: 3rem;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
@media screen and (max-width: 800px) {
  .c_column_round {
    border-radius: 3vw;
  }
}

/*===============================================================

    category_label

===============================================================*/
.c_category_label {
  min-width: 10rem;
  min-height: 2.5rem;
  /*pointer-events: none;*/
  /*-------------------------------------------------------------
      ラベル色	
  -------------------------------------------------------------*/
}
.c_category_label a {
  text-decoration: none;
  display: block;
}
.c_category_label a:hover {
  opacity: 0.7;
}
.c_category_label span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 1em;
  padding-bottom: 1px;
  border-radius: 5rem;
  font-size: 1.6rem;
  line-height: 1.6;
  overflow: hidden;
  background-color: #000;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .c_category_label {
    width: 9rem;
    height: 5vw;
    border-radius: 3vw;
    margin-left: auto;
    margin-right: 0;
    font-size: 1.2rem;
  }
}
.c_category_label .label_red {
  background-color: #FA0F0C;
}
.c_category_label .label_blue {
  background-color: #0087AD;
}
.c_category_label .label_green {
  background-color: #47964D;
}
.c_category_label .label_brown {
  background-color: #724141;
}
.c_category_label .label_orange {
  background-color: #E69901;
}
.c_category_label .label_line {
  color: #000;
  background: #fff;
  border: solid 1px #000;
}

/*===============================================================

    c_category_label_list

===============================================================*/
.c_category_label_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 1.5rem;
}
/*===============================================================

	c_topics_list

===============================================================*/
.c_topics_list {
  border-bottom: solid 1px #ccc;
}
.c_topics_list .item {
  position: relative;
  border-top: solid 1px #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c_topics_list .link {
  position: relative;
  padding: 2rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c_topics_list .link::after, .c_topics_list .link::before {
  content: "";
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  top: 0;
  bottom: 0;
  right: 1rem;
  margin: auto;
}
.c_topics_list .link::after {
  border: solid 1px #666;
  width: 0.8rem;
  height: 0.8rem;
  border-top: none;
  border-left: none;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c_topics_list .link::before {
  width: 2rem;
  height: 1px;
  background-color: #666;
}
.c_topics_list .date,
.c_topics_list .text {
  z-index: 1;
  color: #000;
}
.c_topics_list .date a,
.c_topics_list .text a {
  color: #000;
  text-decoration: none;
}
.c_topics_list .date a:after,
.c_topics_list .text a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.c_topics_list .date a:hover:after,
.c_topics_list .text a:hover:after {
  color: #0098c3;
  text-decoration: none;
}
.c_topics_list .date a:hover,
.c_topics_list .text a:hover {
  background: none;
  /* キャンセルに必要 */
}
.c_topics_list .date a:hover,
.c_topics_list .text a:hover {
  color: #0098c3;
}
.c_topics_list .date:hover .text,
.c_topics_list .link:hover .text {
  color: #0098c3;
}
.c_topics_list .date {
  width: 10em;
}
.c_topics_list .label {
  z-index: 2;
  margin-right: 30px;
  margin-left: 15px;
  width: 10rem;
  text-align: center;
}
.c_topics_list .label a {
  color: #0087AD;
  text-decoration: none;
}
.c_topics_list .label a:hover {
  opacity: 0.7;
}
.c_topics_list .text {
  width: calc(100% - 20em);
  text-decoration: none !important;
}
@media screen and (max-width: 800px) {
  .c_topics_list .link {
    padding: 1.2rem 0.5rem;
    padding-right: 3rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .c_topics_list .date {
    width: auto;
    font-weight: bold;
    color: #0087AD;
    line-height: 1.4;
  }
  .c_topics_list .label {
    width: auto;
    margin-left: 1em;
    margin-right: auto;
  }
  .c_topics_list .label span {
    font-size: 1.4rem;
  }
  .c_topics_list .text {
    width: 100%;
    line-height: 1.5;
    margin-top: 0.5rem;
  }
}

/*===============================================================

	c_dropdown

===============================================================*/
.c_dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 0;
  line-height: 1;
  /* タブレット */
  /* タブレット */
  /* タブレット */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  hassub
  -------------------------------------------------------------*/
  /*===============================================================
  //	c_dropdown
  ===============================================================*/
}
.c_dropdown a {
  text-decoration: none;
  display: block;
  color: #000;
  padding: 0.5rem 1.5rem;
  font-size: 1.8rem;
  line-height: 2.5rem;
}
.c_dropdown a .label {
  font-weight: bold;
}
.c_dropdown a:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.c_dropdown a:focus,
.c_dropdown a:hover {
  color: #0098c3;
}
.c_dropdown li {
  width: auto;
}
.c_dropdown li + li {
  margin-left: 0px;
}
@media screen and (max-width: 1400px) {
  .c_dropdown a {
    padding: 0.5rem 1.1rem;
    font-size: 1.7rem;
    padding: 0.5rem 0.8vw;
    font-size: 1.35vw;
  }
}
@media screen and (max-width: 1100px) {
  .c_dropdown {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .c_dropdown {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c_dropdown a {
    text-align: center;
  }
  .c_dropdown li + li {
    margin-left: 0;
    margin-top: 5px;
  }
}
.c_dropdown .hassub {
  position: relative;
  /* サブ展開 */
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_dropdown .hassub .sub {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 2;
  top: 3.5rem;
  left: 0;
  padding: 1.5rem 1rem;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 0;
  background-color: #0087AD;
}
.c_dropdown .hassub .sub a {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #fff;
}
.c_dropdown .hassub .sub li {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  white-space: nowrap;
  display: block;
  margin: 0;
}
.c_dropdown .hassub .sub li:hover {
  background-color: #0098c3;
}
.c_dropdown .hassub .sub li + li {
  margin: 0;
  margin-top: 0px;
}
.c_dropdown .hassub .sub.focused {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: inherit;
}
.c_dropdown .hassub:hover .sub {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: inherit;
}
@media screen and (max-width: 800px) {
  .c_dropdown .hassub.opened .sub {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: inherit;
  }
  .c_dropdown .hassub .sub {
    display: none;
    position: relative;
    top: 0;
    -webkit-transition: all 0s;
    transition: all 0s;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    visibility: visible;
    padding: 0;
    margin-top: 2px;
  }
  .c_dropdown .hassub .sub li + li {
    margin-top: 2px;
  }
  .c_dropdown .hassub .sub.focused {
    display: block;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: inherit;
  }
  .c_dropdown .hassub .sub.focused a {
    color: #000;
  }
}

/*===============================================================

    c_menu_content

===============================================================*/
.c_menu_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #eee;
  background-color: #0087AD;
  /*===============================================================
  information_block
  ===============================================================*/
  /*===============================================================
  navigation_block
  ===============================================================*/
}
.c_menu_content .left_block {
  width: 35%;
  min-width: 34rem;
  height: 100%;
  color: #fff;
  padding: 5rem 8rem;
}
.c_menu_content .right_block {
  width: 65%;
  max-width: calc(100% - 34rem);
  background-color: #eee;
  padding: 10rem 8rem;
}
@media screen and (max-width: 1600px) {
  .c_menu_content .right_block,
  .c_menu_content .left_block {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}
@media screen and (max-width: 1200px) {
  .c_menu_content .right_block,
  .c_menu_content .left_block {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
@media screen and (max-width: 1070px) {
  .c_menu_content .right_block,
  .c_menu_content .left_block {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media screen and (max-width: 800px) {
  .c_menu_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    background-size: 10px 10px;
  }
  .c_menu_content .right_block,
  .c_menu_content .left_block {
    width: 100%;
    max-width: inherit;
    padding: 8vw;
  }
}
.c_menu_content .information_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  /*-------------------------------------------------------------
  tel_fax
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  function
  -------------------------------------------------------------*/
}
.c_menu_content .information_block .company_name {
  max-width: 30rem;
}
.c_menu_content .information_block .address {
  margin-top: 1em;
  font-size: 1.6rem;
  line-height: 1.6;
}
.c_menu_content .information_block .address a {
  color: #fff;
}
.c_menu_content .information_block .tel_fax {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2rem;
}
.c_menu_content .information_block .tel_fax dt,
.c_menu_content .information_block .tel_fax dd {
  font-size: 2.5rem;
  line-height: 1.4;
  font-weight: bold;
}
.c_menu_content .information_block .tel_fax dt a,
.c_menu_content .information_block .tel_fax dd a {
  color: #fff;
  text-decoration: none;
}
.c_menu_content .information_block .tel_fax dt {
  width: 2.5em;
}
.c_menu_content .information_block .tel_fax dd {
  width: calc(100% - 2.5em);
}
.c_menu_content .information_block .function {
  margin-top: 8rem;
}
.c_menu_content .information_block .function .c_btn_white {
  width: 25rem;
  margin-left: 0;
}
.c_menu_content .information_block .function .link {
  margin-top: 0.5em;
}
.c_menu_content .information_block .function .link a {
  color: #fff;
}
@media screen and (max-width: 800px) {
  .c_menu_content .information_block .function {
    margin-top: 8vw;
    width: 100%;
  }
  .c_menu_content .information_block .function .c_btn_white {
    width: 100%;
    margin-inline: auto;
    max-width: 100%;
  }
  .c_menu_content .information_block .function .link {
    margin-top: 0.5em;
  }
  .c_menu_content .information_block .function .link a {
    color: #fff;
  }
}
.c_menu_content .navigation_block .link_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c_menu_content .navigation_block .link_list li {
  width: 50%;
}
.c_menu_content .navigation_block .link_list li a {
  font-weight: bold;
  text-decoration: none;
  color: #000;
  font-size: 1.8rem;
}
.c_menu_content .navigation_block .link_list li a:hover {
  color: #0087AD;
}
.c_menu_content .navigation_block .link_list li + li {
  margin-top: 2rem;
}
.c_menu_content .navigation_block .link_list .service span {
  padding-left: 0.5em;
}
.c_menu_content .navigation_block .link_list .index {
  width: 100%;
}
.c_menu_content .navigation_block .link_list .sub li {
  width: auto;
}
.c_menu_content .navigation_block .link_list .sub li + li {
  margin-top: 0rem;
}
.c_menu_content .navigation_block .link_list .sub a {
  font-weight: normal;
  font-size: 1.6rem;
}
.c_menu_content .navigation_block .link_list .casestudy .sub li {
  display: inline;
}
.c_menu_content .navigation_block .link_list .casestudy .sub a {
  font-size: 1.4rem;
}
@media screen and (max-width: 800px) {
  .c_menu_content .navigation_block .link_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c_menu_content .navigation_block .link_list li {
    width: 100%;
  }
  .c_menu_content .navigation_block .link_list li a {
    font-size: 1.8rem;
    font-size: 4vw;
  }
  .c_menu_content .navigation_block .link_list li + li {
    margin-top: 2rem;
  }
  .c_menu_content .navigation_block .link_list .sub a {
    font-size: 1.6rem;
    font-size: 3.5vw;
  }
  .c_menu_content .navigation_block .link_list .casestudy .sub a {
    font-size: 1.4rem;
    font-size: 3.5vw;
  }
}

/*===============================================================

    c_pagetitle

===============================================================*/
.c_pagetitle {
  min-height: 25rem;
  position: relative;
  padding-top: 10rem;
  /*===============================================================
  title_block
  ===============================================================*/
  /*===============================================================
  fig_block
  ===============================================================*/
}
.c_pagetitle:has(.sub) {
  padding-top: 8.7rem;
  padding-top: 9.7rem;
}
@media screen and (max-width: 800px) {
  .c_pagetitle {
    min-height: inherit;
    padding-top: 12vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .c_pagetitle:has(.sub) {
    padding-top: 8.5vw;
  }
}
.c_pagetitle .title_block {
  position: relative;
  padding-left: 3rem !important;
  z-index: 2;
}
.c_pagetitle .title_block::after {
  content: "";
  position: absolute;
  top: 2.6rem;
  top: 1.25rem;
  left: 0;
  margin: auto;
  width: 2rem;
  height: 2rem;
  background-color: #0087AD;
}
.c_pagetitle .title_block .sub {
  font-size: 2.5rem;
  font-weight: bold;
  margin-top: 1rem;
  line-height: 1.2;
}
.c_pagetitle .title_block .title {
  font-size: 4rem;
  line-height: 1.2;
}
.c_pagetitle .title_block .sub + .title {
  margin-top: 1rem;
}
.c_pagetitle .title_block .category {
  position: absolute;
  top: -2.5rem;
  top: -2rem;
  font-size: 1.2rem;
  font-weight: bold;
}
.c_pagetitle .title_block .lead {
  font-size: 2rem;
  font-weight: bold;
}
.c_pagetitle .title_block:has(.sub)::after {
  top: 1.6rem;
  top: 0.6rem;
}
.c_pagetitle .title_block:has(.sub) .category {
  position: absolute;
  top: -3.2rem;
  top: -3.7rem;
}
@media screen and (max-width: 800px) {
  .c_pagetitle .title_block {
    padding-left: 8vw !important;
  }
  .c_pagetitle .title_block::after {
    top: 1vw;
    margin: auto;
    width: 5vw;
    height: 5vw;
  }
  .c_pagetitle .title_block .sub {
    font-size: 4vw;
    margin-top: 1em;
  }
  .c_pagetitle .title_block .title {
    font-size: 5.5vw;
    margin-top: -0.3vw;
  }
  .c_pagetitle .title_block .sub + .title {
    margin-top: 1.5vw;
  }
  .c_pagetitle .title_block .category {
    font-size: 2.5vw;
    top: -5vw;
    left: 0vw;
  }
  .c_pagetitle .title_block .lead {
    font-size: 3.5vw;
  }
  .c_pagetitle .title_block:has(.sub)::after {
    top: 0;
  }
  .c_pagetitle .title_block:has(.sub) .category {
    position: absolute;
    top: -5.6vw;
  }
}
.c_pagetitle .fig_block {
  position: absolute;
  z-index: 1;
  aspect-ratio: 4/3;
  width: 333px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 800px) {
  .c_pagetitle .fig_block {
    position: relative;
  }
}

/*===============================================================

section_faq

===============================================================*/
.section_faq .block_faq {
  margin-top: 5rem !important;
  /*-------------------------------------------------------------
  .accordion_header {
     -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  .accordion_header {
     -------------------------------------------------------------*/
}
.section_faq .block_faq + .block {
  margin-top: 3rem !important;
}
@media screen and (max-width: 800px) {
  .section_faq .block_faq {
    margin-top: 5vw !important;
  }
  .section_faq .block_faq + .block {
    margin-top: 4vw !important;
  }
}
.section_faq .block_faq .accordion_header {
  position: relative;
  padding: 3rem 10rem 3rem 2.5rem;
}
.section_faq .block_faq .accordion_header:before, .section_faq .block_faq .accordion_header:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  margin: auto;
  width: 3rem;
  height: 1px;
  background: #ccc;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section_faq .block_faq .accordion_header:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.section_faq .block_faq .accordion_header.active {
  border-bottom: none;
}
.section_faq .block_faq .accordion_header.active::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
@media screen and (max-width: 800px) {
  .section_faq .block_faq .accordion_header {
    padding: 5vw 12vw 5vw 5vw;
  }
  .section_faq .block_faq .accordion_header:before, .section_faq .block_faq .accordion_header:after {
    right: 4vw;
    width: 4.2vw;
  }
}
.section_faq .block_faq .accordion_header .title {
  font-size: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
.section_faq .block_faq .accordion_header .title::before {
  content: "Q";
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #0087AD;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 4rem;
          flex: 0 0 4rem;
}
@media screen and (max-width: 800px) {
  .section_faq .block_faq .accordion_header .title {
    font-size: 4vw;
    gap: 4vw;
  }
  .section_faq .block_faq .accordion_header .title::before {
    width: 7vw;
    height: 7vw;
    font-size: 4vw;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 7vw;
            flex: 0 0 7vw;
  }
}
.section_faq .block_faq .accordion {
  width: 100%;
  border: 1px solid #ccc;
  background: #fff;
  /*-------------------------------------------------------------
  .accordion_body 
     -------------------------------------------------------------*/
}
.section_faq .block_faq .accordion .accordion_body {
  position: relative;
}
.section_faq .block_faq .accordion .accordion_body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2.5rem;
  right: 2.5rem;
  border-top: 1px solid #ccc;
}
.section_faq .block_faq .accordion .accordion_body .accordion_inner {
  padding: 3rem 2.5rem 2.5rem;
}
@media screen and (max-width: 800px) {
  .section_faq .block_faq .accordion .accordion_body::before {
    left: 5vw;
    right: 5vw;
  }
  .section_faq .block_faq .accordion .accordion_body .accordion_inner {
    padding: 4.5vw 5vw 5vw;
  }
  .section_faq .block_faq .accordion .accordion_body .accordion_inner .txt {
    font-size: 3.8vw;
  }
}

/*===============================================================

    c_detail_pager

===============================================================*/
.c_detail_pager .deactive {
  pointer-events: none;
  opacity: 0.3;
}
@media screen and (max-width: 800px) {
  .c_detail_pager .c_btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
  .c_detail_pager .c_btn_round {
    margin: 0;
  }
  .c_detail_pager .c_btn_round a {
    padding: 3vw 2vw;
    font-size: 3.5vw;
    line-height: 1;
  }
  .c_detail_pager .c_btn_round a .label {
    font-size: 3.5vw;
    line-height: 1;
  }
  .c_detail_pager .c_btn_round:nth-child(1),
  .c_detail_pager .c_btn_round:nth-child(3) {
    width: 25%;
  }
  .c_detail_pager .c_btn_round:nth-child(2) {
    width: 40%;
  }
}

/*===============================================================

    c_scroll_line_center

===============================================================*/
.c_scroll_line_center {
  width: 100%;
  height: 30rem;
  margin-top: -15rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c_scroll_line_center .txt {
  color: #000;
  font-size: 1.2rem;
  line-height: 1;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}
.c_scroll_line_center .line {
  position: relative;
  width: 1px;
  height: 30rem;
}
.c_scroll_line_center .line span {
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  width: 100%;
  height: 0;
  background: #000;
  -webkit-animation: scroll_line_center_animation 3s ease infinite;
          animation: scroll_line_center_animation 3s ease infinite;
}
@media screen and (max-width: 800px) {
  .c_scroll_line_center {
    margin-top: 0;
    height: 20vh;
  }
  .c_scroll_line_center .txt {
    font-size: 3vw;
  }
  .c_scroll_line_center .line {
    height: 20vh;
  }
}

@-webkit-keyframes scroll_line_center_animation {
  0% {
    top: 0;
    bottom: auto;
    height: 0;
  }
  49% {
    top: 0;
    bottom: auto;
    height: 100%;
  }
  50% {
    top: auto;
    bottom: 0;
    height: 100%;
  }
  99% {
    top: auto;
    bottom: 0;
    height: 0;
  }
  100% {
    top: 0;
    bottom: auto;
    height: 0;
  }
}

@keyframes scroll_line_center_animation {
  0% {
    top: 0;
    bottom: auto;
    height: 0;
  }
  49% {
    top: 0;
    bottom: auto;
    height: 100%;
  }
  50% {
    top: auto;
    bottom: 0;
    height: 100%;
  }
  99% {
    top: auto;
    bottom: 0;
    height: 0;
  }
  100% {
    top: 0;
    bottom: auto;
    height: 0;
  }
}
/*===============================================================

	レイアウト
	_rayout.scss

===============================================================*/
.full_width {
  padding-left: 5rem;
  padding-right: 5rem;
}
@media screen and (max-width: 800px) {
  .full_width {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.max_width {
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1900px) {
  .max_width {
    padding: 0 5rem;
  }
}
@media screen and (max-width: 1170px) {
  .max_width {
    padding: 0 3rem;
  }
}
@media screen and (max-width: 800px) {
  .max_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.wide_width {
  max-width: 150rem;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1600px) {
  .wide_width {
    padding: 0 5rem;
  }
  .max_width .wide_width {
    padding: 0;
  }
}
@media screen and (max-width: 1170px) {
  .wide_width {
    padding: 0 3rem;
  }
  .max_width .wide_width {
    padding: 0;
  }
}
@media screen and (max-width: 800px) {
  .wide_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.large_width {
  max-width: 120rem;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1300px) {
  .large_width {
    padding: 0 5rem;
  }
  .max_width .large_width, .wide_width .large_width {
    padding: 0;
  }
}
@media screen and (max-width: 1170px) {
  .large_width {
    padding: 0 3rem;
  }
  .max_width .large_width, .wide_width .large_width {
    padding: 0;
  }
}
@media screen and (max-width: 800px) {
  .large_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.content_width {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  max-width: 107rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1170px) {
  .content_width {
    padding: 0 3rem;
  }
  .max_width .content_width, .wide_width .content_width, .large_width .content_width {
    padding: 0;
  }
}
@media screen and (max-width: 800px) {
  .content_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.narrow_width {
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .narrow_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.btn_width {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .btn_width {
    padding-left: 0;
    padding-right: 0;
  }
}

.absolute_full_width {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/*===============================================================

	seciton
	headlineとcontentなど、複数の要素、機能を取りまとめるコンテナ的な親要素。
	幅はsection_innerに記述する

===============================================================*/
.section_wrp {
  overflow: hidden;
  display: block;
  padding-top: 100px;
  background-color: #fff;
  background-image: url(/common/images/asset/bg_grid.gif);
  background-size: 20px 20px;
  background-repeat: repeat;
  background-position: top center;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
@media screen and (max-width: 800px) {
  .section_wrp {
    padding-top: 16vw;
  }
}

.section {
  width: 100%;
}

.section_inner {
  margin: 0 auto;
  padding-top: 12rem;
  padding-bottom: 12rem;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 800px) {
  .section_inner {
    padding-top: 10vw;
    padding-bottom: 12vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

/*===============================================================

	content 
	個別のコンテンツ

===============================================================*/
.content + .content {
  margin-top: 10rem;
}

.headline + .content {
  margin-top: 6rem;
}

.content + .headline {
  margin-top: 10rem;
}

.content .content + *,
.content * + .content {
  margin-top: 6rem;
}

.content_title + .content {
  margin-top: 0;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {
  .content {
    width: 100%;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
/* for tablet */
/* SP向けレイアウトの指定：～736px */
@media screen and (max-width: 800px) {
  .content + .content {
    margin-top: 12vw;
  }
  .headline + .content {
    margin-top: 4vw;
  }
  .content + .headline {
    margin-top: 5vw;
  }
  .content .content + *,
  .content * + .content {
    margin-top: 4vw;
  }
  .content_title + .content {
    margin-top: 0;
  }
}
/* for SP */
/*-------------------------------------------------------------
	block	
-------------------------------------------------------------*/
.block + .block_title {
  margin-top: 5rem;
}
.block_title + .block {
  margin-top: 2rem;
}
.block + .block {
  margin-top: 3rem;
}
.block p + p {
  margin-top: 1em;
}
@media screen and (max-width: 800px) {
  .block + .block_title {
    margin-top: 6vw;
  }
  .block_title + .block {
    margin-top: 1.8vw;
  }
  .block + .block {
    margin-top: 4.8vw;
  }
}

/*===============================================================

    block_title

===============================================================*/
.block_title {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.block_title + .block_title {
  margin-top: 2rem;
}
@media screen and (max-width: 800px) {
  .block_title + .block_title {
    margin-top: 3.6vw;
  }
}

/*===============================================================

	_header.scss 2021/10/4

===============================================================*/
/*===============================================================

	header

===============================================================*/
.header {
  background-color: #fff;
  width: 100%;
  height: 10rem;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  padding: 2rem 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
  site_title
  ===============================================================*/
  /*===============================================================
  header_navigation
  ===============================================================*/
}
.header .header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1300px) {
  .header {
    padding: 2rem 3rem;
  }
}
@media screen and (max-width: 800px) {
  .header {
    z-index: 200;
    padding: 1vw 3vw;
    height: 16vw;
  }
  .header .header_inner {
    height: 16vw;
  }
}
.header .site_title {
  width: 36rem;
}
.header .site_title a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #000;
}
.header .site_title .site_logo {
  width: 5rem;
  width: 4.2rem;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.header .site_title .title_txt {
  width: calc(100% - 5rem);
  padding-left: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .site_title .title_txt .sub {
  font-size: 1.3rem;
  line-height: 1;
  display: inline-block;
  width: 100%;
}
.header .site_title .title_txt strong {
  font-size: 2.3rem;
  line-height: 1;
  display: block;
  font-weight: bold;
  margin-top: 0.3em;
  width: 100%;
}
@media screen and (max-width: 1300px) {
  .header .site_title {
    width: 29vw;
  }
  .header .site_title .title_txt {
    padding-left: 1.15vw;
  }
  .header .site_title .title_txt .sub {
    font-size: 0.92vw;
  }
  .header .site_title .title_txt strong {
    font-size: 1.77vw;
  }
}
@media screen and (max-width: 1000px) {
  .header .site_title {
    width: 40rem;
  }
  .header .site_title .title_txt {
    padding-left: 1.5rem;
  }
  .header .site_title .title_txt .sub {
    font-size: 1.2rem;
  }
  .header .site_title .title_txt strong {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 800px) {
  .header .site_title {
    width: 80vw;
  }
  .header .site_title .site_logo {
    width: 9vw;
  }
  .header .site_title .title_txt {
    width: calc(100% - 10vw);
    padding-left: 3vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header .site_title .title_txt .sub {
    font-size: 2.9vw;
    line-height: 1;
  }
  .header .site_title .title_txt strong {
    line-height: 1.2;
    font-size: 4.5vw;
  }
}
.header .header_navigation {
  margin-left: auto;
  margin-right: 7rem;
}
/*===============================================================

	_footer.scss 2021/10/4

===============================================================*/
/*===============================================================

	footer

===============================================================*/
.footer {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.footer .c_menu_content {
  background: #0087AD;
}
.footer .footer_bottom {
  background-color: #fff;
  color: #666;
  text-align: center;
  padding: 1rem 2rem;
}
.footer .footer_bottom .copyright {
  font-size: 1.2rem;
}

/*===============================================================
	_grid.scss
===============================================================*/
.grid_wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: -4rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.grid_wrp .grid {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 4rem;
}
.grid_wrp .grid .grid_wrp {
  margin-top: -2rem;
}
.grid_wrp .grid .grid {
  margin-top: 2rem;
}
.grid_wrp .grid_1_1 {
  width: 100%;
}
.grid_wrp .grid_2_1 {
  width: calc((100% - 4rem) / 2);
}
.grid_wrp .grid_3_1 {
  width: calc((100% - 4rem * 2) / 3);
  /* 40px * 2 = 80px */
}
.grid_wrp .grid_3_2 {
  width: calc(100% - (100% - 4rem * 2) / 3 - 4rem);
}
.grid_wrp .grid_4_1 {
  width: calc((100% - 4rem * 3) / 4);
  /* 40px * 3 = 120px */
}
.grid_wrp .grid_5_1 {
  width: calc((100% - 4rem * 2) / 5);
  /* 20px * 4 = 80px */
}
.grid_wrp .grid_6_1 {
  width: calc((100% - 4rem * 5) / 6);
  /* 50px * 5 = 100px */
}
.grid_wrp.grid_wrp3:after, .grid_wrp.grid_wrp4:after, .grid_wrp.grid_wrp4:before, .grid_wrp.grid_wrp5:after, .grid_wrp.grid_wrp5:before {
  content: "";
  display: block;
  height: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.grid_wrp.grid_wrp3:after {
  width: calc((100% - 4rem * 2) / 3);
}
.grid_wrp.grid_wrp4:after, .grid_wrp.grid_wrp4:before {
  width: calc((100% - 4rem * 3) / 4);
}
.grid_wrp.grid_wrp5:after, .grid_wrp.grid_wrp5:before {
  width: calc((100% - 4rem * 2) / 5);
}
@media screen and (max-width: 800px) {
  .grid_wrp {
    margin-top: -5vw;
  }
  .grid_wrp .grid {
    margin-top: 5vw;
  }
  .grid_wrp .grid .grid_wrp {
    margin-top: -3vw;
  }
  .grid_wrp .grid .grid {
    margin-top: 3vw;
  }
  .grid_wrp .grid_1_1 {
    width: 100%;
  }
  .grid_wrp .grid_2_1 {
    width: 100%;
  }
  .grid_wrp .grid_3_1 {
    width: calc((100% - 5vw) / 2);
  }
  .grid_wrp .grid_3_2 {
    width: 100%;
  }
  .grid_wrp .grid_4_1 {
    width: calc((100% - 5vw) / 2);
  }
  .grid_wrp .grid_5_1 {
    width: calc((100% - 5vw) / 2);
  }
  .grid_wrp .grid_6_1 {
    width: calc((100% - 10vw) / 3);
  }
  .grid_wrp.grid_wrp3:after {
    width: calc((100% - 80px) / 3);
  }
  .grid_wrp.grid_wrp4:after, .grid_wrp.grid_wrp4:before {
    width: calc((100% - 120px) / 4);
  }
  .grid_wrp.grid_wrp5:after, .grid_wrp.grid_wrp5:before {
    width: calc((100% - 80px) / 5);
  }
  .grid_wrp .sp_grid_1 {
    width: 100% !important;
  }
}

/*===============================================================
menu_open bodyにつく
===============================================================*/
.body_fixed {
  position: fixed;
  width: 100%;
  height: 100vh;
}
/*===============================================================

	navigation_panel

===============================================================*/
.navigation_panel {
  position: fixed;
  z-index: 150;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
  overflow-x: scroll;
  color: #000;
  background-color: #eee;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	btn_close_navigation_panel
  -------------------------------------------------------------*/
  /*===============================================================
  c_menu_content
  ===============================================================*/
}
.menu_open .navigation_panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
}
.menu_show .navigation_panel {
  opacity: 1;
}
.navigation_panel a {
  text-decoration: none;
}
@media screen and (max-width: 800px) {
  .navigation_panel {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.navigation_panel .btn_close_navigation_panel {
  margin-top: 2rem;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.navigation_panel .btn_close_navigation_panel a {
  display: inline-block;
  min-width: 20rem;
  font-size: 1.6rem;
  color: #fff;
  border: solid 1px #fff;
  padding: 1rem 3rem;
}
.navigation_panel .btn_close_navigation_panel a:hover {
  opacity: 0.6;
}
.navigation_panel .c_menu_content {
  height: 100%;
}
.navigation_panel .c_menu_content .left_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navigation_panel .c_menu_content .right_block {
  background-color: #eee;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .navigation_panel .c_menu_content {
    width: 100%;
    height: auto;
    background-color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .navigation_panel .c_menu_content .right_block,
  .navigation_panel .c_menu_content .left_block {
    width: 100%;
    height: auto;
    display: block;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    z-index: 1;
    margin: 0;
  }
  .navigation_panel .c_menu_content .left_block {
    padding-bottom: 30vw;
  }
  .navigation_panel .c_menu_content .right_block {
    padding-top: 25vw;
  }
}

/*===============================================================

hamburger_menu

===============================================================*/
.hamburger_menu {
  position: fixed;
  z-index: 500;
  top: 2.5rem;
  right: 5rem;
  width: 5rem;
  height: 5rem;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  hamburger_menu_btn_bg
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  hamburger_menu_btn
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
     menu_btn
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  menu_btn_no_txt
  -------------------------------------------------------------*/
  /*===============================================================
  //hamburger
  ===============================================================*/
}
.hamburger_menu .hamburger_menu_inner {
  position: relative;
  width: 5rem;
  height: 5rem;
}
@media screen and (max-width: 1300px) {
  .hamburger_menu {
    right: 3rem;
  }
}
@media screen and (max-width: 800px) {
  .hamburger_menu {
    top: 2vw;
    right: 3vw;
    width: 12vw;
    height: 12vw;
  }
  .hamburger_menu .hamburger_menu_inner {
    width: 12vw;
    height: 12vw;
  }
}
.hamburger_menu .hamburger_menu_btn_bg {
  width: 5rem;
  height: 5rem;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.hamburger_menu .hamburger_menu_btn {
  padding: 0;
  margin: 0;
  width: 5rem;
  height: 5rem;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
@media screen and (max-width: 800px) {
  .hamburger_menu .hamburger_menu_btn {
    width: 12vw;
    height: 12vw;
  }
}
.hamburger_menu .menu_btn, .hamburger_menu .menu_btn_no_txt {
  display: block;
  position: relative;
  background-color: transparent !important;
  border: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 5rem;
  padding: 0 !important;
  cursor: pointer;
}
.hamburger_menu .menu_btn .label, .hamburger_menu .menu_btn_no_txt .label {
  display: block;
  position: absolute;
  text-align: center;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 11px;
  line-height: 12px;
  height: 12px;
  width: 100%;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
  color: #000;
  pointer-events: none;
  font-weight: bold;
}
.hamburger_menu .menu_btn::after, .hamburger_menu .menu_btn_no_txt::after, .hamburger_menu .menu_btn::before, .hamburger_menu .menu_btn_no_txt::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 5rem;
  height: 1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 800px) {
  .hamburger_menu .menu_btn::after, .hamburger_menu .menu_btn_no_txt::after, .hamburger_menu .menu_btn::before, .hamburger_menu .menu_btn_no_txt::before {
    width: 3rem;
    height: 2px;
  }
}
@media screen and (max-width: 800px) {
  .hamburger_menu .menu_btn, .hamburger_menu .menu_btn_no_txt {
    width: 12vw;
    height: 12vw;
  }
}
.hamburger_menu .menu_btn_no_txt {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.hamburger_menu .menu_btn_no_txt .label {
  opacity: 0;
}
.hamburger_menu .menu_btn_no_txt::after {
  background-color: #000;
  -webkit-transform: translateY(4px) translateX(0px);
          transform: translateY(4px) translateX(0px);
}
.hamburger_menu .menu_btn_no_txt::before {
  background-color: #000;
  -webkit-transform: translateY(-4px) translateX(0px);
          transform: translateY(-4px) translateX(0px);
}
.hamburger_menu .menu_btn_no_txt:hover::after {
  -webkit-transform: translateY(4px) translateX(3px);
          transform: translateY(4px) translateX(3px);
}
.hamburger_menu .menu_btn_no_txt:hover::before {
  -webkit-transform: translateY(-4px) translateX(-3px);
          transform: translateY(-4px) translateX(-3px);
}
.menu_open .hamburger_menu .menu_btn_no_txt::after {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.menu_open .hamburger_menu .menu_btn_no_txt::before {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
/*===============================================================

	c_pagenation

===============================================================*/
.c_pagenation {
  /*-------------------------------------------------------------
  c_pagenavi共通設定
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  WP-PageNavi
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  前のページ/次のページ
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  最初のページ/最後のページ
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  省略マーク
  -------------------------------------------------------------*/
  /*===============================================================
  //	c_pagenation
  ===============================================================*/
}
.c_pagenation .wp-pagenavi {
  text-align: center;
  padding: 6rem 0 10rem;
  position: relative;
  vertical-align: middle;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.c_pagenation .wp-pagenavi a,
.c_pagenation .wp-pagenavi span {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  border-radius: 0;
}
.c_pagenation .wp-pagenavi .backtolistlink,
.c_pagenation .wp-pagenavi .page,
.c_pagenation .wp-pagenavi .current {
  border: solid 1px #0087AD;
  background: #fff;
  color: #0087AD;
  border-color: #0087AD;
  font-size: 18px;
  width: 40px;
  line-height: 38px;
}
@media screen and (max-width: 800px) {
  .c_pagenation .wp-pagenavi .backtolistlink,
  .c_pagenation .wp-pagenavi .page,
  .c_pagenation .wp-pagenavi .current {
    font-size: 4vw;
    width: 10vw;
    line-height: 10vw-2px;
  }
}
.c_pagenation .wp-pagenavi .backtolistlink {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 40px;
}
@media screen and (max-width: 800px) {
  .c_pagenation .wp-pagenavi .backtolistlink {
    padding: 0 6vw;
  }
}
.c_pagenation .wp-pagenavi .pages {
  display: block;
  padding-bottom: 10px;
  width: 100%;
}
.c_pagenation .wp-pagenavi .current {
  color: #fff;
  background: #0087AD;
  border: solid 1px #0087AD;
}
.c_pagenation .wp-pagenavi a:focus,
.c_pagenation .wp-pagenavi a:hover {
  color: #fff;
  background: #0087AD;
}
@media screen and (max-width: 800px) {
  .c_pagenation .wp-pagenavi {
    padding: 5vw 5vw 10vw;
    gap: 2vw;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.c_pagenation .wp-pagenavi .previouspostslink,
.c_pagenation .wp-pagenavi .nextpostslink {
  position: relative;
  color: transparent;
  border: solid 1px #0087AD;
  white-space: nowrap;
  overflow: hidden;
  text-indent: 100%;
  font-size: 18px;
  width: 40px;
  line-height: 38px;
}
@media screen and (max-width: 800px) {
  .c_pagenation .wp-pagenavi .previouspostslink,
  .c_pagenation .wp-pagenavi .nextpostslink {
    font-size: 4vw;
    width: 10vw;
    line-height: 10vw-2px;
  }
}
.c_pagenation .wp-pagenavi .previouspostslink::after,
.c_pagenation .wp-pagenavi .nextpostslink::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-right: solid 1px #0087AD;
  border-bottom: solid 1px #0087AD;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 800px) {
  .c_pagenation .wp-pagenavi .previouspostslink::after,
  .c_pagenation .wp-pagenavi .nextpostslink::after {
    width: 2vw;
    height: 2vw;
  }
}
.c_pagenation .wp-pagenavi .previouspostslink::after {
  left: 5px;
  right: 0;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.c_pagenation .wp-pagenavi .nextpostslink::after {
  left: 0;
  right: 5px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c_pagenation .wp-pagenavi .previouspostslink:focus,
.c_pagenation .wp-pagenavi .nextpostslink:focus,
.c_pagenation .wp-pagenavi .previouspostslink:hover,
.c_pagenation .wp-pagenavi .nextpostslink:hover {
  color: transparent;
  background: #0087AD;
}
.c_pagenation .wp-pagenavi .previouspostslink:focus::after,
.c_pagenation .wp-pagenavi .nextpostslink:focus::after,
.c_pagenation .wp-pagenavi .previouspostslink:hover::after,
.c_pagenation .wp-pagenavi .nextpostslink:hover::after {
  border-color: #fff !important;
}
.c_pagenation .wp-pagenavi .txt_label {
  color: #0087AD;
  text-indent: 0 !important;
  padding: 0 28px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c_pagenation .wp-pagenavi .txt_label:focus,
.c_pagenation .wp-pagenavi .txt_label:hover {
  color: #fff;
  background: #0087AD;
  border: solid 1px #0087AD;
}
.c_pagenation .wp-pagenavi .previouspostslink.txt_label::after {
  left: 15px;
  right: auto;
}
.c_pagenation .wp-pagenavi .nextpostslink.txt_label::after {
  left: auto;
  right: 15px;
}
@media screen and (max-width: 800px) {
  .c_pagenation .wp-pagenavi .txt_label {
    padding: 0 3vw;
  }
  .c_pagenation .wp-pagenavi .previouspostslink.txt_label {
    padding-left: 6vw;
  }
  .c_pagenation .wp-pagenavi .nextpostslink.txt_label {
    padding-right: 6vw;
  }
  .c_pagenation .wp-pagenavi .previouspostslink.txt_label::after {
    left: 3vw;
  }
  .c_pagenation .wp-pagenavi .nextpostslink.txt_label::after {
    right: 3vw;
  }
}
.c_pagenation .wp-pagenavi .deactive {
  visibility: hidden;
  pointer-events: none;
  color: rgba(0, 135, 173, 0.3);
  border: solid 1px rgba(0, 135, 173, 0.3);
  background: transparent;
}
.c_pagenation .wp-pagenavi .deactive::after {
  opacity: 0.3;
}
.c_pagenation .wp-pagenavi .first,
.c_pagenation .wp-pagenavi .last {
  position: relative;
  color: transparent;
  border: solid 1px #0087AD;
  font-size: 18px;
  width: 40px;
  line-height: 38px;
}
@media screen and (max-width: 800px) {
  .c_pagenation .wp-pagenavi .first,
  .c_pagenation .wp-pagenavi .last {
    font-size: 4vw;
    width: 10vw;
    line-height: 10vw-2px;
  }
}
.c_pagenation .wp-pagenavi .first {
  margin-left: 0;
}
.c_pagenation .wp-pagenavi .last {
  margin-right: 0;
}
.c_pagenation .wp-pagenavi .first::before,
.c_pagenation .wp-pagenavi .first::after,
.c_pagenation .wp-pagenavi .last::before,
.c_pagenation .wp-pagenavi .last::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 7px;
  height: 7px;
  border-right: solid 1px #0087AD;
  border-bottom: solid 1px #0087AD;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 800px) {
  .c_pagenation .wp-pagenavi .first::before,
  .c_pagenation .wp-pagenavi .first::after,
  .c_pagenation .wp-pagenavi .last::before,
  .c_pagenation .wp-pagenavi .last::after {
    width: 2vw;
    height: 2vw;
  }
}
.c_pagenation .wp-pagenavi .first::before {
  left: 14px;
  right: auto;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.c_pagenation .wp-pagenavi .first::after {
  left: 19px;
  right: auto;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.c_pagenation .wp-pagenavi .last::before {
  right: 14px;
  left: auto;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c_pagenation .wp-pagenavi .last::after {
  right: 19px;
  left: auto;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c_pagenation .wp-pagenavi .first:focus,
.c_pagenation .wp-pagenavi .last:focus,
.c_pagenation .wp-pagenavi .first:hover,
.c_pagenation .wp-pagenavi .last:hover {
  color: transparent !important;
  background: #0087AD;
}
.c_pagenation .wp-pagenavi .first:focus::before,
.c_pagenation .wp-pagenavi .first:focus::after,
.c_pagenation .wp-pagenavi .last:focus::before,
.c_pagenation .wp-pagenavi .last:focus::after,
.c_pagenation .wp-pagenavi .first:hover::before,
.c_pagenation .wp-pagenavi .first:hover::after,
.c_pagenation .wp-pagenavi .last:hover::before,
.c_pagenation .wp-pagenavi .last:hover::after {
  border-color: #fff;
}
@media screen and (max-width: 800px) {
  .c_pagenation .wp-pagenavi .first {
    margin-right: 1vw;
  }
  .c_pagenation .wp-pagenavi .first::before {
    left: 3.3vw;
  }
  .c_pagenation .wp-pagenavi .first::after {
    left: 4.7vw;
  }
  .c_pagenation .wp-pagenavi .last::before {
    right: 4.7vw;
  }
  .c_pagenation .wp-pagenavi .last::after {
    right: 3.3vw;
  }
}
.c_pagenation .wp-pagenavi .extend {
  font-size: 18px;
  display: inline-block;
  margin: 0;
  color: #0087AD;
  vertical-align: bottom;
}
@media screen and (max-width: 800px) {
  .c_pagenation .wp-pagenavi .extend {
    font-size: 3vw;
    margin: 0;
  }
}

/*===============================================================

    entry-title

===============================================================*/
.entry-title .title {
  font-size: 4rem;
}
.entry-title * + .title {
  margin-top: 0.5em;
}
.entry-title + .entry-content {
  margin-top: 0;
}

/*===============================================================

.entry-content   //  フロント
.editor-styles-wrapper　//　管理画面

===============================================================*/
.editor-styles-wrapper,
.entry-content {
  padding-top: 4rem;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  記事タイトル
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      マージン
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      テーブル（表組） 
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      カラム
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      ボタン
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      画像
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      キャプション 
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      リスト ul/ol
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      引用
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      ギャラリー
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      YouTube
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      音声ファイル
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      モーダルのボタン
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
      cp_flow_box
  -------------------------------------------------------------*/
  /*===============================================================
  //entry-content
  ===============================================================*/
}
.editor-styles-wrapper a,
.entry-content a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.editor-styles-wrapper p,
.editor-styles-wrapper .lead,
.entry-content p,
.entry-content .lead {
  font-size: 2rem;
  line-height: 2.5;
}
.editor-styles-wrapper > :first-child,
.entry-content > :first-child {
  margin-top: 0 !important;
}
@media screen and (max-width: 800px) {
  .editor-styles-wrapper,
  .entry-content {
    padding-top: 10vw;
  }
  .editor-styles-wrapper p,
  .editor-styles-wrapper .lead,
  .entry-content p,
  .entry-content .lead {
    font-size: 3.8vw;
    line-height: 2;
  }
}
.editor-styles-wrapper .wp-block-post-title,
.entry-content .wp-block-post-title {
  font-size: var(--heading--font-size-h1);
  letter-spacing: var(--heading--letter-spacing-h1);
  line-height: var(--heading--line-height-h1);
  font-weight: bold;
  border-bottom: solid 3px #000;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
}
.editor-styles-wrapper .wp-block-heading,
.entry-content .wp-block-heading {
  font-weight: bold;
  margin-bottom: 0;
}
.editor-styles-wrapper .wp-block-heading + .wp-block-table,
.entry-content .wp-block-heading + .wp-block-table {
  margin-top: 4rem;
}
@media screen and (max-width: 800px) {
  .editor-styles-wrapper .wp-block-heading + .wp-block-table,
  .entry-content .wp-block-heading + .wp-block-table {
    margin-top: 3vw;
  }
}
.editor-styles-wrapper h2.wp-block-heading,
.entry-content h2.wp-block-heading {
  margin-top: 10rem;
  font-size: var(--heading--font-size-h2);
  letter-spacing: var(--heading--letter-spacing-h2);
  line-height: var(--heading--line-height-h2);
  position: relative;
  padding-left: 3rem !important;
}
.editor-styles-wrapper h2.wp-block-heading::after,
.entry-content h2.wp-block-heading::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 2rem;
  height: 2rem;
  background-color: #0087AD;
}
@media screen and (max-width: 800px) {
  .editor-styles-wrapper h2.wp-block-heading,
  .entry-content h2.wp-block-heading {
    margin-top: 1.5em;
    font-size: 5.5vw;
  }
}
.editor-styles-wrapper h3.wp-block-heading,
.entry-content h3.wp-block-heading {
  margin-top: 10rem;
  font-size: var(--heading--font-size-h3);
  letter-spacing: var(--heading--letter-spacing-h3);
  line-height: var(--heading--line-height-h3);
  position: relative;
  padding-left: 3rem !important;
}
.editor-styles-wrapper h3.wp-block-heading::after,
.entry-content h3.wp-block-heading::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 2rem;
  height: 2rem;
  background-color: #D07861;
}
@media screen and (max-width: 800px) {
  .editor-styles-wrapper h3.wp-block-heading,
  .entry-content h3.wp-block-heading {
    margin-top: 10vw;
    font-size: 5vw;
  }
}
.editor-styles-wrapper h4.wp-block-heading,
.entry-content h4.wp-block-heading {
  margin-top: 5rem;
  font-size: var(--heading--font-size-h4);
  font-weight: var(--heading--font-weight-strong);
  letter-spacing: var(--heading--letter-spacing-h4);
  line-height: var(--heading--line-height-h4);
}
@media screen and (max-width: 800px) {
  .editor-styles-wrapper h4.wp-block-heading,
  .entry-content h4.wp-block-heading {
    margin-top: 1.5em;
    font-size: 4vw;
  }
}
.editor-styles-wrapper h5.wp-block-heading,
.entry-content h5.wp-block-heading {
  margin-top: 3rem;
  font-size: var(--heading--font-size-h5);
  font-weight: var(--heading--font-weight-strong);
  letter-spacing: var(--heading--letter-spacing-h5);
  line-height: var(--heading--line-height-h5);
}
.editor-styles-wrapper h6.wp-block-heading,
.entry-content h6.wp-block-heading {
  margin-top: 3rem;
  font-size: var(--heading--font-size-h6);
  font-weight: var(--heading--font-weight-strong);
  letter-spacing: var(--heading--letter-spacing-h6);
  line-height: var(--heading--line-height-h6);
}
.editor-styles-wrapper .wp-block-image,
.editor-styles-wrapper .wp-block-columns,
.editor-styles-wrapper .wp-block-table,
.editor-styles-wrapper .wp-block-buttons,
.editor-styles-wrapper .wp-block-gallery,
.editor-styles-wrapper .wp-block-embed,
.editor-styles-wrapper .wp-block-quote,
.editor-styles-wrapper .wp-block-pullquote,
.editor-styles-wrapper .wp-block-audio,
.editor-styles-wrapper * + ul,
.editor-styles-wrapper * + ol,
.editor-styles-wrapper * + p,
.entry-content .wp-block-image,
.entry-content .wp-block-columns,
.entry-content .wp-block-table,
.entry-content .wp-block-buttons,
.entry-content .wp-block-gallery,
.entry-content .wp-block-embed,
.entry-content .wp-block-quote,
.entry-content .wp-block-pullquote,
.entry-content .wp-block-audio,
.entry-content * + ul,
.entry-content * + ol,
.entry-content * + p {
  margin-top: 3rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 800px) {
  .editor-styles-wrapper .wp-block-image,
  .editor-styles-wrapper .wp-block-columns,
  .editor-styles-wrapper .wp-block-table,
  .editor-styles-wrapper .wp-block-buttons,
  .editor-styles-wrapper .wp-block-gallery,
  .editor-styles-wrapper .wp-block-embed,
  .editor-styles-wrapper .wp-block-quote,
  .editor-styles-wrapper .wp-block-pullquote,
  .editor-styles-wrapper .wp-block-audio,
  .editor-styles-wrapper * + ul,
  .editor-styles-wrapper * + ol,
  .editor-styles-wrapper * + p,
  .entry-content .wp-block-image,
  .entry-content .wp-block-columns,
  .entry-content .wp-block-table,
  .entry-content .wp-block-buttons,
  .entry-content .wp-block-gallery,
  .entry-content .wp-block-embed,
  .entry-content .wp-block-quote,
  .entry-content .wp-block-pullquote,
  .entry-content .wp-block-audio,
  .entry-content * + ul,
  .entry-content * + ol,
  .entry-content * + p {
    margin-top: 3vw;
  }
}
.editor-styles-wrapper p + .wp-block-quote,
.editor-styles-wrapper p + .wp-block-pullquote,
.entry-content p + .wp-block-quote,
.entry-content p + .wp-block-pullquote {
  margin-top: 5rem;
}
@media only screen and (max-width: 800px) {
  .editor-styles-wrapper p + .wp-block-quote,
  .editor-styles-wrapper p + .wp-block-pullquote,
  .entry-content p + .wp-block-quote,
  .entry-content p + .wp-block-pullquote {
    margin-top: 5vw;
  }
}
.editor-styles-wrapper .wp-block-table,
.entry-content .wp-block-table {
  margin-top: 7rem;
}
.editor-styles-wrapper .wp-block-table tr:nth-child(even),
.entry-content .wp-block-table tr:nth-child(even) {
  background: #f8f8f8;
}
.editor-styles-wrapper .wp-block-columns,
.entry-content .wp-block-columns {
  margin-top: 5rem;
}
.editor-styles-wrapper .wp-block-columns + .wp-block-columns,
.entry-content .wp-block-columns + .wp-block-columns {
  margin-top: 4rem;
}
.editor-styles-wrapper .wp-block-columns .wp-block-column,
.entry-content .wp-block-columns .wp-block-column {
  margin-bottom: 0;
}
@media screen and (max-width: 800px) {
  .editor-styles-wrapper .wp-block-columns,
  .entry-content .wp-block-columns {
    margin-top: 8vw;
  }
  .editor-styles-wrapper .wp-block-columns + .wp-block-columns,
  .entry-content .wp-block-columns + .wp-block-columns {
    margin-top: 5vw;
  }
}
.editor-styles-wrapper .wp-block-buttons .button-reply,
.editor-styles-wrapper .wp-block-buttons .button-recruit,
.entry-content .wp-block-buttons .button-reply,
.entry-content .wp-block-buttons .button-recruit {
  width: 29%;
}
.editor-styles-wrapper .wp-block-buttons .button-reply .wp-element-button,
.editor-styles-wrapper .wp-block-buttons .button-recruit .wp-element-button,
.entry-content .wp-block-buttons .button-reply .wp-element-button,
.entry-content .wp-block-buttons .button-recruit .wp-element-button {
  font-size: 2rem !important;
  width: 100%;
}
.editor-styles-wrapper .wp-block-buttons + .wp-block-heading,
.entry-content .wp-block-buttons + .wp-block-heading {
  margin-top: 2rem;
}
@media only screen and (max-width: 800px) {
  .editor-styles-wrapper .wp-block-buttons .button-reply,
  .entry-content .wp-block-buttons .button-reply {
    width: 70%;
  }
  .editor-styles-wrapper .wp-block-buttons .button-reply .wp-element-button,
  .entry-content .wp-block-buttons .button-reply .wp-element-button {
    font-size: 4vw !important;
  }
}
.editor-styles-wrapper .wp-block-buttons .button-recruit,
.entry-content .wp-block-buttons .button-recruit {
  width: 34.5%;
}
@media only screen and (max-width: 800px) {
  .editor-styles-wrapper .wp-block-buttons .button-recruit,
  .entry-content .wp-block-buttons .button-recruit {
    width: 70%;
  }
  .editor-styles-wrapper .wp-block-buttons .button-recruit .wp-element-button,
  .entry-content .wp-block-buttons .button-recruit .wp-element-button {
    font-size: 4vw !important;
  }
}
.editor-styles-wrapper .wp-element-caption,
.entry-content .wp-element-caption {
  font-size: 1.6rem;
  margin-top: 1.5rem;
  text-align: left;
  font-size: 2rem;
  line-height: 1.5;
  margin-top: 1.5rem;
  margin-bottom: 0;
  text-align: center;
  color: #000;
}
@media only screen and (max-width: 800px) {
  .editor-styles-wrapper .wp-element-caption,
  .entry-content .wp-element-caption {
    font-size: 3.8vw !important;
    margin-top: 1rem !important;
  }
}
.editor-styles-wrapper ul li,
.entry-content ul li {
  font-size: 2rem;
}
@media only screen and (max-width: 800px) {
  .editor-styles-wrapper ul li,
  .entry-content ul li {
    font-size: 3.8vw !important;
  }
}
.editor-styles-wrapper ol li,
.entry-content ol li {
  font-size: 2rem;
}
@media only screen and (max-width: 800px) {
  .editor-styles-wrapper ol li,
  .entry-content ol li {
    font-size: 3.8vw !important;
  }
}
.editor-styles-wrapper .ul_report,
.entry-content .ul_report {
  margin-top: 5rem;
}
.editor-styles-wrapper .ul_report li,
.entry-content .ul_report li {
  font-size: 1.8rem;
  font-weight: normal;
  background: #fff;
}
.editor-styles-wrapper .ul_report li + li,
.entry-content .ul_report li + li {
  margin-top: 2rem;
}
.editor-styles-wrapper .ul_report li:has(a),
.entry-content .ul_report li:has(a) {
  padding: 0;
}
.editor-styles-wrapper .ul_report li:has(a) a,
.entry-content .ul_report li:has(a) a {
  padding: 2.5rem 3rem !important;
  display: block;
}
.editor-styles-wrapper .ul_report li:not(:has(a)),
.entry-content .ul_report li:not(:has(a)) {
  padding: 2.5rem 3rem !important;
}
.editor-styles-wrapper .ul_report li .wp-block-list li,
.entry-content .ul_report li .wp-block-list li {
  padding: 0.5em !important;
}
.editor-styles-wrapper .ul_report li a,
.entry-content .ul_report li a {
  text-decoration: none !important;
  padding: 0;
}
.editor-styles-wrapper .ul_report li a:before, .editor-styles-wrapper .ul_report li a:after,
.entry-content .ul_report li a:before,
.entry-content .ul_report li a:after {
  content: "";
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin: auto;
}
.editor-styles-wrapper .ul_report li a:before,
.entry-content .ul_report li a:before {
  background-color: #666;
  width: 2rem;
  height: 1px;
  bottom: 50%;
  right: 2rem;
}
.editor-styles-wrapper .ul_report li a:after,
.entry-content .ul_report li a:after {
  border: solid 1px #666;
  border-top: none;
  border-left: none;
  width: 0.8rem;
  height: 0.8rem;
  bottom: 0.1rem;
  right: 2rem;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media only screen and (max-width: 800px) {
  .editor-styles-wrapper .ul_report li:has(a) a,
  .entry-content .ul_report li:has(a) a {
    padding: 2.5vw 10vw 2.5vw 3vw !important;
    display: block;
  }
  .editor-styles-wrapper .ul_report li:not(:has(a)),
  .entry-content .ul_report li:not(:has(a)) {
    padding: 3.5vw 4vw !important;
  }
  .editor-styles-wrapper .ul_report li a,
  .entry-content .ul_report li a {
    font-size: 3.8vw;
  }
}
.editor-styles-wrapper .wp-block-list li::after,
.entry-content .wp-block-list li::after {
  top: 1.9rem;
  width: 0.4rem;
  height: 0.4rem;
}
.editor-styles-wrapper .wp-block-list li::after a,
.entry-content .wp-block-list li::after a {
  text-decoration: underline;
}
.editor-styles-wrapper .wp-block-quote,
.entry-content .wp-block-quote {
  background-color: #eee;
  padding: 3rem;
}
.editor-styles-wrapper .wp-block-quote::before,
.entry-content .wp-block-quote::before {
  display: none;
}
.editor-styles-wrapper .wp-block-quote cite,
.entry-content .wp-block-quote cite {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.2rem;
  margin-top: 2rem;
  display: block;
}
.editor-styles-wrapper .wp-block-pullquote,
.entry-content .wp-block-pullquote {
  border: solid 1px #0087AD;
  padding: 3rem;
}
.editor-styles-wrapper .wp-block-pullquote blockquote::before,
.entry-content .wp-block-pullquote blockquote::before {
  display: none;
}
.editor-styles-wrapper .wp-block-quote cite,
.editor-styles-wrapper .wp-block-pullquote cite,
.entry-content .wp-block-quote cite,
.entry-content .wp-block-pullquote cite {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.2rem;
  margin-top: 2rem;
  display: block;
}
@media only screen and (max-width: 800px) {
  .editor-styles-wrapper .wp-block-gallery.has-nested-images,
  .editor-styles-wrapper .wp-block-gallery,
  .entry-content .wp-block-gallery.has-nested-images,
  .entry-content .wp-block-gallery {
    gap: 3vw !important;
  }
}
.editor-styles-wrapper .wp-block-gallery.has-nested-images figure.wp-block-image::before,
.editor-styles-wrapper .wp-block-gallery figure.wp-block-image::before,
.entry-content .wp-block-gallery.has-nested-images figure.wp-block-image::before,
.entry-content .wp-block-gallery figure.wp-block-image::before {
  display: none;
}
.editor-styles-wrapper .wp-block-gallery.has-nested-images figure.wp-block-image figcaption,
.editor-styles-wrapper .wp-block-gallery.has-nested-images figure.wp-block-image figcaption.wp-element-caption,
.editor-styles-wrapper .wp-block-gallery figure.wp-block-image figcaption,
.editor-styles-wrapper .wp-block-gallery figure.wp-block-image figcaption.wp-element-caption,
.entry-content .wp-block-gallery.has-nested-images figure.wp-block-image figcaption,
.entry-content .wp-block-gallery.has-nested-images figure.wp-block-image figcaption.wp-element-caption,
.entry-content .wp-block-gallery figure.wp-block-image figcaption,
.entry-content .wp-block-gallery figure.wp-block-image figcaption.wp-element-caption {
  position: relative !important;
  margin-top: 1.5rem !important;
  font-size: 2rem !important;
  line-height: 1.5 !important;
  color: #333 !important;
  text-align: center !important;
  padding: 0 !important;
  text-shadow: none !important;
  background: none !important;
}
@media only screen and (max-width: 800px) {
  .editor-styles-wrapper .wp-block-gallery.has-nested-images figure.wp-block-image figcaption,
  .editor-styles-wrapper .wp-block-gallery.has-nested-images figure.wp-block-image figcaption.wp-element-caption,
  .editor-styles-wrapper .wp-block-gallery figure.wp-block-image figcaption,
  .editor-styles-wrapper .wp-block-gallery figure.wp-block-image figcaption.wp-element-caption,
  .entry-content .wp-block-gallery.has-nested-images figure.wp-block-image figcaption,
  .entry-content .wp-block-gallery.has-nested-images figure.wp-block-image figcaption.wp-element-caption,
  .entry-content .wp-block-gallery figure.wp-block-image figcaption,
  .entry-content .wp-block-gallery figure.wp-block-image figcaption.wp-element-caption {
    font-size: 3.8vw !important;
    margin-top: 1rem !important;
  }
}
.editor-styles-wrapper .wp-block-embed,
.entry-content .wp-block-embed {
  position: relative;
}
.editor-styles-wrapper .wp-block-embed .wp-block-embed__wrapper,
.entry-content .wp-block-embed .wp-block-embed__wrapper {
  position: relative;
}
.editor-styles-wrapper .wp-block-embed .wp-block-embed__wrapper::before,
.entry-content .wp-block-embed .wp-block-embed__wrapper::before {
  position: relative;
  content: "";
  display: block;
  padding-top: 56.25%;
  z-index: 1;
}
.editor-styles-wrapper .wp-block-embed .wp-block-embed__wrapper iframe,
.entry-content .wp-block-embed .wp-block-embed__wrapper iframe {
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 2;
}
.editor-styles-wrapper .wp-lightbox-container button,
.entry-content .wp-lightbox-container button {
  padding: 0 !important;
  margin: 0 !important;
}
.editor-styles-wrapper .wp-lightbox-container svg,
.entry-content .wp-lightbox-container svg {
  fill: #eee;
  width: 1.6rem;
  height: 1.6rem;
}

/*===============================================================

section_case_study

===============================================================*/
.section_case_study .c_pagetitle {
  padding-top: 0;
}

.content_case_stduy {
  /*===============================================================
  block_tag_list
  ===============================================================*/
  /*===============================================================
  block_case_study
  ===============================================================*/
}
.content_case_stduy .lv_1 {
  background-color: transparent !important;
  padding: 0 !important;
  text-align: left !important;
}
.content_case_stduy .block_title + .block_case_study {
  margin-top: 5rem;
}
@media screen and (max-width: 800px) {
  .content_case_stduy .block_title + .block_case_study {
    margin-top: 5vw;
  }
}
.content_case_stduy .lv_3 + .block_case_study {
  margin-top: 3rem;
}
@media screen and (max-width: 800px) {
  .content_case_stduy .lv_3 + .block_case_study {
    margin-top: 5vw;
  }
}
.content_case_stduy + .block_tag_list {
  margin-top: 10rem;
  margin-bottom: 12rem;
}
@media screen and (max-width: 800px) {
  .content_case_stduy + .block_tag_list {
    margin-top: 5vw;
    margin-bottom: 8vw;
  }
}
.content_case_stduy .block_tag_list {
  margin-top: 0;
}
.content_case_stduy .block_tag_list + .block_case_study {
  margin-top: 11rem;
}
@media screen and (max-width: 800px) {
  .content_case_stduy .block_tag_list + .block_case_study {
    margin-top: 5vw;
  }
}
.content_case_stduy .block_tag_list .tag_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.content_case_stduy .block_tag_list .tag_box .tag {
  font-size: 2rem;
  line-height: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.content_case_stduy .block_tag_list .tag_box .tag a {
  border: 1px solid #0087AD;
  padding: 1rem 2rem;
  font-size: 2rem;
  line-height: 1;
  color: #0087AD;
  display: block;
}
.content_case_stduy .block_tag_list .tag_box .tag a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 800px) {
  .content_case_stduy .block_tag_list .tag_box {
    gap: 1vw 2vw;
  }
  .content_case_stduy .block_tag_list .tag_box .tag a {
    padding: 2vw 2vw;
    font-size: 3.5vw;
  }
}
.content_case_stduy .block_tag_list .tag_accordion {
  width: 100%;
  margin-top: 4rem;
}
.content_case_stduy .block_tag_list .tag_accordion .accordion_header {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
  border: 1px solid #0087AD;
  padding: 3rem 5rem;
  position: relative;
}
.content_case_stduy .block_tag_list .tag_accordion .accordion_header:before, .content_case_stduy .block_tag_list .tag_accordion .accordion_header:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2rem;
  margin: auto;
  width: 25px;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.content_case_stduy .block_tag_list .tag_accordion .accordion_header:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.content_case_stduy .block_tag_list .tag_accordion .accordion_header.active {
  border-bottom: none;
}
.content_case_stduy .block_tag_list .tag_accordion .accordion_header.active::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.content_case_stduy .block_tag_list .tag_accordion .accordion_body {
  padding: 0 5rem 3rem;
  border: 1px solid #0087AD;
  border-top: none;
  word-break: keep-all;
}
.content_case_stduy .block_tag_list .tag_accordion .accordion_body .accordion_content p {
  font-size: 1.8rem;
}
.content_case_stduy .block_tag_list .tag_accordion .accordion_body .accordion_content p a {
  text-decoration: none;
  color: #0087AD;
  padding-right: 0.8em;
}
.content_case_stduy .block_tag_list .tag_accordion .accordion_body .accordion_content p a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 800px) {
  .content_case_stduy .block_tag_list .tag_accordion {
    margin-top: 5vw;
  }
  .content_case_stduy .block_tag_list .tag_accordion .accordion_header {
    font-size: 4vw;
    padding: 5vw;
  }
  .content_case_stduy .block_tag_list .tag_accordion .accordion_header:before, .content_case_stduy .block_tag_list .tag_accordion .accordion_header:after {
    width: 5vw;
  }
  .content_case_stduy .block_tag_list .tag_accordion .accordion_body {
    padding: 2vw 5vw 5vw;
  }
  .content_case_stduy .block_tag_list .tag_accordion .accordion_body .accordion_content p {
    font-size: 3.5vw;
  }
}
@media screen and (max-width: 800px) {
  .content_case_stduy .block_tag_list {
    margin-top: 10vw;
  }
}
.content_case_stduy .lv_1 + .block_tag_list {
  margin-top: 5rem;
}
.content_case_stduy .c_pagenation + .block_tag_list {
  padding: 7rem 0 12rem;
}
@media screen and (max-width: 800px) {
  .content_case_stduy .c_pagenation + .block_tag_list {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.content_case_stduy .block_case_study {
  margin-top: 0;
}
.content_case_stduy .block_case_study .item {
  padding: 3rem 5.5rem 3.5rem;
  border: 1px solid #0087AD;
}
.content_case_stduy .block_case_study .item + .item {
  margin-top: 2rem;
}
.content_case_stduy .block_case_study .item .top_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.content_case_stduy .block_case_study .item .top_item .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem 1.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.content_case_stduy .block_case_study .item .top_item .tags .tag {
  color: #0087AD;
}
.content_case_stduy .block_case_study .item .top_item .tags .tag a:hover {
  opacity: 0.7;
}
.content_case_stduy .block_case_study .item .top_item .date {
  font-size: 1.4rem;
  text-align: right;
  color: #333;
}
.content_case_stduy .block_case_study .item .reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.content_case_stduy .block_case_study .item a {
  color: #0087AD;
}
.content_case_stduy .block_case_study .item a:hover {
  color: #0098c3;
}
.content_case_stduy .block_case_study .item .bottom_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
  gap: 0;
  margin-top: 2rem;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #333;
}
.content_case_stduy .block_case_study .item .bottom_item:hover {
  color: #0087AD;
}
.content_case_stduy .block_case_study .item .bottom_item .icon {
  width: 10rem;
}
.content_case_stduy .block_case_study .item .bottom_item .icon img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.content_case_stduy .block_case_study .item .bottom_item .title {
  font-size: 3rem;
  font-weight: bold;
  width: calc(100% - 13rem);
  line-height: 1.6;
}
.content_case_stduy .block_case_study .item .bottom_item:before, .content_case_stduy .block_case_study .item .bottom_item:after {
  content: "";
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin: auto;
}
.content_case_stduy .block_case_study .item .bottom_item:before {
  background-color: #666;
  width: 2rem;
  height: 1px;
  bottom: 0rem;
  right: 0rem;
}
.content_case_stduy .block_case_study .item .bottom_item:after {
  border: solid 1px #666;
  border-top: none;
  border-left: none;
  width: 0.8rem;
  height: 0.8rem;
  bottom: -0.4rem;
  right: 0.1rem;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.content_case_stduy .block_case_study .reverse_item {
  padding: 3rem 5rem;
}
.content_case_stduy .block_case_study .txt_block {
  font-size: 2rem;
  font-weight: bold;
  text-align: right;
  margin-top: 1rem;
}
.content_case_stduy .block_case_study .txt_block a {
  color: #0087AD;
  text-decoration: none;
}
.content_case_stduy .block_case_study .txt_block a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 800px) {
  .content_case_stduy .block_case_study {
    margin-top: 5vw;
  }
  .content_case_stduy .block_case_study .item {
    padding: 4vw 5vw 8vw;
  }
  .content_case_stduy .block_case_study .item + .item {
    margin-top: 2vw;
  }
  .content_case_stduy .block_case_study .item .top_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .content_case_stduy .block_case_study .item .top_item .tags {
    width: 100%;
    gap: 0vw 3vw;
  }
  .content_case_stduy .block_case_study .item .top_item .tags .tag {
    font-size: 3.5vw !important;
    line-height: 1.6 !important;
    display: inline-block !important;
  }
  .content_case_stduy .block_case_study .item .top_item .tags .tag a {
    display: inline-block !important;
    font-size: 3.5vw !important;
    line-height: 1.6 !important;
  }
  .content_case_stduy .block_case_study .item .top_item .date {
    width: 100%;
    font-size: 3vw;
    text-align: left;
  }
  .content_case_stduy .block_case_study .item .bottom_item {
    margin-top: 2vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content_case_stduy .block_case_study .item .bottom_item .icon {
    width: 13vw;
  }
  .content_case_stduy .block_case_study .item .bottom_item .title {
    font-size: 4.5vw;
    font-size: 4vw;
    line-height: 1.6;
    width: calc(100% - 17vw);
  }
  .content_case_stduy .block_case_study .item .bottom_item:before, .content_case_stduy .block_case_study .item .bottom_item:after {
    content: "";
    position: absolute;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin: auto;
  }
  .content_case_stduy .block_case_study .item .bottom_item:before {
    background-color: #666;
    width: 2rem;
    height: 1px;
    bottom: -1.5rem;
    right: 0rem;
  }
  .content_case_stduy .block_case_study .item .bottom_item:after {
    width: 0.8rem;
    height: 0.8rem;
    bottom: -1.9rem;
    right: 0.1rem;
  }
  .content_case_stduy .block_case_study .reverse_item {
    padding: 4vw 5vw;
  }
  .content_case_stduy .block_case_study .txt_block {
    font-size: 4vw;
    margin-top: 2vw;
  }
}

/*===============================================================

section_contact

===============================================================*/
@media screen and (max-width: 800px) {
  .section_contact .section_inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.section_contact .section_inner .large_width .content_contact {
  background-color: #fff;
  border: 1px solid #CFDAE4;
  padding: 7rem 3rem;
  /*===============================================================
  contact_wrp
  ===============================================================*/
}
@media screen and (max-width: 800px) {
  .section_contact .section_inner .large_width .content_contact {
    border: none;
    padding: 7vw 3vw;
  }
}
.section_contact .section_inner .large_width .content_contact .contact_wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  /*===============================================================
  left_block
  ===============================================================*/
}
@media screen and (max-width: 800px) {
  .section_contact .section_inner .large_width .content_contact .contact_wrp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section_contact .section_inner .large_width .content_contact .contact_wrp .left_block,
.section_contact .section_inner .large_width .content_contact .contact_wrp .right_block {
  width: 50%;
  text-align: center;
}
.section_contact .section_inner .large_width .content_contact .contact_wrp .left_block .left_txt .title,
.section_contact .section_inner .large_width .content_contact .contact_wrp .left_block .right_txt .title,
.section_contact .section_inner .large_width .content_contact .contact_wrp .right_block .left_txt .title,
.section_contact .section_inner .large_width .content_contact .contact_wrp .right_block .right_txt .title {
  font-size: 2rem;
  font-weight: bold;
  color: #0087AD;
}
.section_contact .section_inner .large_width .content_contact .contact_wrp .left_block .left_txt .lead,
.section_contact .section_inner .large_width .content_contact .contact_wrp .left_block .right_txt .lead,
.section_contact .section_inner .large_width .content_contact .contact_wrp .right_block .left_txt .lead,
.section_contact .section_inner .large_width .content_contact .contact_wrp .right_block .right_txt .lead {
  font-size: 1.4rem;
  color: #333;
  margin-top: 3rem;
}
.section_contact .section_inner .large_width .content_contact .contact_wrp .left_block .tel,
.section_contact .section_inner .large_width .content_contact .contact_wrp .right_block .tel {
  font-size: min(5rem, 5vw);
  font-weight: bold;
  line-height: 1;
  margin-top: 7rem;
}
.section_contact .section_inner .large_width .content_contact .contact_wrp .left_block .tel a,
.section_contact .section_inner .large_width .content_contact .contact_wrp .right_block .tel a {
  text-decoration: none;
  color: #333;
}
@media screen and (max-width: 800px) {
  .section_contact .section_inner .large_width .content_contact .contact_wrp .left_block,
  .section_contact .section_inner .large_width .content_contact .contact_wrp .right_block {
    width: 100%;
  }
  .section_contact .section_inner .large_width .content_contact .contact_wrp .left_block .left_txt .title,
  .section_contact .section_inner .large_width .content_contact .contact_wrp .left_block .right_txt .title,
  .section_contact .section_inner .large_width .content_contact .contact_wrp .right_block .left_txt .title,
  .section_contact .section_inner .large_width .content_contact .contact_wrp .right_block .right_txt .title {
    font-size: 5vw;
  }
  .section_contact .section_inner .large_width .content_contact .contact_wrp .left_block .left_txt .lead,
  .section_contact .section_inner .large_width .content_contact .contact_wrp .left_block .right_txt .lead,
  .section_contact .section_inner .large_width .content_contact .contact_wrp .right_block .left_txt .lead,
  .section_contact .section_inner .large_width .content_contact .contact_wrp .right_block .right_txt .lead {
    font-size: 3.5vw;
    margin-top: 3vw;
  }
  .section_contact .section_inner .large_width .content_contact .contact_wrp .left_block .tel,
  .section_contact .section_inner .large_width .content_contact .contact_wrp .right_block .tel {
    font-size: 9vw;
    margin-top: 5vw;
  }
  .section_contact .section_inner .large_width .content_contact .contact_wrp .left_block .tel a,
  .section_contact .section_inner .large_width .content_contact .contact_wrp .right_block .tel a {
    text-decoration: none;
    color: #333;
  }
}
@media screen and (max-width: 800px) {
  .section_contact .section_inner .large_width .content_contact .contact_wrp .right_block {
    padding-top: 7vw;
  }
}
.section_contact .section_inner .large_width .content_contact .contact_wrp .left_block {
  border-right: 1px solid #ccc;
  padding: 0 2rem;
}
.section_contact .section_inner .large_width .content_contact .contact_wrp .left_block .btn_block .c_btn_round {
  width: 100%;
  max-width: 35rem;
  margin-top: 4rem;
}
@media screen and (max-width: 800px) {
  .section_contact .section_inner .large_width .content_contact .contact_wrp .left_block {
    border-right: none;
    border-bottom: 1px solid #ccc;
    padding: 0 0 5vw 0;
  }
  .section_contact .section_inner .large_width .content_contact .contact_wrp .left_block .btn_block .c_btn_round {
    width: 90%;
  }
}

/*===============================================================

section_service

===============================================================*/
.section_service {
  /*===============================================================
  development_content
  ===============================================================*/
  /*===============================================================
  individual_content
  ===============================================================*/
}
.section_service .service_title {
  font-size: 3.5rem;
  text-align: center;
  color: #0087AD;
  margin-top: 15rem;
}
.section_service .service_title::before, .section_service .service_title::after {
  display: inline-block;
  content: "";
  border-bottom: 2px solid #0087AD;
  width: 5rem;
  margin-bottom: 1rem;
}
.section_service .service_title::before {
  margin-right: 1rem;
}
.section_service .service_title::after {
  margin-left: 1rem;
}
@media screen and (max-width: 800px) {
  .section_service .service_title {
    font-size: 5vw;
    margin-top: 10vw;
  }
  .section_service .service_title::before, .section_service .service_title::after {
    width: 7vw;
    margin-bottom: 1.5vw;
  }
  .section_service .service_title::before {
    margin-right: 2vw;
  }
  .section_service .service_title::after {
    margin-left: 2vw;
  }
}
.section_service .block_service_list {
  margin-top: 5rem;
  padding: 4rem 5rem 10rem;
  background: #fff;
  border: 1px solid #ccc;
  /*===============================================================
  service_wrp
  ===============================================================*/
}
@media screen and (max-width: 800px) {
  .section_service .block_service_list {
    margin-top: 10vw;
    padding: 5vw;
  }
}
.section_service .block_service_list .c_ul_list li, .section_service .block_service_list .editor-styles-wrapper ul li, .editor-styles-wrapper .section_service .block_service_list ul li,
.section_service .block_service_list .entry-content ul li,
.entry-content .section_service .block_service_list ul li {
  padding-left: 2rem;
}
.section_service .block_service_list .c_ul_list li + li, .section_service .block_service_list .editor-styles-wrapper ul li + li, .editor-styles-wrapper .section_service .block_service_list ul li + li,
.section_service .block_service_list .entry-content ul li + li,
.entry-content .section_service .block_service_list ul li + li {
  margin-top: 1.5rem;
}
.section_service .block_service_list .c_ul_list li::after, .section_service .block_service_list .editor-styles-wrapper ul li::after, .editor-styles-wrapper .section_service .block_service_list ul li::after,
.section_service .block_service_list .entry-content ul li::after,
.entry-content .section_service .block_service_list ul li::after {
  width: 1.5rem;
  height: 1.5rem;
  top: 1rem;
}
@media screen and (max-width: 800px) {
  .section_service .block_service_list .c_ul_list li, .section_service .block_service_list .editor-styles-wrapper ul li, .editor-styles-wrapper .section_service .block_service_list ul li,
  .section_service .block_service_list .entry-content ul li,
  .entry-content .section_service .block_service_list ul li {
    font-size: 3.5vw;
  }
  .section_service .block_service_list .c_ul_list li + li, .section_service .block_service_list .editor-styles-wrapper ul li + li, .editor-styles-wrapper .section_service .block_service_list ul li + li,
  .section_service .block_service_list .entry-content ul li + li,
  .entry-content .section_service .block_service_list ul li + li {
    margin-top: 2.5vw;
  }
  .section_service .block_service_list .c_ul_list li::after, .section_service .block_service_list .editor-styles-wrapper ul li::after, .editor-styles-wrapper .section_service .block_service_list ul li::after,
  .section_service .block_service_list .entry-content ul li::after,
  .entry-content .section_service .block_service_list ul li::after {
    top: 1vw;
  }
}
.section_service .block_service_list .c_ul_list .green::after, .section_service .block_service_list .editor-styles-wrapper ul .green::after, .editor-styles-wrapper .section_service .block_service_list ul .green::after,
.section_service .block_service_list .entry-content ul .green::after,
.entry-content .section_service .block_service_list ul .green::after {
  background: #47964D;
}
.section_service .block_service_list .c_ul_list .red::after, .section_service .block_service_list .editor-styles-wrapper ul .red::after, .editor-styles-wrapper .section_service .block_service_list ul .red::after,
.section_service .block_service_list .entry-content ul .red::after,
.entry-content .section_service .block_service_list ul .red::after {
  background: #D07861;
}
.section_service .block_service_list .etc {
  font-size: 1.8rem;
  margin-top: 1.5rem;
}
.section_service .block_service_list .service_wrp {
  margin-top: 7rem;
}
.section_service .block_service_list .service_wrp .item {
  text-align: center;
  margin-top: 0;
}
.section_service .block_service_list .service_wrp .item .title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
}
.section_service .block_service_list .service_wrp .item .lead {
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 0.5rem;
}
.section_service .block_service_list .service_wrp .item .btn_block {
  margin-top: 2rem;
}
.section_service .block_service_list .service_wrp .item .btn_block .c_btn_round {
  width: 100%;
  max-width: 15rem;
}
.section_service .block_service_list .service_wrp .item .btn_block .c_btn_round a {
  padding: 0.5rem 0;
}
.section_service .block_service_list .service_wrp .item .btn_block .c_btn_round a .label {
  font-size: 1.6rem;
}
@media screen and (max-width: 1070px) {
  .section_service .block_service_list .service_wrp .item .title {
    font-size: 2vw;
  }
  .section_service .block_service_list .service_wrp .item .lead {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 800px) {
  .section_service .block_service_list .service_wrp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section_service .block_service_list .service_wrp .item {
    width: 100%;
  }
  .section_service .block_service_list .service_wrp .item .title {
    font-size: 5vw;
    margin-top: 5vw;
  }
  .section_service .block_service_list .service_wrp .item .lead {
    font-size: 3.5vw;
  }
  .section_service .block_service_list .service_wrp .item .btn_block {
    margin-top: 3vw;
  }
  .section_service .block_service_list .service_wrp .item .btn_block .c_btn_round {
    width: 100%;
    max-width: 37vw;
  }
  .section_service .block_service_list .service_wrp .item .btn_block .c_btn_round a {
    padding: 1.5vw 0;
  }
  .section_service .block_service_list .service_wrp .item .btn_block .c_btn_round a .label {
    font-size: 3.5vw;
  }
  .section_service .block_service_list .service_wrp .item + .item {
    margin-top: 10vw;
  }
}
.section_service .development_content + .content_workflow,
.section_service .industry_content + .content_workflow {
  margin-top: 15rem;
}
.section_service .development_content .service_detail_block,
.section_service .industry_content .service_detail_block {
  margin-top: 10rem;
}
.section_service .development_content .service_detail_block .service_detail_wrp .left,
.section_service .industry_content .service_detail_block .service_detail_wrp .left {
  width: 36%;
}
.section_service .development_content .service_detail_block .service_detail_wrp .right,
.section_service .industry_content .service_detail_block .service_detail_wrp .right {
  width: 60%;
}
.section_service .development_content .service_detail_block .service_detail_wrp .right .lead,
.section_service .industry_content .service_detail_block .service_detail_wrp .right .lead {
  font-size: 2rem;
}
.section_service .development_content .service_detail_block .service_detail_wrp .txt,
.section_service .industry_content .service_detail_block .service_detail_wrp .txt {
  font-size: 2rem;
  margin-top: 4rem;
}
@media screen and (max-width: 800px) {
  .section_service .development_content .service_detail_block,
  .section_service .industry_content .service_detail_block {
    margin-top: 10vw;
  }
  .section_service .development_content .service_detail_block .service_detail_wrp,
  .section_service .industry_content .service_detail_block .service_detail_wrp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section_service .development_content .service_detail_block .service_detail_wrp .left,
  .section_service .industry_content .service_detail_block .service_detail_wrp .left {
    width: 100%;
  }
  .section_service .development_content .service_detail_block .service_detail_wrp .right,
  .section_service .industry_content .service_detail_block .service_detail_wrp .right {
    width: 100%;
  }
  .section_service .development_content .service_detail_block .service_detail_wrp .right .lead,
  .section_service .industry_content .service_detail_block .service_detail_wrp .right .lead {
    font-size: 4vw;
    margin-top: 3vw;
  }
  .section_service .development_content .service_detail_block .service_detail_wrp .txt,
  .section_service .industry_content .service_detail_block .service_detail_wrp .txt {
    font-size: 2rem;
    margin-top: 4rem;
  }
  .section_service .development_content + .content_workflow,
  .section_service .industry_content + .content_workflow {
    margin-top: 15vw;
  }
}
.section_service .individual_content {
  border-top: 1px solid #666;
  padding: 5rem 0;
}
.section_service .individual_content + .individual_content {
  margin-top: 0;
}
.section_service .individual_content + .content_workflow {
  margin-top: 15rem;
}
.section_service .individual_content .individual_title {
  margin: 0 auto;
}
.section_service .individual_content .individual_title .title {
  font-size: 3rem;
  text-align: center;
}
.section_service .individual_content .individual_title .title::before, .section_service .individual_content .individual_title .title::after {
  display: inline-block;
  content: "";
  border-bottom: 2px solid #000;
  width: 2.5rem;
  margin-bottom: 0.8rem;
}
.section_service .individual_content .individual_title .title::before {
  margin-right: 1rem;
}
.section_service .individual_content .individual_title .title::after {
  margin-left: 1rem;
}
.section_service .individual_content .service_detail_block {
  margin-top: 10rem;
}
.section_service .individual_content .service_detail_block .service_detail_wrp .left {
  width: 36%;
}
.section_service .individual_content .service_detail_block .service_detail_wrp .right {
  width: 60%;
}
.section_service .individual_content .service_detail_block .service_detail_wrp .right .lead {
  font-size: 2rem;
}
.section_service .individual_content .service_detail_block .service_detail_reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 800px) {
  .section_service .individual_content {
    padding: 10vw 0;
  }
  .section_service .individual_content + .content_workflow {
    margin-top: 15vw;
  }
  .section_service .individual_content .individual_title .title {
    font-size: 6vw;
  }
  .section_service .individual_content .individual_title .title::before, .section_service .individual_content .individual_title .title::after {
    width: 5vw;
    margin-bottom: 2vw;
  }
  .section_service .individual_content .individual_title .title::before {
    margin-right: 2vw;
  }
  .section_service .individual_content .individual_title .title::after {
    margin-left: 2vw;
  }
  .section_service .individual_content .service_detail_block {
    margin-top: 10vw;
  }
  .section_service .individual_content .service_detail_block .service_detail_wrp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section_service .individual_content .service_detail_block .service_detail_wrp .left {
    width: 100%;
  }
  .section_service .individual_content .service_detail_block .service_detail_wrp .right {
    width: 100%;
    margin-top: 3vw;
  }
  .section_service .individual_content .service_detail_block .service_detail_wrp .right .lead {
    font-size: 4vw;
  }
  .section_service .individual_content .service_detail_block .service_detail_reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section_service .individual_last {
  border-bottom: 1px solid #666;
}

/*===============================================================

section_service_outline

===============================================================*/
.section_service_outline {
  background: #F7F1EC;
  /*===============================================================
  left_block
  ===============================================================*/
  /*===============================================================
  right_block
  ===============================================================*/
}
.section_service_outline .section_inner {
  padding: 15rem 0 17rem 10rem;
}
.section_service_outline .service_outline_wrp {
  margin-top: 0;
}
@media screen and (max-width: 1070px) {
  .section_service_outline .section_inner {
    padding: 10rem 5rem;
  }
  .section_service_outline .service_outline_wrp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 800px) {
  .section_service_outline .section_inner {
    padding: 10vw 5vw;
  }
}
.section_service_outline .left_block .headline .sub {
  font-weight: bold;
}
.section_service_outline .left_block .headline .title {
  font-size: 7rem;
}
.section_service_outline .left_block .headline .lead {
  font-size: 1.8rem;
}
.section_service_outline .left_block .btn_block {
  margin-top: 6rem;
}
.section_service_outline .left_block .btn_block .c_btn_round {
  width: 100%;
  max-width: 20rem;
  margin-left: 0;
}
.section_service_outline .left_block .btn_block .c_btn_round a .label {
  font-size: 2rem;
}
@media screen and (max-width: 1070px) {
  .section_service_outline .left_block {
    width: 100%;
  }
  .section_service_outline .left_block .btn_block {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 800px) {
  .section_service_outline .left_block .headline .sub {
    font-weight: bold;
  }
  .section_service_outline .left_block .headline .title {
    font-size: 10vw;
  }
  .section_service_outline .left_block .headline .lead {
    font-size: 4vw;
  }
  .section_service_outline .left_block .btn_block {
    margin-top: 5vw;
  }
  .section_service_outline .left_block .btn_block .c_btn_round {
    max-width: 35vw;
  }
  .section_service_outline .left_block .btn_block .c_btn_round a .label {
    font-size: 3.5vw;
  }
}
.section_service_outline .right_block {
  background: #fff;
  padding: 5rem;
  border-radius: 1rem 0 0 1rem;
}
.section_service_outline .right_block .service_item {
  border-bottom: 0.5px solid #ccc;
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section_service_outline .right_block .service_item a {
  text-decoration: none;
  color: #000;
  display: block;
}
.section_service_outline .right_block .service_item:hover {
  opacity: 0.7;
}
.section_service_outline .right_block .service_item:before, .section_service_outline .right_block .service_item:after {
  content: "";
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  bottom: 3rem;
  right: 4rem;
  margin: auto;
}
.section_service_outline .right_block .service_item:before {
  width: 2rem;
  height: 1px;
  background-color: #666;
}
.section_service_outline .right_block .service_item:after {
  border: solid 1px #666;
  width: 0.8rem;
  height: 0.8rem;
  border-top: none;
  border-left: none;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  bottom: 2.6rem;
  right: 4.1rem;
}
.section_service_outline .right_block .service_item:first-child {
  padding-top: 0;
}
.section_service_outline .right_block .service_item .grid_wrp {
  margin-top: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section_service_outline .right_block .service_item .grid_wrp .photo_block {
  background: #E2E2E2;
}
.section_service_outline .right_block .service_item .grid_wrp .photo_block img {
  width: 100%;
}
.section_service_outline .right_block .service_item .grid_wrp .txt_block .block_title {
  padding-right: 8rem;
}
.section_service_outline .right_block .service_item .grid_wrp .txt_block .block_title .title {
  font-size: 2.5rem;
}
.section_service_outline .right_block .service_item .grid_wrp .txt_block .block_title .sub {
  font-size: 1.4rem;
  font-weight: bold;
  color: #D07861;
}
@media screen and (max-width: 1070px) {
  .section_service_outline .right_block {
    width: 100%;
    margin-top: 5rem;
    padding: 3rem;
  }
}
@media screen and (max-width: 800px) {
  .section_service_outline .right_block .service_item:before {
    bottom: 2rem;
    right: 1rem;
  }
  .section_service_outline .right_block .service_item:after {
    border: solid 1px #666;
    width: 0.8rem;
    height: 0.8rem;
    border-top: none;
    border-left: none;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    bottom: 1.6rem;
    right: 1.1rem;
  }
  .section_service_outline .right_block .service_item .grid_wrp .photo_block {
    width: 100%;
  }
  .section_service_outline .right_block .service_item .grid_wrp .txt_block {
    width: 100%;
  }
  .section_service_outline .right_block .service_item .grid_wrp .txt_block .block_title {
    padding-right: 0;
    margin-top: 3vw;
  }
  .section_service_outline .right_block .service_item .grid_wrp .txt_block .block_title .title {
    font-size: 4vw;
  }
  .section_service_outline .right_block .service_item .grid_wrp .txt_block .block_title .sub {
    font-size: 3vw;
  }
  .section_service_outline .right_block .service_item .grid_wrp .txt_block .block_title .title {
    font-size: 5vw;
    padding-left: 0 !important;
  }
  .section_service_outline .right_block .service_item .grid_wrp .txt_block .block_title .title::after {
    display: none;
  }
  .section_service_outline .right_block .service_item .grid_wrp .txt_block .block_title .lead {
    font-size: 3.5vw;
  }
}

/*===============================================================

section_privacy

===============================================================*/
.section_privacy .privacy_block {
  margin-top: 7rem;
}
.section_privacy .privacy_block .privacy_list .privacy_box {
  list-style: none;
}
.section_privacy .privacy_block .privacy_list .privacy_box + .privacy_box {
  margin-top: 6rem;
}
.section_privacy .privacy_block .privacy_list .privacy_box p {
  font-size: 2rem;
}
.section_privacy .privacy_block .privacy_list .privacy_box p + p {
  margin-top: 1rem;
}
.section_privacy .privacy_block .company_list {
  margin-top: 10rem;
}
.section_privacy .privacy_block .company_list li {
  font-size: 2rem;
}
.section_privacy .privacy_block .company_list li + li {
  margin-top: 1.5rem;
}
@media screen and (max-width: 800px) {
  .section_privacy .privacy_block {
    margin-top: 5vw;
  }
  .section_privacy .privacy_block .privacy_list .privacy_box + .privacy_box {
    margin-top: 10vw;
  }
  .section_privacy .privacy_block .privacy_list .privacy_box p {
    font-size: 4vw;
  }
  .section_privacy .privacy_block .privacy_list .privacy_box p + p {
    margin-top: 2vw;
  }
  .section_privacy .privacy_block .company_list {
    margin-top: 15vw;
  }
  .section_privacy .privacy_block .company_list li {
    font-size: 4vw;
  }
  .section_privacy .privacy_block .company_list li + li {
    margin-top: 3vw;
  }
}

@media screen and (max-width: 800px) {
  .section_company_kv + .c_scroll_line_center {
    display: none;
  }
}

/*===============================================================

    section_company_kv

===============================================================*/
.section_company_kv {
  position: relative;
  height: calc(100vh - 10rem);
  min-height: 60rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -26rem;
  margin-top: -30rem;
  margin-bottom: 5rem;
  /*===============================================================
      kv_company_img
  ===============================================================*/
  /*===============================================================
  is_active
  ===============================================================*/
  /*===============================================================
  animation
  ===============================================================*/
}
.section_company_kv .kv_company_img {
  width: 100%;
  max-width: 120rem;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .section_company_kv {
    height: auto;
    min-height: 0;
    margin-top: 0;
    margin-bottom: 5vw;
  }
  .section_company_kv .kv_company_img {
    width: 100%;
    text-outline: 0 0 #000;
  }
}
.section_company_kv .kv_company_img {
  width: 120rem;
  aspect-ratio: 120/60;
}
.section_company_kv .kv_company_img .obj {
  position: absolute;
  -webkit-transition: all 0.5s cubic-bezier(0.17, 0.67, 0.71, 1.21);
  transition: all 0.5s cubic-bezier(0.17, 0.67, 0.71, 1.21);
  opacity: 0;
  -webkit-transform: translate(-5rem, 0);
          transform: translate(-5rem, 0);
}
.section_company_kv .kv_company_img .obj01 {
  background-color: #ebd6c6;
  width: 20rem;
  height: 12rem;
  bottom: 0;
  left: 3rem;
  border-radius: 23rem 23rem 5px 5px;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.section_company_kv .kv_company_img .obj02 {
  background-color: #d07861;
  width: 38rem;
  height: 26rem;
  bottom: 0;
  left: 23rem;
  border-radius: 5px;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.section_company_kv .kv_company_img .obj03 {
  background-color: #cfdae4;
  width: 11rem;
  height: 11rem;
  bottom: 26rem;
  left: 45rem;
  border-radius: 11rem;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.section_company_kv .kv_company_img .obj04 {
  background-color: #c4b89e;
  width: 31rem;
  height: 16rem;
  bottom: 37rem;
  left: 42rem;
  border-radius: 5px;
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.section_company_kv .kv_company_img .obj05 {
  background-color: #7fc3d6;
  width: 27rem;
  height: 37rem;
  bottom: 0;
  left: 69rem;
  border-radius: 5px;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.section_company_kv .kv_company_img .obj06 {
  background-color: #a6aaa7;
  width: 20rem;
  height: 20rem;
  bottom: 37rem;
  left: 78rem;
  border-radius: 5px;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.section_company_kv .kv_company_img .obj07 {
  background-color: #e2e2e2;
  width: 19rem;
  height: 49rem;
  bottom: 0;
  left: 98rem;
  border-radius: 5px;
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
.section_company_kv .kv_company_img .obj08 {
  background-color: #d07861;
  width: 11rem;
  height: 11rem;
  bottom: 49rem;
  left: 102rem;
  border-radius: 11rem 5px 5px 5px;
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
@media screen and (max-width: 1200px) {
  .section_company_kv .kv_company_img {
    width: 100vw;
    height: auto;
  }
  .section_company_kv .kv_company_img .obj01 {
    width: 16.67vw;
    height: 10vw;
    left: 2.5vw;
    border-radius: 23rem 23rem 0.42vw 0.42vw;
  }
  .section_company_kv .kv_company_img .obj02 {
    width: 31.67vw;
    height: 21.67vw;
    left: 19.17vw;
    border-radius: 0.42vw;
  }
  .section_company_kv .kv_company_img .obj03 {
    width: 9.17vw;
    height: 9.17vw;
    bottom: 21.67vw;
    left: 37.5vw;
    border-radius: 9.17vw;
  }
  .section_company_kv .kv_company_img .obj04 {
    width: 25.83vw;
    height: 13.33vw;
    bottom: 30.83vw;
    left: 35vw;
    border-radius: 0.42vw;
  }
  .section_company_kv .kv_company_img .obj05 {
    width: 22.5vw;
    height: 30.83vw;
    left: 57.5vw;
    border-radius: 0.42vw;
  }
  .section_company_kv .kv_company_img .obj06 {
    width: 16.67vw;
    height: 16.67vw;
    bottom: 30.83vw;
    left: 65vw;
    border-radius: 0.42vw;
  }
  .section_company_kv .kv_company_img .obj07 {
    width: 15.83vw;
    height: 40.83vw;
    left: 81.67vw;
    border-radius: 0.42vw;
  }
  .section_company_kv .kv_company_img .obj08 {
    width: 9.17vw;
    height: 9.17vw;
    bottom: 40.83vw;
    left: 85vw;
    border-radius: 11rem 0.42vw 0.42vw 0.42vw;
  }
}
.section_company_kv .kv_company_img.is_active .obj {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.section_company_kv .kv_company_img.animation .obj {
  -webkit-animation: company_kv_animation01 8s ease infinite;
          animation: company_kv_animation01 8s ease infinite;
}
.section_company_kv .kv_company_img.animation .obj03,
.section_company_kv .kv_company_img.animation .obj06,
.section_company_kv .kv_company_img.animation .obj08 {
  -webkit-animation: company_kv_animation02 8s ease infinite;
          animation: company_kv_animation02 8s ease infinite;
}
.section_company_kv .kv_company_img.animation .obj01,
.section_company_kv .kv_company_img.animation .obj04 {
  -webkit-animation: company_kv_animation03 8s ease infinite;
          animation: company_kv_animation03 8s ease infinite;
}
@-webkit-keyframes company_kv_animation01 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  3% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  4% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  5% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  6% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  30% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  60% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes company_kv_animation01 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  3% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  4% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  5% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  6% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  30% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  60% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes company_kv_animation02 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  3% {
    -webkit-transform: translateY(-55px) rotate(-3deg);
            transform: translateY(-55px) rotate(-3deg);
  }
  4% {
    -webkit-transform: translateY(5px) rotate(0deg);
            transform: translateY(5px) rotate(0deg);
  }
  5% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  6% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  7% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  30% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  60% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes company_kv_animation02 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  3% {
    -webkit-transform: translateY(-55px) rotate(-3deg);
            transform: translateY(-55px) rotate(-3deg);
  }
  4% {
    -webkit-transform: translateY(5px) rotate(0deg);
            transform: translateY(5px) rotate(0deg);
  }
  5% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  6% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  7% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  30% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  60% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes company_kv_animation03 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  3% {
    -webkit-transform: translateY(-65px) rotate(3deg);
            transform: translateY(-65px) rotate(3deg);
  }
  4% {
    -webkit-transform: translateY(5px) rotate(0deg);
            transform: translateY(5px) rotate(0deg);
  }
  5% {
    -webkit-transform: translateY(-20px) rotate(-2deg);
            transform: translateY(-20px) rotate(-2deg);
  }
  6% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  7% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  30% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  60% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes company_kv_animation03 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  3% {
    -webkit-transform: translateY(-65px) rotate(3deg);
            transform: translateY(-65px) rotate(3deg);
  }
  4% {
    -webkit-transform: translateY(5px) rotate(0deg);
            transform: translateY(5px) rotate(0deg);
  }
  5% {
    -webkit-transform: translateY(-20px) rotate(-2deg);
            transform: translateY(-20px) rotate(-2deg);
  }
  6% {
    -webkit-transform: translateY(0px) rotate(0deg);
            transform: translateY(0px) rotate(0deg);
  }
  7% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  30% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  60% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/*===============================================================

    section_company

===============================================================*/
.section_company {
  /*===============================================================
      content_message
  ===============================================================*/
  /*===============================================================
      content_code
  ===============================================================*/
  /*===============================================================
      content_code
      content_history
  ===============================================================*/
}
.section_company .section_inner {
  padding-bottom: 18rem;
}
@media screen and (max-width: 800px) {
  .section_company .section_inner {
    padding-bottom: 12vw;
  }
}
.section_company .content_message {
  margin-top: 15rem;
}
.section_company .content_message .title {
  font-size: 4rem;
  text-align: center;
  color: #0087AD;
}
.section_company .content_message .title::before, .section_company .content_message .title::after {
  display: inline-block;
  content: "";
  border-bottom: 2px solid #0087AD;
  width: 5rem;
  margin-bottom: 1rem;
}
.section_company .content_message .title::before {
  margin-right: 1rem;
}
.section_company .content_message .title::after {
  margin-left: 1rem;
}
.section_company .content_message .lead {
  font-size: 2rem;
  line-height: 2.5;
  margin-top: 5rem;
}
@media screen and (max-width: 800px) {
  .section_company .content_message {
    margin-top: 10vw;
  }
  .section_company .content_message .title {
    font-size: 6vw;
  }
  .section_company .content_message .title::before, .section_company .content_message .title::after {
    width: 10vw;
    margin-bottom: 2vw;
  }
  .section_company .content_message .title::before {
    margin-right: 1vw;
  }
  .section_company .content_message .title::after {
    margin-left: 1vw;
  }
  .section_company .content_message .lead {
    font-size: 4vw;
    line-height: 2;
    margin-top: 5vw;
  }
}
.section_company .content_code {
  margin-top: 15rem;
}
.section_company .content_code .cp_flow {
  border-top: solid 1px #666;
  border-bottom: none;
  position: relative;
  padding: 4rem 0 5rem;
  /* for SP */
}
.section_company .content_code .cp_flow:last-child {
  border-bottom: solid 1px #666;
}
.section_company .content_code .cp_flow .wp-block-group__inner-container .flow_header {
  width: 11%;
  padding: 0 2rem 0 4rem;
}
.section_company .content_code .cp_flow .wp-block-group__inner-container .num {
  font-size: 3rem;
  font-weight: bold;
  color: #0087AD;
  text-align: right;
}
@media screen and (max-width: 800px) {
  .section_company .content_code .cp_flow {
    padding: 7vw 0;
  }
  .section_company .content_code .cp_flow .wp-block-group__inner-container .flow_header {
    width: 100%;
    padding: 0 2vw 0 7vw;
  }
  .section_company .content_code .cp_flow .wp-block-group__inner-container .flow_header .accent {
    color: #D07861;
    font-weight: bold;
  }
  .section_company .content_code .cp_flow .wp-block-group__inner-container .num {
    font-size: 5.5vw;
    top: 0;
  }
  .section_company .content_code .cp_flow .wp-block-group__inner-container .wp-block-heading {
    font-size: 5vw !important;
    padding-left: 2vw;
    padding-top: 0.3vw;
  }
}
.section_company .content_code .cp_flow .flow_body {
  width: 89%;
  padding: 0 0 0 3rem;
  border-left: none !important;
}
.section_company .content_code .cp_flow .flow_body .wp-block-heading {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.section_company .content_code .cp_flow .flow_body .wp-block-heading .accent {
  color: #D07861;
  font-weight: bold;
}
.section_company .content_code .cp_flow .flow_body p {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem !important;
}
.section_company .content_code .cp_flow .flow_body .c_ul_list li, .section_company .content_code .cp_flow .flow_body .editor-styles-wrapper ul li, .editor-styles-wrapper .section_company .content_code .cp_flow .flow_body ul li,
.section_company .content_code .cp_flow .flow_body .entry-content ul li,
.entry-content .section_company .content_code .cp_flow .flow_body ul li {
  font-size: 1.8rem;
  color: #333;
}
.section_company .content_code .cp_flow .flow_body .c_ul_list li::after, .section_company .content_code .cp_flow .flow_body .editor-styles-wrapper ul li::after, .editor-styles-wrapper .section_company .content_code .cp_flow .flow_body ul li::after,
.section_company .content_code .cp_flow .flow_body .entry-content ul li::after,
.entry-content .section_company .content_code .cp_flow .flow_body ul li::after {
  top: 1.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background: #333;
}
@media screen and (max-width: 800px) {
  .section_company .content_code .cp_flow .flow_body {
    width: 100%;
    padding: 0;
    margin-top: 0;
  }
  .section_company .content_code .cp_flow .flow_body .wp-block-heading {
    font-size: 4vw;
    margin-bottom: 2rem;
    padding-left: 2vw;
  }
  .section_company .content_code .cp_flow .flow_body p {
    font-size: 4vw;
    margin-top: 2vw;
  }
}
@media screen and (max-width: 800px) {
  .section_company .content_code {
    margin-top: 10vw;
  }
}
.section_company .content_about,
.section_company .content_history {
  margin-top: 15rem;
}
.section_company .content_about .block_about dl dt,
.section_company .content_history .block_about dl dt {
  font-size: 2rem;
  font-weight: normal;
}
.section_company .content_about .block_about dl dd,
.section_company .content_history .block_about dl dd {
  font-size: 2rem;
}
@media screen and (max-width: 800px) {
  .section_company .content_about,
  .section_company .content_history {
    margin-top: 10vw;
  }
  .section_company .content_about .block_about dl dt,
  .section_company .content_about .block_about dl dd,
  .section_company .content_history .block_about dl dt,
  .section_company .content_history .block_about dl dd {
    font-size: 4vw;
  }
}
.section_company .content_history .block_about p {
  font-size: 2rem;
  margin-top: 1rem;
}
@media screen and (max-width: 800px) {
  .section_company .content_history .block_about p {
    font-size: 4vw;
  }
}

@media screen and (max-width: 800px) {
  .section_recruit_kv + .c_scroll_line_center {
    display: none;
  }
}

/*===============================================================

    section_recruit_kv

===============================================================*/
.section_recruit_kv {
  position: relative;
  height: calc(100vh - 10rem);
  min-height: 60rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -26rem;
  margin-top: -30rem;
  margin-bottom: 5rem;
  /*===============================================================
      kv_recruit_img
  ===============================================================*/
  /*===============================================================
  is_active
  ===============================================================*/
  /*===============================================================
  animation
  ===============================================================*/
}
.section_recruit_kv .kv_recruit_img {
  width: 100%;
  max-width: 120rem;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .section_recruit_kv {
    height: auto;
    min-height: 0;
    margin-top: 0;
    margin-bottom: 5vw;
  }
  .section_recruit_kv .kv_recruit_img {
    width: 100%;
    text-outline: 0 0 #000;
  }
}
.section_recruit_kv .kv_recruit_img {
  width: 120rem;
  aspect-ratio: 120/60;
}
.section_recruit_kv .kv_recruit_img .obj {
  position: absolute;
  -webkit-transition: all 0.5s cubic-bezier(0.17, 0.67, 0.71, 1.21);
  transition: all 0.5s cubic-bezier(0.17, 0.67, 0.71, 1.21);
  opacity: 0;
  scale: 0.2;
}
.section_recruit_kv .kv_recruit_img .obj02 {
  rotate: 30deg;
}
.section_recruit_kv .kv_recruit_img .obj03 {
  rotate: -30deg;
}
.section_recruit_kv .kv_recruit_img .obj06 {
  rotate: 50deg;
}
.section_recruit_kv .kv_recruit_img .obj08 {
  rotate: 80deg;
}
.section_recruit_kv .kv_recruit_img .obj11 {
  rotate: 30deg;
}
.section_recruit_kv .kv_recruit_img .obj12 {
  rotate: 80deg;
}
.section_recruit_kv .kv_recruit_img .obj01 {
  background-color: #E8BBAE;
  width: 13rem;
  height: 13rem;
  bottom: 2rem;
  left: 2rem;
  border-radius: 11rem;
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.section_recruit_kv .kv_recruit_img .obj02 {
  background-color: #F2F9FB;
  width: 10rem;
  height: 10rem;
  bottom: 25rem;
  left: 4rem;
  border-radius: 5px;
  -webkit-transition-delay: 1.95s;
          transition-delay: 1.95s;
}
.section_recruit_kv .kv_recruit_img .obj03 {
  background-color: #EFC19C;
  width: 14rem;
  height: 14rem;
  bottom: 15rem;
  left: 26rem;
  border-radius: 5px;
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
.section_recruit_kv .kv_recruit_img .obj04 {
  background-color: #BAD1E6;
  width: 5rem;
  height: 5rem;
  bottom: 5rem;
  left: 31rem;
  border-radius: 11rem;
  -webkit-transition-delay: 1.35s;
          transition-delay: 1.35s;
}
.section_recruit_kv .kv_recruit_img .obj05 {
  background-color: #D07861;
  width: 22rem;
  height: 22rem;
  bottom: 40rem;
  left: 36rem;
  border-radius: 11rem;
  -webkit-transition-delay: 0.75s;
          transition-delay: 0.75s;
}
.section_recruit_kv .kv_recruit_img .obj06 {
  background-color: #C4B89E;
  width: 16rem;
  height: 16rem;
  bottom: 0;
  left: 45rem;
  border-radius: 5px;
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
.section_recruit_kv .kv_recruit_img .obj07 {
  background-color: #F7F1EC;
  width: 20rem;
  height: 20rem;
  bottom: 23rem;
  left: 59rem;
  border-radius: 11rem;
  -webkit-transition-delay: 1.65s;
          transition-delay: 1.65s;
}
.section_recruit_kv .kv_recruit_img .obj08 {
  background-color: #E2E2E2;
  width: 11rem;
  height: 11rem;
  bottom: 50rem;
  left: 71rem;
  border-radius: 5px;
  -webkit-transition-delay: 1.05s;
          transition-delay: 1.05s;
}
.section_recruit_kv .kv_recruit_img .obj09 {
  background-color: #7FC3D6;
  width: 16rem;
  height: 16rem;
  bottom: 5rem;
  left: 76rem;
  border-radius: 11rem;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.section_recruit_kv .kv_recruit_img .obj10 {
  background-color: #E2E2E2;
  width: 5rem;
  height: 5rem;
  bottom: 23rem;
  left: 85rem;
  border-radius: 11rem;
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.section_recruit_kv .kv_recruit_img .obj11 {
  background-color: #437397;
  width: 10rem;
  height: 10rem;
  bottom: 35rem;
  left: 92rem;
  border-radius: 5px;
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.section_recruit_kv .kv_recruit_img .obj12 {
  background-color: #D8EDF3;
  width: 14rem;
  height: 14rem;
  bottom: 18rem;
  left: 100rem;
  border-radius: 5px;
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.section_recruit_kv .kv_recruit_img .obj13 {
  background-color: #F7F1EC;
  width: 14rem;
  height: 14rem;
  bottom: 45rem;
  left: 104rem;
  border-radius: 11rem;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media screen and (max-width: 1500px) {
  .section_recruit_kv .kv_recruit_img {
    width: 100vw;
    height: auto;
  }
  .section_recruit_kv .kv_recruit_img .obj01 {
    width: 8.152vw;
    height: 8.152vw;
    left: 1.67vw;
    bottom: 1.25vw;
    border-radius: 6.875vw;
  }
  .section_recruit_kv .kv_recruit_img .obj02 {
    width: 6.25vw;
    height: 6.25vw;
    bottom: 15.625vw;
    left: 3.3vw;
  }
  .section_recruit_kv .kv_recruit_img .obj03 {
    width: 8.75vw;
    height: 8.75vw;
    bottom: 9.375vw;
    left: 21.67vw;
  }
  .section_recruit_kv .kv_recruit_img .obj04 {
    width: 3.125vw;
    height: 3.125vw;
    bottom: 3.125vw;
    left: 25.8vw;
    border-radius: 6.875vw;
  }
  .section_recruit_kv .kv_recruit_img .obj05 {
    width: 13.75vw;
    height: 13.75vw;
    left: 30vw;
    bottom: 25vw;
    border-radius: 6.875vw;
  }
  .section_recruit_kv .kv_recruit_img .obj06 {
    width: 10vw;
    height: 10vw;
    left: 37.5vw;
    border-radius: 0.42vw;
  }
  .section_recruit_kv .kv_recruit_img .obj07 {
    width: 12.5vw;
    height: 12.5vw;
    left: 49.1vw;
    bottom: 14.375vw;
    border-radius: 6.875vw;
  }
  .section_recruit_kv .kv_recruit_img .obj08 {
    width: 6.875vw;
    height: 6.875vw;
    bottom: 31.25vw;
    left: 59.1vw;
  }
  .section_recruit_kv .kv_recruit_img .obj09 {
    width: 10vw;
    height: 10vw;
    bottom: 3.125vw;
    left: 63.3vw;
    border-radius: 6.875vw;
  }
  .section_recruit_kv .kv_recruit_img .obj10 {
    width: 3.125vw;
    height: 3.125vw;
    bottom: 14.375vw;
    left: 70.8vw;
    border-radius: 6.875vw;
  }
  .section_recruit_kv .kv_recruit_img .obj11 {
    width: 6.25vw;
    height: 6.25vw;
    bottom: 21.875vw;
    left: 76.6vw;
  }
  .section_recruit_kv .kv_recruit_img .obj12 {
    width: 8.75vw;
    height: 8.75vw;
    bottom: 11.25vw;
    left: 83.3vw;
  }
  .section_recruit_kv .kv_recruit_img .obj13 {
    width: 8.75vw;
    height: 8.75vw;
    bottom: 28.125vw;
    left: 86.7vw;
    border-radius: 6.875vw;
  }
}
.section_recruit_kv .kv_recruit_img.is_active .obj {
  opacity: 1;
  scale: 1;
}
.section_recruit_kv .kv_recruit_img.is_active .obj02 {
  rotate: -10deg;
}
.section_recruit_kv .kv_recruit_img.is_active .obj03 {
  rotate: 10deg;
}
.section_recruit_kv .kv_recruit_img.is_active .obj06 {
  rotate: 10deg;
}
.section_recruit_kv .kv_recruit_img.is_active .obj08 {
  rotate: -25deg;
}
.section_recruit_kv .kv_recruit_img.is_active .obj11 {
  rotate: -10deg;
}
.section_recruit_kv .kv_recruit_img.is_active .obj12 {
  rotate: -25deg;
}
.section_recruit_kv .kv_recruit_img.animation .obj {
  -webkit-animation: recruit_kv_animation 15s ease infinite;
          animation: recruit_kv_animation 15s ease infinite;
}
.section_recruit_kv .kv_recruit_img.animation .obj01 {
  -webkit-animation: recruit_kv_animation 11s ease infinite;
          animation: recruit_kv_animation 11s ease infinite;
}
.section_recruit_kv .kv_recruit_img.animation .obj04 {
  -webkit-animation: recruit_kv_animation 13s ease infinite;
          animation: recruit_kv_animation 13s ease infinite;
}
.section_recruit_kv .kv_recruit_img.animation .obj05 {
  -webkit-animation: recruit_kv_animation 12s ease infinite;
          animation: recruit_kv_animation 12s ease infinite;
}
.section_recruit_kv .kv_recruit_img.animation .obj07 {
  -webkit-animation: recruit_kv_animation 10s ease infinite;
          animation: recruit_kv_animation 10s ease infinite;
}
.section_recruit_kv .kv_recruit_img.animation .obj09 {
  -webkit-animation: recruit_kv_animation 9s ease infinite;
          animation: recruit_kv_animation 9s ease infinite;
}
.section_recruit_kv .kv_recruit_img.animation .obj13 {
  -webkit-animation: recruit_kv_animation 8.5s ease infinite;
          animation: recruit_kv_animation 8.5s ease infinite;
}
.section_recruit_kv .kv_recruit_img.animation .obj02 {
  -webkit-animation: recruit_kv_animation_rotate01 20s ease infinite;
          animation: recruit_kv_animation_rotate01 20s ease infinite;
}
.section_recruit_kv .kv_recruit_img.animation .obj03 {
  -webkit-animation: recruit_kv_animation_rotate02 18s ease infinite;
          animation: recruit_kv_animation_rotate02 18s ease infinite;
}
.section_recruit_kv .kv_recruit_img.animation .obj06 {
  -webkit-animation: recruit_kv_animation_rotate02 25s ease infinite;
          animation: recruit_kv_animation_rotate02 25s ease infinite;
}
.section_recruit_kv .kv_recruit_img.animation .obj08 {
  -webkit-animation: recruit_kv_animation_rotate03 20s ease infinite;
          animation: recruit_kv_animation_rotate03 20s ease infinite;
}
.section_recruit_kv .kv_recruit_img.animation .obj11 {
  -webkit-animation: recruit_kv_animation_rotate01 19s ease infinite;
          animation: recruit_kv_animation_rotate01 19s ease infinite;
}
.section_recruit_kv .kv_recruit_img.animation .obj12 {
  -webkit-animation: recruit_kv_animation_rotate03 23s ease infinite;
          animation: recruit_kv_animation_rotate03 23s ease infinite;
}
@-webkit-keyframes recruit_kv_animation {
  0% {
    scale: 1;
  }
  9% {
    scale: 1;
  }
  10% {
    scale: 0.9;
  }
  11% {
    scale: 1;
  }
  15% {
    scale: 1;
  }
  100% {
    scale: 1;
  }
}
@keyframes recruit_kv_animation {
  0% {
    scale: 1;
  }
  9% {
    scale: 1;
  }
  10% {
    scale: 0.9;
  }
  11% {
    scale: 1;
  }
  15% {
    scale: 1;
  }
  100% {
    scale: 1;
  }
}
@-webkit-keyframes recruit_kv_animation_rotate01 {
  0% {
    rotate: -10deg;
  }
  20% {
    rotate: -10deg;
  }
  25% {
    rotate: -100deg;
  }
  45% {
    rotate: -100deg;
  }
  50% {
    rotate: -190deg;
  }
  70% {
    rotate: -190deg;
  }
  75% {
    rotate: -280deg;
  }
  95% {
    rotate: -280deg;
  }
  100% {
    rotate: -370deg;
  }
}
@keyframes recruit_kv_animation_rotate01 {
  0% {
    rotate: -10deg;
  }
  20% {
    rotate: -10deg;
  }
  25% {
    rotate: -100deg;
  }
  45% {
    rotate: -100deg;
  }
  50% {
    rotate: -190deg;
  }
  70% {
    rotate: -190deg;
  }
  75% {
    rotate: -280deg;
  }
  95% {
    rotate: -280deg;
  }
  100% {
    rotate: -370deg;
  }
}
@-webkit-keyframes recruit_kv_animation_rotate02 {
  0% {
    rotate: 10deg;
  }
  20% {
    rotate: 10deg;
  }
  25% {
    rotate: 100deg;
  }
  45% {
    rotate: 100deg;
  }
  50% {
    rotate: 190deg;
  }
  70% {
    rotate: 190deg;
  }
  75% {
    rotate: 280deg;
  }
  95% {
    rotate: 280deg;
  }
  100% {
    rotate: 370deg;
  }
}
@keyframes recruit_kv_animation_rotate02 {
  0% {
    rotate: 10deg;
  }
  20% {
    rotate: 10deg;
  }
  25% {
    rotate: 100deg;
  }
  45% {
    rotate: 100deg;
  }
  50% {
    rotate: 190deg;
  }
  70% {
    rotate: 190deg;
  }
  75% {
    rotate: 280deg;
  }
  95% {
    rotate: 280deg;
  }
  100% {
    rotate: 370deg;
  }
}
@-webkit-keyframes recruit_kv_animation_rotate03 {
  0% {
    rotate: -25deg;
  }
  20% {
    rotate: -25deg;
  }
  25% {
    rotate: -115deg;
  }
  45% {
    rotate: -115deg;
  }
  50% {
    rotate: -205deg;
  }
  70% {
    rotate: -205deg;
  }
  75% {
    rotate: -295deg;
  }
  95% {
    rotate: -295deg;
  }
  100% {
    rotate: -385deg;
  }
}
@keyframes recruit_kv_animation_rotate03 {
  0% {
    rotate: -25deg;
  }
  20% {
    rotate: -25deg;
  }
  25% {
    rotate: -115deg;
  }
  45% {
    rotate: -115deg;
  }
  50% {
    rotate: -205deg;
  }
  70% {
    rotate: -205deg;
  }
  75% {
    rotate: -295deg;
  }
  95% {
    rotate: -295deg;
  }
  100% {
    rotate: -385deg;
  }
}

/*===============================================================

    section_recruit

===============================================================*/
.section_recruit {
  /*===============================================================
      content_message
  ===============================================================*/
  /*===============================================================
      content_career
  ===============================================================*/
  /*===============================================================
  content_about
  ===============================================================*/
  /*===============================================================
  entry-content
  ===============================================================*/
  /*===============================================================
  content_skill
  ===============================================================*/
}
@media screen and (max-width: 800px) {
  .section_recruit .section_inner {
    padding-bottom: 12vw;
  }
}
.section_recruit .content_message {
  margin-top: 15rem;
}
.section_recruit .content_message .title {
  font-size: 4rem;
  text-align: center;
  color: #0087AD;
}
.section_recruit .content_message .title::before, .section_recruit .content_message .title::after {
  display: inline-block;
  content: "";
  border-bottom: 2px solid #0087AD;
  width: 5rem;
  margin-bottom: 1rem;
}
.section_recruit .content_message .title::before {
  margin-right: 1rem;
}
.section_recruit .content_message .title::after {
  margin-left: 1rem;
}
.section_recruit .content_message .lead {
  font-size: 2rem;
  line-height: 2.5;
  margin-top: 5rem;
}
@media screen and (max-width: 800px) {
  .section_recruit .content_message {
    margin-top: 10vw;
  }
  .section_recruit .content_message .title {
    font-size: 6vw;
  }
  .section_recruit .content_message .title::before, .section_recruit .content_message .title::after {
    width: 10vw;
    margin-bottom: 2vw;
  }
  .section_recruit .content_message .title::before {
    margin-right: 1vw;
  }
  .section_recruit .content_message .title::after {
    margin-left: 1vw;
  }
  .section_recruit .content_message .lead {
    font-size: 4vw;
    line-height: 2;
    margin-top: 5vw;
  }
}
.section_recruit .content_career .block_title + .block_title {
  margin-top: 5rem;
}
.section_recruit .content_career .lv_1 .title {
  font-size: 4rem;
}
.section_recruit .content_career .block p {
  font-size: 2rem;
}
.section_recruit .content_career .block + .block_title {
  margin-top: 5rem;
}
.section_recruit .content_career .block ul li {
  font-size: 2rem;
  position: relative;
  padding-left: 1.6rem;
}
.section_recruit .content_career .block ul li + li {
  margin-top: 1.5rem;
}
.section_recruit .content_career .block ul li::after {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #0087ad;
}
@media screen and (max-width: 800px) {
  .section_recruit .content_career .block_title + .block_title {
    margin-top: 10vw;
  }
  .section_recruit .content_career .lv_1 .title {
    font-size: 6vw;
  }
  .section_recruit .content_career .block p {
    font-size: 4vw;
  }
  .section_recruit .content_career .block + .block_title {
    margin-top: 8vw;
  }
  .section_recruit .content_career .block ul li {
    font-size: 4vw;
  }
  .section_recruit .content_career .block ul li + li {
    margin-top: 3vw;
  }
}
.section_recruit .content_about {
  margin-top: 15rem;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_recruit .content_about .lv_1 .title {
  font-size: 4rem;
}
.section_recruit .content_about .block_about {
  margin-top: 5rem;
}
.section_recruit .content_about .block_about .grid_wrp {
  margin-top: 0;
  gap: 4rem;
}
.section_recruit .content_about .block_about .grid_wrp .grid {
  margin: 0 auto;
  background: #F4F4F4;
  margin: 0 auto;
  padding: 6rem 3rem 5rem;
}
.section_recruit .content_about .block_about .grid_wrp .grid .recruit_img {
  width: 35%;
  display: block;
  margin: 0 auto;
}
.section_recruit .content_about .block_about .grid_wrp .grid .recruit_img_01 {
  width: 44%;
}
.section_recruit .content_about .block_about .grid_wrp .grid .recruit_img_03 {
  width: 33%;
}
.section_recruit .content_about .block_about .grid_wrp .grid .title {
  color: #D07861;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-top: 3rem;
}
.section_recruit .content_about .block_about .grid_wrp .grid .lead {
  font-size: 1.8rem;
  margin-top: 4rem;
  text-align: left;
}
@media screen and (max-width: 1070px) {
  .section_recruit .content_about .block_about .grid_wrp .grid .lead {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 800px) {
  .section_recruit .content_about {
    margin-top: 12vw;
  }
  .section_recruit .content_about .lv_1 .title {
    font-size: 6vw;
  }
  .section_recruit .content_about .block_about {
    margin-top: 10vw;
  }
  .section_recruit .content_about .block_about .grid_wrp {
    margin-top: 0;
    gap: 5vw;
  }
  .section_recruit .content_about .block_about .grid_wrp .grid {
    width: 100%;
    padding: 6vw 4vw;
  }
  .section_recruit .content_about .block_about .grid_wrp .grid .recruit_img {
    width: 35%;
  }
  .section_recruit .content_about .block_about .grid_wrp .grid .recruit_img_01 {
    width: 44%;
  }
  .section_recruit .content_about .block_about .grid_wrp .grid .recruit_img_03 {
    width: 33%;
  }
  .section_recruit .content_about .block_about .grid_wrp .grid .title {
    font-size: 5.5vw;
    margin-top: 3vw;
  }
  .section_recruit .content_about .block_about .grid_wrp .grid .lead {
    font-size: 3.5vw;
    margin-top: 5vw;
  }
}
.section_recruit .content_skill {
  background: #F2F9FB;
}
.section_recruit .content_skill .block_skill {
  padding: 8rem 12rem;
}
.section_recruit .content_skill .block_skill .title {
  font-size: 3rem;
  color: #0087AD;
}
.section_recruit .content_skill .block_skill ul {
  margin-top: 4rem;
}
.section_recruit .content_skill .block_skill ul li {
  font-size: 2rem;
  position: relative;
  padding-left: 1.6rem;
}
.section_recruit .content_skill .block_skill ul li + li {
  margin-top: 1.5rem;
}
.section_recruit .content_skill .block_skill ul li::after {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #0087ad;
}
@media screen and (max-width: 800px) {
  .section_recruit .content_skill .block_skill {
    padding: 8vw;
  }
  .section_recruit .content_skill .block_skill .title {
    font-size: 6vw;
  }
  .section_recruit .content_skill .block_skill ul {
    margin-top: 5vw;
  }
  .section_recruit .content_skill .block_skill ul li {
    font-size: 4vw;
    padding-left: 1.6rem;
  }
}

/*===============================================================

section_information

===============================================================*/
.section_information .info_wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*===============================================================
  content_info
  ===============================================================*/
}
.section_information .info_wrp .content_info {
  background: #C4B89E;
  width: 50%;
  aspect-ratio: 16/9;
  /*===============================================================
  content_body
  ===============================================================*/
}
.section_information .info_wrp .content_info .content_inner {
  padding: 4rem;
}
@media screen and (max-width: 800px) {
  .section_information .info_wrp .content_info {
    width: 100%;
    height: 100%;
    aspect-ratio: 5/3;
  }
  .section_information .info_wrp .content_info .content_inner {
    padding: 4vw;
  }
}
.section_information .info_wrp .content_info .content_body {
  background: #fff;
  width: 100%;
  min-height: 320px;
  padding: 4rem;
  position: relative;
  aspect-ratio: 16/9;
}
.section_information .info_wrp .content_info .content_body a:hover {
  opacity: 0.7;
}
.section_information .info_wrp .content_info .content_body a .company_bg {
  position: absolute;
  background-image: url(/common/images/info_bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 70%;
  height: 100%;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.section_information .info_wrp .content_info .content_body a .recruit_bg {
  position: absolute;
  background-image: url(/common/images/info_recruit_bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 65%;
  height: 100%;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.section_information .info_wrp .content_info .content_body a .headline .sub {
  font-size: 1.5rem;
  font-weight: bold;
  color: #C4B89E;
}
.section_information .info_wrp .content_info .content_body a .headline .title {
  font-size: 3rem;
  color: #333;
}
.section_information .info_wrp .content_info .content_body a .txt_box {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  font-size: 1.8rem;
  font-weight: bold;
  padding-right: 3rem;
  color: #333;
}
.section_information .info_wrp .content_info .content_body a .txt_box:before, .section_information .info_wrp .content_info .content_body a .txt_box:after {
  content: "";
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.section_information .info_wrp .content_info .content_body a .txt_box:before {
  width: 2rem;
  height: 1px;
  background-color: #666;
}
.section_information .info_wrp .content_info .content_body a .txt_box:after {
  border: solid 1px #666;
  width: 0.8rem;
  height: 0.8rem;
  border-top: none;
  border-left: none;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 0;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1070px) {
  .section_information .info_wrp .content_info .content_body {
    padding: 2rem;
  }
  .section_information .info_wrp .content_info .content_body a .company_bg,
  .section_information .info_wrp .content_info .content_body a .recruit_bg {
    width: 80%;
    bottom: -2rem;
  }
  .section_information .info_wrp .content_info .content_body a .txt_box {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 800px) {
  .section_information .info_wrp .content_info .content_body {
    padding: 4vw;
    height: 100%;
    min-height: 0;
    aspect-ratio: 9/5;
  }
  .section_information .info_wrp .content_info .content_body a .company_bg,
  .section_information .info_wrp .content_info .content_body a .recruit_bg {
    width: 60%;
    height: 60%;
    bottom: 10vw;
  }
  .section_information .info_wrp .content_info .content_body a .headline .sub {
    font-size: 3.5vw;
  }
  .section_information .info_wrp .content_info .content_body a .headline .title {
    font-size: 6vw;
  }
  .section_information .info_wrp .content_info .content_body a .txt_box {
    font-size: 3.5vw;
    bottom: 3vw;
  }
}
.section_information .info_wrp .content_recruit {
  background: #7FC3D6;
}
@media screen and (max-width: 800px) {
  .section_information .info_wrp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/*===============================================================

    section_top_kv

===============================================================*/
.section_top_kv {
  position: relative;
  height: calc(100vh - 10rem);
  min-height: 60rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /*===============================================================
  text_block
  ===============================================================*/
}
@media screen and (max-width: 800px) {
  .section_top_kv {
    height: auto;
    min-height: 0;
    padding: 10vh 0 5vh;
  }
}
.section_top_kv .text_block .title {
  font-size: 10rem;
  line-height: 1;
  color: #444;
}
.section_top_kv .text_block .title span {
  display: inline-block;
  font-weight: bold;
  padding: 0 0.1em;
  opacity: 0;
  -webkit-transform: translateX(50px);
          transform: translateX(50px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.section_top_kv .text_block .title .blue {
  color: #0087AD;
}
.section_top_kv .text_block .title .red {
  color: #D07861;
}
.section_top_kv .text_block .title .view {
  opacity: 1;
  -webkit-transform: translateX(0) rotate(0deg);
          transform: translateX(0) rotate(0deg);
}
.section_top_kv .text_block .title .fin {
  opacity: 1;
  -webkit-transform: translateX(0) rotate(0deg);
          transform: translateX(0) rotate(0deg);
  -webkit-animation: kv_txt_animation 1.5s ease;
          animation: kv_txt_animation 1.5s ease;
}
.section_top_kv .text_block .lead {
  margin-top: 5rem;
  font-size: 2.2rem;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.section_top_kv .text_block .lead.view {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
@media screen and (max-width: 1100px) {
  .section_top_kv .text_block .title {
    font-size: 9.09vw;
  }
  .section_top_kv .text_block .lead {
    margin-top: 4.55vw;
    font-size: 2vw;
  }
}
@media screen and (max-width: 800px) {
  .section_top_kv .text_block .title {
    font-size: 13vw;
    line-height: 1.3;
  }
  .section_top_kv .text_block .lead {
    text-align: left;
    padding: 0 8vw;
    margin-top: 8vh;
    font-size: 4vw;
    line-height: 2;
    text-align: justify;
  }
}
@-webkit-keyframes kv_txt_animation {
  0% {
    rotate: 0deg;
  }
  15% {
    rotate: -10deg;
  }
  30% {
    rotate: 10deg;
  }
  60% {
    rotate: -10deg;
  }
  100% {
    rotate: 0deg;
  }
}
@keyframes kv_txt_animation {
  0% {
    rotate: 0deg;
  }
  15% {
    rotate: -10deg;
  }
  30% {
    rotate: 10deg;
  }
  60% {
    rotate: -10deg;
  }
  100% {
    rotate: 0deg;
  }
}

/*===============================================================

    section_top_kv2

===============================================================*/
.section_top_kv2 {
  position: relative;
}
.section_top_kv2 .kv_ill_container {
  position: relative;
}
.section_top_kv2 .kv_ill_container::after, .section_top_kv2 .kv_ill_container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 6rem;
  height: 1px;
  background-color: #666;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.section_top_kv2 .kv_ill_container::before {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.section_top_kv2 .kv_ill_container.is_active::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.section_top_kv2 .kv_ill_container.is_active::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (max-width: 800px) {
  .section_top_kv2 .kv_ill_container::after, .section_top_kv2 .kv_ill_container::before {
    width: 10vw;
  }
  .section_top_kv2 .kv_ill_container .grid {
    margin-top: 0;
  }
  .section_top_kv2 .kv_ill_container .grid + .grid {
    margin-top: 10vw;
  }
}

/*===============================================================

	kv_item

===============================================================*/
.kv_item {
  position: relative;
  aspect-ratio: 600/350;
}
.kv_item .txt {
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  aspect-ratio: 600/350;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.kv_item .txt .title {
  font-size: 5rem;
  line-height: 1;
  font-weight: normal;
}
.kv_item.finished .txt {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 800px) {
  .kv_item .txt .title {
    font-size: 3rem;
  }
}

/*===============================================================

	kv_item01

===============================================================*/
.kv_item01 {
  /*===============================================================
  	//	kv_item01
  ===============================================================*/
}
.kv_item01 .item_wrp {
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  opacity: 0;
}
.kv_item01 .txt {
  color: #D07861;
}
.kv_item01 img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.kv_item01 .item01_01 {
  -webkit-animation: shake 12s infinite ease-in-out;
          animation: shake 12s infinite ease-in-out;
  display: block;
}
.kv_item01 .item01_02 {
  -webkit-animation: shake 13s infinite ease-in-out;
          animation: shake 13s infinite ease-in-out;
}
.kv_item01 .item01_03 {
  -webkit-animation: shake-r 8s infinite ease-in-out;
          animation: shake-r 8s infinite ease-in-out;
}
.kv_item01 .item01_04 {
  -webkit-animation: shake-sway 10s infinite ease-in-out;
          animation: shake-sway 10s infinite ease-in-out;
}
.kv_item01 .item01_05 {
  -webkit-animation: shake-soft 2s infinite ease-in-out;
          animation: shake-soft 2s infinite ease-in-out;
  mix-blend-mode: overlay;
}
.kv_item01 .item01_06 {
  -webkit-animation: shake-wild 8s infinite ease-in-out;
          animation: shake-wild 8s infinite ease-in-out;
  mix-blend-mode: overlay;
}
.kv_item01 .item01_07 {
  -webkit-animation: shake-r 12s infinite ease-in-out;
          animation: shake-r 12s infinite ease-in-out;
  mix-blend-mode: overlay;
}
.kv_item01 .item01_08 {
  -webkit-animation: shake-soft 15s infinite ease-in-out;
          animation: shake-soft 15s infinite ease-in-out;
  mix-blend-mode: overlay;
}
.kv_item01 .item01_09 {
  -webkit-animation: shake-r 15s infinite ease-in-out;
          animation: shake-r 15s infinite ease-in-out;
}
.kv_item01 .item01_10 {
  -webkit-animation: shake 10s infinite ease-in-out;
          animation: shake 10s infinite ease-in-out;
}
.kv_item01 .item01_11 {
  -webkit-animation: shake-soft 15s infinite ease-in-out;
          animation: shake-soft 15s infinite ease-in-out;
}
.kv_item01 .item01_12 {
  -webkit-animation: shake-sway 10s infinite ease-in-out;
          animation: shake-sway 10s infinite ease-in-out;
}
@-webkit-keyframes shake {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(-2px, 1px) rotate(-1deg) scale(1);
            transform: translate(-2px, 1px) rotate(-1deg) scale(1);
  }
  40% {
    -webkit-transform: translate(2px, -2px) rotate(1deg) scale(1.05);
            transform: translate(2px, -2px) rotate(1deg) scale(1.05);
  }
  60% {
    -webkit-transform: translate(-1px, 2px) rotate(-3.5deg) scale(1);
            transform: translate(-1px, 2px) rotate(-3.5deg) scale(1);
  }
  80% {
    -webkit-transform: translate(1px, -1px) rotate(1.5deg);
            transform: translate(1px, -1px) rotate(1.5deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes shake {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(-2px, 1px) rotate(-1deg) scale(1);
            transform: translate(-2px, 1px) rotate(-1deg) scale(1);
  }
  40% {
    -webkit-transform: translate(2px, -2px) rotate(1deg) scale(1.05);
            transform: translate(2px, -2px) rotate(1deg) scale(1.05);
  }
  60% {
    -webkit-transform: translate(-1px, 2px) rotate(-3.5deg) scale(1);
            transform: translate(-1px, 2px) rotate(-3.5deg) scale(1);
  }
  80% {
    -webkit-transform: translate(1px, -1px) rotate(1.5deg);
            transform: translate(1px, -1px) rotate(1.5deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
}
@-webkit-keyframes shake-r {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(2px, 2px) rotate(1deg);
            transform: translate(2px, 2px) rotate(1deg);
  }
  40% {
    -webkit-transform: translate(-2px, 2px) rotate(-1deg);
            transform: translate(-2px, 2px) rotate(-1deg);
  }
  60% {
    -webkit-transform: translate(-10px, -2px) rotate(-5.5deg);
            transform: translate(-10px, -2px) rotate(-5.5deg);
  }
  80% {
    -webkit-transform: translate(-1px, 1px) rotate(-1.5deg);
            transform: translate(-1px, 1px) rotate(-1.5deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes shake-r {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(2px, 2px) rotate(1deg);
            transform: translate(2px, 2px) rotate(1deg);
  }
  40% {
    -webkit-transform: translate(-2px, 2px) rotate(-1deg);
            transform: translate(-2px, 2px) rotate(-1deg);
  }
  60% {
    -webkit-transform: translate(-10px, -2px) rotate(-5.5deg);
            transform: translate(-10px, -2px) rotate(-5.5deg);
  }
  80% {
    -webkit-transform: translate(-1px, 1px) rotate(-1.5deg);
            transform: translate(-1px, 1px) rotate(-1.5deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
}
@-webkit-keyframes shake-soft {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  25% {
    -webkit-transform: translate(-1px, 1px) rotate(-0.5deg);
            transform: translate(-1px, 1px) rotate(-0.5deg);
  }
  50% {
    -webkit-transform: translate(1px, -1px) rotate(0.5deg);
            transform: translate(1px, -1px) rotate(0.5deg);
  }
  75% {
    -webkit-transform: translate(-0.5px, 0.5px) rotate(-0.3deg);
            transform: translate(-0.5px, 0.5px) rotate(-0.3deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes shake-soft {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  25% {
    -webkit-transform: translate(-1px, 1px) rotate(-0.5deg);
            transform: translate(-1px, 1px) rotate(-0.5deg);
  }
  50% {
    -webkit-transform: translate(1px, -1px) rotate(0.5deg);
            transform: translate(1px, -1px) rotate(0.5deg);
  }
  75% {
    -webkit-transform: translate(-0.5px, 0.5px) rotate(-0.3deg);
            transform: translate(-0.5px, 0.5px) rotate(-0.3deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
}
@-webkit-keyframes shake-wild {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(-3px, 2px) rotate(-2deg);
            transform: translate(-3px, 2px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translate(4px, -3px) rotate(2deg);
            transform: translate(4px, -3px) rotate(2deg);
  }
  50% {
    -webkit-transform: translate(-4px, 1px) rotate(3deg);
            transform: translate(-4px, 1px) rotate(3deg);
  }
  70% {
    -webkit-transform: translate(3px, -2px) rotate(3deg);
            transform: translate(3px, -2px) rotate(3deg);
  }
  90% {
    -webkit-transform: translate(-2px, 3px) rotate(-1deg);
            transform: translate(-2px, 3px) rotate(-1deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes shake-wild {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(-3px, 2px) rotate(-2deg);
            transform: translate(-3px, 2px) rotate(-2deg);
  }
  30% {
    -webkit-transform: translate(4px, -3px) rotate(2deg);
            transform: translate(4px, -3px) rotate(2deg);
  }
  50% {
    -webkit-transform: translate(-4px, 1px) rotate(3deg);
            transform: translate(-4px, 1px) rotate(3deg);
  }
  70% {
    -webkit-transform: translate(3px, -2px) rotate(3deg);
            transform: translate(3px, -2px) rotate(3deg);
  }
  90% {
    -webkit-transform: translate(-2px, 3px) rotate(-1deg);
            transform: translate(-2px, 3px) rotate(-1deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
}
@-webkit-keyframes shake-sway {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  25% {
    -webkit-transform: translate(1px, 2px) rotate(1deg);
            transform: translate(1px, 2px) rotate(1deg);
  }
  50% {
    -webkit-transform: translate(-1px, -2px) rotate(-1deg);
            transform: translate(-1px, -2px) rotate(-1deg);
  }
  75% {
    -webkit-transform: translate(2px, 1px) rotate(0.5deg);
            transform: translate(2px, 1px) rotate(0.5deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes shake-sway {
  0% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
  25% {
    -webkit-transform: translate(1px, 2px) rotate(1deg);
            transform: translate(1px, 2px) rotate(1deg);
  }
  50% {
    -webkit-transform: translate(-1px, -2px) rotate(-1deg);
            transform: translate(-1px, -2px) rotate(-1deg);
  }
  75% {
    -webkit-transform: translate(2px, 1px) rotate(0.5deg);
            transform: translate(2px, 1px) rotate(0.5deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
}

/*===============================================================

	kv_item02

===============================================================*/
.kv_item02 {
  /* ライン用のスタイル */
}
.kv_item02 .txt {
  color: #0087AD;
}
.kv_item02 svg {
  width: 100%;
  height: auto;
}
.kv_item02 .anim-line {
  stroke-width: 1;
  fill: none;
}
.kv_item02 .cls-1 {
  fill: #437397;
}
.kv_item02 .cls-2 {
  fill: #db9181;
}
.kv_item02 .cls-6 {
  fill: #c7b79b;
}
.kv_item02 .cls-8 {
  fill: #ccdae5;
}
.kv_item02 .cls-3 {
  stroke: #db9181;
}
.kv_item02 .cls-5,
.kv_item02 .cls-9 {
  stroke: #aacde2;
}
.kv_item02 .cls-10 {
  stroke: #c7b79b;
}
.kv_item02 .cls-7 {
  stroke: #ccdae5;
}
.kv_item02 .base {
  fill: #fff;
}

/*===============================================================

section_access

===============================================================*/
.section_access {
  /*===============================================================
      content_about
  ===============================================================*/
}
.section_access .content_access {
  padding-top: 4rem;
}
.section_access .content_access .block_map iframe {
  width: 100%;
}
.section_access .access_wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3rem;
}
.section_access .access_wrp .img_block {
  width: 26%;
}
.section_access .access_wrp .info_block {
  width: calc(100% - (26% + 3rem));
}
.section_access .access_wrp .info_block .title {
  font-size: 2rem;
  font-weight: bold;
}
.section_access .access_wrp .info_block .lead {
  font-size: 1.8rem;
  margin-top: 0;
}
@media screen and (max-width: 800px) {
  .section_access .access_wrp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5vw;
    margin-top: 10vw;
  }
  .section_access .access_wrp .img_block {
    width: 100%;
  }
  .section_access .access_wrp .info_block {
    width: 100%;
  }
  .section_access .access_wrp .info_block .title {
    font-size: 5vw;
  }
  .section_access .access_wrp .info_block .lead {
    font-size: 4vw;
  }
}
.section_access .content_about {
  margin-top: 15rem;
}
.section_access .content_about .block_about dl dt {
  font-size: 1.8rem;
  font-weight: normal;
}
.section_access .content_about .block_about dl dd {
  font-size: 1.8rem;
}
@media screen and (max-width: 800px) {
  .section_access .content_about {
    margin-top: 10vw;
  }
  .section_access .content_about .block_about dl dt,
  .section_access .content_about .block_about dl dd {
    font-size: 4vw;
  }
}

/*===============================================================

section_form

===============================================================*/
.section_form {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_form .section_inner .content_form .form_content .complete_txt p {
  font-size: 2rem;
}
.section_form .section_inner .content_form .validate_error {
  margin-top: 5rem;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .section_form .section_inner {
    padding-left: 5vw !important;
    padding-right: 5vw !important;
  }
  .section_form .section_inner .content_form .form_content .complete_txt p {
    font-size: 4vw;
  }
}

/*===============================================================

	_top.scss 2024/2/16

===============================================================*/
/*===============================================================

	page_top

===============================================================*/
.page_top {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
  	//	page_top
  ===============================================================*/
}
input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
.site textarea {
  border: 0;
  border-radius: 0;
  color: #000;
  line-height: 1.6;
  padding: 0;
  margin: 0;
  max-width: 100%;
}

.validate {
  display: none;
}

/*===============================================================

	form_section

===============================================================*/
.form_section {
  margin: 0 auto;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	.txt 	
  -------------------------------------------------------------*/
  /* タブレット以下 */
  /* for tablet max-width: 1030px */
  /* SP向けレイアウトの指定：～736px */
  /* for SP max-width: 736px */
  /*-------------------------------------------------------------
  	form_section ここまで
  -------------------------------------------------------------*/
}
.form_section .headline .title {
  font-size: 30px;
  line-height: 1.4;
  font-weight: bold;
}
@media screen and (max-width: 1070px) {
  .form_section {
    width: 100%;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media screen and (max-width: 800px) {
  .form_section .headline .title {
    font-size: 6vw;
  }
}
.form_section .txt {
  margin-top: 30px;
}
.form_section .txt p {
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (max-width: 800px) {
  .form_section .txt {
    margin-top: 4vw;
  }
  .form_section .txt p {
    font-size: 4vw;
  }
}

/*===============================================================

	form_content

===============================================================*/
.form_content {
  text-align: left;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	form_table	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	.phase_confirm form_table	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	form_content ここまで
  -------------------------------------------------------------*/
}
@media screen and (max-width: 800px) {
  .form_content {
    font-size: 4vw;
    margin-top: 4vw;
  }
}
.form_content .form_table {
  margin: 0;
  margin-top: 6rem;
  /* タブレット以下 */
  /* for tablet max-width: 1030px */
  /* SP向けレイアウトの指定：～736px */
  /* for SP max-width: 736px */
}
.form_content .form_table dt {
  padding: 1rem 0 3rem;
  font-size: 2rem;
}
.form_content .form_table dt label {
  font-size: 1.8rem;
  font-weight: bold;
}
.form_content .form_table .validate_error {
  text-align: left !important;
}
@media screen and (max-width: 800px) {
  .form_content .form_table {
    margin-top: 6vw;
  }
  .form_content .form_table dt label {
    font-size: 4vw;
  }
}
.form_content .form_table dt span {
  padding-left: 3px;
}
.form_content .form_table dd {
  width: 100%;
}
.form_content .form_table dd + dt {
  margin-top: 3rem;
}
.form_content .form_table .sample {
  font-size: small;
  font-weight: normal;
  padding-left: 10px;
}
.form_content .form_table .red {
  color: #FA0F0C;
  font-size: small;
  font-weight: normal;
  padding-left: 10px;
}
.form_content .form_table .cap {
  color: #333;
  font-size: small;
  font-weight: normal;
  padding-left: 10px;
}
.form_content .form_table .subhead {
  margin: 20px 0 10px;
}
.form_content .form_table dd.input_small {
  width: 20%;
}
@media screen and (max-width: 800px) {
  .form_content .form_table dt {
    float: none;
    width: 100%;
    font-size: 4.5vw;
    line-height: 1.6;
    padding: 3vw 0 0 0;
  }
  .form_content .form_table dd {
    width: 100%;
    font-size: 4vw;
    line-height: 1.6;
    margin-top: 2vw;
  }
  .form_content .form_table dd + dt {
    margin-top: 8vw;
  }
  .form_content .form_table .sample {
    font-size: 2.5vw;
  }
  .form_content .form_table .red {
    font-size: 2.5vw;
  }
  .form_content .form_table .subhead {
    font-size: 4vw;
    margin: 4vw 0 1vw;
  }
  .form_content .form_table dd.input_small {
    width: 50%;
  }
}
.form_content .phase_confirm .form_table {
  /* タブレット以下 */
  /* for tablet max-width: 1030px */
  /* SP向けレイアウトの指定：～736px */
  /* for SP max-width: 736px */
}
.form_content .phase_confirm .form_table dd {
  background: #eee;
  padding: 20px;
  border-radius: 5px;
}
@media screen and (max-width: 800px) {
  .form_content .phase_confirm .form_table dd {
    padding: 3vw;
  }
}

/*-------------------------------------------------------------
	テキスト入力
-------------------------------------------------------------*/
.txtinput {
  vertical-align: bottom;
  width: 100%;
  -webkit-appearance: none;
  outline: 0;
  font-size: 18px !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  padding: 10px !important;
  border: solid 1px #ccc !important;
  border-radius: 3px !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  /* タブレット以下 */
  /* for tablet max-width: 1030px */
  /* SP向けレイアウトの指定：～736px */
  /* for SP max-width: 736px */
}
.txtinput.txtinput_postal {
  width: 150px;
}
.txtinput:focus, .txtinput:focus {
  border-color: #999;
}
@media screen and (max-width: 800px) {
  .txtinput {
    font-size: 4vw !important;
    padding: 3vw !important;
  }
}

/*-------------------------------------------------------------
	ラジオボタン
-------------------------------------------------------------*/
.radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /*	li label:before {
  	content: "";
  	position: absolute;
  	top: 0;
  	bottom: 0;
  	left: 0;
  	margin: auto;
  	width: 16px;
  	height: 16px;
  	background: #fff;
  	border: 1px solid #333;
  	border-radius: 50%;
  	box-sizing: border-box;
  }
  li label:after {
  	content: "";
  	position: absolute;
  	top: 0;
  	bottom: 0;
  	left: 4px;
  	margin: auto;
  	width: 8px;
  	height: 8px;
  	background: $c_red;
  	border-radius: 50%;
  	transition: all 0.1s linear;
  	transform: scale(0);
  }
  li input:checked + label:after {
  	transform: scale(1);
  }*/
  /* タブレット以下 */
  /* for tablet max-width: 1030px */
  /* SP向けレイアウトの指定：～736px */
  /* for SP max-width: 736px */
}
.radio li {
  width: 20%;
}
.radio li:first-of-type {
  width: 32%;
}
.radio li input {
  border: 0;
  margin: 0;
  display: inline-block;
  width: 1.9rem;
  height: 1.9rem;
  border: 1px solid #000;
  vertical-align: middle;
}
.radio li input::after {
  position: absolute;
  top: 0.3rem;
  left: 0.3rem;
  width: 0.5rem;
  height: 0.5rem;
}
.radio li label {
  cursor: pointer;
  padding-left: 1rem;
}
.radio li {
  padding: 0;
}
@media screen and (max-width: 1070px) {
  .radio {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .radio li {
    width: 100%;
  }
  .radio li:first-of-type {
    width: 100%;
  }
  .radio li + li {
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 800px) {
  .radio li label {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .radio li + li {
    margin-top: 1.2rem;
  }
}

/*-------------------------------------------------------------
	チェックボックス
-------------------------------------------------------------*/
.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /*  
    display: flex;
    flex-wrap:wrap;
    align-items: center;
  	li {
  		width: 33.3333%;
  		padding: 0;
  	}
  	li:nth-child(4),
  	li:nth-child(5),
  	li:nth-child(6) {
  		margin-top: 10px;
  	}
  	&.agreebox {
  		font-size: 14px; 
  		line-height: 20px;
  		text-align: center;
  		padding-top: 20px;
  	}
  	li input,
  	&.agreebox input {
  		width: auto;
  		display: none;
  		border: 0;
  		margin: 0;
  	}
  */
  /*　チェックボックスの装飾　*/
  /*
  	li label,
  	&.agreebox label {
  		display: inline-block;
  		vertical-align: middle; 
  		position: relative;
  		cursor: pointer;
  	}
  	li label:before,
  	&.agreebox label:before {
  		content: "";
  		position: absolute;
  		top: 0;
  		bottom: 0;
  		left: 0;
  		margin: auto;
  		width: 16px;
  		height: 16px;
  		background: #fff;
  		border-radius: 10%;
  		border: 1px solid #333;
  		box-sizing: border-box;
  	}
  	li label:after,
  	&.agreebox label:after {
  		content: "";
  		position: absolute;
  		top: -4px;
  		left: 5px;
  		margin: auto;
  		width: 6px;
  		height: 14px;
  		border-right: 2px solid transparent;
  		border-bottom: 2px solid transparent;
  		transform: rotate(40deg);
  		transition: border-bottom-color, border-right-color .2s linear;
  	}
  	li input:checked + label:after,
  	&.agreebox input:checked + label:after {
  		border-color: #333;
  	}
  */
  /* タブレット以下 */
  /* for tablet max-width: 1030px */
  /* SP向けレイアウトの指定：～736px */
  /* for SP max-width: 736px */
}
.checkbox li {
  width: 50%;
  padding: 0;
}
.checkbox input {
  border: 0;
  margin: 0;
  display: inline-block;
  width: 1.9rem;
  height: 1.9rem;
  border: 1px solid #000;
  vertical-align: middle;
}
.checkbox input::after {
  position: absolute;
  top: 0.3rem;
  left: 0.3rem;
  width: 0.5rem;
  height: 0.5rem;
}
.checkbox label {
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .checkbox li {
    width: 100%;
  }
  .checkbox li + li {
    margin-top: 3vw;
  }
  .checkbox li label,
  .checkbox .agreebox label {
    font-size: 4vw;
  }
  .checkbox .agreebox {
    font-size: 4vw;
    text-align: left;
    padding-top: 3vw;
  }
}

/*-------------------------------------------------------------
	.セレクト 
-------------------------------------------------------------*/
.select {
  width: 200px;
  font-size: 18px;
  cursor: pointer;
  /* タブレット以下 */
  /* for tablet max-width: 1030px */
  /* SP向けレイアウトの指定：～736px */
  /* for SP max-width: 736px */
}
.select option {
  color: #333;
  background: #fff;
}
.select optgroup.area {
  color: #333;
  background: #eee;
}
@media screen and (max-width: 800px) {
  .select {
    font-size: 4.5vw;
    padding: 10px;
  }
}

/*-------------------------------------------------------------
	.セレクタの装飾 
-------------------------------------------------------------*/
.select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #8F8F8F;
  border-radius: 3px;
  padding: 10px 25px 10px 10px;
  font-size: 1.6rem;
  cursor: pointer;
}

.select:disabled {
  pointer-events: none;
  background-color: #f1f1f1;
  color: #8F8F8F;
}

.select {
  position: relative;
  display: inline-block;
}

.select_wrp {
  position: relative;
  display: inline-block;
}

.select_wrp::after {
  content: "";
  position: absolute;
  border: 4px solid #333;
  border-bottom: 0;
  border-left-color: transparent;
  border-right-color: transparent;
  top: calc(50% - 3px);
  right: 10px;
  width: 0;
  height: 0;
}

.select_wrp--disabled::after {
  border-top-color: #8F8F8F;
}

/*
.select_wrap {
		position: relative;
		overflow: hidden;
		display: inline-block;
		min-width: 30em;
		color: #333;
		background-color: #fff;
//		background-image: linear-gradient(top, #fff 0%, #eee 100%);
		border: 1px solid $form_border_color;
		border-radius: 3px;
		box-sizing: border-box;
		transition: all 0.1s linear;
	&:hover {
		border: 1px solid #999;
	}
	&.select_wrap2 {
		min-width: 20em;
	}
	&.select_wrap3 {
		min-width: 10em;
		margin-right: 5px;
	}
	&:after {
		content: '';
		position: absolute;
		bottom: 10px;
		right: 10px;
		width: 5px;
		height: 5px;
		border-top: 4px solid rgba(0,0,0,0.5);
		border-right: 4px solid transparent;
		border-bottom: 4px solid transparent;
		border-left: 4px solid transparent;
		box-sizing: border-box;
	}
	&:before {
		content: '';
		position: absolute;
		top: 10px;
		right: 10px;
		width: 5px;
		height: 5px;
		border-top: 4px solid transparent;
		border-right: 4px solid transparent;
		border-bottom: 4px solid rgba(0,0,0,0.5);
		border-left: 4px solid transparent;
		box-sizing: border-box;
	}
*/
/* SP向けレイアウトの指定：～736px */
@media screen and (max-width: 800px) {
  /*	 セレクタの装飾 */
  /*
  	min-width: auto;
  	width: 100%;
  	padding: 0;
  	margin: 0;

  	& + .select_wrap {
  		margin-top: 10px;
  	}	

  	&:after {
  		content: '';
  		position: absolute;
  		bottom: 8px;
  		right: 10px;
  		width: 5px;
  		height: 5px;
  		border-top: 4px solid rgba(0,0,0,0.5);
  		border-right: 4px solid transparent;
  		border-bottom: 4px solid transparent;
  		border-left: 4px solid transparent;
  		box-sizing: border-box;
  	}
  	&:before {
  		content: '';
  		position: absolute;
  		top: 8px;
  		right: 10px;
  		width: 5px;
  		height: 5px;
  		border-top: 4px solid transparent;
  		border-right: 4px solid transparent;
  		border-bottom: 4px solid rgba(0,0,0,0.5);
  		border-left: 4px solid transparent;
  		box-sizing: border-box;
  	}
  }	/* for SP max-width: 736px */
}
/*-------------------------------------------------------------
	添付ファイル 
-------------------------------------------------------------*/
.fileinput {
  width: auto;
  display: none;
  border: 0;
  margin: 0;
  /* タブレット以下 */
  /* for tablet max-width: 1030px */
  /* SP向けレイアウトの指定：～736px */
  /* for SP max-width: 736px */
}
.fileinput .file_btn {
  display: inline-block;
  min-width: 20em;
  color: #333;
  padding: 10px;
  font-size: 14px;
  line-height: 1.6;
  background-color: #fff;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));
  background-image: linear-gradient(top, #fff 0%, #eee 100%);
  border: 1px solid #ddd;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  cursor: pointer;
}
.fileinput .file_btn:hover {
  border: 1px solid #999;
}
.fileinput .filename {
  display: inline-block;
  font-size: 14px;
  line-height: 1.6;
  margin-left: 5px;
}
@media screen and (max-width: 800px) {
  .fileinput .file_btn {
    min-width: auto;
    width: 100%;
    font-size: 4.5vw;
  }
  .fileinput .filename {
    display: block;
    font-size: 3.5vw;
    margin-left: 0;
    margin-top: 2vw;
  }
}

/*-------------------------------------------------------------
	個人情報保護方針
-------------------------------------------------------------*/
.agreebox,
.validate_error {
  display: block;
  text-align: center;
  margin: 0 auto;
  margin-top: 5rem;
}

/*　チェックボックスの装飾　*/
.checkbox label,
.agreebox label,
.validate_error label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  padding-left: 1rem;
}
.checkbox label a,
.agreebox label a,
.validate_error label a {
  color: #000;
}
.checkbox label a:hover,
.agreebox label a:hover,
.validate_error label a:hover {
  color: #0087AD;
}

.checkbox label:before,
.agreebox label:before {
  /*  content: "";
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   margin: auto;
   width: 16px;
   height: 16px;
   background: #fff;
   border-radius: 10%;
   border: 1px solid #333;
   box-sizing: border-box;*/
}

.checkbox label:after,
.agreebox label:after {
  /* content: "";
   position: absolute;
   top: -4px;
   left: 5px;
   margin: auto;
   width: 6px;
   height: 14px;
   border-right: 2px solid transparent;
   border-bottom: 2px solid transparent;
   transform: rotate(40deg);
   transition: border-bottom-color, border-right-color 0.2s linear;*/
}

.checkbox input:checked + label:after,
.agreebox input:checked + label:after {
  /*  border-color: #333;*/
}

/* タブレット以下 */
/* for tablet max-width: 1030px */
/* SP向けレイアウトの指定：～736px */
@media only screen and (max-width: 736px) {
  .checkbox li {
    width: 100%;
  }
  .checkbox li + li {
    margin-top: 1rem;
  }
  .agreebox {
    padding: 0 0.5rem;
  }
  .agreebox {
    text-align: left;
  }
}
/* for SP max-width: 736px */
/*-------------------------------------------------------------
	サブミット
-------------------------------------------------------------*/
.submit {
  padding: 8rem 0 6rem 0;
  margin: 0;
  /* タブレット以下 */
  /* for tablet max-width: 1030px */
  /* SP向けレイアウトの指定：～736px */
  /* for SP max-width: 736px */
}
.submit input[type=submit]:focus {
  outline: none;
}
.submit input {
  width: 35rem;
  margin: 0 auto;
  padding: 20px 0;
  display: block;
  color: #fff !important;
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
  text-decoration: none;
  border: 0;
  border-radius: 4rem;
  background-color: #333 !important;
  border: solid 1px #333 !important;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  cursor: pointer;
  -webkit-appearance: none;
}
.submit input:hover {
  background-color: #0087AD !important;
  border: solid 1px #0087AD !important;
}
.submit .cap {
  color: #666;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  margin-top: 40px;
}
.submit .validate p a {
  color: #000;
}
@media screen and (max-width: 800px) {
  .submit {
    padding: 6vw 0;
  }
  .submit input {
    width: 100%;
    font-size: 4.5vw;
    padding: 5vw 0;
  }
  .submit .cap {
    font-size: 3vw;
    margin-top: 4vw;
  }
}

/*-------------------------------------------------------------
	サブミット2
-------------------------------------------------------------*/
.submit_two {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  /* タブレット以下 */
  /* for tablet max-width: 1030px */
  /* SP向けレイアウトの指定：～736px */
  /* for SP max-width: 736px */
}
.submit_two .btn {
  padding: 0 15px;
}
.submit_two .btn.back input {
  color: #000 !important;
  background-color: #fff !important;
  border: solid 1px #000 !important;
}
.submit_two .btn.back input:hover {
  color: #fff !important;
  background-color: #000 !important;
}
@media screen and (max-width: 800px) {
  .submit_two {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .submit_two .btn {
    width: 100%;
    padding: 3vw 0;
  }
}

/*-------------------------------------------------------------	
	jquery mailform バリデート
-------------------------------------------------------------*/
.validate {
  margin-bottom: 10px;
  /* タブレット以下 */
  /* for tablet max-width: 1030px */
  /* SP向けレイアウトの指定：～736px */
  /* for SP max-width: 736px */
}
.validate p {
  color: #FA0F0C;
  font-size: 12px;
  line-height: 1.2;
  padding: 10px 20px;
  background: #fee;
  display: inline-block;
  border-radius: 50px;
}
.validate.validate_submit {
  text-align: center;
  margin: 0 auto;
  padding-bottom: 20px;
}
.validate.validate_submit p {
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .validate {
    margin-bottom: 3vw;
  }
  .validate p {
    font-size: 3vw;
    padding: 2vw 4vw;
  }
  .validate.validate_submit {
    margin: 0 auto;
  }
}

/*===============================================================

	郵便番号からの住所検索用プリローダー

===============================================================*/
.zipcodelayout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.zipcodelayout .txtinput {
  width: 40%;
}
.zipcodelayout .zipsearchbtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #eee;
  padding: 10px 20px;
  border-radius: 25px;
}
.zipcodelayout .zipsearchbtn:hover {
  background: #f7f7f7;
}
.zipcodelayout .ziploader {
  width: 20px;
}
/*-------------------------------------------------------------
	search_box	
-------------------------------------------------------------*/
.search_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 300px;
  /* タブレット以下 */
  /* for tablet max-width: 1030px */
  /* SP向けレイアウトの指定：～736px */
  /* for SP max-width: 736px */
}
.search_box input {
  width: 230px;
}
.search_box .search_btn {
  width: 60px;
}
.search_box .search_btn a {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 2.8;
  text-align: center;
  letter-spacing: 0.2em;
  background: #a00;
  border-radius: 3px;
  margin-top: 1px;
}
.search_box .search_btn a:hover {
  text-decoration: none;
  background: #c00;
}
@media screen and (max-width: 800px) {
  .search_box {
    width: 100%;
  }
  .search_box input {
    width: calc(100% - 22vw);
  }
  .search_box .search_btn {
    width: 20vw;
  }
  .search_box .search_btn a {
    font-size: 4.6vw;
    line-height: 2.8;
  }
}

/* |||||||||| */
/* |||||||||| */
/*===============================================================

	login_wrp

===============================================================*/
.login_wrp {
  /* タブレット以下 */
  /* for tablet max-width: 1070px */
  /* SP向けレイアウトの指定：～800px */
  /* for SP max-width: 800px */
}
.login_wrp .box {
  border: solid 1px #ccc;
  padding: 30px;
  margin-top: 40px;
}
.login_wrp .form_content {
  border: none;
  margin: 0;
}
.login_wrp .form_content dl {
  border: none;
}
.login_wrp .form_content dd {
  padding-bottom: 0;
}
.login_wrp .form_content .title {
  font-size: 22px;
  line-height: 1.6;
  text-align: center;
  font-weight: bold;
}
.login_wrp .form_content .read {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  margin-top: 20px;
}
.login_wrp .form_content .submit {
  padding-bottom: 0;
}
.login_wrp .linklist {
  margin-top: 30px;
}
.login_wrp .linklist li {
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 800px) {
  .login_wrp .box {
    padding: 5vw;
    margin-top: 6vw;
  }
  .login_wrp .form_content dt {
    padding-top: 3vw;
  }
  .login_wrp .form_content .title {
    font-size: 4.5vw;
  }
  .login_wrp .form_content .read {
    font-size: 4vw;
    margin-top: 2vw;
  }
  .login_wrp .form_content .submit {
    padding-bottom: 0;
  }
  .login_wrp .linklist {
    margin-top: 6vw;
  }
  .login_wrp .linklist li {
    font-size: 4vw;
  }
}

/*===============================================================

	_detail.scss 2025/8/8

===============================================================*/
/*===============================================================
	.page_case_study_detail
===============================================================*/
.page_case_study_detail .block_tag_list {
  margin-top: 10rem !important;
  padding-bottom: 12rem;
}
@media screen and (max-width: 800px) {
  .page_case_study_detail .block_tag_list {
    padding-bottom: 0;
  }
}
.page_case_study_detail .entry-content h4.wp-block-heading {
  margin-top: 8rem;
}
@media screen and (max-width: 800px) {
  .page_case_study_detail .entry-content h4.wp-block-heading {
    margin-top: 10vw;
  }
}
.page_case_study_detail .entry-content .no_link li::after {
  background: #333;
}
.page_case_study_detail .entry-content .txt_link a {
  text-decoration: underline;
}
.page_case_study_detail .entry-content + .content_case_stduy {
  margin-top: 17rem;
}
@media only screen and (max-width: 800px) {
  .page_case_study_detail .entry-content + .content_case_stduy {
    margin-top: 10vw;
  }
}
.page_case_study_detail .content_case_stduy + .content_arthicle {
  margin-top: 6rem;
}
@media only screen and (max-width: 800px) {
  .page_case_study_detail .content_case_stduy + .content_arthicle {
    margin-top: 5vw;
  }
}
.page_case_study_detail .content_arthicle + .content_case_stduy {
  margin-top: 12rem;
}
@media only screen and (max-width: 800px) {
  .page_case_study_detail .content_arthicle + .content_case_stduy {
    margin-top: 10vw;
  }
}
.page_case_study_detail .wp-block-buttons {
  margin-top: 11rem;
}
@media only screen and (max-width: 800px) {
  .page_case_study_detail .wp-block-buttons {
    margin-top: 10vw;
  }
}
.page_case_study_detail .wp-block-button__link {
  border-radius: 0;
  font-weight: bold;
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
@media only screen and (max-width: 800px) {
  .page_case_study_detail .wp-block-button__link {
    padding-top: 3vw !important;
    padding-bottom: 3vw !important;
  }
}

/*===============================================================
	.page_case_study_categorytag
===============================================================*/
/*===============================================================
	.page_service
===============================================================*/
.page_service .content_case_stduy .block_tag_list + .block_case_study {
  margin-top: 4rem;
}
@media screen and (max-width: 800px) {
  .page_service .content_case_stduy .block_tag_list {
    margin-top: 10vw;
  }
  .page_service .content_case_stduy .block_tag_list + .block_case_study {
    margin-top: 5vw;
  }
}
.page_service .section_contact .section_inner,
.page_service .section_faq .section_inner {
  padding-top: 0;
}

.page_development_detail .section_contact .section_inner,
.page_individual_detail .section_contact .section_inner,
.page_industry_detail .section_contact .section_inner {
  padding-top: 12rem;
}
@media screen and (max-width: 800px) {
  .page_development_detail .section_contact .section_inner,
  .page_individual_detail .section_contact .section_inner,
  .page_industry_detail .section_contact .section_inner {
    padding-top: 12vw;
  }
}

/*===============================================================
	.page_development_detail
===============================================================*/
.page_development_detail .content_workflow .wp-block-group__inner-container .flow_header {
  width: 11%;
  padding: 0 2rem 0 4rem;
}
.page_development_detail .content_workflow .wp-block-group__inner-container .num {
  font-size: 3rem;
  font-weight: bold;
  color: #0087AD;
  text-align: right;
}
.page_development_detail .content_workflow .cp_flow {
  border-top: solid 1px #666;
  border-bottom: none;
  position: relative;
  padding: 4rem 0 5rem;
}
.page_development_detail .content_workflow .cp_flow:last-child {
  border-bottom: solid 1px #666;
}
.page_development_detail .content_workflow .flow_body {
  width: 89%;
  padding: 0 0 0 3rem;
  border-left: none !important;
}
.page_development_detail .content_workflow .flow_body .label {
  position: absolute;
  min-width: 10rem;
  border: 1px solid #D07861;
  padding: 0 1rem;
  margin-top: 0;
  top: 3rem;
  right: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2rem;
  color: #D07861;
  background: #fff;
}
.page_development_detail .content_workflow .flow_body .wp-block-heading {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.page_development_detail .content_workflow .flow_body p {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem !important;
}
.page_development_detail .content_workflow .flow_body .c_ul_list li, .page_development_detail .content_workflow .flow_body .editor-styles-wrapper ul li, .editor-styles-wrapper .page_development_detail .content_workflow .flow_body ul li,
.page_development_detail .content_workflow .flow_body .entry-content ul li,
.entry-content .page_development_detail .content_workflow .flow_body ul li {
  font-size: 1.8rem;
  color: #333;
}
.page_development_detail .content_workflow .flow_body .c_ul_list li::after, .page_development_detail .content_workflow .flow_body .editor-styles-wrapper ul li::after, .editor-styles-wrapper .page_development_detail .content_workflow .flow_body ul li::after,
.page_development_detail .content_workflow .flow_body .entry-content ul li::after,
.entry-content .page_development_detail .content_workflow .flow_body ul li::after {
  top: 1.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background: #333;
}
@media screen and (max-width: 800px) {
  .page_development_detail .content_workflow .wp-block-group__inner-container .flow_header {
    width: 100%;
    padding: 0 2vw 0 7vw;
  }
  .page_development_detail .content_workflow .wp-block-group__inner-container .num {
    font-size: 5.5vw;
    top: 0;
  }
  .page_development_detail .content_workflow .wp-block-group__inner-container .wp-block-heading {
    font-size: 5vw !important;
    padding-left: 2vw;
  }
  .page_development_detail .content_workflow p {
    font-size: 3.5vw;
  }
  .page_development_detail .content_workflow .flow_body {
    width: 100%;
    padding-top: 0;
    padding-left: 0 !important;
    margin-top: 0 !important;
  }
  .page_development_detail .content_workflow .flow_body .label {
    min-width: 20vw;
    top: -1.6rem;
    right: 1vw;
    font-size: 2rem;
    line-height: 1.5;
  }
  .page_development_detail .content_workflow .flow_body p {
    font-size: 4vw;
    margin-top: 2vw;
  }
  .page_development_detail .content_workflow .cp_flow {
    border-top: solid 1px #666;
    border-bottom: none;
    border-collapse: collapse;
    position: relative;
    padding: 7vw 0;
  }
  .page_development_detail .content_workflow .cp_flow .c_ul_list li, .page_development_detail .content_workflow .cp_flow .editor-styles-wrapper ul li, .editor-styles-wrapper .page_development_detail .content_workflow .cp_flow ul li,
  .page_development_detail .content_workflow .cp_flow .entry-content ul li,
  .entry-content .page_development_detail .content_workflow .cp_flow ul li {
    font-size: 3.5vw;
  }
}

/*===============================================================
	.page_individual_detail
===============================================================*/
.page_individual_detail .content_workflow .cp_flow {
  border-top: solid 1px #666;
  border-bottom: none;
}
.page_individual_detail .content_workflow .cp_flow:last-child {
  border-bottom: solid 1px #666;
}
.page_individual_detail .content_workflow .wp-block-group__inner-container .flow_header {
  padding: 0 2rem 0 4rem;
}
.page_individual_detail .content_workflow .wp-block-group__inner-container .num {
  font-size: 3rem;
  font-weight: bold;
}
.page_individual_detail .content_workflow .wp-block-group__inner-container .flow_body {
  border-left: solid 1px #ccc;
}
.page_individual_detail .content_workflow .wp-block-group__inner-container .flow_body .wp-block-heading {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.page_individual_detail .content_workflow .wp-block-group__inner-container .flow_body .c_ul_list li, .page_individual_detail .content_workflow .wp-block-group__inner-container .flow_body .editor-styles-wrapper ul li, .editor-styles-wrapper .page_individual_detail .content_workflow .wp-block-group__inner-container .flow_body ul li,
.page_individual_detail .content_workflow .wp-block-group__inner-container .flow_body .entry-content ul li,
.entry-content .page_individual_detail .content_workflow .wp-block-group__inner-container .flow_body ul li {
  font-size: 1.8rem;
  color: #333;
}
.page_individual_detail .content_workflow .wp-block-group__inner-container .flow_body .c_ul_list li::after, .page_individual_detail .content_workflow .wp-block-group__inner-container .flow_body .editor-styles-wrapper ul li::after, .editor-styles-wrapper .page_individual_detail .content_workflow .wp-block-group__inner-container .flow_body ul li::after,
.page_individual_detail .content_workflow .wp-block-group__inner-container .flow_body .entry-content ul li::after,
.entry-content .page_individual_detail .content_workflow .wp-block-group__inner-container .flow_body ul li::after {
  top: 1.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background: #333;
}
@media screen and (max-width: 800px) {
  .page_individual_detail .content_workflow .wp-block-group__inner-container .flow_header .wp-block-heading {
    font-size: 5vw !important;
    padding-left: 2vw;
  }
  .page_individual_detail .content_workflow .wp-block-group__inner-container .num {
    font-size: 5.5vw;
    top: 0;
  }
  .page_individual_detail .content_workflow .wp-block-group__inner-container .flow_body {
    border-left: none;
  }
  .page_individual_detail .content_workflow .wp-block-group__inner-container .flow_body .wp-block-heading {
    font-size: 4vw;
    margin-bottom: 2rem;
    padding-left: 2vw;
  }
  .page_individual_detail .content_workflow .wp-block-group__inner-container .flow_body .c_ul_list li, .page_individual_detail .content_workflow .wp-block-group__inner-container .flow_body .editor-styles-wrapper ul li, .editor-styles-wrapper .page_individual_detail .content_workflow .wp-block-group__inner-container .flow_body ul li,
  .page_individual_detail .content_workflow .wp-block-group__inner-container .flow_body .entry-content ul li,
  .entry-content .page_individual_detail .content_workflow .wp-block-group__inner-container .flow_body ul li {
    font-size: 3.5vw;
  }
  .page_individual_detail .content_workflow .wp-block-group__inner-container .flow_body .c_ul_list li::after, .page_individual_detail .content_workflow .wp-block-group__inner-container .flow_body .editor-styles-wrapper ul li::after, .editor-styles-wrapper .page_individual_detail .content_workflow .wp-block-group__inner-container .flow_body ul li::after,
  .page_individual_detail .content_workflow .wp-block-group__inner-container .flow_body .entry-content ul li::after,
  .entry-content .page_individual_detail .content_workflow .wp-block-group__inner-container .flow_body ul li::after {
    top: 2vw;
    width: 0.5vw;
    height: 0.5vw;
  }
}

/*===============================================================
	.page_recruit
===============================================================*/
.page_recruit .entry-content {
  margin-top: 6rem;
  padding-top: 0;
}
@media screen and (max-width: 800px) {
  .page_recruit .entry-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

/*===============================================================
    .page_recruit
	.page_recruit_detail
===============================================================*/
.page_recruit .wp-block-buttons,
.page_recruit_detail .wp-block-buttons {
  gap: 5rem;
}
.page_recruit .wp-block-buttons .wp-block-button .wp-block-button__link,
.page_recruit_detail .wp-block-buttons .wp-block-button .wp-block-button__link {
  background-color: #fff !important;
  border: 1px solid #333 !important;
  color: #333 !important;
  font-weight: bold;
}
.page_recruit .wp-block-buttons .wp-block-button .wp-block-button__link:hover,
.page_recruit_detail .wp-block-buttons .wp-block-button .wp-block-button__link:hover {
  color: #fff !important;
  border-color: #0087AD !important;
  background-color: #0087AD !important;
}
@media screen and (max-width: 800px) {
  .page_recruit .wp-block-buttons,
  .page_recruit_detail .wp-block-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3vw;
    margin-top: 10vw !important;
  }
  .page_recruit .wp-block-buttons .wp-block-button .wp-block-button__link,
  .page_recruit_detail .wp-block-buttons .wp-block-button .wp-block-button__link {
    padding-top: 3vw !important;
    padding-bottom: 3vw !important;
  }
}
.page_recruit .wp-block-table tr td,
.page_recruit_detail .wp-block-table tr td {
  font-size: 2rem;
  padding: 1.5rem 2rem;
}
.page_recruit .wp-block-table tr td:first-child,
.page_recruit_detail .wp-block-table tr td:first-child {
  width: 15%;
}
.page_recruit .wp-block-table tr td:last-child,
.page_recruit_detail .wp-block-table tr td:last-child {
  padding: 1.5rem 5rem 1.5rem 4rem;
}
@media screen and (max-width: 800px) {
  .page_recruit .wp-block-table tr td,
  .page_recruit_detail .wp-block-table tr td {
    font-size: 4vw;
    padding: 2vw 4vw;
  }
  .page_recruit .wp-block-table tr td:last-child,
  .page_recruit_detail .wp-block-table tr td:last-child {
    padding: 2vw 9.42px 5vw 2vw 4vw;
  }
}

/*===============================================================
	.page_recruit_detail
===============================================================*/
@media screen and (max-width: 800px) {
  .page_recruit_detail .entry-content {
    padding-top: 5vw !important;
  }
}
.page_recruit_detail .entry-content .wp-block-buttons {
  margin-top: 8rem;
}
.page_recruit_detail .entry-content .wp-block-buttons .c_btn_line a {
  padding: calc(1.5rem - 5px) 0;
}
.page_recruit_detail .entry-content .wp-block-buttons .c_btn_line a .label {
  font-size: 2rem;
}
.page_recruit_detail .entry-content h3.wp-block-heading {
  margin-top: 15rem;
}
.page_recruit_detail .entry-content .wp-block-table table {
  border-collapse: collapse;
}
.page_recruit_detail .entry-content .wp-block-table tr {
  background: transparent;
}
.page_recruit_detail .entry-content .wp-block-table tr:first-child td {
  border-top: 1px solid #ccc;
}
.page_recruit_detail .entry-content .wp-block-table tr td {
  border: none;
  border-bottom: 1px solid #ccc;
}
@media screen and (max-width: 800px) {
  .page_recruit_detail .entry-content {
    padding-top: 5vw !important;
  }
  .page_recruit_detail .entry-content h3.wp-block-heading {
    margin-top: 10vw;
  }
}

/*===============================================================
	.page_topicos_list
===============================================================*/
.page_topicos_list .wp-pagenavi {
  margin: 8rem 0 0;
}
@media screen and (max-width: 800px) {
  .page_topicos_list .wp-pagenavi {
    margin: 12vw 0 0;
  }
}

/*===============================================================
	.page_topicos_detail
===============================================================*/
.page_topicos_detail .content_case_stduy {
  margin-top: 15rem;
}
@media screen and (max-width: 800px) {
  .page_topicos_detail .content_case_stduy {
    margin-top: 10vw;
  }
}

/*===============================================================
	.page_topicos_detail
===============================================================*/
.page_access .section_company .content_about {
  margin-top: 0;
}

/*===============================================================
	.page_contact
===============================================================*/
.content_contact_box {
  border: 1px solid #7FC3D6;
  padding: 4rem 5rem;
}
.content_contact_box .contact_wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.content_contact_box .contact_wrp .left p {
  font-size: 2rem;
  font-weight: bold;
  color: #0087AD;
}
.content_contact_box .contact_wrp .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.content_contact_box .contact_wrp .right .small {
  font-size: 1.4rem;
  padding-right: 2rem;
}
.content_contact_box .contact_wrp .right .tel {
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .content_contact_box {
    padding: 4vw 5vw;
  }
  .content_contact_box .contact_wrp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .content_contact_box .contact_wrp .left p {
    font-size: 4vw;
  }
  .content_contact_box .contact_wrp .right {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    margin-top: 2vw;
  }
  .content_contact_box .contact_wrp .right .small {
    font-size: 3vw;
    padding-right: 2vw;
  }
  .content_contact_box .contact_wrp .right .tel {
    font-size: 5vw;
  }
}

/*===============================================================
	.page_detail
===============================================================*/
.page_detail .wp-block-group__inner-container .num {
  font-size: 3rem;
}
@media screen and (max-width: 800px) {
  .page_detail .c_btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/*===============================================================
	.content_workflow 調整
===============================================================*/
.content_workflow .block p {
  font-size: 1.6rem;
}
.content_workflow .wp-block-group__inner-container .flow_header {
  width: 11%;
  padding: 0 2rem 0 4rem;
}
.content_workflow .wp-block-group__inner-container .num {
  font-size: 3rem;
  font-weight: bold;
  color: #0087AD;
  text-align: right;
}
.content_workflow .cp_flow {
  border-top: solid 1px #666;
  border-bottom: none;
  position: relative;
  padding: 4rem 0 5rem;
}
.content_workflow .cp_flow:last-child {
  border-bottom: solid 1px #666;
}
.content_workflow .flow_body {
  width: 89%;
  padding: 0 0 0 3rem;
  border-left: none !important;
}
.content_workflow .flow_body .label {
  position: absolute;
  min-width: 10rem;
  border: 1px solid #D07861;
  padding: 0 1rem;
  margin-top: 0;
  top: 3rem;
  right: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2rem;
  color: #D07861;
  background: #fff;
}
.content_workflow .flow_body .wp-block-heading {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.content_workflow .flow_body p {
  font-size: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1rem !important;
}
.content_workflow .flow_body .c_ul_list li, .content_workflow .flow_body .editor-styles-wrapper ul li, .editor-styles-wrapper .content_workflow .flow_body ul li,
.content_workflow .flow_body .entry-content ul li,
.entry-content .content_workflow .flow_body ul li {
  font-size: 1.8rem;
  color: #333;
}
.content_workflow .flow_body .c_ul_list li::after, .content_workflow .flow_body .editor-styles-wrapper ul li::after, .editor-styles-wrapper .content_workflow .flow_body ul li::after,
.content_workflow .flow_body .entry-content ul li::after,
.entry-content .content_workflow .flow_body ul li::after {
  top: 1.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background: #333;
}
@media screen and (max-width: 800px) {
  .content_workflow .block p {
    font-size: 3.5vw;
  }
  .content_workflow .wp-block-group__inner-container .flow_header {
    width: 100%;
    padding: 0 2rem 0 4.5rem !important;
  }
  .content_workflow .wp-block-group__inner-container .num {
    font-size: 5.5vw;
    top: -2px !important;
  }
  .content_workflow .wp-block-group__inner-container .wp-block-heading {
    font-size: 5vw !important;
    padding-left: 2vw;
  }
  .content_workflow p {
    font-size: 3.5vw;
  }
  .content_workflow .flow_body {
    width: 100%;
    padding-top: 0;
    padding-left: 0 !important;
    margin-top: 0 !important;
  }
  .content_workflow .flow_body .label {
    min-width: 20vw;
    top: -1.6rem;
    right: 1vw;
    font-size: 2rem;
    line-height: 1.5;
  }
  .content_workflow .flow_body p {
    font-size: 4vw;
    margin-top: 2vw;
  }
  .content_workflow .cp_flow {
    border-top: solid 1px #666;
    border-bottom: none;
    border-collapse: collapse;
    position: relative;
    padding: 7vw 0;
  }
  .content_workflow .cp_flow .c_ul_list li, .content_workflow .cp_flow .editor-styles-wrapper ul li, .editor-styles-wrapper .content_workflow .cp_flow ul li,
  .content_workflow .cp_flow .entry-content ul li,
  .entry-content .content_workflow .cp_flow ul li {
    font-size: 3.5vw;
  }
}

/*===============================================================
	.cp_flow 調整
===============================================================*/
.entry-content .cp_flow {
  border-top: solid 1px #666;
  border-bottom: none;
}
.entry-content .cp_flow:last-of-type {
  border-bottom: solid 1px #666;
}
.entry-content .cp_flow h3.wp-block-heading {
  padding-left: 0 !important;
}
.entry-content .cp_flow h3.wp-block-heading::after {
  content: none !important;
}
.entry-content .cp_flow .wp-block-list li::after {
  background: #333 !important;
}
.entry-content .cp_flow .wp-block-group__inner-container .flow_header {
  padding: 0 2rem 0 4rem;
}
.entry-content .cp_flow .wp-block-group__inner-container .num {
  font-size: 3rem;
  font-weight: bold;
}
.entry-content .cp_flow .wp-block-group__inner-container .flow_body {
  border-left: solid 1px #ccc;
}
.entry-content .cp_flow .wp-block-group__inner-container .flow_body .wp-block-heading {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.entry-content .cp_flow .wp-block-group__inner-container .flow_body .c_ul_list li,
.entry-content .cp_flow .wp-block-group__inner-container .flow_body ul li {
  font-size: 1.8rem;
  color: #333;
}
.entry-content .cp_flow .wp-block-group__inner-container .flow_body .c_ul_list li::after,
.entry-content .cp_flow .wp-block-group__inner-container .flow_body ul li::after {
  top: 1.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background: #333;
}
@media screen and (max-width: 800px) {
  .entry-content .cp_flow .wp-block-group__inner-container .flow_header .wp-block-heading {
    font-size: 5vw !important;
    padding-left: 2vw;
  }
  .entry-content .cp_flow .wp-block-group__inner-container .num {
    font-size: 5.5vw;
    top: 0;
  }
  .entry-content .cp_flow .wp-block-group__inner-container .flow_body {
    border-left: none;
  }
  .entry-content .cp_flow .wp-block-group__inner-container .flow_body .wp-block-heading {
    font-size: 4vw;
    margin-bottom: 2rem;
    padding-left: 2vw;
  }
  .entry-content .cp_flow .wp-block-group__inner-container .flow_body .c_ul_list li,
  .entry-content .cp_flow .wp-block-group__inner-container .flow_body ul li {
    font-size: 3.5vw;
  }
  .entry-content .cp_flow .wp-block-group__inner-container .flow_body .c_ul_list li::after,
  .entry-content .cp_flow .wp-block-group__inner-container .flow_body ul li::after {
    top: 2vw;
    width: 0.5vw;
    height: 0.5vw;
  }
}

.cp_flow > .wp-block-group-is-layout-flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/*-------------------------------------------------------------
	notfound_error	
-------------------------------------------------------------*/
.notfound_error {
  text-align: center;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.notfound_error .head {
  color: #0087AD;
  font-size: 30px;
  line-height: 1.2;
  font-weight: bold;
}
.notfound_error .lead {
  font-size: 18px;
  line-height: 1.8;
  font-weight: bold;
  margin-top: 30px;
}
.notfound_error p {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 30px;
}
.notfound_error .box {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  padding: 40px;
  margin: 0 auto;
  margin-top: 30px;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  border: 1px solid #ccc;
}
.notfound_error .box li {
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
}
.notfound_error .box li + li {
  margin-top: 10px;
}
@media screen and (max-width: 800px) {
  .notfound_error .head {
    font-size: 6vw;
  }
  .notfound_error .lead {
    font-size: 4vw;
    margin-top: 4vw;
  }
  .notfound_error p {
    font-size: 4vw;
    margin-top: 4vw;
  }
  .notfound_error .box {
    padding: 4vw;
    margin-top: 4vw;
  }
  .notfound_error .box li {
    font-size: 3.5vw;
  }
  .notfound_error .box li + li {
    margin-top: 1vw;
  }
}

/*===============================================================
	mixinテスト
===============================================================*/
.under_line {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, rgba(255, 0, 0, 0.3)));
  background: linear-gradient(transparent 70%, rgba(255, 0, 0, 0.3) 0%);
  display: inline;
}

.under_marker {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0%, #ff0));
  background: linear-gradient(transparent 0%, #ff0 0%);
  display: inline;
}

.btn_link {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  border: solid 1px #000;
}
.btn_link a {
  display: block;
  text-align: center;
  background: #fff;
  color: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 20px;
  text-decoration: none;
}
@media screen and (max-width: 800px) {
  .btn_link a {
    padding: 3vw;
  }
}
.btn_link a:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}
.btn_link a {
  position: relative;
}
.btn_link a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  border: solid 1px #000;
  width: 6px;
  height: 6px;
  border-top: none;
  border-left: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  right: 10px;
  -webkit-transform: rotate(-45deg) translate(-1px, -1px);
          transform: rotate(-45deg) translate(-1px, -1px);
}
.btn_link a:hover::after {
  border: solid 1px #fff;
  border-top: none;
  border-left: none;
}
@media screen and (max-width: 800px) {
  .btn_link {
    width: 80%;
  }
}

.btn_sankaku {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
  border: solid 1px #000;
}
.btn_sankaku a {
  display: block;
  text-align: center;
  background: #000;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 20px;
  text-decoration: none;
}
@media screen and (max-width: 800px) {
  .btn_sankaku a {
    padding: 3vw;
  }
}
.btn_sankaku a:hover {
  background: #fff;
  color: #000;
  text-decoration: none;
}
.btn_sankaku a {
  position: relative;
}
.btn_sankaku a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 0;
  height: 0;
  border-style: solid;
  left: 10px;
  border-width: 5px 8px 5px 0;
  border-color: transparent #fff transparent transparent;
}
.btn_sankaku a:hover::after {
  border-width: 5px 8px 5px 0;
  border-color: transparent #000 transparent transparent;
}
@media screen and (max-width: 800px) {
  .btn_sankaku {
    width: 80%;
  }
}

.bg_slash {
  background-image: linear-gradient(-45deg, #fff 25%, #eee 25%, #eee 50%, #fff 50%, #fff 75%, #eee 75%, #eee);
  background-size: 5px 5px;
  padding: 30px;
}

.bg_grade {
  background: #FF6EC9;
  background: -webkit-gradient(linear, left top, right top, from(#FF6EC9), to(#5DCAFC));
  background: linear-gradient(to right, #FF6EC9 0%, #5DCAFC 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FF6EC9", endColorstr=" #5DCAFC", GradientType=1);
  padding: 30px;
}
/*# sourceMappingURL=style.css.map */