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

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: "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: "YakuHanJP", "游明朝体", "Yu Mincho", "YuMincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.1em;
}

/*===============================================================
	フォント
===============================================================*/
/*-------------------------------------------------------------
フォントサイズ
-------------------------------------------------------------*/
.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: #F1F2F3;
  text-align: left;
  position: relative;
  overflow-x: hidden;
  -webkit-text-size-adjust: none;
  /* 縦横文字サイズ同じ */
  -webkit-font-smoothing: antialiased;
}

a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: underline;
}

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

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

a:focus-visible,
button:focus-visible,
select:focus-visible,
.select_wrap:focus-within {
  outline: 2px;
}

.select_wrap:focus-within {
  outline: 2px;
}

/* タブレット以下 */
/* 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: "icomoon";
  src: url("../../common/font/iconmoon/icomoon.eot?9csyn6");
  src: url("../../common/font/iconmoon/icomoon.eot?9csyn6#iefix") format("embedded-opentype"), url("../../common/font/iconmoon/icomoon.ttf?9csyn6") format("truetype"), url("../../common/font/iconmoon/icomoon.woff?9csyn6") format("woff"), url("../../common/font/iconmoon/icomoon.svg?9csyn6#icomoon") 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: "icomoon" !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_shoppigbug:before {
  content: "\e900";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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,
.icon_brank: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: #224267;
  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: #224267;
  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 {
  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 {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      //	c_table
  ===============================================================*/
}
.c_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,
.c_table td {
  padding: 1rem;
  border: solid 1px #ccc;
  border-bottom: 0;
}
.c_table th {
  font-weight: bold;
  border-right: 0;
  background: rgba(0, 0, 0, 0.05);
}
.c_table td + td {
  border-left: 0;
}
.c_table tr:nth-child(odd) {
  background: #fff;
}
.c_table tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 800px) {
  .c_table {
    overflow-y: scroll;
  }
  .c_table table {
    padding: 0;
    margin-top: 0px;
    min-width: 200vw;
  }
  .c_table th,
  .c_table td {
    padding: 0.5rem;
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .c_table tr:nth-child(odd),
  .c_table tr:nth-child(even) {
    background: #fff;
  }
}

[class^=c_btn] a,
[class^=c_btn] a:hover {
  text-decoration: none;
}

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

    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 #224267;
  background-color: #fff;
  color: #224267;
}
.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 #224267;
  background-color: #224267;
  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: #224267;
  padding: 1.5rem 0;
  border-radius: 3px;
  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: #38537A;
}
.c_btn .btn_caption, .c_btn_round .btn_caption {
  text-align: center;
  font-size: 80%;
}
.c_btn a + .btn_caption, .c_btn_round a + .btn_caption {
  margin-top: 1rem;
}
@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 2px #224267;
  background-color: transparent;
  color: #224267;
  padding: calc(1.5rem - 2px) 0;
}
.c_btn_line a:hover {
  border: solid 2px #38537A;
}
@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(34, 66, 103, 0.5);
  background-color: transparent;
  color: #224267;
  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_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;
  /* タブレット */
  /* 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;
  }
}

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

    c_txtlink

===============================================================*/
.c_txtlink {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      //	c_txtlink
  ===============================================================*/
}
.c_txtlink a {
  color: #000;
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding-bottom: 0px;
}
.c_txtlink a::before, .c_txtlink a::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: currentColor;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c_txtlink a::before {
  width: 0%;
  left: 0;
  right: auto;
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}
.c_txtlink a:hover {
  color: #333;
}
.c_txtlink a:hover::after {
  width: 0;
}
.c_txtlink a:hover::before {
  width: 100%;
}
.c_txtlink [class^=icon_],
.c_txtlink [class*=" icon_"] {
  right: 0;
}
.c_txtlink .icon_arw {
  vertical-align: -1px;
}
.c_txtlink:has([class^=icon_]) a {
  padding-right: 1.5em;
}
/*===============================================================

	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 #666;
}
.c_datalist dt,
.c_datalist dd {
  border-top: solid 1px #666;
  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 {
  position: relative;
  padding-left: 1.6rem;
}
.c_ul_list li::after {
  content: "";
  position: absolute;
  top: 0.95rem;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #224267;
}
.c_ul_list li + li {
  margin-top: 0.5rem;
}
@media screen and (max-width: 800px) {
  .c_ul_list li {
    padding-left: 1.5rem;
  }
  .c_ul_list li::after {
    top: 1.15rem;
    width: 0.5rem;
    height: 0.5rem;
  }
  .c_ul_list li + li {
    margin-top: 0.5rem;
  }
}

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

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

	_headline.scss 2021/9/24

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

/*-------------------------------------------------------------
	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: 5rem;
  }
}

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

/*-------------------------------------------------------------
	lv_2	
-------------------------------------------------------------*/
.lv_2 .title {
  font-size: 2.5rem;
}
.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: 2.5rem;
  }
  .lv_2 .lead {
    font-size: 1.8rem;
  }
  .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.5rem;
  }
}

