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

	_reset.scss 2021/9/24

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

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

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

blockquote,
q {
  quotes: none;
}

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

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

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

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

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

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

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
th,
td,
dt,
dd,
div {
  font-size: 1.6rem;
}
@media screen and (max-width: 800px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  li,
  th,
  td,
  dt,
  dd,
  div {
    font-size: 3.8vw;
  }
}

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

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

ul,
li {
  list-style: none;
}

option {
  padding-right: 1em;
}

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

a {
  text-decoration: underline;
}

ul a,
li a {
  zoom: 1;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

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

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

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

.fs_xs {
  font-size: 1rem;
}

.fs_sm {
  font-size: 1.4rem;
}

.fs_md {
  font-size: 2rem;
}

.fs_lg {
  font-size: 2.5rem;
}

.fs_xl {
  font-size: 3rem;
}

.fs_xxl {
  font-size: 4rem;
}

.fs_xxxl {
  font-size: 5rem;
}

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

.lh_19 {
  line-height: 1.9;
}

.lh_18 {
  line-height: 1.8;
}

.lh_17 {
  line-height: 1.7;
}

.lh_16 {
  line-height: 1.6;
}

.lh_15 {
  line-height: 1.5;
}

.lh_14 {
  line-height: 1.4;
}

.lh_13 {
  line-height: 1.3;
}

.lh_12 {
  line-height: 1.2;
}

.lh_11 {
  line-height: 1.1;
}

.lh_10 {
  line-height: 1;
}

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

	_common.scss 2021/9/24

===============================================================*/
/* html/body設定
----------------------------------------------------------------*/
body {
  width: 100%;
  color: #333;
  background: #fff;
  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: #D7083C;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: underline;
}

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

.mail a,
.tel a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #333;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
}
.mail a:hover,
.tel a:hover {
  color: #e63662;
  text-decoration: none;
}

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

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

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

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

	基本文字サイズ、装飾

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

p {
  line-height: 2;
}

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

.bold {
  font-weight: bold;
}

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

/* タブレット以下 */
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media only screen and (max-width: 800px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  li,
  th,
  td,
  dt,
  dd,
  div {
    line-height: 1.6;
  }
  div,
  p {
    line-height: 1.8;
  }
  li {
    line-height: 1.6;
  }
}
/* for SP max-width: 800px */
@font-face {
  font-family: "icomoon2024";
  src: url("../../common/font/iconmoon/icomoon2024.eot?9csyn6");
  src: url("../../common/font/iconmoon/icomoon2024.eot?9csyn6#iefix") format("embedded-opentype"), url("../../common/font/iconmoon/icomoon2024.ttf?9csyn6") format("truetype"), url("../../common/font/iconmoon/icomoon2024.woff?9csyn6") format("woff"), url("../../common/font/iconmoon/icomoon2024.svg?9csyn6#icomoon2024") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon_], [class*=" icon_"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon2024" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	skip_link

===============================================================*/
.skip_link {
  z-index: 99999;
  position: absolute;
  top: -100px;
  left: 5px;
  background-color: #333;
  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: #333;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .skip_link {
    width: 20rem;
    font-size: 1.6rem;
  }
}

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

	_utils.scss 2021/9/24

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

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

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

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

	フロート関係

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

.clearboth {
  clear: both;
}

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

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}

.flol {
  float: left;
}

.flor {
  float: right;
}

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

	PC/SP/TABLET

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

.tablet {
  display: none;
}

.sp {
  display: none;
}

.sp_tablet {
  display: none;
}

.none {
  display: none !important;
}

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

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

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

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

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

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

	img fig

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	マージン

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	padding

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

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

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

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

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

    アニメーション

    animation: rotate_loop 40s linear infinite;