/*-------------------------------------------------------------
	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: 1rem;
  }
}

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

	pankuzu

===============================================================*/
.pankuzu {
  text-align: left;
  padding: 0;
  padding-top: 50px;
  background-color: #fff;
  /* タブレット */
  /* 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: #224267;
}
.pankuzu li a:hover {
  color: #c00;
}
.pankuzu li a::after {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  border-right: solid 1px #224267;
  border-bottom: solid 1px #224267;
  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 5vw;
    padding-bottom: 0;
  }
  .pankuzu h1,
  .pankuzu li {
    padding-left: 1.5vw;
    font-size: 3vw;
  }
  .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_label

===============================================================*/
.c_label, .c_label_invert {
  display: inline-block;
  border: solid 1px #000;
  padding: 0.05em 0.5em 0.1em 0.5em;
  font-size: 75%;
  -webkit-transform: translateY(-0.15em);
          transform: translateY(-0.15em);
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
/*===============================================================
背景あり
===============================================================*/
.c_label_invert {
  background-color: #000;
  color: #FFF;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
/*===============================================================

    c_column

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

/*-------------------------------------------------------------
    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;
  }
}

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

	c_topics_list

===============================================================*/
.c_topics_list {
  border-bottom: solid 1px #666;
  /*-------------------------------------------------------------
      ラベル色	
  -------------------------------------------------------------*/
}
.c_topics_list a {
  color: #224267;
  text-decoration: none;
}
.c_topics_list a:hover {
  color: #38537A;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.05);
}
.c_topics_list .item {
  border-top: solid 1px #666;
}
.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 .date,
.c_topics_list .text {
  color: #224267;
}
.c_topics_list .date:hover .text,
.c_topics_list .link:hover .text {
  color: #38537A;
}
.c_topics_list .date {
  width: 130px;
}
.c_topics_list .label {
  margin-right: 30px;
  margin-left: 15px;
  width: 10rem;
  height: 2.5rem;
  border-radius: 1.25rem;
  overflow: hidden;
  background-color: #000;
}
.c_topics_list .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%;
  color: #fff;
  padding-bottom: 1px;
}
.c_topics_list .text {
  width: calc(100% - 235px);
  text-decoration: none !important;
}
@media screen and (max-width: 800px) {
  .c_topics_list .link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 1.2rem 0.5rem;
  }
  .c_topics_list .date {
    width: calc(100% - 10rem);
    font-weight: bold;
    color: #224267;
    line-height: 1.4;
  }
  .c_topics_list .label {
    width: 9rem;
    height: 5vw;
    border-radius: 3vw;
    margin-left: auto;
    margin-right: 0;
    font-size: 1.2rem;
  }
  .c_topics_list .text {
    width: 100%;
    line-height: 1.5;
    margin-top: 0.5rem;
  }
}
.c_topics_list .label_red {
  background-color: #FA0F0C;
}
.c_topics_list .label_blue {
  background-color: #5987EF;
}
.c_topics_list .label_green {
  background-color: #4BA300;
}
.c_topics_list .label_brown {
  background-color: #724141;
}
.c_topics_list .label_orange {
  background-color: #E69901;
}

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

c_sns_link

===============================================================*/
.c_sns_link {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_sns_link .icon_sns_instagram,
.c_sns_link .icon_sns_facebook,
.c_sns_link .icon_sns_x {
  display: inline-block;
  -webkit-transform: translateY(0) scale(1.5);
          transform: translateY(0) scale(1.5);
  padding-right: 0.2em;
}
.c_sns_link .icon_shoppigbug {
  display: inline-block;
  -webkit-transform: translateY(0) scale(1.4);
          transform: translateY(0) scale(1.4);
  padding-right: 0.2em;
}
.c_sns_link .c_txtlink:has([class^=icon_]) a {
  padding-right: 0;
}
.c_sns_icons {
  margin-top: 1em;
  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;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_sns_icons li + li {
  margin-left: 1em;
}
.c_sns_icons li {
  font-size: 3rem;
}
.c_sns_icons .icon_sns_instagram,
.c_sns_icons .icon_sns_facebook,
.c_sns_icons .icon_sns_x {
  display: inline-block;
  -webkit-transform: translateY(0) scale(1.5);
          transform: translateY(0) scale(1.5);
}
.c_sns_icons a:hover {
  opacity: 0.7;
}
/* |||||||||| */
/*===============================================================

	_faq.scss

===============================================================*/
/*---------------------------------------------------------------
	section_faq
---------------------------------------------------------------*/
.section_faq {
  /* TABLET */
  /* SP */
}
.section_faq .faq_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 2.2rem;
  font-weight: 500;
}
.section_faq .faq_text {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 1070px) {
  .section_faq .faq_title {
    font-size: 2vw;
  }
  .section_faq .faq_title::before {
    width: 3.11vw;
    height: 3.11vw;
    margin-right: 1.94vw;
  }
  .section_faq .faq_text {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 800px) {
  .section_faq .section_inner {
    padding: 10vw 5vw;
  }
  .section_faq .title {
    font-size: 5vw;
  }
  .section_faq .content_faq {
    margin: 7.5vw auto 0;
  }
  .section_faq .faq_title {
    font-size: 3.8vw;
  }
  .section_faq .faq_title::before {
    width: 7vw;
    height: 7vw;
    margin-right: 4vw;
  }
  .section_faq .faq_text {
    font-size: 3.8vw;
    line-height: 1.8;
  }
}

/*---------------------------------------------------------------
	accordion
---------------------------------------------------------------*/
.accordion {
  background-color: #fff;
  border-radius: 3px;
  overflow: hidden;
  /* TABLET */
  /* SP */
}
.accordion + .accordion {
  margin-top: 20px;
}
.accordion_header {
  position: relative;
  padding: 30px 25px;
  cursor: pointer;
}
.accordion_header::before, .accordion_header::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  width: 20px;
  height: 1px;
  background: #333;
  border-radius: 50vh;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.accordion_header::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.accordion_header.active::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.accordion_body {
  position: relative;
}
.accordion_body::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: calc(100% - 50px);
  height: 1px;
  background: #ddd;
}
.accordion_content {
  padding: 30px 25px 35px;
}
@media screen and (max-width: 1070px) {
  .accordion + .accordion {
    margin-top: 1.94vw;
  }
  .accordion_header {
    padding: 2.91vw 2.43vw;
  }
  .accordion_header::before, .accordion_header::after {
    right: 2.43vw;
    width: 1.94vw;
  }
  .accordion_body::after {
    width: calc(100% - 4.85vw);
  }
  .accordion_content {
    padding: 2.91vw 2.43vw 3.4vw;
  }
}
@media screen and (max-width: 800px) {
  .accordion + .accordion {
    margin-top: 2vw;
  }
  .accordion_header {
    padding: 5vw 12vw 5vw 5vw;
  }
  .accordion_header::before, .accordion_header::after {
    right: 4vw;
    width: 4.2vw;
  }
  .accordion_body::after {
    width: calc(100% - 6vw);
  }
  .accordion_content {
    padding: 4.5vw 5vw 5vw;
  }
}

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

c_offer_scroll

===============================================================*/
.c_offer_scroll {
  position: fixed;
  bottom: -30rem;
  right: 2rem;
  width: 1rem;
  height: 50rem;
  z-index: 2;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_offer_scroll .txt {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  font-size: 1.2rem;
}
.c_offer_scroll::before {
  content: "";
  width: 1px;
  height: 40rem;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(35, 66, 103)), to(rgba(35, 66, 103, 0)));
  background: linear-gradient(to bottom, rgb(35, 66, 103) 0%, rgba(35, 66, 103, 0) 100%);
  position: absolute;
  top: 4em;
  left: 0;
  right: 0;
  margin: auto;
}
.c_offer_scroll::after {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #224267;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-animation: kf_scroll_offer 4s ease-in;
          animation: kf_scroll_offer 4s ease-in;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@media screen and (max-width: 800px) {
  .c_offer_scroll {
    right: 3vw;
  }
  .c_offer_scroll .txt {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    font-size: 2.5vw;
  }
}

@-webkit-keyframes kf_scroll_offer {
  0% {
    top: 4em;
    opacity: 0;
  }
  10% {
    top: 5em;
    opacity: 1;
  }
  30% {
    top: 30em;
    opacity: 0;
  }
  100% {
    top: 80em;
    opacity: 0;
  }
}

@keyframes kf_scroll_offer {
  0% {
    top: 4em;
    opacity: 0;
  }
  10% {
    top: 5em;
    opacity: 1;
  }
  30% {
    top: 30em;
    opacity: 0;
  }
  100% {
    top: 80em;
    opacity: 0;
  }
}
/*===============================================================

c_soraca_item

===============================================================*/
.c_soraca_item {
  text-align: center;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_soraca_item .photo {
  border-radius: 3px;
  overflow: hidden;
}
.c_soraca_item .item_name {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 1.5rem;
}
.c_soraca_item .item_read {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 0.5rem;
}
.c_soraca_item .item_price {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 0.5rem;
}
.c_soraca_item .c_btn, .c_soraca_item .c_btn_round {
  width: 200px;
  margin-top: 2rem;
  display: block;
}
.c_soraca_item .c_btn .label, .c_soraca_item .c_btn_round .label {
  font-size: 1.6rem;
}
.c_soraca_item.grid_2_1 .photo {
  padding: 0 8rem;
  background-color: #fff;
}
@media screen and (max-width: 800px) {
  .c_soraca_item .item_name {
    font-size: 4vw;
    margin-top: 3vw;
  }
  .c_soraca_item .item_read {
    font-size: 3.8vw;
    margin-top: 2vw;
  }
  .c_soraca_item .item_price {
    font-size: 3.8vw;
    margin-top: 0.47vw;
  }
  .c_soraca_item .photo {
    padding: 0 18vw;
    margin: 0 auto;
    background-color: #fff;
  }
  .c_soraca_item.grid_2_1 .photo {
    padding: 0 18vw;
  }
}

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;
  /* タブレット以下 */
  /* for tablet max-width: 1030px */
  /* SP向けレイアウトの指定：～736px */
  /* for SP max-width: 736px */
}
.form_content .form_table dt {
  font-weight: bold;
  padding: 2.5rem 0 2rem;
  margin-right: 2%;
  font-size: 2rem;
}
.form_content .form_table dt span {
  padding-left: 3px;
}
.form_content .form_table dd {
  width: 100%;
}
.form_content .form_table dd + dt {
  margin-top: 4rem;
}
.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;
}
@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 .phase_confirm .form_table {
  margin: 0;
  /* タブレット以下 */
  /* 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: 33%;
}
.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;
}
.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 + 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.2rem;
  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 {
  display: block;
  text-align: center;
  margin: 0 auto;
  margin-top: 2em;
}

/*　チェックボックスの装飾　*/
.checkbox label,
.agreebox label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
}

.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: 60px 0 60px 0;
  margin: 0;
  /* タブレット以下 */
  /* for tablet max-width: 1030px */
  /* SP向けレイアウトの指定：～736px */
  /* for SP max-width: 736px */
}
.submit input {
  width: 400px;
  margin: 0 auto;
  padding: 20px 0;
  display: block;
  color: #fff !important;
  font-size: 22px;
  line-height: 1;
  font-weight: bold;
  text-decoration: none;
  border: 0;
  border-radius: 3px;
  background-color: #224267 !important;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  cursor: pointer;
  -webkit-appearance: none;
  border: solid 1px #224267;
}
.submit input:hover {
  background-color: #38537A !important;
  border: solid 1px #38537A !important;
}
.submit .cap {
  color: #666;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
  margin-top: 40px;
}
@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;
  }
}

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

c_loader

===============================================================*/
.c_loader {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 9999;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_loader::after {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  content: "";
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9997;
}
.c_loader .spinner {
  width: 30px;
  height: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid rgba(34, 66, 103, 0.5);
  border-top-color: rgba(34, 66, 103, 0.7);
  border-radius: 50%;
  -webkit-animation: loader_animarion 1s linear infinite;
          animation: loader_animarion 1s linear infinite;
  position: relative;
  z-index: 9999;
}
.c_loader .txt {
  text-align: center;
  color: #224267;
  font-size: 1.2rem;
  position: relative;
  z-index: 9999;
  margin-top: 0.1em;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}
@-webkit-keyframes loader_animarion {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes loader_animarion {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.c_loader.loaded .txt,
.c_loader.loaded .spinner {
  opacity: 0;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  -webkit-transform: scale(2);
          transform: scale(2);
}
.c_loader.loaded::after {
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media screen and (max-width: 800px) {
  .c_loader .txt {
    font-size: 3vw;
  }
}

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

	レイアウト
	_rayout.scss

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

.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 3rem;
  }
}
@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 3rem;
  }
  .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 3rem;
  }
  .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 {
  display: block;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section {
  width: 100%;
  position: relative;
}

.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: 8vw;
    padding-right: 8vw;
  }
}

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

	content 
	個別のコンテンツ

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

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

.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: 8rem;
  }
  .headline + .content {
    margin-top: 2.5rem;
  }
  .content + .headline {
    margin-top: 5rem;
  }
  .content .content + *,
  .content * + .content {
    margin-top: 4rem;
  }
  .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: 5rem;
}
.block p + p {
  margin-top: 1em;
}
@media screen and (max-width: 800px) {
  .block + .block_title {
    margin-top: 4rem;
  }
  .block_title + .block {
    margin-top: 1.2rem;
  }
  .block + .block {
    margin-top: 3.2rem;
  }
}

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

    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: 2.4rem;
  }
}

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

	変数