===============================================================*/
@-webkit-keyframes rotate_loop {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate_loop {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate_loop_revers {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@keyframes rotate_loop_revers {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@-webkit-keyframes scale_bounse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scale_bounse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes kv_phone_animation {
  0% {
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
  }
  50% {
    -webkit-transform: translate(0, 2rem) rotate(-2deg);
            transform: translate(0, 2rem) rotate(-2deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
}
@keyframes kv_phone_animation {
  0% {
    -webkit-transform: translate(0, 0) rotate(0);
            transform: translate(0, 0) rotate(0);
  }
  50% {
    -webkit-transform: translate(0, 2rem) rotate(-2deg);
            transform: translate(0, 2rem) rotate(-2deg);
  }
  100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
  }
}
/*===============================================================

    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 #D7083C;
  background-color: #fff;
  color: #D7083C;
}
.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 #D7083C;
  background-color: #D7083C;
  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;
  /* 1. .label の中に icon_ がある場合 */
  /* 2. .label はあるが、その中に icon_ がない場合 */
  /* 3. .label の中にも外にも icon_ が存在しない場合 */
  /* タブレット */
  /* 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: #D7083C;
  padding: 0.75em 1.5em;
  font-weight: bold;
  position: relative;
  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;
  min-height: 4em;
}
.c_btn a .label, .c_btn_round a .label {
  display: inline-block;
  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: #e63662;
}
.c_btn a:has(.label):not(:has(.label [class^=icon_])):has([class^=icon_]), .c_btn_round a:has(.label):not(:has(.label [class^=icon_])):has([class^=icon_]) {
  padding-left: 2.5em;
  padding-right: 2.5em;
}
.c_btn a:has(.label):not(:has([class^=icon_])), .c_btn_round a:has(.label):not(:has([class^=icon_])) {
  padding-left: 1.5em;
  padding-right: 1.5em;
}
@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
===============================================================*/
/*-------------------------------------------------------------
btn_width_fit
-------------------------------------------------------------*/
.c_btn_width_fit {
  width: 100%;
  max-width: 100%;
}
.c_btn_width_fit a {
  display: block;
}
/*-------------------------------------------------------------
    c_btn_round	
-------------------------------------------------------------*/
.c_btn_round {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_btn_round a {
  border-radius: 5rem;
}
@media screen and (max-width: 800px) {
  .c_btn_round a {
    border-radius: 100vw;
  }
}

/*-------------------------------------------------------------
    icon	
-------------------------------------------------------------*/
span + [class^=icon_],
span + [class*=" icon_"] {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.5rem;
  margin: auto;
  height: 1em;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
/*-------------------------------------------------------------
    btn_line	
-------------------------------------------------------------*/
.c_btn_line {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_btn_line a {
  border: solid 1px #ccc;
  background-color: transparent;
  color: #333;
  padding: calc(0.75em - 2px) 0;
}
.c_btn_line a:hover {
  border: solid 1px #e63662;
}
@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: 40rem;
  max-width: 60rem;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_btn_flex a {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media screen and (max-width: 800px) {
  .c_btn_flex {
    min-width: inherit;
    width: 100%;
  }
}

/*-------------------------------------------------------------
    btn_deactive	
-------------------------------------------------------------*/
.c_btn_deactive {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_btn_deactive a {
  pointer-events: none;
  border: dashed 2px rgba(215, 8, 60, 0.5);
  background-color: transparent;
  color: #D7083C;
  padding: calc(1.5em - 2px) 0;
}
.c_btn_deactive a .label {
  opacity: 0.5;
}
.c_btn_deactive a [class^=icon_],
.c_btn_deactive a [class*=" icon_"] {
  opacity: 0.2;
}
.c_btn_deactive a:focus {
  outline: none !important;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  -webkit-box-shadow: 0 0 20px 0 transparent;
          box-shadow: 0 0 20px 0 transparent;
}
/*===============================================================

    c_btn_white

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

    c_btns

===============================================================*/
.c_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -3rem;
  /* タブレット */
  /* 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_btn_shop

===============================================================*/
.c_btn_shop a {
  padding: 4rem 8rem;
  font-size: 3rem;
  text-align: center;
  font-weight: bold;
  color: #333;
  border: solid 2px #D7083C;
  border-radius: 1rem;
  position: relative;
  display: inline-block;
}
.c_btn_shop a span {
  font-weight: bold;
  position: relative;
  z-index: 2;
}
.c_btn_shop a strong {
  color: #D7083C;
}
.c_btn_shop a .fig {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 7rem;
  z-index: 1;
}
.c_btn_shop a:hover {
  opacity: 0.7;
  border: solid 2px #e63662;
}
.c_btn_shop a:hover strong {
  color: #e63662;
}
@media screen and (max-width: 800px) {
  .c_btn_shop a {
    padding: 26vw 0 5vw;
    font-size: 4vw;
    display: block;
  }
  .c_btn_shop a .fig {
    position: absolute;
    top: 3vw;
    bottom: auto;
    left: 0;
    right: 0;
    margin: auto;
    width: 25vw;
  }
}

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

    c_txtlink

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

	c_datalist

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

/*-------------------------------------------------------------
    c_indent_list	
-------------------------------------------------------------*/
.c_indent_list {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_indent_list li {
  padding-left: 1em;
  text-indent: -1em;
}
.c_indent_list li + li {
  margin-top: 5px;
}
/*---------------------------------------------------------------
		リスト
	---------------------------------------------------------------*/
.c_ul_list li {
  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: #333;
}
.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: #333;
  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;
  position: relative;
}
.headline .title {
  font-size: 5rem;
  line-height: 1.3;
}
.headline .title strong {
  color: #D7083C;
}
.headline .lead {
  font-size: 2rem;
}
.headline .title + .lead {
  margin-top: 1.5rem;
}
.headline .lead + .title {
  margin-top: 0.5rem;
}
.content * + .headline {
  margin-top: 10rem;
}
.headline .icon {
  position: absolute;
  top: -4rem;
  left: 0;
  right: 0;
  margin: auto;
  width: 3rem;
}
@media screen and (max-width: 800px) {
  .headline .title {
    font-size: 6.5vw;
    line-height: 1.4;
  }
  .headline .lead {
    font-size: 4vw;
    line-height: 1.7;
  }
  .headline .title + .lead {
    margin-top: 3vw;
  }
  .headline .lead + .title {
    margin-top: 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;
  border-bottom: solid 1px #D7083C;
  padding-bottom: 0.3em;
}
.lv_1 .lead {
  font-size: 2rem;
}
.content * + .lv_1 {
  margin-top: 10rem;
}
@media screen and (max-width: 800px) {
  .lv_1 .title {
    font-size: 5vw;
    padding-bottom: 0.6em;
  }
  .lv_1 .lead {
    font-size: 4vw;
    line-height: 1.5;
  }
  .lv_1 .title + .lead {
    margin-top: 1vw;
  }
  .lv_1 .lead + .title {
    margin-top: 0vw;
  }
  .content * + .lv_1 {
    margin-top: 5rem;
  }
}

/*-------------------------------------------------------------
	lv_2	
-------------------------------------------------------------*/
.lv_2 .title {
  font-size: 2.5rem;
}
.lv_2 .title + p {
  margin-top: 1em;
}
.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: 4.5vw;
  }
  .lv_2 .lead {
    font-size: 4vw;
  }
  .lv_2 .title + .lead {
    margin-top: 1vw;
  }
  .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;
  background-color: #FFF5E0;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.pankuzu .pankuzu_width {
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 3.5rem;
}
.pankuzu li {
  display: inline-block;
  padding-left: 0.8rem;
  line-height: 1;
}
.pankuzu li:first-child {
  padding-left: 0;
}
.pankuzu li a {
  text-decoration: none;
  position: relative;
  padding-right: 1.8rem;
  color: #333;
  line-height: 4rem;
  line-height: 1;
}
.pankuzu li a:hover {
  color: #D7083C;
}
.pankuzu li a::after {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  border-right: solid 1px #333;
  border-bottom: solid 1px #333;
  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 {
    width: 100%;
    padding: 0;
    padding-bottom: 0;
  }
  .pankuzu .pankuzu_width {
    margin: 0;
    padding: 0 3vw;
  }
  .pankuzu h1,
  .pankuzu li {
    padding-left: 1.5vw;
    font-size: 3vw;
    line-height: 8vw;
  }
  .pankuzu li a {
    padding-right: 3vw;
    line-height: 8vw;
  }
  .pankuzu li a:hover {
    color: #c00;
  }
  .pankuzu li a::after {
    width: 1.5vw;
    height: 1.5vw;
  }
  .pankuzu .update {
    font-size: 3.5vw;
  }
}

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

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

    c_photo

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

    c_column

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

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

    category_label

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

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

    c_category_label_list

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

    c_topics_list_morelink

===============================================================*/
.c_topics_list_morelink {
  text-align: right;
  margin-top: 3rem;
}
/*===============================================================

    c_topics_footer_link

===============================================================*/
.c_topics_footer_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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c_topics_footer_link .c_btn, .c_topics_footer_link .c_btn_round {
  max-width: 100%;
  width: calc((100% - 6rem) / 3);
  margin: 0;
}
.c_topics_footer_link .c_btn a, .c_topics_footer_link .c_btn_round a {
  min-height: 7rem;
  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;
}
.c_topics_footer_link .c_btn .label, .c_topics_footer_link .c_btn_round .label {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 1.4;
}
.c_topics_footer_link .c_btn .icon_blank, .c_topics_footer_link .c_btn_round .icon_blank {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1rem;
  margin: auto;
}
@media screen and (max-width: 1070px) {
  .c_topics_footer_link .c_btn, .c_topics_footer_link .c_btn_round {
    width: calc((100% - 4rem) / 3);
  }
}
@media screen and (max-width: 800px) {
  .c_topics_footer_link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c_topics_footer_link .c_btn, .c_topics_footer_link .c_btn_round {
    width: 100%;
  }
  .c_topics_footer_link .c_btn + .c_btn, .c_topics_footer_link .c_btn_round + .c_btn, .c_topics_footer_link .c_btn + .c_btn_round, .c_topics_footer_link .c_btn_round + .c_btn_round {
    margin-top: -1px;
  }
  .c_topics_footer_link .c_btn a, .c_topics_footer_link .c_btn_round a {
    min-height: 15vw;
    padding: 3vw 0;
  }
  .c_topics_footer_link .c_btn .label, .c_topics_footer_link .c_btn_round .label {
    font-size: 3.8vw;
  }
  .c_topics_footer_link .c_btn .icon_blank, .c_topics_footer_link .c_btn_round .icon_blank {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1rem;
    margin: auto;
  }
}

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

	c_topics_list

===============================================================*/
.c_topics_list {
  border-bottom: solid 1px #ccc;
}
.c_topics_list .item {
  position: relative;
  border-top: solid 1px #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.c_topics_list .link {
  position: relative;
  padding: 2rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c_topics_list .date,
.c_topics_list .text {
  z-index: 1;
  color: #D7083C;
}
.c_topics_list .date a,
.c_topics_list .text a {
  color: #333;
  text-decoration: none;
}
.c_topics_list .date a:after,
.c_topics_list .text a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.c_topics_list .date a:hover:after,
.c_topics_list .text a:hover:after {
  color: #444;
  text-decoration: none;
  background-color: rgba(215, 8, 60, 0.05);
}
.c_topics_list .date a:hover,
.c_topics_list .text a:hover {
  background: none;
  /* キャンセルに必要 */
}
.c_topics_list .date a:hover,
.c_topics_list .text a:hover {
  opacity: 0.7;
}
.c_topics_list .date:hover .text,
.c_topics_list .link:hover .text {
  color: #444;
}
.c_topics_list .date {
  width: 130px;
}
.c_topics_list .c_category_label {
  z-index: 2;
  margin-right: 30px;
  margin-left: 15px;
}
.c_topics_list .c_category_label a {
  color: #333;
  text-decoration: none;
}
.c_topics_list .c_category_label a:hover {
  opacity: 0.7;
}
.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: #333;
    line-height: 1.4;
  }
  .c_topics_list .c_category_label {
    margin-left: auto;
    margin-right: 0;
  }
  .c_topics_list .c_category_label span {
    font-size: 1.4rem;
  }
  .c_topics_list .text {
    width: 100%;
    line-height: 1.5;
    margin-top: 0.5rem;
  }
}

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

    c_app_download

===============================================================*/
.c_app_download {
  background-color: #FFF5E0;
  padding: 2rem;
  border-radius: 2rem;
  max-width: 80rem;
  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;
  /*===============================================================
  app_info
  ===============================================================*/
  /*===============================================================
  download_btns
  ===============================================================*/
}
@media screen and (max-width: 800px) {
  .c_app_download {
    padding: 5vw;
    border-radius: 3vw;
  }
}
.c_app_download .app_info {
  width: 32rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
}
.c_app_download .app_info .app_icon {
  width: 7rem;
}
.c_app_download .app_info .txt {
  margin-left: 0.8em;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .c_app_download .app_info {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .c_app_download .app_info .app_icon {
    width: 7rem;
  }
  .c_app_download .app_info .txt {
    font-size: 4vw;
  }
}
.c_app_download .download_btns {
  width: 36rem;
  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;
}
.c_app_download .download_btns .dl_btn {
  width: 48%;
}
.c_app_download .download_btns .dl_btn a {
  display: block;
}
.c_app_download .download_btns .dl_btn a:hover {
  opacity: 0.7;
}
.c_app_download .download_btns .qr {
  display: none;
}
@media screen and (max-width: 800px) {
  .c_app_download .download_btns {
    width: 100%;
    margin-top: 3vw;
  }
  .c_app_download .download_btns .dl_btn {
    width: 40vw;
    margin: 0 auto;
  }
}
@media screen and (max-width: 800px) {
  .c_app_download.mac .dl_btn_android, .c_app_download.ios .dl_btn_android {
    display: none;
  }
  .c_app_download.android .dl_btn_ios {
    display: none;
  }
}

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

    c_cp_information

===============================================================*/
.c_cp_information {
  position: fixed;
  z-index: 10;
  top: 10rem;
  left: 0;
  width: 100%;
  /*===============================================================

  marquee

     ===============================================================*/
}
@media screen and (max-width: 800px) {
  .c_cp_information {
    top: 20vw;
  }
}
.c_cp_information .marquee {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  background-color: #D7083C;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
      animation	
  -------------------------------------------------------------*/
}
.c_cp_information .marquee .txt {
  white-space: nowrap;
  font-size: 1.8rem;
  line-height: 2rem;
  font-weight: bold;
  min-width: 100%;
}
.c_cp_information .marquee .txt:nth-child(odd) {
  -webkit-animation: marquee_loop 50s -25s linear infinite;
          animation: marquee_loop 50s -25s linear infinite;
}
.c_cp_information .marquee .txt:nth-child(even) {
  -webkit-animation: marquee_loop2 50s linear infinite;
          animation: marquee_loop2 50s linear infinite;
}
.c_cp_information .marquee a {
  color: #fff;
  text-decoration: none;
  padding: 1rem 5em;
  text-align: center;
  display: inline-block;
}
.c_cp_information .marquee a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 800px) {
  .c_cp_information .marquee .txt {
    font-size: 4vw;
    line-height: 6vw;
  }
  .c_cp_information .marquee a {
    padding: 1vw 5em;
  }
  .c_cp_information .marquee .txt:nth-child(2) {
    display: none;
  }
}
@-webkit-keyframes marquee_loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes marquee_loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes marquee_loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes marquee_loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}

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

    c_sp_footer_cta

===============================================================*/
.c_sp_footer_cta {
  display: none;
}
@media screen and (max-width: 800px) {
  .c_sp_footer_cta {
    display: block;
    position: fixed;
    z-index: 10;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .c_sp_footer_cta .c_app_download {
    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: 3vw;
    background-color: #D7083C;
    background-color: #222;
    border-radius: 0;
  }
  .c_sp_footer_cta .c_app_download .app_info {
    width: 65%;
    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;
  }
  .c_sp_footer_cta .c_app_download .app_info .app_icon {
    width: 12vw;
  }
  .c_sp_footer_cta .c_app_download .app_info .txt {
    width: calc(100% - 14vw);
    font-size: 3.5vw;
    margin: 0;
    color: #fff;
  }
  .c_sp_footer_cta .c_app_download .download_btns {
    width: 35%;
    margin-top: 0;
  }
  .c_sp_footer_cta .c_app_download .download_btns img {
    border: solid 1px #fff;
    border-radius: 5px;
    overflow: hidden;
  }
}

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

	c_tab

===============================================================*/
.c_tab {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	c_tab tablist	
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	c_tab tabbody	
  -------------------------------------------------------------*/
  /*===============================================================
  //	c_tab
  ===============================================================*/
}
@media screen and (max-width: 800px) {
  .c_tab {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 0 3vw;
  }
}
.c_tab .tablist {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_tab .tablist button[role=tab] {
  border: none;
  border-radius: 3rem 3rem 0 0;
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: bold;
  text-align: center;
  padding: 2.5rem 0rem 1.5rem 0 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #D7083C;
  width: 40%;
  background-color: rgba(215, 8, 60, 0.1);
  border: solid 1px transparent;
  border-bottom: solid 1px #D7083C !important;
}
.c_tab .tablist button[role=tab][aria-selected=true] {
  background-color: #fff;
  border: solid 1px #D7083C !important;
  border-bottom: solid 1px transparent !important;
}
.c_tab .tablist button[role=tab][aria-selected=false]:hover {
  cursor: pointer;
  background-color: #D7083C;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .c_tab .tablist {
    gap: 1px;
  }
  .c_tab .tablist button[role=tab] {
    padding: 1rem;
    border-radius: 3vw 3vw 0 0;
    font-size: 3.8vw;
    padding: 3vw 0rem 2vw 0 !important;
    width: 50%;
  }
}
.c_tab .tabbody {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
  background-color: #fff;
  border-radius: 3rem;
  overflow: hidden;
  border: solid 1px #D7083C !important;
  margin-top: -1px;
  height: auto;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_tab .tabbody .inner {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  padding: 8rem 8rem;
  opacity: 0;
}
.c_tab .tabbody .active .inner {
  opacity: 1;
  height: auto;
}
.c_tab .tabbody .tab_title {
  font-size: 3rem;
}
.c_tab .tabbody p {
  margin-top: 1em;
}
.c_tab .tabbody .tabcontent:nth-child(3) .inner {
  background-color: #000;
  color: #fff;
}
@media screen and (max-width: 1070px) {
  .c_tab .tabbody .inner {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    padding: 8rem 5rem;
    opacity: 0;
  }
}
@media screen and (max-width: 800px) {
  .c_tab .tabbody {
    border-radius: 0 0 3vw 3vw;
  }
  .c_tab .tabbody .inner {
    padding: 8vw 5vw;
  }
}

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

	carousel_slider

===============================================================*/
.c_carousel_slider {
  overflow: hidden;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  block_pager
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  .slider .pager
     -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  	.slider .pager a
  -------------------------------------------------------------*/
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_carousel_slider .slider {
  position: relative;
  opacity: 0;
}
.c_carousel_slider .slider .slide {
  position: relative;
}
.c_carousel_slider .slider .slide img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 800px) {
  .c_carousel_slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .c_carousel_slider .slick-slide {
    height: auto !important;
  }
  .c_carousel_slider .slick-list {
    margin-right: -3vw;
  }
  .c_carousel_slider .slick-slide {
    margin-right: 3vw;
  }
}
.c_carousel_slider .block_pager {
  margin-top: 3rem;
  height: 50px;
  z-index: 5;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
.c_carousel_slider .block_pager .status {
  font-weight: bold;
  font-size: 2rem;
}
.c_carousel_slider .block_pager .goto_first a {
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  display: inline-block;
  font-size: 1.6rem;
  line-height: 50px;
  padding: 0 1em;
  border-radius: 50px;
  color: #fff;
  background-color: #D7083C;
  text-decoration: none;
}
.c_carousel_slider .block_pager .goto_first.deactive {
  opacity: 0.5;
}
.c_carousel_slider .block_pager .goto_first.deactive a {
  background-color: #999;
}
@media screen and (max-width: 800px) {
  .c_carousel_slider .block_pager {
    margin-top: 3vw;
    gap: 2vw;
  }
  .c_carousel_slider .block_pager .goto_first a {
    top: 1.6vw;
    font-size: 3vw;
    line-height: 8vw;
    padding: 0 1em;
    border-radius: 8vw;
  }
}
.c_carousel_slider .slider .pager.deactive {
  opacity: 0.5;
}
.c_carousel_slider .slider .pager.deactive a {
  background-color: #999;
}
@media screen and (max-width: 800px) {
  .c_carousel_slider .slider .pager {
    width: 8vw;
    height: 8vw;
  }
}
.c_carousel_slider .slider .pager a {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50% 50%;
  overflow: hidden;
  text-indent: -200%;
  position: relative;
  background-color: #D7083C;
}
.c_carousel_slider .slider .pager a:hover {
  opacity: 0.7;
}
.c_carousel_slider .slider .pager a:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
  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;
}
.c_carousel_slider .slider .prev a:after {
  -webkit-transform: rotate(135deg) translate(-2px, -2px);
          transform: rotate(135deg) translate(-2px, -2px);
}
@media screen and (max-width: 800px) {
  .c_carousel_slider .slider .pager a {
    width: 8vw;
    height: 8vw;
  }
}

.c_ui_selecter {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  padding: 1.5rem 2rem;
  padding-right: 3rem;
  color: #000;
  font-size: 1.8rem;
  line-height: 1;
  background-color: #fff;
  border: 1px solid #D7083C;
  border-radius: 3rem;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,    <svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'>    <polygon points='2,4 10,4 6,8' fill='%23D7083C'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 18px;
}
.c_ui_selecter:hover {
  border-color: #e63662;
}
.c_ui_selecter:focus {
  outline: none;
  border-color: #D7083C;
  -webkit-box-shadow: 0 0 0 3px rgba(215, 8, 60, 0.15);
          box-shadow: 0 0 0 3px rgba(215, 8, 60, 0.15);
}
.c_ui_selecter:focus-visible {
  outline: none;
}
.c_ui_selecter:disabled {
  color: #999;
  background-color: #f5f5f5;
  cursor: not-allowed;
}
.c_ui_selecter:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}
@media screen and (max-width: 800px) {
  .c_ui_selecter {
    padding: 3vw 4vw;
    font-size: 4vw;
  }
}

.c_ui_checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  margin: 0 0.5em 0 0;
  border: 1px solid #D7083C;
  border-radius: 0;
  background-color: #fff;
  cursor: pointer;
  vertical-align: middle;
  position: relative;
}
.c_ui_checkbox:hover {
  border-color: #D7083C;
}
.c_ui_checkbox:checked {
  border-color: #D7083C;
  background-color: #D7083C;
}
.c_ui_checkbox:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c_ui_checkbox:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(215, 8, 60, 0.2);
          box-shadow: 0 0 0 3px rgba(215, 8, 60, 0.2);
}
.c_ui_checkbox:disabled {
  background-color: #f5f5f5;
  border-color: #ddd;
  cursor: not-allowed;
}

label {
  cursor: pointer;
  font-size: 1.8rem;
  color: #000;
}
@media screen and (max-width: 800px) {
  label {
    font-size: 3.5vw;
  }
}

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

c_faq

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

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

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

	レイアウト
	_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: 90rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 800px) {
  .narrow_width {
    padding-left: 0;
    padding-right: 0;
  }
}

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

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

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

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

===============================================================*/
.section_wrp {
  overflow: hidden;
  display: block;
  min-height: calc(100vh - 52.4rem);
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section_wrp .section:last-child {
  padding-bottom: 10rem;
}
@media screen and (max-width: 800px) {
  .section_wrp {
    min-height: 0;
  }
  .section_wrp .section:last-child {
    padding-bottom: 5vw;
  }
}

.section {
  width: 100%;
}

.section_inner {
  margin: 0 auto;
  padding-top: 10rem;
  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: 12vw;
    padding-bottom: 15vw;
    padding-left: 8vw;
    padding-right: 8vw;
  }
}

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

    セクション背景

===============================================================*/
.section_bg_pink {
  background-color: #FCEFF2;
}

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

	content 
	個別のコンテンツ

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

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

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

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

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

/* タブレット以下 */
@media screen and (max-width: 1070px) {
  .content {
    width: 100%;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
/* for tablet */
/* SP向けレイアウトの指定：～736px */
@media screen and (max-width: 800px) {
  .content + .content {
    margin-top: 8rem;
  }
  .headline + .content {
    margin-top: 4rem;
  }
  .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: 3rem;
}
.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;
  }
}

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

    block_blue_block

===============================================================*/
.block_blue_block {
  background-color: #EDF4FA;
  padding: 4rem;
  border-radius: 1rem;
}
@media screen and (max-width: 800px) {
  .block_blue_block {
    padding: 3vw;
    border-radius: 5px;
  }
}

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

	_header.scss 2021/10/4

===============================================================*/
.wrapper {
  padding-top: 10rem;
}
@media screen and (max-width: 800px) {
  .wrapper {
    padding-top: 20vw;
  }
}

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

	header

===============================================================*/
.header {
  background-color: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
  header_nav
  ===============================================================*/
}
.header .header_inner {
  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;
  height: 10rem;
}
.header .site_title {
  width: 25rem;
}
.header .header_nav {
  width: calc(100% - 28rem);
}
@media screen and (max-width: 800px) {
  .header .header_inner {
    padding: 0 3vw;
    height: 20vw;
  }
  .header .site_title {
    width: 40vw;
  }
}
.header .header_nav .top {
  display: none;
}
.header .header_nav .navigation_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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: 4rem;
}
.header .header_nav .navigation_menu li {
  margin-right: 1.5em;
}
.header .header_nav a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}
@media screen and (max-width: 900px) {
  .header .header_nav {
    display: none;
  }
}

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

	_footer.scss 2021/10/4

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

	footer

===============================================================*/
.footer {
  border-top: solid 2px #D7083C;
  /* タブレット */
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
  title_block
  ===============================================================*/
  /*===============================================================
  navigation_block
  ===============================================================*/
  /*===============================================================
  footer_bottom
  ===============================================================*/
}
.footer .footer_inner {
  padding: 6rem;
  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;
}
.footer .footer_inner .title_block {
  width: 25rem;
}
.footer .footer_inner .navigation_block {
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .footer .footer_inner {
    padding: 3vw;
  }
  .footer .footer_inner .title_block {
    width: 25rem;
  }
  .footer .footer_inner .navigation_block {
    width: 100%;
  }
}
@media screen and (max-width: 1070px) {
  .footer .footer_inner .title_block {
    width: 25rem;
  }
  .footer .footer_inner .dl_block {
    width: 100%;
    margin-top: 3vw;
  }
  .footer .footer_inner .dl_block .c_app_download {
    margin: 0 auto;
  }
  .footer .footer_inner .navigation_block {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .footer {
    padding-bottom: 18vw;
  }
  .footer .footer_inner {
    padding: 10vw 5vw;
  }
  .footer .footer_inner .title_block {
    width: 100%;
    text-align: center;
  }
  .footer .footer_inner .title_block .sub_title {
    font-size: 3.5vw;
  }
  .footer .footer_inner .title_block .site_title {
    width: 50vw;
    margin: 0 auto;
  }
  .footer .footer_inner .dl_block {
    width: 100%;
    margin-top: 8vw;
  }
  .footer .footer_inner .dl_block .c_app_download {
    margin: 0 auto;
  }
  .footer .footer_inner .navigation_block {
    width: 100%;
  }
}
.footer .title_block .sub_title {
  font-weight: bold;
}
.footer .navigation_block {
  margin-top: 5rem;
}
.footer .navigation_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;
}
.footer .navigation_block .menu a {
  color: #000;
  text-decoration: none;
}
.footer .navigation_block .menu a:hover {
  color: #D7083C;
}
.footer .navigation_block .menu li + li {
  margin-left: 2em;
}
.footer .navigation_block .navigation_menu a {
  font-weight: bold;
  font-size: 1.8rem;
}
.footer .navigation_block .navigation_menu_sub a {
  font-size: 1.4rem;
}
@media screen and (max-width: 1200px) {
  .footer .navigation_block {
    margin-top: 3vw;
  }
  .footer .navigation_block .navigation_menu a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 800px) {
  .footer .navigation_block {
    margin-top: 5vw;
  }
  .footer .navigation_block .menu li {
    width: 50%;
  }
  .footer .navigation_block .menu li,
  .footer .navigation_block .menu li + li {
    margin-left: 0;
    margin-top: 3vw;
  }
  .footer .navigation_block .menu .about_shitei {
    width: 100%;
  }
}
.footer .footer_bottom {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 1rem 2rem;
}
.footer .footer_bottom .copyright {
  font-size: 1.2rem;
}

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

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

	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: #fff;
  /* タブレット */
  /* 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 a {
  color: #000;
  text-decoration: none;
}
.navigation_panel a:hover {
  color: #D7083C;
  text-decoration: none;
}
.navigation_panel .navigation_panel_inner {
  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);
}
.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: 800px) {
  .navigation_panel .navigation_panel_inner {
    min-width: 90%;
  }
}
.navigation_panel .header_block {
  text-align: center;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.navigation_panel .header_block .site_title {
  width: 40rem;
  margin: 0 auto;
}
.navigation_panel .header_block .sub_title {
  font-size: 2rem;
  font-weight: bold;
}
.navigation_panel .header_block .cp_btn {
  margin: 0 auto;
  margin-top: 3rem;
}
.navigation_panel .header_block .cp_btn a {
  display: inline-block;
  background-color: #D7083C;
  color: #fff;
  font-size: 2rem;
  line-height: 1.4;
  padding: 0.5em 1em;
  border-radius: 3rem;
  font-weight: bold;
}
.navigation_panel .header_block .cp_btn a:hover {
  background-color: #e63662;
}
.navigation_panel .header_block .cp_btn + .cp_btn {
  margin-top: 1rem;
}
@media screen and (max-width: 800px) {
  .navigation_panel .header_block {
    padding: 0 5vw;
  }
  .navigation_panel .header_block .site_title {
    width: 60vw;
  }
  .navigation_panel .header_block .sub_title {
    font-size: 4vw;
  }
  .navigation_panel .header_block .cp_btn {
    margin-top: 5vw;
  }
  .navigation_panel .header_block .cp_btn a {
    font-size: 4vw;
    line-height: 1.4;
    padding: 0.5em 1em;
    border-radius: 100px;
  }
  .navigation_panel .header_block .cp_btn a:hover {
    background-color: #e63662;
  }
}
.navigation_panel .body_block {
  width: 64rem;
  margin: 0 auto;
  margin-top: 2rem;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  navigation_menu_sub
  -------------------------------------------------------------*/
}
.navigation_panel .body_block .navigation_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
  margin: 0;
  list-style: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1%;
}
.navigation_panel .body_block .navigation_menu li {
  width: 32%;
  margin-top: 3rem;
}
.navigation_panel .body_block .navigation_menu a {
  display: block;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  padding-bottom: 0.5em;
  border-bottom: solid 1px #000;
}
.navigation_panel .body_block .navigation_menu a:hover {
  opacity: 0.7;
  border-bottom: solid 1px #D7083C;
}
@media screen and (max-width: 800px) {
  .navigation_panel .body_block {
    width: 100%;
    padding: 5vw 5vw 0;
    margin-top: 0;
  }
  .navigation_panel .body_block .navigation_menu a {
    text-decoration: none;
    font-weight: bold;
  }
  .navigation_panel .body_block .navigation_menu a:hover {
    opacity: 0.7;
  }
  .navigation_panel .body_block .navigation_menu li {
    width: 48%;
    margin-top: 3vw;
  }
}
.navigation_panel .body_block .navigation_menu_sub {
  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 .navigation_menu_sub li {
  width: 33.3%;
  margin-top: 0.5rem;
}
.navigation_panel .body_block .navigation_menu_sub a {
  font-size: 1.4rem;
}
.navigation_panel .body_block .navigation_menu_sub a .label {
  font-weight: normal !important;
}
@media screen and (max-width: 800px) {
  .navigation_panel .body_block .navigation_menu_sub {
    margin-top: 5vw;
  }
  .navigation_panel .body_block .navigation_menu_sub li {
    width: 50%;
    margin-top: 3vw;
  }
  .navigation_panel .body_block .navigation_menu_sub .about_shitei {
    width: 100%;
  }
  .navigation_panel .body_block .navigation_menu_sub a {
    font-size: 3.5vw;
  }
}
.navigation_panel .footer_block {
  text-align: center;
  margin-top: 5rem;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
@media screen and (max-width: 800px) {
  .navigation_panel .footer_block {
    margin: 0;
    padding: 10vw;
  }
}
.navigation_panel .btn_close_navigation_panel {
  margin-top: 2rem;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.navigation_panel .btn_close_navigation_panel a {
  display: inline-block;
  min-width: 20rem;
  font-size: 1.6rem;
  color: #fff;
  border: solid 1px #fff;
  padding: 1rem 3rem;
}
.navigation_panel .btn_close_navigation_panel a:hover {
  opacity: 0.6;
}
/*===============================================================

hamburger_menu

===============================================================*/
.hamburger_menu {
  position: fixed;
  z-index: 500;
  top: 2.5rem;
  right: 2.5rem;
  width: 5rem;
  height: 5rem;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  hamburger_menu_btn_bg
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  hamburger_menu_btn
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
   menu_btn
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  menu_btn_no_txt
  -------------------------------------------------------------*/
  /*===============================================================
  //hamburger
  ===============================================================*/
}
.hamburger_menu .hamburger_menu_inner {
  position: relative;
  width: 5rem;
  height: 5rem;
}
@media screen and (max-width: 800px) {
  .hamburger_menu {
    top: 3vw;
    right: 3vw;
    width: 14vw;
    height: 14vw;
  }
  .hamburger_menu .hamburger_menu_inner {
    width: 14vw;
    height: 14vw;
  }
}
.hamburger_menu .hamburger_menu_btn_bg {
  background-color: #fff;
  width: 5rem;
  height: 5rem;
  border-radius: 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 */
}
@media screen and (max-width: 800px) {
  .hamburger_menu .hamburger_menu_btn_bg {
    width: 14vw;
    height: 14vw;
    border-radius: 14vw;
  }
}
.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 */
}
@media screen and (max-width: 800px) {
  .hamburger_menu .hamburger_menu_btn {
    width: 14vw;
    height: 14vw;
    border-radius: 14vw;
  }
}
.hamburger_menu .menu_btn, .hamburger_menu .menu_btn_no_txt {
  display: block;
  position: relative;
  background-color: transparent !important;
  border: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 5rem;
  padding: 0 !important;
  cursor: pointer;
  /* タブレット */
  /* 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: 2rem;
  height: 2px;
  -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(-2px) translateX(0px);
          transform: translateY(-2px) translateX(0px);
}
.hamburger_menu .menu_btn::before, .hamburger_menu .menu_btn_no_txt::before {
  background-color: #000;
  -webkit-transform: translateY(-10px) translateX(0px);
          transform: translateY(-10px) translateX(0px);
}
.hamburger_menu .menu_btn:hover::after, .hamburger_menu .menu_btn_no_txt:hover::after {
  -webkit-transform: translateY(-2px) translateX(3px);
          transform: translateY(-2px) translateX(3px);
}
.hamburger_menu .menu_btn:hover::before, .hamburger_menu .menu_btn_no_txt:hover::before {
  -webkit-transform: translateY(-10px) translateX(-3px);
          transform: translateY(-10px) 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: 1.5rem;
}
.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: 2.5rem;
}
@media screen and (max-width: 800px) {
  .hamburger_menu .menu_btn, .hamburger_menu .menu_btn_no_txt {
    width: 14vw;
    height: 14vw;
    border-radius: 14vw;
  }
}
.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(3px) translateX(0px);
          transform: translateY(3px) translateX(0px);
}
.hamburger_menu .menu_btn_no_txt::before {
  background-color: #000;
  -webkit-transform: translateY(-3px) translateX(0px);
          transform: translateY(-3px) translateX(0px);
}
.hamburger_menu .menu_btn_no_txt:hover::after {
  -webkit-transform: translateY(3px) translateX(3px);
          transform: translateY(3px) translateX(3px);
}
.hamburger_menu .menu_btn_no_txt:hover::before {
  -webkit-transform: translateY(-3px) translateX(-3px);
          transform: translateY(-3px) 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);
}
/*===============================================================

	c_pagenation

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

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

    entry-title

===============================================================*/
.entry-title {
  padding-bottom: 3rem;
}
.entry-title .title {
  font-size: 3.5rem;
}
.entry-title .date {
  color: #D7083C;
}
@media screen and (max-width: 800px) {
  .entry-title .title {
    font-size: 5vw;
  }
}

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

    section_blog

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

    blog_area_wrp

===============================================================*/
.blog_area_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;
}
.blog_area_wrp .blog_area_main {
  width: calc(100% - 350px);
}
.blog_area_wrp .blog_area_sub {
  width: 300px;
}
@media screen and (max-width: 800px) {
  .blog_area_wrp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .blog_area_wrp .blog_area_main {
    width: 100%;
  }
  .blog_area_wrp .blog_area_sub {
    width: 100%;
    margin-top: 10vw;
  }
}

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

    blog_main_area

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

    blog_sub_area

===============================================================*/
.blog_area_sub {
  /*===============================================================
  widget
  ===============================================================*/
}
.blog_area_sub .widget {
  /*-------------------------------------------------------------
  ul
  -------------------------------------------------------------*/
}
.blog_area_sub .widget + .widget {
  margin-top: 5rem;
}
.blog_area_sub .widget .widget-title {
  font-size: 2.5rem;
  font-size: 2rem;
}
@media screen and (max-width: 800px) {
  .blog_area_sub .widget {
    padding-top: 8vw;
    border-top: solid 1px #666 !important;
  }
  .blog_area_sub .widget + .widget {
    margin-top: 10vw;
  }
}
.blog_area_sub .widget ul {
  border-top: solid 1px #ccc;
  margin-top: 2rem;
}
.blog_area_sub .widget ul li a {
  text-underline-offset: 5px;
  color: #000;
  text-decoration-color: #ccc;
  text-decoration: none;
  padding: 1rem;
  font-size: 1.6rem;
  line-height: 1.5;
  display: block;
  border-bottom: solid 1px #ccc;
}
.blog_area_sub .widget ul li a:hover {
  background-color: #f5f5f5;
}
@media screen and (max-width: 800px) {
  .blog_area_sub .widget ul {
    margin-top: 3vw;
  }
  .blog_area_sub .widget ul li a {
    padding: 1rem;
    font-size: 3.5vw;
  }
}

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

    widget_search

===============================================================*/
.blog_area_wrp {
  /*===============================================================
      search-form
  ===============================================================*/
}
.blog_area_wrp input[type=search] {
  color: #666;
  background: #fff;
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  border: 1px solid #bbb;
  border-radius: 3px;
  display: block;
  padding: 0.7em;
  width: 100%;
  font-size: 1.4rem;
}
.blog_area_wrp button,
.blog_area_wrp input[type=button],
.blog_area_wrp input[type=submit] {
  border: 0;
  border-radius: 2px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1;
  padding: 0em 2em;
  text-shadow: none;
}
.blog_area_wrp input + button,
.blog_area_wrp input + input[type=button],
.blog_area_wrp input + input[type=submit] {
  padding: 0.75em 2em;
}
.blog_area_wrp [type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
.blog_area_wrp .search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto;
}
.blog_area_wrp .search-form label {
  position: absolute;
  left: -9999px;
}
.blog_area_wrp .search-form .search-field {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px 12px;
  font-size: 1.4rem;
  line-height: 1;
  border: 1px solid #ccc;
  border-radius: 6px;
  -webkit-transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s;
  transition: border-color 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
}
.blog_area_wrp .search-form .search-field:focus {
  border-color: #318fd6;
  -webkit-box-shadow: 0 0 0 3px rgba(49, 143, 214, 0.2);
          box-shadow: 0 0 0 3px rgba(49, 143, 214, 0.2);
  outline: none;
}
.blog_area_wrp .search-form .search-submit {
  padding: 15px 10px !important;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: bold;
  color: #fff;
  background: #000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.blog_area_wrp .search-form .search-submit:hover {
  background: #000;
}
.blog_area_wrp .search-form .search-submit:active {
  background: #000;
}
/*===============================================================

    blog_area_wrp

===============================================================*/
.blog_area_wrp .widget_calendar #wp-calendar {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  color: #222;
}
.blog_area_wrp .widget_calendar #wp-calendar caption {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: clamp(16px, 2.4vw, 18px);
  text-align: left;
  letter-spacing: 0.02em;
}
.blog_area_wrp .widget_calendar #wp-calendar thead th {
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  color: #8a8a8a;
  padding: 8px 0;
  border-bottom: 1px solid #EDEDED;
  border-top: 1px solid #EDEDED;
}
.blog_area_wrp .widget_calendar #wp-calendar thead th:nth-child(6) {
  color: #3057D8;
}
.blog_area_wrp .widget_calendar #wp-calendar thead th:nth-child(7) {
  color: #E02D3B;
}
.blog_area_wrp .widget_calendar #wp-calendar tbody td {
  position: relative;
  text-align: center;
  padding: 10px 0;
  height: 48px;
  font-size: 14px;
  border-bottom: 1px solid #f2f2f2;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.blog_area_wrp .widget_calendar #wp-calendar tbody td:not(.pad) {
  border-right: 1px solid #f7f7f7;
}
.blog_area_wrp .widget_calendar #wp-calendar tbody td:not(.pad):hover {
  background: #f8fbff;
}
.blog_area_wrp .widget_calendar #wp-calendar tbody td:last-child {
  border-right: none;
}
.blog_area_wrp .widget_calendar #wp-calendar tbody td:nth-child(6) {
  color: #264cc9;
}
.blog_area_wrp .widget_calendar #wp-calendar tbody td:nth-child(7) {
  color: #d41f2d;
}
.blog_area_wrp .widget_calendar #wp-calendar tbody td#today {
  font-weight: 700;
  color: #3057D8;
  background-color: rgba(48, 87, 216, 0.08);
  outline-offset: -2px;
}
.blog_area_wrp .widget_calendar #wp-calendar tbody td#today:hover {
  background: rgba(48, 87, 216, 0.08);
}
.blog_area_wrp .widget_calendar #wp-calendar tbody td.pad {
  color: transparent;
  border-bottom: none;
  background: transparent;
  pointer-events: none;
}
.blog_area_wrp .widget_calendar #wp-calendar tbody tr:last-child td {
  border-bottom: 0;
}
.blog_area_wrp .widget_calendar .wp-calendar-nav {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
}
.blog_area_wrp .widget_calendar .wp-calendar-nav .pad {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.blog_area_wrp .widget_calendar .wp-calendar-nav a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #3057D8;
  border-radius: 8px;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.04s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease, -webkit-transform 0.04s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.04s ease;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.04s ease, -webkit-transform 0.04s ease;
}
.blog_area_wrp .widget_calendar .wp-calendar-nav a .svg-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.blog_area_wrp .widget_calendar .wp-calendar-nav a:hover {
  background: #eef4ff;
  border-color: rgba(48, 87, 216, 0.3);
}
.blog_area_wrp .widget_calendar .wp-calendar-nav a:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.blog_area_wrp .widget_calendar .wp-calendar-nav .wp-calendar-nav-next a[href=""],
.blog_area_wrp .widget_calendar .wp-calendar-nav .wp-calendar-nav-next a[href="#"], .blog_area_wrp .widget_calendar .wp-calendar-nav .wp-calendar-nav-next:empty,
.blog_area_wrp .widget_calendar .wp-calendar-nav .wp-calendar-nav-prev a[href=""],
.blog_area_wrp .widget_calendar .wp-calendar-nav .wp-calendar-nav-prev a[href="#"],
.blog_area_wrp .widget_calendar .wp-calendar-nav .wp-calendar-nav-prev:empty {
  pointer-events: none;
  opacity: 0.4;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
.blog_area_wrp .widget_calendar a:focus-visible,
.blog_area_wrp .widget_calendar button:focus-visible,
.blog_area_wrp .widget_calendar td#today:focus-visible {
  outline: 3px solid rgba(48, 87, 216, 0.35);
  outline-offset: 2px;
  border-radius: 10px;
}
@media (max-width: 480px) {
  .blog_area_wrp .widget_calendar .calendar_wrap {
    padding: 12px;
    border-radius: 10px;
  }
  .blog_area_wrp .widget_calendar #wp-calendar caption {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .blog_area_wrp .widget_calendar #wp-calendar thead th {
    font-size: 11px;
    padding: 6px 0;
  }
  .blog_area_wrp .widget_calendar #wp-calendar tbody td {
    height: 40px;
    font-size: 13px;
    padding: 6px 0;
    border-bottom: 1px solid #f5f5f5;
  }
  .blog_area_wrp .widget_calendar .wp-calendar-nav a {
    padding: 7px 9px;
    font-size: 12px;
    border-radius: 7px;
  }
}

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

    _serch_result

===============================================================*/
.serch_result {
  /*===============================================================
  page-header
  ===============================================================*/
  /*===============================================================
  search-result-count
  ===============================================================*/
  /*===============================================================
      entry
  ===============================================================*/
  /*-------------------------------------------------------------
  c_pagenation
  -------------------------------------------------------------*/
}
.serch_result .page-header .page-title {
  font-size: 3rem;
}
.serch_result .page-header .search-term {
  color: #333;
}
.serch_result .search-result-count {
  font-size: 1.6rem;
}
.serch_result .entry {
  border: solid 1px #ccc;
  margin-top: 3rem;
  padding: 3rem;
}
.serch_result .entry .entry-title {
  font-size: 2rem;
}
.serch_result .entry .entry-content p {
  font-size: 90%;
  line-height: 1.6;
}
.serch_result .entry .entry-content .searchtext {
  background-color: #ff0;
}
@media screen and (max-width: 800px) {
  .serch_result .entry {
    margin-top: 5vw;
    padding: 5vw;
  }
  .serch_result .entry .entry-content p {
    font-size: 90%;
    line-height: 1.6;
    overflow-wrap: anywhere;
    /* 収まらない場合に折り返す */
    word-break: normal;
    /* 単語の分割はデフォルトに依存 */
    line-break: strict;
    /* 禁則処理を厳格に適用 */
  }
  .serch_result .entry .entry-content .searchtext {
    background-color: #ff0;
  }
}
.serch_result .c_pagenation {
  margin-top: 50px;
}
@media screen and (max-width: 800px) {
  .serch_result .c_pagenation {
    margin-top: 10vw;
  }
}

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

    section_top_kv