===============================================================*/
.body_fixed {
  position: fixed;
}

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

	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;
  color: #000;
  background-color: #F1F2F3;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  header_block
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  body_block
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  footer_block
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	btn_close_navigation_panel
  -------------------------------------------------------------*/
  /*===============================================================
  	//	navigation_panel
  ===============================================================*/
}
.menu_open .navigation_panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
}
.menu_show .navigation_panel {
  opacity: 1;
}
.navigation_panel .navigation_panel_inner {
  max-width: 1070px;
  min-width: 720px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
  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;
}
.menu_show .navigation_panel .navigation_panel_inner {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.menu_hide .navigation_panel .navigation_panel_inner {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
}
@media screen and (max-width: 1600px) {
  .navigation_panel {
    padding: 0 3rem;
  }
}
@media screen and (max-width: 800px) {
  .navigation_panel {
    padding: 0;
    overflow-y: scroll;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .navigation_panel .navigation_panel_inner {
    max-width: 100%;
    min-width: 100%;
    height: auto;
    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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.navigation_panel .header_block {
  width: 60%;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.navigation_panel .header_block .menu_kv {
  width: 100%;
}
.navigation_panel .header_block .menu_kv img {
  width: 100%;
  height: auto;
}
.navigation_panel .header_block .site_title {
  width: 37rem;
  margin-top: 2rem;
  margin-left: -1rem;
}
.navigation_panel .header_block .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-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #224267;
  text-decoration: none;
}
.navigation_panel .header_block .site_title a img {
  max-width: 27rem;
  display: block;
  margin-top: -4rem;
}
.navigation_panel .header_block .site_title a strong {
  display: block;
  font-size: 2rem;
  padding-left: 1rem;
}
.navigation_panel .header_block .sub_title {
  font-size: 2rem;
  color: #224267;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-left: 1rem;
  padding-top: 0.5rem;
}
@media screen and (max-width: 800px) {
  .navigation_panel .header_block {
    width: 100%;
    height: 50vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
  .navigation_panel .header_block .menu_kv {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    height: auto;
    min-height: inherit;
  }
  .navigation_panel .header_block .menu_kv img {
    height: auto;
    min-height: inherit;
  }
  .navigation_panel .header_block .site_title {
    width: 70vw;
    margin-top: 2vw;
    margin-left: -1rem;
  }
  .navigation_panel .header_block .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-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #224267;
    text-decoration: none;
  }
  .navigation_panel .header_block .site_title a img {
    max-width: 50vw;
    display: block;
    margin-top: -6vw;
  }
  .navigation_panel .header_block .site_title a strong {
    display: block;
    font-size: 4vw;
    padding-left: 1rem;
  }
  .navigation_panel .header_block .sub_title {
    font-size: 4vw;
    margin-left: 0rem;
    margin-top: 2vw;
    text-align: center;
  }
}
.navigation_panel .body_block {
  width: calc(40% - 5rem);
  font-family: "Arial", "ヒラギノ角ゴシック", "メイリオ";
  /* タブレット */
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.navigation_panel .body_block .menu {
  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;
  margin-top: -3rem;
}
.navigation_panel .body_block .menu a {
  color: #000;
  color: #224267;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.2em;
}
.navigation_panel .body_block .menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #000;
}
.navigation_panel .body_block .menu .current a,
.navigation_panel .body_block .menu a:hover::after {
  width: 100%;
}
.navigation_panel .body_block .menu li {
  width: 50%;
  margin-top: 3rem;
}
.navigation_panel .body_block .c_btn, .navigation_panel .body_block .c_btn_round {
  width: 100%;
  max-width: 100%;
  margin-top: 5rem !important;
}
.navigation_panel .body_block .c_sns_link {
  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;
  margin-top: 3rem;
}
.navigation_panel .body_block .c_sns_link .sns_link + .sns_link {
  margin-left: 1em;
}
@media screen and (max-width: 1600px) {
  .navigation_panel .body_block {
    width: calc(40% - 3rem);
  }
}
@media screen and (max-width: 800px) {
  .navigation_panel .body_block {
    width: 100%;
    padding: 0 5vw;
    padding-bottom: 10vw;
  }
  .navigation_panel .body_block .menu {
    margin-top: 5vw;
    padding-top: 3vw;
    padding: 5vw;
    padding-top: 2vw;
    background-color: rgba(34, 66, 103, 0.1);
    border-radius: 3px;
  }
  .navigation_panel .body_block .menu li {
    margin-top: 3vw;
  }
  .navigation_panel .body_block .menu li a {
    font-size: 3.5vw;
    color: #224267;
  }
  .navigation_panel .body_block .menu li:nth-child(odd) {
    width: 60%;
  }
  .navigation_panel .body_block .menu li:nth-child(even) {
    width: 40%;
  }
  .navigation_panel .body_block .c_btn, .navigation_panel .body_block .c_btn_round {
    margin-top: 5vw !important;
  }
  .navigation_panel .body_block .c_sns_link {
    margin-top: 3vw;
  }
}
.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: #000;
  border: solid 1px #000;
  padding: 1rem 3rem;
  text-align: center;
}
.navigation_panel .btn_close_navigation_panel a:hover {
  opacity: 0.6;
}
/*===============================================================

	変数

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

hamburger_menu

===============================================================*/
.hamburger_menu {
  position: fixed;
  z-index: 500;
  top: 3.5rem;
  right: 3rem;
  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: 800px) {
  .hamburger_menu {
    top: 4vw;
    right: 1.5rem;
    width: 4rem;
    height: 4rem;
  }
  .hamburger_menu .hamburger_menu_inner {
    width: 4rem;
    height: 4rem;
  }
}
.hamburger_menu .hamburger_menu_btn_bg {
  background-color: none;
  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;
  border-radius: 5rem;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.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;
  cursor: pointer;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.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: 4rem;
  height: 1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.hamburger_menu .menu_btn::after, .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::before, .hamburger_menu .menu_btn_no_txt::before {
  background-color: #000;
  -webkit-transform: translateY(-12px) translateX(0px);
          transform: translateY(-12px) translateX(0px);
}
.hamburger_menu .menu_btn:hover::after, .hamburger_menu .menu_btn_no_txt:hover::after {
  -webkit-transform: translateY(-4px) translateX(3px);
          transform: translateY(-4px) translateX(3px);
}
.hamburger_menu .menu_btn:hover::before, .hamburger_menu .menu_btn_no_txt:hover::before {
  -webkit-transform: translateY(-12px) translateX(-3px);
          transform: translateY(-12px) translateX(-3px);
}
.hamburger_menu .menu_btn:hover, .hamburger_menu .menu_btn_no_txt:hover {
  text-decoration: none;
}
.menu_open .hamburger_menu .menu_btn::after, .menu_open .hamburger_menu .menu_btn_no_txt::after, .menu_open .hamburger_menu .menu_btn::before, .menu_open .hamburger_menu .menu_btn_no_txt::before {
  width: 3rem;
}
.menu_open .hamburger_menu .menu_btn::after, .menu_open .hamburger_menu .menu_btn_no_txt::after {
  -webkit-transform: rotate(-45deg) translate(5px, -5px);
          transform: rotate(-45deg) translate(5px, -5px);
}
.menu_open .hamburger_menu .menu_btn::before, .menu_open .hamburger_menu .menu_btn_no_txt::before {
  -webkit-transform: rotate(45deg) translate(-5px, -5px);
          transform: rotate(45deg) translate(-5px, -5px);
}
.menu_open .hamburger_menu .menu_btn:hover::after, .menu_open .hamburger_menu .menu_btn_no_txt:hover::after, .menu_open .hamburger_menu .menu_btn:hover::before, .menu_open .hamburger_menu .menu_btn_no_txt:hover::before {
  width: 4rem;
}
.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(-45deg);
          transform: rotate(-45deg);
}
.menu_open .hamburger_menu .menu_btn_no_txt::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
/*===============================================================

    pankuzu

===============================================================*/
.pankuzu {
  text-align: left;
  padding: 1rem 0;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
      //	pankuzu
  ===============================================================*/
}
.pankuzu li {
  display: inline-block;
  padding-left: 1rem;
  font-family: "Arial", "ヒラギノ角ゴシック", "メイリオ";
}
.pankuzu li:first-child {
  padding-left: 0;
}
.pankuzu li a {
  text-decoration: none;
  position: relative;
  padding-right: 2rem;
  color: #000;
  font-weight: bold;
}
.pankuzu li a:hover {
  color: #224267;
}
.pankuzu li a:after {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  border-right: solid 1px #666;
  border-bottom: solid 1px #666;
  width: 0.6rem;
  height: 0.6rem;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /*	逆向き
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  */
}
@media screen and (max-width: 800px) {
  .pankuzu {
    padding: 1vw 5vw 2vw 5vw;
  }
  .pankuzu .full_width {
    padding: 0;
  }
  .pankuzu li {
    padding-left: 0.5vw;
  }
}

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

	_header.scss 2021/10/4

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

	header

===============================================================*/
.header {
  position: relative;
  height: 12rem;
  padding: 0 3rem;
  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;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
  site_logo
  ===============================================================*/
  /*===============================================================
  navigation
  ===============================================================*/
}
@media screen and (max-width: 1600px) {
  .header {
    padding: 0 3rem;
  }
}
@media screen and (max-width: 800px) {
  .header {
    padding: 3vw;
    height: 18vw;
  }
}
.header .site_logo {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.header .site_logo .site_title {
  width: 29rem;
}
.header .site_logo .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-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #224267;
  text-decoration: none;
}
.header .site_logo .site_title a img {
  max-width: 19rem;
  display: block;
}
.header .site_logo .site_title a strong {
  display: block;
  font-size: 2rem;
  padding-left: 1rem;
  margin-top: 2rem;
}
.header .site_logo .sub_title {
  color: #224267;
  font-size: 1.4rem;
  line-height: 1.6;
  margin-left: 0.5rem;
}
@media screen and (max-width: 800px) {
  .header .site_logo .site_title {
    width: 80vw;
  }
  .header .site_logo .site_title a img {
    max-width: 35vw;
  }
  .header .site_logo .site_title a strong {
    display: block;
    font-size: 4vw;
    padding-left: 3vw;
    margin-top: 4vw;
  }
  .header .site_logo .sub_title {
    font-size: 3.5vw;
    margin-top: 1vw;
    display: none;
  }
}
.header .navigation {
  padding-right: 7rem;
  margin-left: auto;
  /* SP */
  /* for SP */
}
.header .navigation ul {
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .navigation ul + ul {
  margin-top: 0.5rem;
}
.header .navigation li + li {
  margin-left: 1.5em;
}
.header .navigation a {
  text-decoration: none;
  position: relative;
  padding-bottom: 0.1em;
  font-family: "Arial", "ヒラギノ角ゴシック", "メイリオ";
}
.header .navigation a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #000;
}
.header .navigation .current a,
.header .navigation a:hover::after {
  width: 100%;
}
@media screen and (max-width: 1600px) {
  .header .navigation .menu {
    display: none;
  }
}
@media screen and (max-width: 1070px) {
  .header .navigation .c_sns_link {
    display: none;
  }
}
/*===============================================================

	_footer.scss 2021/10/4

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

	footer

===============================================================*/
.footer {
  position: relative;
  z-index: 10;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
  footer_contents
  ===============================================================*/
  /*===============================================================
  head_block
  ===============================================================*/
  /*===============================================================
  body_block
  ===============================================================*/
  /*===============================================================
  fotter_bottom
  ===============================================================*/
  /*===============================================================
  footer_bnrs
  ===============================================================*/
}
.footer .footer_contents {
  background-color: #224267;
  padding: 5rem 0;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.footer .footer_contents .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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .footer .footer_contents {
    padding: 8vw 5vw;
  }
  .footer .footer_contents .full_width {
    padding: 0;
  }
  .footer .footer_contents .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.footer .head_block {
  width: 30rem;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.footer .head_block .logo {
  width: 20rem;
}
.footer .head_block .read {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #fff;
  margin-top: 1rem;
}
.footer .head_block .c_sns_link {
  margin-top: 1em;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0.3em;
}
.footer .head_block .c_sns_link li + li {
  margin-left: 0.5em;
}
.footer .head_block .c_sns_link a {
  color: #fff;
  font-size: 2.5rem;
}
.footer .head_block .c_sns_link a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 800px) {
  .footer .head_block {
    width: 100%;
    text-align: center;
    margin-top: 8vw;
    padding-top: 8vw;
    border-top: solid 1px rgba(255, 255, 255, 0.3);
  }
  .footer .head_block .logo {
    width: 35vw;
    margin: 0 auto;
  }
  .footer .head_block .read {
    font-size: 3.5vw;
    margin-top: 1rem;
  }
  .footer .head_block .c_sns_link {
    margin-top: 8vw;
    padding-top: 8vw;
    border-top: solid 1px rgba(255, 255, 255, 0.3);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer .head_block .c_sns_link li + li {
    margin-left: 1em;
  }
}
.footer .body_block {
  width: calc(100% - 40rem);
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.footer .body_block .menu {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: -1em;
}
.footer .body_block .menu li {
  width: 33%;
  margin-top: 1em;
  font-family: "Arial", "ヒラギノ角ゴシック", "メイリオ";
}
.footer .body_block .menu a {
  color: #fff;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.2em;
}
.footer .body_block .menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: #fff;
}
.footer .body_block .menu .current a,
.footer .body_block .menu a:hover::after {
  width: 100%;
}
.footer .body_block .menu .caption {
  color: #fff;
  font-size: 70%;
  display: block;
  margin-top: 0.3em;
}
@media screen and (max-width: 1070px) {
  .footer .body_block {
    width: calc(100% - 30rem);
  }
}
@media screen and (max-width: 800px) {
  .footer .body_block {
    width: 100%;
  }
  .footer .body_block .menu {
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: -1em;
  }
  .footer .body_block .menu li {
    width: 50%;
    margin-top: 1em;
  }
  .footer .body_block .menu a {
    color: #fff;
    text-decoration: none;
    position: relative;
    padding-bottom: 0.2em;
    font-size: 3.5vw;
  }
  .footer .body_block .menu a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    background-color: #fff;
  }
  .footer .body_block .menu .current a,
  .footer .body_block .menu a:hover::after {
    width: 100%;
  }
  .footer .body_block .menu .caption {
    color: #fff;
    font-size: 70%;
    display: block;
    margin-top: 0.3em;
  }
}
.footer .fotter_bottom {
  padding: 1rem 3rem;
  background-color: #fff;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.footer .fotter_bottom .link {
  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;
  color: #000;
  font-family: "Arial", "ヒラギノ角ゴシック", "メイリオ";
}
.footer .fotter_bottom .link li + li {
  margin-left: 2em;
}
.footer .fotter_bottom .link .copyright {
  margin-right: 0;
  margin-left: auto;
}
.footer .fotter_bottom .link a {
  color: #000;
  text-decoration: none;
}
.footer .fotter_bottom .link a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 800px) {
  .footer .fotter_bottom {
    padding: 2vw 5vw;
  }
  .footer .fotter_bottom .link {
    font-family: "Arial", "ヒラギノ角ゴシック", "メイリオ";
    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;
    letter-spacing: normal;
  }
  .footer .fotter_bottom .link li {
    font-size: 3.2vw;
  }
  .footer .fotter_bottom .link li + li {
    margin-left: 1em;
  }
  .footer .fotter_bottom .link .copyright {
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }
  .footer .fotter_bottom .link a {
    color: #000;
    text-decoration: none;
  }
  .footer .fotter_bottom .link a:hover {
    opacity: 0.7;
  }
}
.footer .footer_bnrs {
  width: 100%;
  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;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.footer .footer_bnrs .bnr {
  width: 33.3%;
  cursor: pointer;
}
.footer .footer_bnrs .bnr a {
  display: block;
  padding: 5rem;
  background-image: url(/common/images/navigation/footer_bnr_artist.jpg);
  background-size: cover;
  text-decoration: none;
  color: #224267;
  text-align: center;
}
.footer .footer_bnrs .bnr a:hover .label {
  background-color: rgb(255, 255, 255);
}
.footer .footer_bnrs .bnr .label {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px;
}
.footer .footer_bnrs .bnr .label_inner {
  border: solid 1px rgba(34, 66, 103, 0.5);
  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;
  min-height: 22rem;
}
.footer .footer_bnrs .bnr .sub_txt {
  font-size: 1.6rem;
}
.footer .footer_bnrs .bnr .main_txt {
  font-size: 3rem;
}
.footer .footer_bnrs .bnr .logo {
  width: 15rem;
}
.footer .footer_bnrs .bnr .logo + .sub_txt {
  font-size: 1.4rem;
  margin-top: 1rem;
}
.footer .footer_bnrs .remains_glass_soraca a {
  background-image: url(/common/images//navigation/footer_bnr_soraca.jpg);
}
.footer .footer_bnrs .information a {
  background-image: url(/common/images//navigation/footer_bnr_information.jpg);
  background-position: center center;
}
@media screen and (max-width: 1070px) {
  .footer .footer_bnrs .bnr a {
    padding: 3rem;
  }
  .footer .footer_bnrs .bnr .label {
    padding: 8px;
  }
  .footer .footer_bnrs .bnr .label_inner {
    border: solid 1px #224267;
    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;
    min-height: 20vw;
  }
  .footer .footer_bnrs .bnr .sub_txt {
    font-size: 1.6vw;
  }
  .footer .footer_bnrs .bnr .main_txt {
    font-size: 3.3vw;
  }
  .footer .footer_bnrs .bnr .logo {
    width: 16vw;
  }
  .footer .footer_bnrs .bnr .logo + .sub_txt {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 800px) {
  .footer .footer_bnrs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer .footer_bnrs .bnr {
    width: 100%;
  }
  .footer .footer_bnrs .bnr a {
    padding: 5vw;
  }
  .footer .footer_bnrs .bnr .label {
    padding: 2vw;
  }
  .footer .footer_bnrs .bnr .label_inner {
    min-height: inherit;
    padding: 5vw 0;
  }
  .footer .footer_bnrs .bnr .sub_txt {
    font-size: 3.5vw;
    line-height: 1.5;
  }
  .footer .footer_bnrs .bnr .main_txt {
    font-size: 5.5vw;
  }
  .footer .footer_bnrs .bnr .logo {
    width: 25vw;
  }
  .footer .footer_bnrs .bnr .logo + .sub_txt {
    font-size: 3.2vw;
  }
}

/*===============================================================
	_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;
  }
}

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

local_menu

===============================================================*/
.local_menu {
  padding-top: 5rem;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.local_menu ul {
  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;
}
.local_menu li + li {
  margin-left: 2em;
}
.local_menu a {
  display: block;
  background-color: #fff;
  color: #224267;
  text-decoration: none;
  padding: 0.1em 1em;
  border-radius: 2em;
}
.local_menu a:hover {
  background-color: #224267;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .local_menu {
    padding: 0 8vw;
    padding-top: 8vw;
  }
  .local_menu ul {
    margin-top: -3vw;
    margin-left: -1em;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .local_menu li {
    margin-top: 3vw;
    margin-left: 1em;
  }
  .local_menu li + li {
    margin-left: 1em;
  }
  .local_menu a {
    font-size: 3.8vw;
    padding: 1.5vw 3vw;
  }
}

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

section_introduction

===============================================================*/
.section_introduction {
  position: relative;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
  txt_block
  ===============================================================*/
}
.section_introduction .photo_txt_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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section_introduction .txt_block,
.section_introduction .photo_block {
  width: 50%;
}
.section_introduction .photo_block {
  height: 100vh;
}
.section_introduction .txt_block {
  padding: 0 5%;
}
.section_introduction .revers {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 1170px) {
  .section_introduction .photo_block {
    padding-right: 0;
  }
  .section_introduction .txt_block {
    padding: 0 50px;
  }
}
@media screen and (max-width: 1070px) {
  .section_introduction .photo_block {
    height: auto;
  }
  .section_introduction .photo_block img {
    -o-object-fit: cover;
       object-fit: cover;
    min-height: 80vh;
  }
}
@media screen and (max-width: 800px) {
  .section_introduction .revers,
  .section_introduction .photo_txt_wrp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section_introduction .txt_block,
  .section_introduction .photo_block {
    width: 100%;
  }
  .section_introduction .photo_block {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    height: 70vh;
  }
  .section_introduction .photo_block img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 70vh;
  }
  .section_introduction .txt_block {
    padding: 5vw;
    margin-top: -10vw;
    background-color: #fff;
    border-radius: 3px;
    z-index: 3;
  }
}
.section_introduction .txt_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;
  text-align: left;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_introduction .txt_block .title {
  font-size: 3rem;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #224267;
}
.section_introduction .txt_block .read {
  font-size: 2.5rem;
  margin-top: 1em;
}
.section_introduction .txt_block .c_txtlink a {
  font-size: 2rem;
}
@media screen and (max-width: 1070px) {
  .section_introduction .txt_block .title {
    font-size: 2.5vw;
  }
  .section_introduction .txt_block .read {
    font-size: 2vw;
    margin-top: 1.2vw;
  }
  .section_introduction .txt_block .c_txtlink a {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 800px) {
  .section_introduction .txt_block .title {
    font-size: 5vw;
  }
  .section_introduction .txt_block .read {
    font-size: 3.8vw;
    margin-top: 2vw;
  }
  .section_introduction .txt_block .c_txtlink a {
    font-size: 4vw;
  }
}

@media screen and (max-width: 800px) {
  .section_flow + .section_introduction .section_inner {
    padding-top: 0;
  }
}

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

section_flow

===============================================================*/
.section_flow {
  background-color: #687C9A;
  background-color: #224267;
  color: #fff;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
  head_block
  ===============================================================*/
  /*===============================================================
  body_block
  ===============================================================*/
}
.section_flow .c_txtlink a {
  color: #fff;
}
.section_flow .wide_width {
  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;
}
.section_flow .head_block {
  width: 10rem;
}
.section_flow .body_block {
  width: calc(100% - 10rem);
}
.section_flow .link_block {
  width: 100%;
  padding-top: 4em;
  text-align: right;
  margin-bottom: -5rem;
}
@media screen and (max-width: 1070px) {
  .section_flow .head_block {
    width: 7rem;
  }
  .section_flow .body_block {
    width: calc(100% - 7rem);
  }
}
@media screen and (max-width: 800px) {
  .section_flow .head_block,
  .section_flow .body_block {
    width: 100%;
  }
  .section_flow .link_block {
    margin-bottom: 0;
    text-align: center;
  }
}
.section_flow .head_block {
  width: 5rem;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  -webkit-text-combine: horizontal;
  -ms-text-combine-horizontal: all;
  text-combine-upright: all;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_flow .head_block .title {
  font-size: 2.5rem;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 1070px) {
  .section_flow .head_block {
    width: 3rem;
  }
}
@media screen and (max-width: 800px) {
  .section_flow .head_block {
    width: 100%;
    -ms-writing-mode: inherit;
    -webkit-writing-mode: inherit;
            writing-mode: inherit;
    -webkit-text-combine: inherit;
    -ms-text-combine-horizontal: inherit;
    text-combine-upright: inherit;
    text-align: center;
  }
  .section_flow .head_block .title {
    font-size: 5vw;
  }
}
.section_flow .body_block {
  /* SP */
  /* for SP */
}
.section_flow .body_block .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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-top: -5rem;
}
.section_flow .body_block .step {
  width: calc((100% - 10rem) / 6);
  position: relative;
  z-index: 2;
  margin-top: 5rem;
}
.section_flow .body_block .thumb {
  background-color: #fff;
  border-radius: 3px;
  overflow: hidden;
}
.section_flow .body_block .txt {
  margin-top: 1rem;
  font-size: 1.5rem;
  position: absolute;
}
.section_flow .body_block .number {
  position: absolute;
  top: 0.1em;
  left: 0.4em;
  font-size: 1.6rem;
  display: inline-block;
  border-bottom: solid 1px #224267;
  color: #224267;
}
@media screen and (max-width: 1070px) {
  .section_flow .body_block .step {
    width: calc((100% - 6rem) / 3);
  }
}
@media screen and (max-width: 800px) {
  .section_flow .body_block .flow {
    margin-top: 0;
  }
  .section_flow .body_block .step {
    width: calc((100% - 5vw) / 2);
    margin-top: 5vw;
  }
  .section_flow .body_block .thumb {
    padding: 2rem 1rem;
    background-color: #fff;
  }
  .section_flow .body_block .txt {
    margin-top: 1vw;
    font-size: 3.8vw;
    position: relative;
  }
  .section_flow .body_block .number {
    top: 0em;
    font-size: 3vw;
  }
}

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

	section_product_slider

===============================================================*/
.section_product_slider {
  padding: 5rem 0 15rem 0;
  overflow: hidden;
  /* タブレット */
  /* SP */
  /*===============================================================
  slider_txt_block_wrp
     ===============================================================*/
  /*-------------------------------------------------------------
  slider_txt_block_wrp	
     -------------------------------------------------------------*/
  /*===============================================================

  slider_txt_block_wrp carousel_slider

     ===============================================================*/
  /*-------------------------------------------------------------
  .silider_ui .pager a
     -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  .carousel_slider .slider .slide .photo
     -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  .carousel_slider .slider .slide .txt
     -------------------------------------------------------------*/
}
@media screen and (max-width: 1070px) {
  .section_product_slider {
    padding: 3rem 0 10rem 0;
  }
}
@media screen and (max-width: 800px) {
  .section_product_slider {
    padding: 0;
  }
}
.section_product_slider .slider_txt_block_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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: calc((100% - 1500px) / 2);
  position: relative;
  /* タブレット */
  /* for TABLET */
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_product_slider .slider_txt_block_wrp .title_block {
  width: 400px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.section_product_slider .slider_txt_block_wrp .slider_block {
  width: calc(100% - 440px);
}
.section_product_slider .slider_txt_block_wrp .slider_block .slider {
  margin: 0;
}
.section_product_slider .slider_txt_block_wrp .carousel_slider .slick-list {
  margin-right: -3rem;
  /* ガター分ネガティブマージン */
}
.section_product_slider .slider_txt_block_wrp .carousel_slider .slick-slide {
  margin-right: 3rem;
  /* ガター */
}
@media screen and (max-width: 1600px) {
  .section_product_slider .slider_txt_block_wrp .title_block {
    padding-left: 5rem;
  }
}
@media screen and (max-width: 1070px) {
  .section_product_slider .slider_txt_block_wrp {
    padding: 0 3rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .section_product_slider .slider_txt_block_wrp .title_block {
    width: 60%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0;
    padding-right: 5rem;
  }
  .section_product_slider .slider_txt_block_wrp .slider_block {
    width: 40%;
  }
}
@media screen and (max-width: 800px) {
  .section_product_slider .slider_txt_block_wrp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
  .section_product_slider .slider_txt_block_wrp .title_block {
    width: 100%;
  }
  .section_product_slider .slider_txt_block_wrp .slider_block,
  .section_product_slider .slider_txt_block_wrp .carousel_slider {
    width: 100%;
    padding-left: 0;
  }
  .section_product_slider .slider_txt_block_wrp .carousel_slider .slider {
    margin: 0;
  }
  .section_product_slider .slider_txt_block_wrp .carousel_slider .slick-list {
    margin-right: 0;
    /* ガター分ネガティブマージン */
  }
  .section_product_slider .slider_txt_block_wrp .carousel_slider .slick-slide {
    margin-right: 0;
    /* ガター */
  }
}
.section_product_slider .slider_txt_block_wrp .title_block {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_product_slider .slider_txt_block_wrp .title_block .logo {
  max-width: 350px;
  width: 80%;
  margin-left: -4rem;
}
.section_product_slider .slider_txt_block_wrp .title_block .logo a {
  display: block;
}
.section_product_slider .slider_txt_block_wrp .title_block .title {
  font-size: 2.5rem;
  line-height: 1.6;
  font-weight: bold;
  margin-top: 1em;
  color: #224267;
}
.section_product_slider .slider_txt_block_wrp .title_block .read {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 1em;
}
@media screen and (max-width: 1070px) {
  .section_product_slider .slider_txt_block_wrp .title_block .logo {
    margin-left: -2rem;
  }
}
@media screen and (max-width: 800px) {
  .section_product_slider .slider_txt_block_wrp .title_block {
    padding: 5vw;
  }
  .section_product_slider .slider_txt_block_wrp .title_block .logo {
    max-width: 40vw;
    margin-left: -3vw;
  }
  .section_product_slider .slider_txt_block_wrp .title_block .title {
    font-size: 5vw;
    margin-top: 0.5em;
  }
  .section_product_slider .slider_txt_block_wrp .title_block .read {
    font-size: 4vw;
  }
}
.section_product_slider .slider_txt_block_wrp {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_product_slider .slider_txt_block_wrp .slider_block {
  position: relative;
}
.section_product_slider .slider_txt_block_wrp .carousel_slider .slider {
  opacity: 0;
}
.section_product_slider .slider_txt_block_wrp .carousel_slider .slider .slide {
  width: 32rem;
  position: relative;
}
.section_product_slider .slider_txt_block_wrp .carousel_slider .slider .slide img {
  width: 100%;
}
@media screen and (max-width: 800px) {
  .section_product_slider .slider_txt_block_wrp .carousel_slider .slider .slide {
    width: 100%;
    padding: 5vw;
    padding-bottom: 15vw;
  }
  .section_product_slider .slider_txt_block_wrp .carousel_slider .slider .slide .photo {
    padding: 0 18vw;
    margin: 0 auto;
    background-color: #fff;
  }
}
.section_product_slider .slider_txt_block_wrp {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_product_slider .slider_txt_block_wrp .pager {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
}
.section_product_slider .slider_txt_block_wrp .prev {
  left: -5rem;
  display: none;
}
.section_product_slider .slider_txt_block_wrp .next {
  right: 5rem;
}
.section_product_slider .slider_txt_block_wrp .pager a {
  display: block;
  color: #224267;
  text-align: center;
  border: solid 1px #224267;
}
.section_product_slider .slider_txt_block_wrp .pager a:hover {
  text-decoration: none;
}
.section_product_slider .slider_txt_block_wrp .pager a {
  width: 50px;
  height: 50px;
  overflow: hidden;
  text-indent: -200%;
  position: relative;
  border-radius: 50%;
}
.section_product_slider .slider_txt_block_wrp .pager a:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.section_product_slider .slider_txt_block_wrp .pager a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-right: solid 1px #224267;
  border-bottom: solid 1px #224267;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(-45deg) translate(-2px, -2px);
          transform: rotate(-45deg) translate(-2px, -2px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section_product_slider .slider_txt_block_wrp .prev a:after {
  -webkit-transform: rotate(135deg) translate(-2px, -2px);
          transform: rotate(135deg) translate(-2px, -2px);
}
.section_product_slider .slider_txt_block_wrp .btn_more a {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 50px;
  line-height: 50px;
  border-radius: 25px;
}
@media screen and (max-width: 1070px) {
  .section_product_slider .slider_txt_block_wrp .prev {
    left: -2rem;
    display: block;
  }
  .section_product_slider .slider_txt_block_wrp .next {
    right: -2rem;
  }
}
@media screen and (max-width: 800px) {
  .section_product_slider .slider_txt_block_wrp .prev {
    left: 3vw;
  }
  .section_product_slider .slider_txt_block_wrp .next {
    right: 3vw;
  }
}
.section_product_slider .slider_txt_block_wrp {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_product_slider .slider_txt_block_wrp .carousel_slider .slider .slide .photo img {
  width: inherit;
  max-width: 100%;
  min-width: 100%;
  height: auto;
}
.section_product_slider .slider_txt_block_wrp {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_product_slider .slider_txt_block_wrp .carousel_slider .slider .slide .txt {
  text-align: center;
}
.section_product_slider .slider_txt_block_wrp .carousel_slider .slider .slide .txt .item_name {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 1.5rem;
}
.section_product_slider .slider_txt_block_wrp .carousel_slider .slider .slide .txt .item_read {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 0.5rem;
}
.section_product_slider .slider_txt_block_wrp .carousel_slider .slider .slide .txt .item_price {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 0.5rem;
}
.section_product_slider .slider_txt_block_wrp .carousel_slider .slider .slide .txt .c_btn, .section_product_slider .slider_txt_block_wrp .carousel_slider .slider .slide .txt .c_btn_round {
  width: 200px;
  margin-top: 2rem;
  display: block;
}
.section_product_slider .slider_txt_block_wrp .carousel_slider .slider .slide .txt .c_btn .label, .section_product_slider .slider_txt_block_wrp .carousel_slider .slider .slide .txt .c_btn_round .label {
  font-size: 1.6rem;
}
@media screen and (max-width: 800px) {
  .section_product_slider .slider_txt_block_wrp .carousel_slider .slider .slide .txt {
    height: auto;
  }
  .section_product_slider .slider_txt_block_wrp .carousel_slider .slider .slide .txt .item_name {
    font-size: 4vw;
    margin-top: 3vw;
  }
  .section_product_slider .slider_txt_block_wrp .carousel_slider .slider .slide .txt .item_read {
    font-size: 3.8vw;
    margin-top: 2vw;
  }
  .section_product_slider .slider_txt_block_wrp .carousel_slider .slider .slide .txt .item_price {
    font-size: 3.8vw;
    margin-top: 0.47vw;
  }
}

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

section_top_kv]

===============================================================*/
.section_top_kv {
  padding: 0 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 600px;
  height: calc(100vh - 12rem);
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
  title_block
  ===============================================================*/
  /*===============================================================
  txt_block
  ===============================================================*/
  /*===============================================================
  slick_slider
     ===============================================================*/
}
.section_top_kv .photo_block {
  width: 75%;
}
.section_top_kv .photo_block .fig img {
  height: calc(100vh - 12rem - 20rem);
  min-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 85%;
     object-position: 50% 85%;
}
.section_top_kv .txt_block {
  width: 25%;
  padding-top: 5%;
}
@media screen and (max-width: 800px) {
  .section_top_kv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    height: auto;
    min-height: inherit;
  }
  .section_top_kv .photo_block {
    width: 100%;
  }
  .section_top_kv .photo_block .fig img {
    height: auto;
    min-height: inherit;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section_top_kv .txt_block {
    width: 100%;
    margin-top: -5vw;
    padding-bottom: 8vw;
  }
}
.section_top_kv .title_block {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
  /*-------------------------------------------------------------
  site_title
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  sub_title
  -------------------------------------------------------------*/
}
.section_top_kv .title_block .site_title {
  width: 66rem;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_top_kv .title_block .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-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #224267;
  text-decoration: none;
  margin-top: -4rem;
  margin-left: -2rem;
}
.section_top_kv .title_block .site_title a img {
  max-width: 53rem;
  display: block;
}
.section_top_kv .title_block .site_title a strong {
  display: block;
  font-size: 2.8rem;
  padding-left: 1.5rem;
  margin-top: 8rem;
}
@media screen and (max-width: 1250px) {
  .section_top_kv .title_block .site_title {
    width: 41.6vw;
  }
  .section_top_kv .title_block .site_title a {
    margin-top: -2.4vw;
    margin-left: -1.6vw;
  }
  .section_top_kv .title_block .site_title a img {
    max-width: 33.6vw;
  }
  .section_top_kv .title_block .site_title a strong {
    font-size: 1.8vw;
    padding-left: 0.8vw;
    margin-top: 5.6vw;
  }
}
@media screen and (max-width: 800px) {
  .section_top_kv .title_block .site_title {
    width: 100%;
  }
  .section_top_kv .title_block .site_title a {
    margin-top: -5vw;
    margin-left: -5vw;
  }
  .section_top_kv .title_block .site_title a img {
    max-width: 55vw;
  }
  .section_top_kv .title_block .site_title a strong {
    font-size: 4vw;
    padding-left: 2vw;
    margin-top: 8vw;
  }
}
.section_top_kv .title_block .sub_title {
  color: #224267;
  font-size: 2rem;
  line-height: 1.6;
  margin-left: 0.5rem;
  margin-top: 1em;
}
@media screen and (max-width: 1250px) {
  .section_top_kv .title_block .sub_title {
    font-size: 1.5vw;
    margin-left: 0.4vw;
  }
}
@media screen and (max-width: 800px) {
  .section_top_kv .title_block .sub_title {
    font-size: 4vw;
    margin-left: 0.4vw;
    margin-top: 2vw;
  }
}
.section_top_kv .txt_block {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
  height: 100%;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_top_kv .txt_block .title {
  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;
}
.section_top_kv .txt_block .title span {
  color: #224267;
  display: block;
  font-size: 2.2rem;
  line-height: 2.2;
  text-align: left;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.section_top_kv .txt_block .title strong {
  font-size: 3rem;
  line-height: 1.8;
  text-align: left;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 1250px) {
  .section_top_kv .txt_block .title span {
    font-size: 1.9vw;
  }
  .section_top_kv .txt_block .title strong {
    font-size: 2.6vw;
  }
}
@media screen and (max-width: 800px) {
  .section_top_kv .txt_block .title span {
    font-size: 4vw;
  }
  .section_top_kv .txt_block .title strong {
    font-size: 5vw;
  }
}
.section_top_kv .slick_slider {
  opacity: 0;
  height: 0;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  position: relative;
  z-index: 1;
}
.section_top_kv .slick-initialized {
  opacity: 1;
  height: auto;
}
@-webkit-keyframes mv_slider_animation {}
@keyframes mv_slider_animation {}

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

section_page_header

===============================================================*/
.section_page_header {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
  txt_block
  ===============================================================*/
  /*===============================================================
  photo_split_block
  ===============================================================*/
}
@media screen and (max-width: 800px) {
  .section_page_header {
    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;
  }
}
.section_page_header .txt_block {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 0 4rem 0;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_page_header .txt_block .title span {
  font-size: 2rem;
  color: #224267;
  display: block;
}
.section_page_header .txt_block .title strong {
  font-size: 3rem;
}
.section_page_header .txt_block .description {
  margin-left: auto;
}
.section_page_header .txt_block .description p {
  text-align: right;
  line-height: 1.8;
}
@media screen and (max-width: 800px) {
  .section_page_header .txt_block {
    display: block;
    padding: 8vw;
    border-bottom: dashed 1px rgba(34, 66, 103, 0.5);
  }
  .section_page_header .txt_block .title span {
    font-size: 4vw;
  }
  .section_page_header .txt_block .title strong {
    font-size: 5vw;
  }
  .section_page_header .txt_block .description {
    margin-top: 4vw;
  }
  .section_page_header .txt_block .description p {
    text-align: left;
    font-size: 3.5vw;
    line-height: 1.8;
  }
}
.section_page_header .photo_split_block {
  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;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_page_header .photo_split_block .artist_kv01 {
  width: 64%;
}
.section_page_header .photo_split_block .artist_kv02 {
  width: 34.66%;
}
/*===============================================================

section_soraca_lineup

===============================================================*/
.section_soraca_lineup {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
  content_lineup
  ===============================================================*/
}
.section_soraca_lineup .grid_wrp {
  margin-top: -8rem;
}
.section_soraca_lineup .grid {
  margin-top: 8rem;
}
@media screen and (max-width: 800px) {
  .section_soraca_lineup .grid_wrp {
    margin-top: -8vw;
  }
  .section_soraca_lineup .grid {
    margin-top: 8vw;
  }
}
.section_soraca_lineup .content_lineup {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.js_zoom_area {
  margin-inline: auto;
}

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

section_story_kv

===============================================================*/
.section_story_kv {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================

  	carousel_slider

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

  loop_slider_gallery

  ===============================================================*/
}
.section_story_kv .carousel_slider {
  overflow: hidden;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	carousel_slider ここまで
  -------------------------------------------------------------*/
}
.section_story_kv .carousel_slider .slider {
  position: relative;
  opacity: 0;
}
.section_story_kv .carousel_slider .slider .slide img {
  width: 100%;
}
.section_story_kv .loop_slider_gallery {
  /* ガター */
  /* SP */
  /*-------------------------------------------------------------
      各スライド
  -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	動き 
  -------------------------------------------------------------*/
}
.section_story_kv .loop_slider_gallery .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section_story_kv .loop_slider_gallery .slick-slide {
  height: auto !important;
}
.section_story_kv .loop_slider_gallery .slick-list {
  margin-right: -10px;
  /*PC時、状況によっては不要*/
}
.section_story_kv .loop_slider_gallery .slick-slide {
  margin-right: 10px;
}
.section_story_kv .loop_slider_gallery .photo {
  overflow: hidden;
  border-radius: 10px;
}
.section_story_kv .loop_slider_gallery .slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 800px) {
  .section_story_kv .loop_slider_gallery {
    /* ガター */
  }
  .section_story_kv .loop_slider_gallery .slick-list {
    margin-right: -1vw;
  }
  .section_story_kv .loop_slider_gallery .slick-slide {
    margin-right: 1vw;
  }
  .section_story_kv .loop_slider_gallery .photo {
    border-radius: 1vw;
  }
  .section_story_kv .loop_slider_gallery .slide {
    gap: 1vw;
  }
}
.section_story_kv .loop_slider_gallery .slide01 {
  width: 15vw;
}
.section_story_kv .loop_slider_gallery .slide02 {
  width: 28vw;
}
.section_story_kv .loop_slider_gallery .slide03 {
  width: 28vw;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section_story_kv .loop_slider_gallery .slide04 {
  width: 28vw;
}
.section_story_kv .loop_slider_gallery .slide05 {
  width: 25vw;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.section_story_kv .loop_slider_gallery .slide06 {
  width: 30vw;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section_story_kv .loop_slider_gallery .slide07 {
  width: 25vw;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section_story_kv .loop_slider_gallery .photo2 {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.section_story_kv .loop_slider_gallery .photo2::before, .section_story_kv .loop_slider_gallery .photo2::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: all 0.3s cubic-bezier(0.51, -0.01, 0.21, 1.01);
  transition: all 0.3s cubic-bezier(0.51, -0.01, 0.21, 1.01);
  z-index: 2;
}
.section_story_kv .loop_slider_gallery .photo2::after {
  background-color: #fff;
}
.section_story_kv .loop_slider_gallery .photo2::before {
  background-color: #000;
}
.section_story_kv .loop_slider_gallery .slick-active .photo2::before, .section_story_kv .loop_slider_gallery .slick-active .photo2::after {
  -webkit-transform-origin: 0 right;
          transform-origin: 0 right;
}
.section_story_kv .loop_slider_gallery .slick-active .photo2::after {
  left: auto;
  right: 0;
  width: 0%;
}
.section_story_kv .loop_slider_gallery .slick-active .photo2::before {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
  left: auto;
  right: 0;
  width: 0%;
}

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

section_soraca_story

===============================================================*/
.section_soraca_story {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
  stroy_txt
  ===============================================================*/
  /*===============================================================
  soraca_glass
  ===============================================================*/
}
.section_soraca_story .bottom_link {
  margin-top: 5rem;
}
.section_soraca_story .stroy_txt {
  text-align: center;
  padding: 15rem 10rem;
  border-radius: 3px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_soraca_story .stroy_txt p {
  font-size: 2rem;
  line-height: 2.5;
}
@media screen and (max-width: 1070px) {
  .section_soraca_story .stroy_txt {
    padding: 10rem 10rem;
  }
  .section_soraca_story .stroy_txt p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 800px) {
  .section_soraca_story .stroy_txt {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    border-radius: 0;
    padding: 10vw 5vw 20vw 5vw;
  }
  .section_soraca_story .stroy_txt p {
    font-size: 3.8vw;
    line-height: 2.5;
  }
  .section_soraca_story .stroy_txt p + p {
    margin-top: 10vw;
  }
}
.section_soraca_story .soraca_glass {
  width: 20rem;
  margin: 0 auto;
  margin-top: -8rem;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_soraca_story .soraca_glass .soraca_photo {
  padding: 0 2rem;
}
.section_soraca_story .soraca_glass .soraca_logo {
  margin-top: -3rem;
}
.section_soraca_story .soraca_glass .soraca_name {
  color: #224267;
  font-size: 1.8rem;
  text-align: center;
  margin-top: 0.2em;
}
/*===============================================================

	bg_gradient_animation

===============================================================*/
@property --gradirnt_bg-0 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsl(198, 100%, 80%);
}
@property --gradirnt_bg-1 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsl(345, 79%, 92%);
}
@property --gradirnt_bg-2 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsl(69, 81%, 92%);
}
@property --gradirnt_bg-3 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsl(334, 87%, 92%);
}
@property --gradirnt_bg-4 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsl(118, 87%, 92%);
}
@property --gradirnt_bg-5 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsl(228, 90%, 92%);
}
@property --gradirnt_bg-6 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsl(99, 88%, 92%);
}
@property --gradirnt_bg-7 {
  syntax: "<color>";
  inherits: false;
  initial-value: hsl(179, 74%, 92%);
}
.bg_gradient_animation {
  background-color: var(--gradirnt_bg-0);
  background-image: radial-gradient(at 92% 56%, var(--gradirnt_bg-1) 0px, transparent 50%), radial-gradient(at 60% 54%, var(--gradirnt_bg-2) 0px, transparent 50%), radial-gradient(at 31% 72%, var(--gradirnt_bg-3) 0px, transparent 50%), radial-gradient(at 49% 91%, var(--gradirnt_bg-4) 0px, transparent 50%), radial-gradient(at 32% 61%, var(--gradirnt_bg-5) 0px, transparent 50%), radial-gradient(at 72% 27%, var(--gradirnt_bg-6) 0px, transparent 50%), radial-gradient(at 11% 41%, var(--gradirnt_bg-7) 0px, transparent 50%);
  -webkit-animation: gradient_animation_0 10s infinite linear alternate, gradient_animation_1 5s infinite linear alternate, gradient_animation_2 3s infinite linear alternate;
          animation: gradient_animation_0 10s infinite linear alternate, gradient_animation_1 5s infinite linear alternate, gradient_animation_2 3s infinite linear alternate;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
@-webkit-keyframes gradient_animation_0 {
  from {
    --gradirnt_bg-0: initial;
    --gradirnt_bg-5: initial;
  }
  to {
    --gradirnt_bg-0: hsla(228, 90%, 92%, 1);
    --gradirnt_bg-5: hsla(179, 74%, 92%, 1);
  }
}
@keyframes gradient_animation_0 {
  from {
    --gradirnt_bg-0: initial;
    --gradirnt_bg-5: initial;
  }
  to {
    --gradirnt_bg-0: hsla(228, 90%, 92%, 1);
    --gradirnt_bg-5: hsla(179, 74%, 92%, 1);
  }
}
@-webkit-keyframes gradient_animation_1 {
  from {
    --gradirnt_bg-1: initial;
    --gradirnt_bg-3: initial;
    --gradirnt_bg-7: initial;
  }
  to {
    --gradirnt_bg-1: hsla(198, 100%, 80%, 1);
    --gradirnt_bg-3: hsla(228, 90%, 92%, 1);
    --gradirnt_bg-7: hsla(69, 81%, 92%, 1);
  }
}
@keyframes gradient_animation_1 {
  from {
    --gradirnt_bg-1: initial;
    --gradirnt_bg-3: initial;
    --gradirnt_bg-7: initial;
  }
  to {
    --gradirnt_bg-1: hsla(198, 100%, 80%, 1);
    --gradirnt_bg-3: hsla(228, 90%, 92%, 1);
    --gradirnt_bg-7: hsla(69, 81%, 92%, 1);
  }
}
@-webkit-keyframes gradient_animation_2 {
  from {
    --gradirnt_bg-2: initial;
    --gradirnt_bg-4: initial;
    --gradirnt_bg-6: initial;
  }
  to {
    --gradirnt_bg-2: hsla(118, 87%, 92%, 1);
    --gradirnt_bg-4: hsla(99, 88%, 92%, 1);
    --gradirnt_bg-6: hsla(345, 79%, 92%, 1);
  }
}
@keyframes gradient_animation_2 {
  from {
    --gradirnt_bg-2: initial;
    --gradirnt_bg-4: initial;
    --gradirnt_bg-6: initial;
  }
  to {
    --gradirnt_bg-2: hsla(118, 87%, 92%, 1);
    --gradirnt_bg-4: hsla(99, 88%, 92%, 1);
    --gradirnt_bg-6: hsla(345, 79%, 92%, 1);
  }
}
/*===============================================================

section_gallery

===============================================================*/
.section_gallery {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /*-------------------------------------------------------------
  gallery_photos2
  -------------------------------------------------------------*/
  /*===============================================================
  loader
  ===============================================================*/
}
.section_gallery .gallery_photos {
  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: -3rem;
}
.section_gallery .gallery_photos .photo {
  margin-top: 3rem;
  width: 50%;
}
.section_gallery .gallery_photos img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 800px) {
  .section_gallery .gallery_photos {
    margin-top: -10px;
  }
  .section_gallery .gallery_photos .photo {
    margin-top: 10px;
  }
}
.section_gallery .gallery_photos2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  /* 画像の間隔 */
  padding: 0;
  list-style: none;
  margin-top: 30px;
}
.section_gallery .gallery_photos2 .photo {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc((100% - 60px) / 3);
          flex: 1 1 calc((100% - 60px) / 3);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.section_gallery .gallery_photos2 .photo img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media screen and (max-width: 800px) {
  .section_gallery .gallery_photos2 {
    gap: 10px;
    margin-top: 10px;
  }
  .section_gallery .gallery_photos2 .photo {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc((100% - 20px) / 2);
            flex: 1 1 calc((100% - 20px) / 2);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.section_gallery .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 0, 0, 0.2);
  border-top-color: #3498db;
  border-radius: 50%;
  -webkit-animation: spin 1s ease-in-out infinite;
          animation: spin 1s ease-in-out infinite;
}
.section_gallery .loader::before, .section_gallery .loader::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.section_gallery .loader::before {
  width: 50%;
  height: 50%;
  background: #3498db;
  opacity: 0.6;
  -webkit-animation: pulsate 1.5s infinite ease-in-out;
          animation: pulsate 1.5s infinite ease-in-out;
  top: -30%;
  left: -30%;
}
.section_gallery .loader::after {
  width: 20%;
  height: 20%;
  background: #ffffff;
  opacity: 0.8;
  animation: pulsate 1.5s infinite ease-in-out reverse;
  bottom: -10%;
  right: -10%;
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes spin {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes pulsate {
  0%, 100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@keyframes pulsate {
  0%, 100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

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

section_artist_profile

===============================================================*/
.section_artist_profile {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
  content_profile
  ===============================================================*/
  /*===============================================================
  block_profile
  ===============================================================*/
  /*===============================================================
  more_profile
  ===============================================================*/
  /*===============================================================
  datalist
  ===============================================================*/
}
.section_artist_profile .sign {
  width: 25rem;
  margin: 0 auto;
  margin-top: 3rem;
}
@media screen and (max-width: 800px) {
  .section_artist_profile .sign {
    width: 35vw;
    margin: 0 auto;
    margin-top: 8vw;
  }
}
.section_artist_profile .content_profile {
  border-top: solid 1px #999;
  border-bottom: solid 1px #999;
  padding: 8rem 0;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
@media screen and (max-width: 800px) {
  .section_artist_profile .content_profile {
    padding: 8vw 0;
  }
}
.section_artist_profile .block_profile {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_artist_profile .block_profile + .block_profile {
  margin-top: 8rem;
}
.section_artist_profile .block_profile .title_block {
  width: 25%;
}
.section_artist_profile .block_profile .title_block .title {
  font-size: 2.5rem;
}
.section_artist_profile .block_profile .body_block {
  width: 75%;
  max-height: 30rem;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.section_artist_profile .block_profile .body_block.open {
  max-height: none;
}
@media screen and (max-width: 800px) {
  .section_artist_profile .block_profile + .block_profile {
    margin-top: 8vw;
  }
  .section_artist_profile .block_profile .title_block {
    width: 100%;
  }
  .section_artist_profile .block_profile .title_block .title {
    font-size: 5vw;
  }
  .section_artist_profile .block_profile .body_block {
    width: 100%;
    max-height: 30rem;
    overflow: hidden;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}
.section_artist_profile .more_profile {
  padding-left: 25%;
  margin-top: 3rem;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
@media screen and (max-width: 800px) {
  .section_artist_profile .more_profile {
    padding-left: 0;
    margin-top: 8vw;
  }
}
.section_artist_profile .datalist {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_artist_profile .datalist dt,
.section_artist_profile .datalist dd {
  padding-top: 0.5em;
}
.section_artist_profile .datalist dt {
  width: 8em;
}
.section_artist_profile .datalist dd {
  width: calc(100% - 8em);
}
@media screen and (max-width: 800px) {
  .section_artist_profile .datalist {
    margin-top: 3vw;
  }
  .section_artist_profile .datalist dt,
  .section_artist_profile .datalist dd {
    padding-top: 0.5em;
    font-size: 3.5vw;
  }
}

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

section_howto_order

===============================================================*/
.section_howto_order {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
  content_howto_order
  ===============================================================*/
  /*===============================================================
  content_policy_for_handling_remains
  ===============================================================*/
}
.section_howto_order .content_howto_order {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_howto_order .content_howto_order .grid_wrp {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section_howto_order .content_howto_order .grid_wrp + .grid_wrp {
  margin-top: 5rem;
}
.section_howto_order .content_howto_order .step {
  display: inline-block;
  background-color: #224267;
  color: #fff;
  padding: 0.3em 1em;
  line-height: 1;
  border-radius: 30px;
}
.section_howto_order .content_howto_order .title {
  color: #224267;
  font-size: 3rem;
  margin-top: 0.3em;
}
.section_howto_order .content_howto_order p {
  margin-top: 1em;
}
@media screen and (max-width: 800px) {
  .section_howto_order .content_howto_order .grid_wrp + .grid_wrp {
    margin-top: 5rem;
  }
  .section_howto_order .content_howto_order .grid + .grid {
    margin-top: -3vw;
  }
  .section_howto_order .content_howto_order .step {
    font-size: 4vw;
    line-height: 1;
    margin-left: -2vw;
  }
  .section_howto_order .content_howto_order .title {
    font-size: 5vw;
    margin-top: 0.3em;
  }
  .section_howto_order .content_howto_order p {
    font-size: 4vw;
    margin-top: 0.5em;
  }
}
.section_howto_order .content_policy_for_handling_remains {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_howto_order .content_policy_for_handling_remains .c_column, .section_howto_order .content_policy_for_handling_remains .c_column_round {
  background-color: #fff;
  border: solid 0px #ccc;
}
.section_howto_order .content_policy_for_handling_remains .title {
  color: #224267;
  font-size: 2rem;
}
.section_howto_order .content_policy_for_handling_remains p {
  margin-top: 1em;
}
@media screen and (max-width: 800px) {
  .section_howto_order .content_policy_for_handling_remains .c_column, .section_howto_order .content_policy_for_handling_remains .c_column_round {
    padding: 5vw;
  }
}

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

section_form

===============================================================*/
.section_form {
  padding-top: 5rem;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_form .content_form {
  padding: 8rem;
  background-color: #fff;
}
@media screen and (max-width: 800px) {
  .section_form {
    padding-top: 5vw;
  }
  .section_form .content_form {
    padding: 5vw;
    padding-top: 2vw;
  }
}

/*-------------------------------------------------------------
	notfound_error	
-------------------------------------------------------------*/
.notfound_error {
  text-align: center;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.notfound_error .head {
  color: #224267;
  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;
}
.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;
  }
}

/*===============================================================
	2016/08/24
	デモ用の記載
===============================================================*/
.demo {
  background: #222;
  padding: 50px 0;
  color: #fff;
}

.demo .inner {
  width: 1070px;
  margin: 0 auto;
  text-align: left;
}

.demo h3 {
  font-size: 40px;
  line-height: 40px;
  background: #222;
}

.demo h4 {
  color: #fff;
  font-size: 25px;
  line-height: 26px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: solid 1px rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.demo h4 + * {
  margin-top: 10px;
}

.demo p {
  font-size: 14px;
  line-height: 25px;
  margin-top: 20px;
}

.demo .demo_discription {
  font-size: 18px;
  font-weight: bold;
}

.demo span {
  font-weight: bold;
  margin-right: 20px;
}

.demo .demo_btn {
  margin-right: 10px;
  margin-top: 20px;
  float: left;
}

.demo .demo_btn a {
  display: block;
  width: 100px;
  text-align: center;
  border: solid 1px #ccc;
  background: #ccc;
  font-size: 14px;
  line-height: 25px;
  color: #222;
  text-decoration: none;
}

.demo .demo_btn a:hover {
  border: solid 1px #fff;
  color: #fff;
  background: none;
  text-decoration: none;
}

.demo .history p {
  border-top: dotted 1px rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

.demo .demo_txthide {
  display: none;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {
  .demo .inner {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
}
/* for tablet max-width: 1070px */
/*===============================================================

	demo_wrp

===============================================================*/
.demo_wrp {
  background: #fff;
  color: #000;
  padding: 50px 0;
}

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
/* for SP max-width: 800px */
/*===============================================================

	_demo.scss 2021/10/1

===============================================================*/
.demo_title_block {
  padding: 50px 0;
  text-align: center;
  background: #111;
  color: #fff;
}

.demo_title_block .title {
  font-size: 40px;
}

.box {
  border: solid 1px #000;
  padding: 20px;
  margin-top: 10px;
  text-align: center;
}

.code {
  border: solid 1px #ddd;
  background: #f5f5f5;
  padding: 20px;
  margin-top: 10px;
  font-size: 12px;
}

@media screen and (max-width: 800px) {
  .demo_title_block {
    padding: 3vw;
  }
  .demo_title_block .title {
    font-size: 4vw;
  }
  .code {
    padding: 3vw;
    margin-top: 2vw;
    font-size: 3vw;
  }
}
/*===============================================================

	tenplate_menu

===============================================================*/
.tenplate_menu {
  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;
  border-bottom: solid 1px #ccc;
}
.tenplate_menu li {
  padding: 10px;
}
.tenplate_menu a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .tenplate_menu {
    padding: 3vw 0;
  }
  .tenplate_menu li {
    padding: 0vw 3vw;
  }
  .tenplate_menu a {
    font-size: 3vw;
    line-height: 1.5;
  }
}

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

	section_demo

===============================================================*/
.content_sample {
  border: solid 1px #666;
  padding: 50px;
}
@media screen and (max-width: 800px) {
  .content_sample {
    padding: 3vw;
  }
}

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

	content_demo

===============================================================*/
.content_demo .lv_2 {
  background: #222;
  color: #fff;
  padding: 20px 30px;
}
/*===============================================================

	content_block_outline

===============================================================*/
.content_block_outline {
  border: solid 1px #111;
  padding: 30px 5px 5px 5px;
  position: relative;
  text-align: center;
}
.content_block_outline .element_pageheader {
  background: #111;
  color: #fff;
  border: solid 1px #111;
  padding: 50px 100px;
  position: relative;
}
.content_block_outline .margin {
  position: absolute;
  padding: 5px 10px;
  font-size: 10px;
  line-height: 1;
  width: 100%;
  color: #666;
  top: -20px;
  left: 0;
  background-image: linear-gradient(-45deg, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0.05) 25%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.05) 75%, rgba(0, 0, 0, 0.05));
  background-size: 4px 4px;
  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;
}
.content_block_outline .element_section {
  border: solid 1px #111;
  padding: 60px 100px 80px 100px;
  position: relative;
}
.content_block_outline .element_section::after,
.content_block_outline .element_section::before {
  content: "section_innerには上下パディングが入る";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  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;
  width: 100%;
  height: 60px;
  background: rgba(0, 255, 94, 0.2);
  font-size: 12px;
  z-index: 1;
}
.content_block_outline .element_section::after {
  top: 0;
}
.content_block_outline .element_section::before {
  bottom: 0;
  height: 80px;
}
.content_block_outline .element_section + .element_section {
  margin-top: 5px;
}
.content_block_outline .element_headline {
  background: #111;
  color: #fff;
  padding: 20px;
  border: solid 1px #111;
  position: relative;
}
.content_block_outline .element_headline .margin {
  bottom: -21px;
  top: auto;
}
.content_block_outline .element_headline .margin + .margin {
  bottom: auto;
  top: -50px;
  height: 50px;
}
.content_block_outline .element_content {
  margin-top: 20px;
  padding: 30px;
  border: solid 1px #111;
  position: relative;
  background: #fff;
}
.content_block_outline .element_content + .element_content {
  margin-top: 20px;
}
.content_block_outline .element_content .element_content + .element_content {
  margin-top: 10px;
}
.content_block_outline .element_content + .element_headline {
  margin-top: 50px;
}
.content_block_outline .element_content_title {
  background: #eee;
  padding: 20px;
  font-weight: bold;
}
.content_block_outline .element_section2 {
  background: #eee;
}
.content_block_outline .element_section2 .element_headline {
  background: #fff;
  color: #111;
}
.content_block_outline .element_content2 {
  background: #111;
  color: #fff;
}
.content_block_outline .element_content2 .element_content,
.content_block_outline .element_content2 .element_content_title {
  background: #111;
  border: solid 1px #fff;
}
.content_block_outline .element_content2 .element_content3 {
  background: #900;
  border: solid 1px #900;
}
.content_block_outline .block_title,
.content_block_outline .block {
  position: relative;
  border: solid 1px #999;
  padding: 15px;
}
.content_block_outline h3 {
  font-size: 20px;
}
.content_block_outline .label {
  z-index: 5;
  position: absolute;
  top: -1px;
  left: -1px;
  display: inline-block;
  padding: 5px 15px;
  background: #c00;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: bold;
}
/*===============================================================

	page_element

===============================================================*/
.page_element {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
  	//	page_element
  ===============================================================*/
}
.page_element .headline {
  border-top: solid 5px #000;
  padding-top: 2em;
}
.page_element .block_title {
  background-color: #eee;
  padding: 20px;
  text-align: center;
}
/*===============================================================
	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 */