===============================================================*/
.section_top_kv {
  width: 100%;
  height: calc(100vh - 14rem);
  min-height: 75rem;
  max-height: 90rem;
  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;
  overflow: hidden;
  border-bottom: solid 1px #D7083C;
  /*===============================================================
  info_block
  ===============================================================*/
  /*===============================================================
  dl_block
  ===============================================================*/
  /*===============================================================
  kv_photos
  ===============================================================*/
  /*===============================================================
  kv_phone
  ===============================================================*/
  /*===============================================================
  kv_kunipay
  ===============================================================*/
  /*===============================================================
  kv_ume
  ===============================================================*/
  /*===============================================================
  kv_ume2
  ===============================================================*/
}
.section_top_kv .kv_inner {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
.section_top_kv .kv_inner .title_block {
  -webkit-transition: all 1s;
  transition: all 1s;
  opacity: 0;
  -webkit-transform: translateY(5rem);
          transform: translateY(5rem);
}
.section_top_kv .kv_inner .title_block.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.section_top_kv .kv_inner .dl_block {
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  opacity: 0;
  -webkit-transform: translateY(5rem);
          transform: translateY(5rem);
}
.section_top_kv .kv_inner .dl_block.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 1400px) {
  .section_top_kv .kv_inner {
    max-width: 100%;
    padding: 0 3vw;
  }
}
@media screen and (max-width: 800px) {
  .section_top_kv {
    height: auto;
    max-height: inherit;
  }
  .section_top_kv .kv_inner {
    width: 100%;
    max-width: auto;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    background-color: #fff;
    margin-top: -3vw;
    border-top: solid 2px #D7083C;
    padding-bottom: 10vw;
  }
}
.section_top_kv .info_block {
  width: 50rem;
}
.section_top_kv .info_block .title {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.section_top_kv .info_block .title .logo {
  width: 35rem;
  height: auto;
}
.section_top_kv .info_block .title .txt {
  font-size: 4.8rem;
  padding-left: 0.2em;
}
.section_top_kv .info_block .lead {
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1070px) {
  .section_top_kv .info_block {
    width: 46.73vw;
  }
  .section_top_kv .info_block .title .logo {
    width: 32.71vw;
  }
  .section_top_kv .info_block .title .txt {
    font-size: 4.49vw;
  }
  .section_top_kv .info_block .lead {
    font-size: 1.68vw;
    margin-top: 1.87vw;
  }
}
@media screen and (max-width: 800px) {
  .section_top_kv .info_block {
    width: 100%;
    padding: 0 5vw;
    padding-top: 8vw;
  }
  .section_top_kv .info_block .title .logo {
    width: 50vw;
  }
  .section_top_kv .info_block .title .txt {
    font-size: 5vw;
  }
  .section_top_kv .info_block .lead {
    font-size: 4vw;
    margin-top: 3vw;
  }
}
.section_top_kv .dl_block {
  margin-top: 4rem;
  /*-------------------------------------------------------------
  c_app_download
  -------------------------------------------------------------*/
}
.section_top_kv .dl_block .c_app_download .app_info {
  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%;
}
.section_top_kv .dl_block .c_app_download .download_btns {
  width: 100%;
  margin-top: 2rem;
  padding: 0 5rem;
}
.section_top_kv .dl_block .c_app_download .qr {
  display: block;
  width: 10rem;
  margin: 0 auto;
  margin-top: 1.5rem;
}
@media screen and (max-width: 800px) {
  .section_top_kv .dl_block .c_app_download {
    position: relative;
    z-index: 3;
  }
  .section_top_kv .dl_block .c_app_download .qr {
    display: none;
  }
}
.section_top_kv .kv_photos {
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 48%;
  margin: auto;
  min-width: 75rem;
  min-height: 75rem;
  width: 50vw;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 1/1;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  opacity: 0;
  -webkit-transform: translateY(3rem) scale(0.5);
          transform: translateY(3rem) scale(0.5);
}
.section_top_kv .kv_photos.show {
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
  opacity: 1;
}
.section_top_kv .kv_photos ul {
  overflow: hidden;
  border-radius: 75rem;
}
.section_top_kv .kv_photos img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1070px) {
  .section_top_kv .kv_photos {
    left: 50%;
  }
}
@media screen and (max-width: 800px) {
  .section_top_kv .kv_photos {
    position: static;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    min-width: 0;
    min-height: 0;
    height: 80vw;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
  .section_top_kv .kv_photos ul {
    height: 80vw;
    border-radius: 0;
  }
  .section_top_kv .kv_photos.show {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    opacity: 1;
  }
}
.section_top_kv .kv_phone {
  position: absolute;
  z-index: 5;
  bottom: 0;
  right: -3rem;
  margin: auto;
  width: 84rem;
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
  -webkit-transition-delay: 0.5s cubic-bezier(0.04, 0.75, 0.47, 0.99);
          transition-delay: 0.5s cubic-bezier(0.04, 0.75, 0.47, 0.99);
  opacity: 1;
  -webkit-transform: translate(100%, 3rem);
          transform: translate(100%, 3rem);
}
.section_top_kv .kv_phone.show {
  -webkit-transform: translate(3rem, 0);
          transform: translate(3rem, 0);
  opacity: 1;
}
@media screen and (max-width: 1400px) {
  .section_top_kv .kv_phone {
    right: auto;
    left: 54rem;
    width: 60%;
  }
}
@media screen and (max-width: 1070px) {
  .section_top_kv .kv_phone {
    left: 45%;
    width: 60%;
  }
}
@media screen and (max-width: 800px) {
  .section_top_kv .kv_phone {
    top: 5vw;
    bottom: auto;
    left: auto;
    right: 0;
    margin: auto;
    width: 90vw;
  }
}
.section_top_kv .kv_kunipay {
  position: absolute;
  z-index: 4;
  top: 1.5rem;
  right: 1.5rem;
  margin: auto;
  width: 37rem;
  -webkit-transition: all 1s cubic-bezier(0.04, 0.75, 0.57, 1.31);
  transition: all 1s cubic-bezier(0.04, 0.75, 0.57, 1.31);
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
  opacity: 0;
  -webkit-transform: translateY(3rem) scale(0.8);
          transform: translateY(3rem) scale(0.8);
}
.section_top_kv .kv_kunipay.show {
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
  opacity: 1;
}
@media screen and (max-width: 1400px) {
  .section_top_kv .kv_kunipay {
    top: 1.5rem;
    right: -2rem;
  }
}
@media screen and (max-width: 1070px) {
  .section_top_kv .kv_kunipay {
    width: 30%;
    width: 30rem;
    right: -3rem;
  }
}
@media screen and (max-width: 800px) {
  .section_top_kv .kv_kunipay {
    top: 3vw;
    bottom: auto;
    left: auto;
    right: 2vw;
    margin: auto;
    width: 45vw;
  }
}
.section_top_kv .kv_ume {
  position: absolute;
  margin: auto;
  z-index: 1;
  bottom: -35rem;
  left: -40rem;
  width: 70rem;
  -webkit-transition: all 1s;
  transition: all 1s;
  opacity: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.section_top_kv .kv_ume.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 1400px) {
  .section_top_kv .kv_ume {
    bottom: -45rem;
  }
}
@media screen and (max-width: 1070px) {
  .section_top_kv .kv_ume {
    bottom: -45rem;
    left: -40rem;
  }
}
@media screen and (max-width: 800px) {
  .section_top_kv .kv_ume {
    z-index: 2;
    width: 45vw;
    left: -25vw;
    top: 45vw;
    bottom: auto;
  }
}
.section_top_kv .kv_ume2 {
  display: none;
}
@media screen and (max-width: 800px) {
  .section_top_kv .kv_ume2 {
    display: block;
    position: absolute;
    z-index: 1;
    width: 70vw;
    right: -10vw;
    bottom: -5vw;
  }
}

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

    section_top_first

===============================================================*/
.section_top_first {
  /*===============================================================
  step_block
  ===============================================================*/
}
.section_top_first .step_block .step {
  display: inline-block;
  padding: 0.5em 1em;
  background-color: #D7083C;
  color: #fff;
  border-radius: 5rem;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: bold;
}
.section_top_first .step_block .step + .fig {
  margin-top: 1rem;
}
.section_top_first .step_block .title {
  margin-top: 1em;
  font-size: 2rem;
}
.section_top_first .step_block p {
  margin-top: 0.5em;
}
/*===============================================================

    section_top_feature

===============================================================*/
.section_top_feature {
  /*===============================================================
  block_feature
  ===============================================================*/
  /*===============================================================
  block_txt
  ===============================================================*/
}
.section_top_feature .block_feature {
  text-align: center;
}
.section_top_feature .block_feature .fig {
  border-radius: 100%;
  border: solid 2px #D7083C;
  overflow: hidden;
}
.section_top_feature .block_feature p {
  font-weight: bold;
  margin-top: 1em;
}
.section_top_feature .block_txt {
  text-align: center;
}
.section_top_feature .block_txt .caption {
  font-size: 1.2rem;
}
@media screen and (max-width: 800px) {
  .section_top_feature .block_txt {
    text-align: left;
  }
  .section_top_feature .block_txt .caption {
    font-size: 3vw;
  }
}

.page_top .section_topics_list {
  border-top: solid 1px rgba(215, 8, 60, 0.3);
}

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

    section_topics_list

===============================================================*/
.section_topics_list {
  /*===============================================================

      c_topics_list

  ===============================================================*/
}
.section_topics_list .c_topics_list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.section_topics_list .c_topics_list .item .date {
  width: 100%;
}
.section_topics_list .c_topics_list .item .text {
  width: 100%;
}
/*===============================================================

    section_step_guide

===============================================================*/
.section_step_guide {
  /*===============================================================
  step_block
  ===============================================================*/
  /*===============================================================
  block_blue_block
  ===============================================================*/
  /*===============================================================
  c_carousel_slider
  ===============================================================*/
  /*===============================================================
  block_step_title
  ===============================================================*/
  /*===============================================================
  guide_local_link
  ===============================================================*/
}
.section_step_guide .block_fig {
  background-color: #EDF4FA;
}
.section_step_guide .block_fig .fig img {
  text-align: center;
  max-width: 60rem;
  width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .section_step_guide .block_fig {
    margin-top: 3vw !important;
  }
  .section_step_guide .block_fig .fig {
    width: 100%;
  }
  .section_step_guide .block_fig .fig img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
}
.section_step_guide .step_block .fig {
  border: solid 5px #EDF4FA;
}
.section_step_guide .step_block.bg_white .fig {
  background-color: #fff;
}
@media screen and (max-width: 800px) {
  .section_step_guide .step_block {
    padding: 3vw;
    border: solid 1px #ccc;
    border-radius: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.section_step_guide .block_blue_block {
  text-align: center;
}
@media screen and (max-width: 800px) {
  .section_step_guide .block_blue_block {
    text-align: left;
  }
}
.section_step_guide .block_step_title {
  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_step_guide .block_step_title .step_num {
  background-color: #D7083C;
  color: #fff;
  font-size: 3rem;
  line-height: 7rem;
  width: 7rem;
  height: 7rem;
  text-align: center;
}
.section_step_guide .block_step_title .title {
  width: calc(100% - 9rem);
  font-size: 2.4rem;
  line-height: 1.6;
}
.section_step_guide .block_step_title .title strong {
  color: #D7083C;
}
.section_step_guide .block_step_title .caption {
  font-size: 1.8rem;
}
.section_step_guide .block_step_title .sub {
  color: #D7083C;
  font-size: 80%;
  font-weight: bold;
}
.section_step_guide .block_step_title .inline_num {
  background-color: #D7083C;
  color: #fff;
  padding: 0 0.5em;
}
@media screen and (max-width: 800px) {
  .section_step_guide .block_step_title {
    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;
  }
  .section_step_guide .block_step_title .step_num {
    font-size: 5vw;
    line-height: 8vw;
    margin: 0 auto;
    width: 8vw;
    height: 8vw;
    border-radius: 3px;
  }
  .section_step_guide .block_step_title .title {
    width: 100%;
    font-size: 4vw;
    margin-top: 3vw;
  }
  .section_step_guide .block_step_title .caption {
    font-size: 3.5vw;
  }
}
.section_step_guide .guide_local_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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
.section_step_guide .guide_local_link .btn {
  width: calc((100% - 6rem) / 2);
}
.section_step_guide .guide_local_link .btn a {
  display: block;
  border: solid 1px #D7083C;
  border-radius: 100px;
  text-align: center;
  color: #D7083C;
  font-size: 1.8rem;
  line-height: 1.2;
  text-decoration: none;
  padding: 1rem 0;
}
.section_step_guide .guide_local_link .btn a:hover {
  background-color: #D7083C;
  color: #fff;
}
@media screen and (max-width: 1070px) {
  .section_step_guide .guide_local_link {
    gap: 1rem;
  }
  .section_step_guide .guide_local_link .btn {
    width: calc((100% - 1rem) / 2);
  }
  .section_step_guide .guide_local_link .btn a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 800px) {
  .section_step_guide .guide_local_link {
    gap: 0;
  }
  .section_step_guide .guide_local_link .btn a {
    font-size: 3.5vw;
    border-radius: 0;
  }
  .section_step_guide .guide_local_link.app_link .btn {
    width: 50%;
  }
  .section_step_guide .guide_local_link.app_link .btn + .btn {
    margin-left: 0;
  }
  .section_step_guide .guide_local_link.app_link .btn:first-child a {
    border-radius: 2vw 0 0 0;
  }
  .section_step_guide .guide_local_link.app_link .btn:nth-child(2) a {
    border-radius: 0 2vw 0 0;
    border-left: 0;
  }
  .section_step_guide .guide_local_link.app_link .btn:nth-child(3) a {
    border-radius: 0 0 0 2vw;
    border-top: 0;
  }
  .section_step_guide .guide_local_link.app_link .btn:last-child a {
    border-radius: 0 0 2vw 0;
    border-top: 0;
    border-left: 0;
  }
  .section_step_guide .guide_local_link.card_link .btn {
    width: 33.3%;
  }
  .section_step_guide .guide_local_link.card_link .btn + .btn {
    margin-left: 0;
  }
  .section_step_guide .guide_local_link.card_link .btn + .btn a {
    border-left: 0;
  }
  .section_step_guide .guide_local_link.card_link .btn:first-child a {
    border-radius: 2vw 0 0 2vw;
  }
  .section_step_guide .guide_local_link.card_link .btn:last-child a {
    border-radius: 0 2vw 2vw 0;
  }
}

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

    section_store

===============================================================*/
.section_store {
  /*===============================================================
  filters
  ===============================================================*/
  /*===============================================================
  table_scroll
  ===============================================================*/
  /*===============================================================
  theadを固定
  ===============================================================*/
  /*===============================================================
  store_list
  ===============================================================*/
}
.section_store #no-results {
  text-align: center;
  background-color: #FCEFF2;
  padding: 3rem;
  display: none;
  margin-top: 3rem;
}
@media screen and (max-width: 800px) {
  .section_store #no-results {
    padding: 5vw;
    margin-top: 3vw;
  }
}
.section_store .filters {
  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;
  gap: 2rem;
}
.section_store .filters .c_ui_selecter {
  width: 20rem;
}
@media screen and (max-width: 800px) {
  .section_store .filters {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 2vw;
  }
  .section_store .filters .c_ui_selecter {
    width: calc(50% - 2vw);
  }
}
.section_store .table_scroll {
  margin-top: 5rem;
}
@media screen and (max-width: 800px) {
  .section_store .table_scroll {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-top: 5vw;
    padding: 3vw;
  }
}
.section_store .fixed-table-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 10rem;
  z-index: 100;
  pointer-events: none;
}
@media screen and (max-width: 800px) {
  .section_store .fixed-table-header {
    top: 14vw;
    display: none;
  }
}
.section_store .store_list th,
.section_store .store_list td {
  padding: 1em;
  font-size: 1.8rem;
  border: 0;
  vertical-align: middle;
}
.section_store .store_list .value_furusato,
.section_store .store_list .value_charge,
.section_store .store_list .value_card {
  text-align: center;
}
.section_store .store_list .value_area {
  text-align: right;
}
.section_store .store_list thead {
  background-color: #fff;
}
.section_store .store_list thead th {
  font-weight: bold;
  padding: 0 1em;
  font-size: 1.6rem;
}
.section_store .store_list tbody td {
  background-color: #EDF4FA;
  border-top: solid 5px #fff;
}
.section_store .store_list tbody td:first-child {
  font-weight: bold;
}
.section_store .store_list .circle {
  display: inline-block;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background-color: #5987EF;
}
@media screen and (max-width: 800px) {
  .section_store .store_list {
    /* テーブル分解版 */
    /*
    th,
    td {
        padding: 1em;
        font-size: 4vw;
        border: 0;
        display: list-item;
        display: block;
        width: 100%;
    }

    tr {
        display: list-item;
        display: block;
    }

    thead {
        display: none;
    }

    tbody {
        tr {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        td {
            border-top: solid 0px #fff;
        }

        td:first-child {
            padding: 1vw 0;
            margin-top: 3vw;
            font-weight: bold;
            background-color: #fff;
            color: #000;
        }

        .value_area,
        .value_industry,
        .value_furusato,
        .value_charge,
        .value_card {
            // text-align: right;
            text-align: left;
            position: relative;
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            padding: 1vw 3vw;
            font-size: 3.5vw;
            border-top: dashed 1px rgba(0, 0, 0, 0.1);

            //  width: 50%;
            br {
                display: none;
            }

            &::before {
                text-align: right;
                color: #666;
            }
        }

        .value_industry {
            width: 100%;

            &::before {
                content: '業種';
            }
        }

        .value_card {
            &::before {
                content: 'カード利用';
            }
        }

        .value_charge {
            &::before {
                content: 'チャージ';
            }
        }

        .value_furusato {
            &::before {
                content: 'ふるさと納税';
            }
        }

        .value_area {
            &::before {
                content: 'エリア';
            }
        }
    }

    .circle {
        display: inline-block;
        width: 1.8rem;
        height: 1.8rem;
        border: 1px solid $c_blue;
        border-radius: 50%;
    }
    */
  }
  .section_store .store_list th,
  .section_store .store_list td {
    padding: 1em 0.5em;
    font-size: 3vw;
    line-height: 1.3;
  }
  .section_store .store_list .value_furusato,
  .section_store .store_list .value_charge,
  .section_store .store_list .value_card {
    text-align: center;
    padding: 1em 0.8em;
    font-size: 2.8vw;
  }
  .section_store .store_list .value_area {
    white-space: nowrap;
    padding: 1em 0.5em 1em 0;
    font-size: 2.8vw;
  }
  .section_store .store_list .value_industry {
    text-align: center;
    white-space: nowrap;
    font-size: 2.8vw;
  }
  .section_store .store_list thead {
    background-color: #fff;
  }
  .section_store .store_list thead th {
    padding: 0.5em;
    font-size: 2.8vw;
  }
  .section_store .store_list tbody td {
    border-top: solid 2px #fff;
  }
  .section_store .store_list .circle {
    width: 3vw;
    height: 3vw;
  }
}

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

    section_merchant

===============================================================*/
.section_merchant {
  /*===============================================================
  kunipay_merit
  ===============================================================*/
}
.section_merchant .kunipay_merit {
  /*===============================================================
  title_block
  ===============================================================*/
  /*===============================================================
  body_block
  ===============================================================*/
  /*===============================================================
  merit_block
  ===============================================================*/
  /*===============================================================
  txt_block
  ===============================================================*/
}
.section_merchant .kunipay_merit .title_block .logo {
  max-width: 50rem;
  margin: 0 auto;
}
.section_merchant .kunipay_merit .title_block .lead {
  text-align: center;
  font-weight: bold;
  margin-top: 5rem;
}
@media screen and (max-width: 800px) {
  .section_merchant .kunipay_merit .title_block .logo {
    max-width: 80%;
  }
  .section_merchant .kunipay_merit .title_block .lead {
    text-align: left;
    margin-top: 5vw;
    font-size: 4vw;
    font-weight: normal;
  }
}
.section_merchant .kunipay_merit .body_block {
  padding-top: 2rem;
  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;
}
.section_merchant .kunipay_merit .body_block .merit_block {
  width: calc((100% - 3rem) / 2);
  margin-top: 3rem;
}
@media screen and (max-width: 800px) {
  .section_merchant .kunipay_merit .body_block {
    margin-top: 0;
    padding-top: 3vw;
  }
  .section_merchant .kunipay_merit .body_block .merit_block {
    width: 100%;
    margin-top: 3vw;
  }
}
.section_merchant .kunipay_merit .merit_block {
  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;
  border-radius: 3rem;
  overflow: hidden;
  border: solid 2px #D7083C;
}
.section_merchant .kunipay_merit .merit_block .merit {
  width: 5rem;
  background-color: #D7083C;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section_merchant .kunipay_merit .merit_block .merit .num {
  font-size: 5rem;
  line-height: 1;
}
.section_merchant .kunipay_merit .merit_block .merit .label {
  font-size: 0.8rem;
  font-weight: bold;
}
.section_merchant .kunipay_merit .merit_block .txt_block {
  width: calc(100% - 5rem);
}
@media screen and (max-width: 800px) {
  .section_merchant .kunipay_merit .merit_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 3vw;
  }
  .section_merchant .kunipay_merit .merit_block .merit {
    width: 100%;
    padding: 2vw;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 2vw;
  }
  .section_merchant .kunipay_merit .merit_block .merit .num {
    font-size: 6vw;
    line-height: 6vw;
  }
  .section_merchant .kunipay_merit .merit_block .merit .label {
    font-size: 4vw;
    line-height: 6vw;
  }
  .section_merchant .kunipay_merit .merit_block .txt_block {
    width: 100%;
  }
}
.section_merchant .kunipay_merit .txt_block {
  padding: 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;
}
.section_merchant .kunipay_merit .txt_block .title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #D7083C;
}
.section_merchant .kunipay_merit .txt_block p {
  margin-top: 0.5em;
  line-height: 1.6;
}
@media screen and (max-width: 800px) {
  .section_merchant .kunipay_merit .txt_block {
    padding: 5vw;
  }
  .section_merchant .kunipay_merit .txt_block .title {
    font-size: 4vw;
  }
  .section_merchant .kunipay_merit .txt_block p {
    font-size: 3.5vw;
  }
}

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

    section_gift

===============================================================*/
.section_gift .coming_soon {
  min-height: 10vh;
  text-align: center;
}

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

    section_contact

===============================================================*/
.section_contact {
  /*===============================================================
          block_btns
  ===============================================================*/
}
@media screen and (max-width: 800px) {
  .section_contact .block_title .title {
    font-size: 3.7vw;
  }
  .section_contact .block_title .name,
  .section_contact .block_title .tel,
  .section_contact .block_title p {
    font-size: 3.5vw;
  }
}
.section_contact .block_btns .contact_wrp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 800px) {
  .section_contact .block_btns .contact_wrp {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3vw;
  }
  .section_contact .block_btns .contact_wrp .left_btn,
  .section_contact .block_btns .contact_wrp .right_btn {
    width: 100%;
  }
}

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

    section_offer_details

===============================================================*/
.section_offer_details {
  /*===============================================================
         nopayment_block
  ===============================================================*/
}
@media screen and (max-width: 800px) {
  .section_offer_details .block p {
    font-size: 3.5vw;
  }
  .section_offer_details .block_title .title {
    font-size: 3.7vw;
  }
}
.section_offer_details .nopayment_block {
  margin-top: 4rem !important;
}
.section_offer_details .nopayment_block .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #ccc;
  padding: 1rem 0;
}
.section_offer_details .nopayment_block .item:last-child {
  border-bottom: 1px solid #ccc;
}
.section_offer_details .nopayment_block .item .nopayment_name {
  width: 52%;
  padding: 0 4rem 0 2rem;
}
.section_offer_details .nopayment_block .item .nopayment_content {
  width: 48%;
}
.section_offer_details .nopayment_block .item .nopayment_content p {
  font-size: 1.8rem;
}
@media screen and (max-width: 800px) {
  .section_offer_details .nopayment_block .item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 3vw 0;
  }
  .section_offer_details .nopayment_block .item .nopayment_name {
    width: 100%;
    padding: 0 5vw 0 0;
  }
  .section_offer_details .nopayment_block .item .nopayment_name .title {
    font-size: 3.7vw;
  }
  .section_offer_details .nopayment_block .item .nopayment_content {
    width: 100%;
    margin-top: 1.5vw;
  }
  .section_offer_details .nopayment_block .item .nopayment_content p {
    font-size: 3.5vw;
  }
}

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

	_top.scss 2024/2/16

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

	page_top

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

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

	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: 25px 0 10px;
  margin-right: 2%;
  font-size: 20px;
}
.form_content .form_table dt span {
  padding-left: 3px;
}
.form_content .form_table dd {
  width: 100%;
}
.form_content .form_table dd + dt {
  margin-top: 40px;
}
.form_content .form_table .sample {
  font-size: small;
  font-weight: normal;
  padding-left: 10px;
}
.form_content .form_table .red {
  color: #D7083C;
  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 #8F8F8F !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: 50%;
}
.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: 1rem;
}

/*　チェックボックスの装飾　*/
.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: 50px;
  background-color: #5987EF !important;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  cursor: pointer;
  -webkit-appearance: none;
  border: solid 1px #5987EF;
}
.submit input:hover {
  background-color: #D7083C !important;
  border: solid 1px #D7083C !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: #D7083C;
  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;
  }
}

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

	popup-Window

===============================================================*/
.popup-Window {
  z-index: 140 !important;
}
@media screen and (max-width: 800px) {
  .popup-Window {
    bottom: 17.5vw !important;
  }
  .popup-Window.is-show {
    bottom: 17.5vw !important;
  }
}

/*===============================================================
	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 */