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

	色

===============================================================*/
/* 文字色 */
.color_main {
  color: #333;
}

.color_main_hover {
  color: #444;
}

.color_sub {
  color: #ccc;
}

.color_sub_hover {
  color: #ddd;
}

.color_red {
  color: #D83039;
}

.color_red_hover {
  color: #e62630;
}

.color_brown {
  color: #724141;
}

.color_brown_hover {
  color: #8e4a4a;
}

.color_lightbrown {
  color: #B47B37;
}

.color_lightbrown_hover {
  color: #c58435;
}

.color_blue {
  color: #3057D8;
}

.color_midblue {
  color: #318FD6;
}

.color_lightblue {
  color: #61C9F7;
}

.color_green {
  color: #1F5018;
}

.color_lightgreen {
  color: #2BA015;
}

.color_orange {
  color: #FFAC0D;
}

.color_purple {
  color: #c001e6;
}

.color_yellow {
  color: #fc0;
}

.color_beige {
  color: #F4F3E9;
}

.color_beige_dark {
  color: #e0decf;
}

.color_pink {
  color: #FD004E;
}

.color_gray {
  color: #666;
}

.color_white {
  color: #fff;
}

.color_gray_light {
  color: #8F8F8F;
}

.color_key {
  color: #5987EF;
}

.color_gradation {
  color: linear-gradient(to right, rgb(130, 66, 185) 0%, rgb(35, 64, 186) 100%);
}

.color_page_bg {
  color: #F5F4F0;
}

.color_main_text {
  color: #333;
}

.color_link_text {
  color: #06179b;
}

.color_link_text_hover {
  color: #6807f9;
}

.color_border_line {
  color: #666;
}

.color_focus {
  color: #ff0;
}

/* 背景色 */
.bg_main {
  background-color: #333;
}

.bg_main_hover {
  background-color: #444;
}

.bg_sub {
  background-color: #ccc;
}

.bg_sub_hover {
  background-color: #ddd;
}

.bg_red {
  background-color: #D83039;
}

.bg_red_hover {
  background-color: #e62630;
}

.bg_brown {
  background-color: #724141;
}

.bg_brown_hover {
  background-color: #8e4a4a;
}

.bg_lightbrown {
  background-color: #B47B37;
}

.bg_lightbrown_hover {
  background-color: #c58435;
}

.bg_blue {
  background-color: #3057D8;
}

.bg_midblue {
  background-color: #318FD6;
}

.bg_lightblue {
  background-color: #61C9F7;
}

.bg_green {
  background-color: #1F5018;
}

.bg_lightgreen {
  background-color: #2BA015;
}

.bg_orange {
  background-color: #FFAC0D;
}

.bg_purple {
  background-color: #c001e6;
}

.bg_yellow {
  background-color: #fc0;
}

.bg_beige {
  background-color: #F4F3E9;
}

.bg_beige_dark {
  background-color: #e0decf;
}

.bg_pink {
  background-color: #FD004E;
}

.bg_gray {
  background-color: #666;
}

.bg_white {
  background-color: #fff;
}

.bg_gray_light {
  background-color: #8F8F8F;
}

.bg_key {
  background-color: #5987EF;
}

.bg_gradation {
  background: -webkit-gradient(linear, left top, right top, from(rgb(130, 66, 185)), to(rgb(35, 64, 186)));
  background: linear-gradient(to right, rgb(130, 66, 185) 0%, rgb(35, 64, 186) 100%);
}

/* gradationはbackground-colorではなくbackground */
.bg_page_bg {
  background-color: #F5F4F0;
}

.bg_main_text {
  background-color: #333;
}

.bg_link_text {
  background-color: #06179b;
}

.bg_link_text_hover {
  background-color: #6807f9;
}

.bg_border_line {
  background-color: #666;
}

.bg_focus {
  background-color: #ff0;
}

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

	_reset.scss 2021/9/24

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

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

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

blockquote,
q {
  quotes: none;
}

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

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

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

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

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

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

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

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

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

ul,
li {
  list-style: none;
}

option {
  padding-right: 1em;
}

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

a {
  text-decoration: underline;
}

ul a,
li a {
  zoom: 1;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

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

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

.en {
  font-family: "Knewave", system-ui;
  font-weight: 400;
  font-style: normal;
}

/*===============================================================
	フォント
===============================================================*/
/*-------------------------------------------------------------
フォントサイズ
-------------------------------------------------------------*/
.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: #F5F4F0;
  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: #06179b;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: underline;
}

a:hover {
  color: #6807f9;
  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 #ff0;
          box-shadow: 0 0 20px 0 #ff0;
}

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

/* タブレット以下 */
/* 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;
    font-size: 3.2vw;
  }
  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 {
  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);
  }
}
/*===============================================================

    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: #D83039;
  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: #e62630;
}
.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 {
    display: none;
  }
  .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 #06179b;
  background-color: #F5F4F0;
  color: #06179b;
}
.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 #06179b;
  background-color: #06179b;
  color: #F5F4F0;
}
@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: auto;
  max-width: auto;
  margin-left: auto;
  margin-right: auto;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
* + .c_btn, * + .c_btn_round {
  margin-top: 3rem;
}
.c_btn a, .c_btn_round a {
  display: block;
  text-align: center;
  color: #F5F4F0;
  background-color: #06179b;
  padding: 1rem;
  font-weight: bold;
  position: relative;
}
.c_btn a .label, .c_btn_round a .label {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.3;
}
.c_btn a:hover, .c_btn_round a:hover {
  text-decoration: none;
  color: #F5F4F0;
  background-color: #6807f9;
}
@media screen and (max-width: 800px) {
  .c_btn, .c_btn_round {
    width: 90%;
  }
  * + .c_btn, * + .c_btn_round {
    margin-top: 3rem;
  }
  .c_btn + .c_btn, .c_btn_round + .c_btn, .c_btn + .c_btn_round, .c_btn_round + .c_btn_round {
    margin-top: 1.5rem;
  }
  .c_btn a, .c_btn_round a {
    padding: 2.5vw 0;
  }
  .c_btn a .label, .c_btn_round a .label {
    font-size: 1.6rem;
  }
}

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

/*-------------------------------------------------------------
    c_btn_grade
-------------------------------------------------------------*/
.c_btn_grade a {
  position: relative;
  z-index: 1;
  background-color: transparent !important;
  background: -webkit-gradient(linear, left top, right top, from(rgb(130, 66, 185)), to(rgb(35, 64, 186)));
  background: linear-gradient(to right, rgb(130, 66, 185) 0%, rgb(35, 64, 186) 100%);
}
.c_btn_grade a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left top, right top, from(rgb(109, 45, 164)), to(rgb(14, 43, 165)));
  background: linear-gradient(to right, rgb(109, 45, 164) 0%, rgb(14, 43, 165) 100%);
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.c_btn_grade a:hover::before {
  opacity: 1;
}

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

/*-------------------------------------------------------------
    btn_flex	
-------------------------------------------------------------*/
.c_btn_flex {
  width: auto;
  display: inline-block;
  min-width: inherit;
  max-width: 60rem;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_btn_flex a {
  padding-left: 3rem;
  padding-right: 3rem;
}
/*-------------------------------------------------------------
    btn_deactive	
-------------------------------------------------------------*/
.c_btn_deactive {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_btn_deactive a {
  pointer-events: none;
  border: dashed 2px rgba(6, 23, 155, 0.5);
  background-color: transparent;
  color: #06179b;
  padding: calc(1rem - 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_btn_white_line

===============================================================*/
.c_btn_white_line a {
  background-color: transparent;
  border: solid 3px #fff;
  color: #fff;
}
.c_btn_white_line a:hover {
  background-color: transparent;
  border: solid 3px #fff;
  color: #fff;
  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_txtlink

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

	c_datalist

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

/*-------------------------------------------------------------
    c_indent_list	
-------------------------------------------------------------*/
.c_indent_list {
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_indent_list li {
  padding-left: 1em;
  text-indent: -1em;
}
.c_indent_list li + li {
  margin-top: 5px;
}
/*---------------------------------------------------------------
		リスト
	---------------------------------------------------------------*/
.c_ul_list li {
  position: relative;
  padding-left: 1.6rem;
}
.c_ul_list li::after {
  content: "";
  position: absolute;
  top: 0.95rem;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #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 .title {
  font-size: 4rem;
  line-height: 1.3;
}
.headline .lead {
  font-size: 2rem;
}
.headline .title + .lead {
  margin-top: 1.5rem;
}
.headline .lead + .title {
  margin-top: 0.5rem;
}
.content * + .headline {
  margin-top: 5rem;
}
@media screen and (max-width: 800px) {
  .headline .title {
    font-size: 2.8rem;
    line-height: 1.4;
  }
  .headline .lead {
    font-size: 1.8rem;
    line-height: 1.7;
  }
  .headline .title + .lead {
    margin-top: 1.5rem;
  }
  .headline .lead + .title {
    margin-top: 0.5rem;
  }
  .content * + .headline {
    margin-top: 8vw;
  }
}

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

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

/*-------------------------------------------------------------
	lv_2	
-------------------------------------------------------------*/
.lv_2 .title {
  font-size: 2.5rem;
}
.lv_2 .lead {
  font-size: 1.8rem;
}
.lv_2 .title + .lead {
  margin-top: 0.5rem;
}
@media screen and (max-width: 800px) {
  .lv_2 .title {
    font-size: 2.5rem;
  }
  .lv_2 .lead {
    font-size: 1.8rem;
  }
  .lv_2 .title + .lead {
    margin-top: 1rem;
  }
  .lv_2 .lead + .title {
    margin-top: 0vw;
  }
}

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

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

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

	pankuzu

===============================================================*/
.pankuzu {
  text-align: left;
  padding: 0;
  padding-top: 50px;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.pankuzu li {
  display: inline-block;
  padding-left: 0.8rem;
}
.pankuzu li:first-child {
  padding-left: 0;
}
.pankuzu li a {
  text-decoration: none;
  position: relative;
  padding-right: 1.8rem;
  color: #333;
}
.pankuzu li a:hover {
  color: #c00;
}
.pankuzu li a::after {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 0;
  border-right: solid 1px #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 {
    padding: 3vw 5vw;
    padding-bottom: 0;
  }
  .pankuzu h1,
  .pankuzu li {
    padding-left: 1.5vw;
    font-size: 3vw;
  }
  .pankuzu li a {
    padding-right: 3vw;
  }
  .pankuzu li a:hover {
    color: #c00;
  }
  .pankuzu li a::after {
    width: 1.5vw;
    height: 1.5vw;
  }
  .pankuzu .update {
    font-size: 3.5vw;
  }
}

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

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

    c_photo

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

    c_column

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

/*-------------------------------------------------------------
    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: #D83039;
}
.c_category_label .label_blue {
  background-color: #3057D8;
}
.c_category_label .label_green {
  background-color: #1F5018;
}
.c_category_label .label_brown {
  background-color: #724141;
}
.c_category_label .label_orange {
  background-color: #FFAC0D;
}
.c_category_label .label_line {
  color: #000;
  background: #fff;
  border: solid 1px #000;
}

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

    c_category_label_list

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

	c_topics_list

===============================================================*/
.c_topics_list {
  border-bottom: solid 1px #666;
}
.c_topics_list .item {
  position: relative;
  border-top: solid 1px #666;
  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: #333;
}
.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(0, 0, 0, 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_menu_content

===============================================================*/
.c_menu_content {
  /*===============================================================
  school_info_block
  ===============================================================*/
  /*===============================================================
  sns_block
  ===============================================================*/
  /*===============================================================
  contact_block
  ===============================================================*/
  /*===============================================================
  btn_block
  ===============================================================*/
  /*===============================================================
  menu_block
  ===============================================================*/
}
.c_menu_content .school_info_block {
  text-align: center;
}
.c_menu_content .school_info_block .logo {
  width: 15rem;
  margin: 0 auto;
}
.c_menu_content .school_info_block .title_en {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: bold;
  margin-top: 0.5em;
}
.c_menu_content .school_info_block .title_jp {
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: bold;
  margin-top: 0.5em;
}
.c_menu_content .school_info_block .address {
  font-size: 1.6rem;
  line-height: 1.3;
  margin-top: 0.5em;
}
@media screen and (max-width: 800px) {
  .c_menu_content .school_info_block .logo {
    width: 25vw;
  }
  .c_menu_content .school_info_block .title_en {
    font-size: 4vw;
  }
  .c_menu_content .school_info_block .title_jp {
    font-size: 4.5vw;
  }
  .c_menu_content .school_info_block .address {
    font-size: 4vw;
  }
  .c_menu_content .school_info_block .br {
    display: none;
  }
}
.c_menu_content .sns_block {
  margin-top: 3rem;
}
.c_menu_content .sns_block ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
.c_menu_content .sns_block li {
  width: 5rem;
}
.c_menu_content .sns_block a {
  display: block;
}
.c_menu_content .sns_block a:hover {
  opacity: 0.7;
}
.c_menu_content .contact_block {
  margin-inline: auto;
  margin-top: 4rem;
  text-align: center;
  max-width: 1070px;
  /*-------------------------------------------------------------
  border_box
  -------------------------------------------------------------*/
}
.c_menu_content .contact_block .en {
  font-size: 4rem;
}
@media screen and (max-width: 800px) {
  .c_menu_content .contact_block {
    margin-top: 5vw;
    padding: 0 5vw;
  }
  .c_menu_content .contact_block .en {
    font-size: 8vw;
  }
}
.c_menu_content .contact_block .border_box {
  border: solid 3px #fff;
  border-radius: 2rem;
}
.c_menu_content .contact_block .border_box a:hover {
  opacity: 0.7;
}
.c_menu_content .contact_block .border_box .title_block {
  padding: 1rem 2rem;
  font-size: 2rem;
  border-bottom: solid 1px #fff;
}
.c_menu_content .contact_block .border_box .info_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c_menu_content .contact_block .border_box .info_block .mail_block,
.c_menu_content .contact_block .border_box .info_block .tel_block {
  width: 50%;
  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;
  padding: 3rem;
}
.c_menu_content .contact_block .border_box .mail_block {
  font-size: 3rem;
}
.c_menu_content .contact_block .border_box .tel_block {
  border-left: solid 1px #fff;
}
.c_menu_content .contact_block .border_box .tel_block .tel {
  font-size: 4rem;
  line-height: 1;
  font-weight: bold;
}
.c_menu_content .contact_block .border_box .tel_block .time {
  font-size: 1.4rem;
}
@media screen and (max-width: 1070px) {
  .c_menu_content .contact_block .border_box .info_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c_menu_content .contact_block .border_box .info_block .mail_block,
  .c_menu_content .contact_block .border_box .info_block .tel_block {
    width: 100%;
    padding: 1.5rem;
  }
  .c_menu_content .contact_block .border_box .info_block .tel_block {
    border-left: solid 0 #fff;
    border-top: dashed 1px rgba(255, 255, 255, 0.3);
  }
}
@media screen and (max-width: 800px) {
  .c_menu_content .contact_block .border_box .title_block {
    font-size: 4vw;
  }
  .c_menu_content .contact_block .border_box .info_block .mail_block,
  .c_menu_content .contact_block .border_box .info_block .tel_block {
    padding: 5vw 3vw;
  }
  .c_menu_content .contact_block .border_box .mail_block {
    font-size: 6vw;
  }
  .c_menu_content .contact_block .border_box .tel_block .tel {
    font-size: 7vw;
  }
  .c_menu_content .contact_block .border_box .tel_block .time {
    font-size: 3.2vw;
    margin-top: 0.5em;
  }
}
.c_menu_content .btn_block {
  max-width: 88rem;
  width: 100%;
  margin-inline: auto;
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c_menu_content .btn_block .c_btn_round {
  width: 22%;
}
.c_menu_content .btn_block .c_btn_round + .c_btn_round {
  margin-top: 0;
}
@media screen and (max-width: 1070px) {
  .c_menu_content .btn_block {
    padding: 0 3rem;
  }
}
@media screen and (max-width: 800px) {
  .c_menu_content .btn_block {
    padding: 0 5vw;
    margin-top: 5vw;
  }
  .c_menu_content .btn_block .c_btn_round + .c_btn_round,
  .c_menu_content .btn_block .c_btn_round {
    width: calc((100% - 5vw) / 2);
    margin-top: 3vw;
  }
}
.c_menu_content .menu_block {
  max-width: 100rem;
  margin-inline: auto;
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10rem;
}
.c_menu_content .menu_block .bold {
  font-weight: bold;
}
.c_menu_content .menu_block a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1070px) {
  .c_menu_content .menu_block {
    gap: 3rem;
  }
}
@media screen and (max-width: 800px) {
  .c_menu_content .menu_block {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    gap: 0;
    padding: 5vw 5vw;
    margin-top: 10vw;
  }
  .c_menu_content .menu_block ul {
    width: 50%;
    margin-top: 5vw;
  }
  .c_menu_content .menu_block li {
    font-size: 3.5vw;
    margin-top: 0.3em;
  }
}

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

    c_scroll_offer

===============================================================*/
.c_scroll_offer {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header_show .c_scroll_offer {
  opacity: 0;
  -webkit-transform: translateY(5rem);
          transform: translateY(5rem);
}
.c_scroll_offer .inner {
  position: absolute;
  bottom: 4rem;
  right: 0;
  color: #000;
  width: 10rem;
  height: 2.5rem;
  font-size: 1.2rem;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c_scroll_offer .inner .txt {
  position: relative;
}
.c_scroll_offer .inner .txt::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 10rem;
  height: 1px;
  background-color: #000;
}
.c_scroll_offer .inner .txt::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  margin: auto;
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #000;
  background-color: #D83039;
  -webkit-animation: animation_scroll_offer 2s infinite cubic-bezier(0.17, 0.67, 0.69, 0.99);
          animation: animation_scroll_offer 2s infinite cubic-bezier(0.17, 0.67, 0.69, 0.99);
}
@media screen and (max-width: 800px) {
  .c_scroll_offer .inner {
    position: absolute;
    bottom: 41vw;
    right: -6vw;
  }
  .c_scroll_offer .inner .txt {
    position: relative;
  }
}
@-webkit-keyframes animation_scroll_offer {
  0% {
    left: 0;
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    left: 10rem;
    opacity: 0;
  }
}
@keyframes animation_scroll_offer {
  0% {
    left: 0;
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    left: 10rem;
    opacity: 0;
  }
}

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

    c_fig_wave

===============================================================*/
.c_fig_wave {
  position: relative;
  height: 5vw;
}
.c_fig_wave img {
  width: 100%;
  position: absolute;
  z-index: 1;
  width: 104vw;
  height: auto;
  left: -2vw;
  right: -2vw;
  bottom: 0;
}
@media screen and (max-width: 800px) {
  .c_fig_wave {
    position: relative;
    height: 10vw;
  }
  .c_fig_wave img {
    width: 200vw;
    left: -50vw;
    right: -50vw;
  }
}

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

    c_sp_fixed_cta

===============================================================*/
.c_sp_fixed_cta {
  display: none;
}
@media screen and (max-width: 800px) {
  .c_sp_fixed_cta {
    display: block;
    position: fixed;
    z-index: 100;
    bottom: 0;
    left: 0;
    width: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgb(130, 66, 185)), to(rgb(35, 64, 186)));
    background: linear-gradient(to right, rgb(130, 66, 185) 0%, rgb(35, 64, 186) 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3vw;
  }
  .c_sp_fixed_cta a {
    color: #fff;
    display: block;
    padding: 4vw 2vw;
    text-decoration: none;
    font-size: 4.5vw;
  }
  .c_sp_fixed_cta a span {
    font-weight: bold;
  }
  .c_sp_fixed_cta a:hover {
    opacity: 0.7;
  }
}

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

    c_faq

===============================================================*/
.c_faq {
  /*-------------------------------------------------------------
  faq_title
  -------------------------------------------------------------*/
  /*---------------------------------------------------------------
      accordion
  ---------------------------------------------------------------*/
}
.c_faq .faq_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 16px;
  font-weight: 500;
}
.c_faq .faq_title::before {
  content: "";
  width: 32px;
  height: 32px;
  margin-right: 20px;
  background-image: url(/common/images/asset/icon_q.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c_faq .faq_text {
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 800px) {
  .c_faq .faq_title {
    font-size: 3.8vw;
  }
  .c_faq .faq_title::before {
    width: 8vw;
    height: 8vw;
    margin-right: 4vw;
  }
  .c_faq .faq_text {
    font-size: 3.8vw;
    line-height: 1.8;
  }
}
.c_faq .accordion {
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
  /* TABLET */
  /* SP */
}
.c_faq .accordion + .accordion {
  margin-top: 2rem;
}
.c_faq .accordion_header {
  position: relative;
  padding: 2rem;
  cursor: pointer;
}
.c_faq .accordion_header::before, .c_faq .accordion_header::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2.5rem;
  margin: auto;
  width: 2rem;
  height: 2px;
  background: #999;
  border-radius: 50vh;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c_faq .accordion_header::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c_faq .accordion_header.active::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.c_faq .accordion_body {
  position: relative;
}
.c_faq .accordion_body::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: calc(100% - 50px);
  height: 1px;
  background: #ddd;
}
.c_faq .accordion_content {
  padding: 3rem;
}
@media screen and (max-width: 800px) {
  .c_faq .accordion {
    border-radius: 3vw;
  }
  .c_faq .accordion + .accordion {
    margin-top: 3vw;
  }
  .c_faq .accordion_header {
    padding: 5vw 12vw 5vw 5vw;
  }
  .c_faq .accordion_header::before, .c_faq .accordion_header::after {
    right: 4vw;
    width: 4.2vw;
    height: 0.6vw;
  }
  .c_faq .accordion_body::after {
    width: calc(100% - 6vw);
  }
  .c_faq .accordion_content {
    padding: 4.5vw 5vw 5vw;
  }
}

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

    card_slider

===============================================================*/
.card_slider {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 0;
  position: relative;
  z-index: 10;
  /*-------------------------------------------------------------
  slick_slider
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  slide
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  slide
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  txt_block
  -------------------------------------------------------------*/
  /*===============================================================
  	dots	
  ===============================================================*/
  /*===============================================================
  	pager	
  ===============================================================*/
  /*-------------------------------------------------------------
  pager
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  no_data_box
  -------------------------------------------------------------*/
}
.card_slider .slider {
  position: relative;
  max-height: 500px;
}
.card_slider .selider_loaded {
  opacity: 1;
  max-height: inherit;
}
.card_slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.card_slider .slick-slide {
  height: auto !important;
}
.card_slider .c_btn_round {
  margin-top: 1.3rem;
}
@media screen and (max-width: 800px) {
  .card_slider {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding-bottom: 0;
  }
  .card_slider .c_btn_round {
    margin-top: 4vw;
    width: 70%;
  }
}
.card_slider .slick_slider {
  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;
  z-index: 1;
  overflow: visible;
  /* ガター */
}
.card_slider .slick_slider .slick-list {
  margin-right: -2rem;
  /*PC時、状況によっては不要*/
  overflow: visible;
}
.card_slider .slick_slider .slick-slide {
  margin-right: 2rem;
}
@media screen and (max-width: 800px) {
  .card_slider .slick_slider {
    padding: 0 5vw;
    /* ガター */
  }
  .card_slider .slick_slider .slick-list {
    margin-right: -5vw;
    /*PC時、状況によっては不要*/
  }
  .card_slider .slick_slider .slick-slide {
    margin-right: 5vw;
  }
}
.card_slider .slide {
  width: 480px;
  position: relative;
}
.card_slider .slide .thumbnail {
  border-radius: 3rem;
  overflow: hidden;
}
.card_slider .slide .time {
  font-size: 3rem;
  line-height: 1;
  font-weight: bold;
  margin-top: 0.8em;
}
.card_slider .slide p {
  font-size: 2rem;
  line-height: 1.4;
  margin-top: 0.5em;
}
@media screen and (max-width: 800px) {
  .card_slider .slide {
    width: 84vw;
  }
  .card_slider .slide .thumbnail {
    border-radius: 3vw;
  }
  .card_slider .slide .time {
    font-size: 5vw;
  }
  .card_slider .slide p {
    font-size: 3.2vw;
  }
}
.card_slider .slick-dotted.slick-slider {
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.card_slider .slick-dots {
  bottom: -40px;
  height: 40px;
  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;
}
.card_slider .slick-dots li {
  margin: 0;
}
.card_slider .slick-dots li button {
  padding: 10px;
  background-color: transparent;
}
.card_slider .slick-dots button:not(:hover):not(:active):not(.has-background) {
  background-color: transparent;
}
.card_slider .slick-dots li button::before {
  font-size: 15px;
  color: #D83039;
}
.card_slider .slick-prev,
.card_slider .slick-next {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 100%;
  cursor: pointer;
  display: block;
  overflow: hidden;
  position: absolute;
  text-indent: -9999px;
  z-index: 5;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  height: 40px;
  width: 40px;
  top: 40px;
  padding: 15px !important;
  top: auto;
  bottom: -80px;
  margin: auto;
  background: #318FD6 !important;
}
.card_slider .slick-prev::before,
.card_slider .slick-next::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-right: solid 2px #fff;
  border-bottom: solid 2px #fff;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(-45deg) translate(-1px, -1px);
          transform: rotate(-45deg) translate(-1px, -1px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.card_slider .slick-prev:hover,
.card_slider .slick-next:hover {
  opacity: 0.8;
}
.card_slider .slick-prev {
  left: 32rem;
}
.card_slider .slick-prev::before {
  -webkit-transform: rotate(135deg) translate(-1px, -1px);
          transform: rotate(135deg) translate(-1px, -1px);
}
.card_slider .slick-next {
  right: 32rem;
}
.card_slider .slick-disabled:hover,
.card_slider .slick-disabled {
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 800px) {
  .card_slider .slick-prev,
  .card_slider .slick-next {
    width: 40px;
  }
  .card_slider .slick-prev::before,
  .card_slider .slick-next::before {
    border-right: solid 2px #fff;
    border-bottom: solid 2px #fff;
    width: 8px;
    height: 8px;
  }
  .card_slider .slick-prev {
    left: 3vw;
  }
  .card_slider .slick-next {
    right: 3vw;
  }
}
.card_slider .pager {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  z-index: 2;
}
.card_slider .pager.prev {
  left: 0;
}
.card_slider .pager.next {
  right: 0;
}
.card_slider .pager::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border: solid 3px #fff;
  width: 20px;
  height: 20px;
  border-top: none;
  border-left: none;
  -webkit-transform: rotate(-45deg) translate(-1px, -1px);
          transform: rotate(-45deg) translate(-1px, -1px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.card_slider .pager.prev::after {
  -webkit-transform: rotate(135deg) translate(-1px, -1px);
          transform: rotate(135deg) translate(-1px, -1px);
}
@media screen and (max-width: 800px) {
  .card_slider .pager {
    margin: auto;
    background: rgba(0, 0, 0, 0.5);
    width: 10vw;
    z-index: 2;
  }
}
.card_slider .no_data_box {
  text-align: center;
  width: 100%;
  padding: 50px;
  font-size: 16px;
  color: #fff;
  border: solid 1px rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 800px) {
  .card_slider .no_data_box {
    padding: 5vw;
    font-size: 3.5vw;
    margin: 0 auto;
    width: 90%;
  }
}

/*===============================================================
js_scroll
===============================================================*/
.card_slider {
  opacity: 0;
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
  -webkit-transition: all 0.5s cubic-bezier(0.07, 0.67, 0.75, 0.97);
  transition: all 0.5s cubic-bezier(0.07, 0.67, 0.75, 0.97);
}
.card_slider.is_active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
/*===============================================================

	marquee

===============================================================*/
.c_marquee {
  width: 100%;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  revers	
     -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  hoge	
     -------------------------------------------------------------*/
  /*===============================================================
      //	marquee
  ===============================================================*/
}
.c_marquee .txt {
  white-space: nowrap;
  font-size: 20rem;
  line-height: 1.2;
}
.c_marquee .txt:nth-child(odd) {
  -webkit-animation: marquee_loop 50s -25s linear infinite;
          animation: marquee_loop 50s -25s linear infinite;
}
.c_marquee .txt:nth-child(even) {
  -webkit-animation: marquee_loop2 50s linear infinite;
          animation: marquee_loop2 50s linear infinite;
}
@media screen and (max-width: 800px) {
  .c_marquee .txt {
    font-size: 40vw;
  }
}
.c_marquee.revers {
  background-color: #000;
  color: #ff0;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.c_marquee.revers .txt:nth-child(odd) {
  -webkit-animation: marquee_loop_revers 50s -25s linear infinite;
          animation: marquee_loop_revers 50s -25s linear infinite;
}
.c_marquee.revers .txt:nth-child(even) {
  -webkit-animation: marquee_loop_revers2 50s linear infinite;
          animation: marquee_loop_revers2 50s linear infinite;
}
@-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%);
  }
}
@-webkit-keyframes marquee_loop_revers {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes marquee_loop_revers {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@-webkit-keyframes marquee_loop_revers2 {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes marquee_loop_revers2 {
  0% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

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

	レイアウト
	_rayout.scss

===============================================================*/
.full_width {
  padding-left: 5rem;
  padding-right: 5rem;
}
@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 5rem;
  }
}
@media screen and (max-width: 1170px) {
  .max_width {
    padding: 0 3rem;
  }
}
@media screen and (max-width: 800px) {
  .max_width {
    padding-left: 0;
    padding-right: 0;
  }
}

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

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

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

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

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

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

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

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

===============================================================*/
.section_wrp {
  overflow: hidden;
  display: block;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.section {
  width: 100%;
}

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

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

	content 
	個別のコンテンツ

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

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

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

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

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

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

    block_title

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

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

	_header.scss 2021/10/4

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

	header

===============================================================*/
.header {
  position: relative;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  background-color: #D83039;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*===============================================================
  site_title
  ===============================================================*/
}
.header .header_inner {
  max-width: 1500px;
  margin: 0 auto;
  height: 10rem;
  position: relative;
}
@media screen and (max-width: 1530px) {
  .header {
    padding: 0 1.5rem;
  }
}
@media screen and (max-width: 800px) {
  .header {
    height: auto;
    padding: 0;
  }
  .header .header_inner {
    height: auto;
  }
}
.header .site_title {
  width: 46rem;
  line-height: 1;
  height: auto;
  color: #fff;
}
.header .site_title .copy {
  font-size: 1rem;
  line-height: 1;
}
.header .site_title a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #fff;
  margin-top: 0.5rem;
}
.header .site_title .logo {
  width: 6rem;
}
.header .site_title .title_txt {
  margin-left: 1rem;
  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;
  line-height: 1.5;
}
.header .site_title .title_en {
  font-size: 1.2rem;
  font-weight: bold;
}
.header .site_title .title_jp {
  font-size: 1.8rem;
  font-weight: bold;
  margin-left: -0.1em;
}
@media screen and (max-width: 800px) {
  .header .site_title {
    width: auto;
  }
  .header .site_title .copy {
    display: block;
    width: 100%;
    font-size: 2.5vw;
    line-height: 1.8;
    text-align: center;
    height: auto;
    background-color: #F5F4F0;
    color: #666;
  }
  .header .site_title a {
    margin-top: 0;
    padding: 2vw 3vw;
  }
  .header .site_title .logo {
    width: 6rem;
  }
  .header .site_title .title_txt {
    margin-left: 1rem;
    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;
    line-height: 1.5;
  }
  .header .site_title .title_en {
    font-size: 2.5vw;
  }
  .header .site_title .title_jp {
    font-size: 3.5vw;
    line-height: 1.2;
  }
}

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

	.header.show

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

	page_top

===============================================================*/
.page_top .header {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  background-color: transparent;
}
.page_top.header_show .header {
  background-color: #D83039;
}
@media screen and (max-width: 800px) {
  .page_top .header {
    background-color: #D83039;
  }
}

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

	_footer.scss 2021/10/4

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

	footer

===============================================================*/
.footer {
  position: relative;
  z-index: 100;
  overflow: hidden;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.footer .footer_inner {
  padding-bottom: 10rem;
  position: relative;
  z-index: 2;
  background-color: #1F5018;
  color: #fff;
}
.footer .footer_inner a {
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 800px) {
  .footer .footer_inner {
    padding-bottom: 8vw;
  }
}
.footer .footer_bottom {
  background-color: #fff;
  color: #333;
  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: -8vw;
  }
  .grid_wrp .grid {
    margin-top: 8vw;
  }
  .grid_wrp .grid .grid_wrp {
    margin-top: -3vw;
  }
  .grid_wrp .grid .grid {
    margin-top: 3vw;
  }
  .grid_wrp .grid_1_1 {
    width: 100%;
  }
  .grid_wrp .grid_2_1 {
    width: 100%;
  }
  .grid_wrp .grid_3_1 {
    width: calc((100% - 5vw) / 2);
  }
  .grid_wrp .grid_3_2 {
    width: 100%;
  }
  .grid_wrp .grid_4_1 {
    width: calc((100% - 5vw) / 2);
  }
  .grid_wrp .grid_5_1 {
    width: calc((100% - 5vw) / 2);
  }
  .grid_wrp .grid_6_1 {
    width: calc((100% - 10vw) / 3);
  }
  .grid_wrp.grid_wrp3:after {
    width: calc((100% - 80px) / 3);
  }
  .grid_wrp.grid_wrp4:after, .grid_wrp.grid_wrp4:before {
    width: calc((100% - 120px) / 4);
  }
  .grid_wrp.grid_wrp5:after, .grid_wrp.grid_wrp5:before {
    width: calc((100% - 80px) / 5);
  }
  .grid_wrp .sp_grid_1 {
    width: 100% !important;
  }
}

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

	navigation_panel

===============================================================*/
.navigation_panel {
  position: fixed;
  z-index: 150;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
  color: #fff;
  background-color: #F5F4F0;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
  /*-------------------------------------------------------------
  body_block
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  	btn_close_navigation_panel
  -------------------------------------------------------------*/
  /*===============================================================

  c_menu_content 上書き

  ===============================================================*/
  /*-------------------------------------------------------------
  school_info_block
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  sns_block
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  contact_block
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  btn_block
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  menu_block
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  lang_menu
  -------------------------------------------------------------*/
}
.menu_open .navigation_panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
}
.menu_show .navigation_panel {
  opacity: 1;
}
.navigation_panel a {
  color: #fff;
  text-decoration: none;
}
.navigation_panel .navigation_panel_inner {
  width: 100%;
  -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 .body_block {
  margin: 0;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.navigation_panel .btn_close_navigation_panel {
  margin-top: 2rem;
  /* タブレット */
  /* for TABLET */
  /* SP */
  /* for SP */
}
.navigation_panel .btn_close_navigation_panel a {
  display: inline-block;
  min-width: 20rem;
  font-size: 1.6rem;
  color: #fff;
  border: solid 1px #fff;
  padding: 1rem 3rem;
}
.navigation_panel .btn_close_navigation_panel a:hover {
  opacity: 0.6;
}
.navigation_panel .c_menu_content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navigation_panel .c_menu_content .menu_content {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navigation_panel .c_menu_content .left_block {
  width: 50rem;
  background-color: #F5F4F0;
  color: #1F5018;
}
.navigation_panel .c_menu_content .right_block {
  width: calc(100% - 50rem);
  background-color: #1F5018;
  padding: 3rem 3rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (max-width: 1300px) {
  .navigation_panel .c_menu_content .left_block {
    width: 40rem;
  }
  .navigation_panel .c_menu_content .right_block {
    width: calc(100% - 40rem);
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 1070px) {
  .navigation_panel .c_menu_content .left_block {
    width: 28rem;
  }
  .navigation_panel .c_menu_content .right_block {
    width: calc(100% - 28rem);
    padding: 0 2rem;
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 800px) {
  .navigation_panel .c_menu_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .navigation_panel .c_menu_content .right_block,
  .navigation_panel .c_menu_content .left_block {
    width: 100%;
    min-height: 0;
  }
}
.navigation_panel .school_info_block .br {
  display: none;
}
@media screen and (max-width: 1300px) {
  .navigation_panel .school_info_block .br {
    display: block;
  }
}
@media screen and (max-width: 800px) {
  .navigation_panel .school_info_block {
    padding: 10vw 0 0 0;
  }
  .navigation_panel .school_info_block .br {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .navigation_panel .sns_block {
    padding-bottom: 25vw;
  }
}
.navigation_panel .contact_block {
  width: 100%;
  max-width: 900px;
  /*-------------------------------------------------------------
  border_box
  -------------------------------------------------------------*/
}
@media screen and (max-width: 1070px) {
  .navigation_panel .contact_block {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 800px) {
  .navigation_panel .contact_block {
    margin-top: 5vw;
    padding: 0;
  }
}
.navigation_panel .contact_block .border_box {
  width: 100%;
}
@media screen and (max-width: 1400px) {
  .navigation_panel .contact_block .border_box .info_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .navigation_panel .contact_block .border_box .info_block .mail_block,
  .navigation_panel .contact_block .border_box .info_block .tel_block {
    width: 100%;
    padding: 1.5rem;
  }
  .navigation_panel .contact_block .border_box .info_block .tel_block {
    border-left: solid 0 #fff;
    border-top: dashed 1px rgba(255, 255, 255, 0.3);
  }
}
@media screen and (max-width: 1070px) {
  .navigation_panel .btn_block {
    padding: 0;
    margin-top: 3rem;
  }
  .navigation_panel .btn_block .c_btn_round {
    margin: 0;
    width: 24%;
  }
}
@media screen and (max-width: 800px) {
  .navigation_panel .btn_block {
    margin-top: 8vw;
  }
  .navigation_panel .btn_block .c_btn_round + .c_btn_round,
  .navigation_panel .btn_block .c_btn_round {
    width: calc((100% - 5vw) / 2);
    margin-top: 3vw;
  }
}
@media screen and (max-width: 1500px) {
  .navigation_panel .menu_block {
    gap: 4rem;
  }
}
@media screen and (max-width: 1300px) {
  .navigation_panel .menu_block {
    gap: 2rem;
  }
}
@media screen and (max-width: 1100px) {
  .navigation_panel .menu_block {
    gap: 0;
    margin-top: 0;
  }
  .navigation_panel .menu_block ul {
    width: 50%;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 800px) {
  .navigation_panel .menu_block {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    padding: 0;
    padding-top: 3vw;
  }
  .navigation_panel .menu_block ul {
    margin-top: 5vw;
  }
}
.navigation_panel .lang_menu {
  display: none;
}
@media screen and (max-width: 800px) {
  .navigation_panel .lang_menu {
    display: block;
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding-top: 10.5vw;
    width: auto;
    height: 28vw;
  }
  .navigation_panel .lang_menu .active a {
    color: #fff;
    background-color: #1F5018;
  }
}

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

	lang_menu

===============================================================*/
.lang_menu {
  position: fixed;
  z-index: 500;
  top: 2.5rem;
  right: 8.75rem;
  width: 20rem;
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lang_menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
.lang_menu ul a {
  color: #333;
  background-color: #fff;
  text-decoration: none;
  padding: 5px 1.5rem;
  font-weight: bold;
  border-radius: 50px;
}
.lang_menu ul .active a {
  color: #fff;
  background-color: #D83039;
}
.menu_show .lang_menu .active a {
  background-color: #1F5018;
}
@media screen and (max-width: 800px) {
  .lang_menu {
    display: none;
  }
}

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

    page_top

===============================================================*/
.page_top .menu_btn::after, .page_top .hamburger_menu .menu_btn_no_txt::after, .hamburger_menu .page_top .menu_btn_no_txt::after, .page_top .menu_btn::before, .page_top .hamburger_menu .menu_btn_no_txt::before, .hamburger_menu .page_top .menu_btn_no_txt::before {
  background-color: #000;
}
.page_top.header_show .menu_btn::after, .page_top.header_show .hamburger_menu .menu_btn_no_txt::after, .hamburger_menu .page_top.header_show .menu_btn_no_txt::after, .page_top.header_show .menu_btn::before, .page_top.header_show .hamburger_menu .menu_btn_no_txt::before, .hamburger_menu .page_top.header_show .menu_btn_no_txt::before, .page_top.menu_open .menu_btn::after, .page_top.menu_open .hamburger_menu .menu_btn_no_txt::after, .hamburger_menu .page_top.menu_open .menu_btn_no_txt::after, .page_top.menu_open .menu_btn::before, .page_top.menu_open .hamburger_menu .menu_btn_no_txt::before, .hamburger_menu .page_top.menu_open .menu_btn_no_txt::before {
  background-color: #fff !important;
}
@media screen and (max-width: 800px) {
  .page_top .menu_btn::after, .page_top .hamburger_menu .menu_btn_no_txt::after, .hamburger_menu .page_top .menu_btn_no_txt::after, .page_top .menu_btn::before, .page_top .hamburger_menu .menu_btn_no_txt::before, .hamburger_menu .page_top .menu_btn_no_txt::before {
    background-color: #fff !important;
  }
}

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

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: 6.8vw;
    right: 3vw;
    width: 14vw;
    height: 14vw;
  }
  .hamburger_menu .hamburger_menu_inner {
    width: 14vw;
    height: 14vw;
  }
}
.hamburger_menu .hamburger_menu_btn_bg {
  background-color: trancepalent;
  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: #fff;
  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: #fff;
  -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: #fff;
  -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 {
  -webkit-transform: translateY(3px) translateX(0px);
          transform: translateY(3px) translateX(0px);
}
.hamburger_menu .menu_btn_no_txt::before {
  -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: 0;
}
.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;
  }
}
.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 .title {
  font-size: 4rem;
}
.entry-title * + .title {
  margin-top: 0.5em;
}
/*===============================================================

    js_particle

===============================================================*/
.js_particle {
  position: fixed;
  inset: 0;
  z-index: -1;
  /* 背景に回す */
  pointer-events: none;
  /* クリック透過 */
  background: #F5F4F0;
  /* お好みで背景色 */
}
@media screen and (max-width: 800px) {
  .js_particle {
    display: none;
  }
}

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

    section_headline

===============================================================*/
.section_headline .title_en {
  font-size: 12rem;
  line-height: 1;
}
.section_headline .title {
  font-size: 4rem;
  line-height: 1.2;
  margin-top: 0.8em;
}
.section_headline .subtitle {
  font-size: 3rem;
  line-height: 1.4;
  margin-top: 0.2em;
}
.section_headline .lead {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-top: 1.5em;
}
@media screen and (max-width: 800px) {
  .section_headline .title_en {
    font-size: 12vw;
  }
  .section_headline .title {
    font-size: 6vw;
  }
  .section_headline .subtitle {
    font-size: 4vw;
  }
  .section_headline .lead {
    font-size: 3.5vw;
    margin-top: 1em;
  }
}

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

    section_top_kv

===============================================================*/
.section_top_kv {
  position: relative;
  z-index: 1;
  /*===============================================================
  offer_circle
  ===============================================================*/
  /*===============================================================
  fig_block
  ===============================================================*/
  /*===============================================================
  txt_block
  ===============================================================*/
  /*===============================================================
  topics_block
  ===============================================================*/
}
.section_top_kv .top_kv_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section_top_kv .fig_block,
.section_top_kv .txt_block {
  width: 50%;
  height: 100vh;
  min-height: 77rem;
  max-height: 120rem;
  position: relative;
  z-index: 1;
}
.section_top_kv .txt_block {
  padding-top: 15rem;
}
@media screen and (max-width: 1300px) {
  .section_top_kv .fig_block {
    width: 38%;
  }
  .section_top_kv .txt_block {
    width: 62%;
  }
}
@media screen and (max-width: 800px) {
  .section_top_kv .top_kv_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section_top_kv .fig_block,
  .section_top_kv .txt_block {
    width: 100%;
    height: 100%;
    min-height: 0;
  }
  .section_top_kv .fig_block {
    min-height: 135vw;
  }
  .section_top_kv .txt_block {
    padding-top: 0;
  }
}
.section_top_kv .offer_circle {
  position: absolute;
  z-index: 3;
  width: 28rem;
  height: 28rem;
  bottom: 5rem;
  /*-------------------------------------------------------------
  circle_block
  -------------------------------------------------------------*/
}
.section_top_kv .offer_circle .offer_circle_inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  z-index: 1;
  display: block;
  text-decoration: none;
}
.section_top_kv .offer_circle .offer_circle_inner::after {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 4rem;
  left: 0;
  right: 0;
  margin: auto;
  border: solid 3px #3057D8;
  width: 1.5rem;
  height: 1.5rem;
  border-top: none;
  border-left: none;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section_top_kv .offer_circle .offer_circle_inner:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.section_top_kv .offer_circle .circle_block {
  background-color: #fff;
  width: calc(100% - 4rem);
  aspect-ratio: 1/1;
  border-radius: 100%;
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 2;
}
.section_top_kv .offer_circle .rotetion_txt {
  width: 100%;
  aspect-ratio: 1/1;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  -webkit-animation: rotate_loop 40s linear infinite;
          animation: rotate_loop 40s linear infinite;
}
@media screen and (max-width: 800px) {
  .section_top_kv .offer_circle {
    width: 42vw;
    height: 42vw;
    left: auto;
    right: -1vw;
    bottom: auto;
    top: 85vw;
  }
  .section_top_kv .offer_circle .offer_circle_inner::after {
    bottom: 5.5vw;
    width: 3vw;
    height: 3vw;
  }
  .section_top_kv .offer_circle .offer_circle_inner:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .section_top_kv .offer_circle .circle_block {
    width: calc(100% - 3vw);
    top: 1.5vw;
    left: 1.5vw;
  }
  .section_top_kv .offer_circle .rotetion_txt {
    width: 100%;
    aspect-ratio: 1/1;
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0;
    -webkit-animation: rotate_loop 60s linear infinite;
            animation: rotate_loop 60s linear infinite;
  }
}
.section_top_kv .offer_circle .circle_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  position: relative;
  z-index: 4;
}
.section_top_kv .offer_circle .circle_block .subtitle {
  line-height: 1;
  -webkit-transform: rotate(-3deg);
          transform: rotate(-3deg);
}
.section_top_kv .offer_circle .circle_block .subtitle span {
  background-color: #3057D8;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.3;
  padding: 1px 5px;
}
.section_top_kv .offer_circle .circle_block .title {
  margin-top: 1.5rem;
  color: #3057D8;
  font-size: 3rem;
  line-height: 1.1;
}
.section_top_kv .offer_circle .circle_block .title span {
  font-weight: bold;
}
.section_top_kv .offer_circle .circle_block .title .line3 {
  font-size: 2.5rem;
}
@media screen and (max-width: 800px) {
  .section_top_kv .offer_circle .circle_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .section_top_kv .offer_circle .circle_block .subtitle {
    line-height: 1;
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
    margin-top: -3vw;
  }
  .section_top_kv .offer_circle .circle_block .subtitle span {
    font-size: 3.5vw;
    line-height: 1.3;
  }
  .section_top_kv .offer_circle .circle_block .title {
    margin-top: 2vw;
    font-size: 5.5vw;
    line-height: 1.2;
  }
  .section_top_kv .offer_circle .circle_block .title .line3 {
    font-size: 5vw;
  }
}
.section_top_kv .fig_block [class^=fig] {
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}
.section_top_kv .fig_block .fig01 {
  width: 94rem;
  top: -3rem;
  right: 0;
  z-index: 2;
}
.section_top_kv .fig_block .fig02 {
  width: 62rem;
  bottom: 0;
  right: -5rem;
  z-index: 3;
}
.section_top_kv .fig_block .fig03 {
  width: 60rem;
  top: -12rem;
  right: -51rem;
  opacity: 0.7;
}
.section_top_kv .fig_block .fig04 {
  width: 30rem;
  bottom: 0;
  right: -28rem;
  opacity: 0.7;
}
@media screen and (max-width: 1300px) {
  .section_top_kv .fig_block .fig01 {
    right: -8rem;
  }
  .section_top_kv .fig_block .fig03 {
    right: -60rem;
  }
  .section_top_kv .fig_block .fig04 {
    right: -28rem;
  }
}
@media screen and (max-width: 1070px) {
  .section_top_kv .fig_block .fig01 {
    right: -5rem;
  }
  .section_top_kv .fig_block .fig02 {
    right: -6rem;
  }
  .section_top_kv .fig_block .fig03 {
    right: -55rem;
  }
}
@media screen and (max-width: 800px) {
  .section_top_kv .fig_block .fig01 {
    width: 130vw;
    top: 8vw;
    right: auto;
    left: -21vw;
  }
  .section_top_kv .fig_block .fig02 {
    width: 75vw;
    bottom: 0;
    right: auto;
    left: -12vw;
  }
}
.section_top_kv .txt_block {
  position: relative;
  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;
  /*-------------------------------------------------------------
  title_block
  -------------------------------------------------------------*/
  /* 調整しやすいようにカスタムプロパティ化 */
  /*-------------------------------------------------------------
  btn_block
  -------------------------------------------------------------*/
  /*-------------------------------------------------------------
  bg_illust
  -------------------------------------------------------------*/
}
.section_top_kv .txt_block .txt_block_inner {
  max-width: 52rem;
}
.section_top_kv .txt_block .title_block {
  position: relative;
  z-index: 2;
}
.section_top_kv .txt_block .title_block * {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section_top_kv .txt_block .title_block .subtitle {
  font-size: 3rem;
  color: #D83039;
  font-weight: bold;
}
.section_top_kv .txt_block .title_block .title {
  font-size: 4rem;
  display: inline-block;
  margin-top: 1rem;
  font-weight: bold;
}
.section_top_kv .txt_block .title_block .lead {
  margin-top: 2rem;
  font-size: 2rem;
}
@media screen and (max-width: 1000px) {
  .section_top_kv .txt_block .title_block .subtitle {
    font-size: 2.5rem;
  }
  .section_top_kv .txt_block .title_block .title {
    font-size: 3.5rem;
  }
  .section_top_kv .txt_block .title_block .lead {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 800px) {
  .section_top_kv .txt_block .title_block {
    padding: 4vw 8vw;
    padding-top: 8vw;
  }
  .section_top_kv .txt_block .title_block .subtitle {
    font-size: 5vw;
  }
  .section_top_kv .txt_block .title_block .title {
    font-size: 6.5vw;
    margin-top: 0;
  }
  .section_top_kv .txt_block .title_block .lead {
    font-size: 3.5vw;
  }
}
.section_top_kv .txt_block .marker-underline {
  --marker-color: #FAE859;
  --marker-height: 0.4em;
  --side-pad: .08em;
  --bottom-gap: .06em;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0, var(--marker-color)));
  background-image: linear-gradient(transparent calc(100% - var(--marker-height) - var(--bottom-gap)), var(--marker-color) 0);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 var(--side-pad);
  /* 行頭行末で色が欠けないよう微調整 */
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-weight: bold;
}
.section_top_kv .txt_block .btn_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section_top_kv .txt_block .btn_block .c_btn_round,
.section_top_kv .txt_block .btn_block .c_btn_round + .c_btn_round {
  margin: 0;
  margin-top: 5rem;
  width: calc((100% - 3rem) / 3);
}
@media screen and (max-width: 1070px) {
  .section_top_kv .txt_block .btn_block .c_btn_round,
  .section_top_kv .txt_block .btn_block .c_btn_round + .c_btn_round {
    width: calc((100% - 1rem) / 3);
  }
  .section_top_kv .txt_block .btn_block .c_btn_round a .label,
  .section_top_kv .txt_block .btn_block .c_btn_round + .c_btn_round a .label {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 800px) {
  .section_top_kv .txt_block .btn_block {
    display: none;
  }
}
.section_top_kv .txt_block .bg_illust {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
}
.section_top_kv .txt_block .bg_illust [class^=ill_] {
  position: absolute;
  opacity: 0.7;
}
.section_top_kv .txt_block .bg_illust .ill_txt01 {
  top: -7rem;
  left: -8rem;
}
.section_top_kv .txt_block .bg_illust .ill_txt02 {
  top: 55rem;
}
@media screen and (max-width: 1300px) {
  .section_top_kv .txt_block .bg_illust .ill_txt01 {
    left: -1rem;
  }
}
@media screen and (max-width: 800px) {
  .section_top_kv .txt_block .bg_illust {
    display: none;
  }
}
.section_top_kv .topics_block {
  position: relative;
  z-index: 3;
  margin-top: 6rem;
  width: 100%;
  max-width: 52rem;
  /*-------------------------------------------------------------
  top_topics_list
  -------------------------------------------------------------*/
}
.section_top_kv .topics_block .topics_block_inner {
  background-color: #fff;
  width: 100%;
  max-width: 52rem;
  border-radius: 2rem;
  padding: 2rem 3rem;
  padding-right: 1rem;
}
.section_top_kv .topics_block .ill {
  position: absolute;
  width: 4rem;
  top: -0.8rem;
  left: -2rem;
  -webkit-animation: rotate_loop_revers 10s linear infinite;
          animation: rotate_loop_revers 10s linear infinite;
}
.section_top_kv .topics_block .title {
  font-size: 2rem;
  padding-bottom: 0.2em;
  color: #D83039;
  background-image: url(/common/images/asset/ill_under_line.svg);
  background-position: bottom left -0.3em;
  background-repeat: no-repeat;
}
@media screen and (max-width: 800px) {
  .section_top_kv .topics_block {
    margin-top: 0;
    padding: 5vw 3vw;
    padding-top: 15vw;
    width: 100vw;
  }
  .section_top_kv .topics_block .topics_block_inner {
    border-radius: 3vw;
    padding: 5vw;
    padding-top: 2vw;
  }
  .section_top_kv .topics_block .ill {
    width: 12vw;
    top: 10vw;
    left: auto;
    right: 0;
  }
  .section_top_kv .topics_block .title {
    font-size: 6vw;
    margin-top: -8vw;
  }
}
.section_top_kv .topics_block .top_topics_list {
  max-height: 10rem;
  overflow-y: scroll;
  margin-top: 0.5rem;
}
.section_top_kv .topics_block .top_topics_list .item {
  padding-right: 2em;
}
.section_top_kv .topics_block .top_topics_list .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1.4;
  color: #3057D8;
  text-decoration: none;
  padding: 1rem 0;
}
.section_top_kv .topics_block .top_topics_list .item a:hover {
  color: #3057D8;
}
.section_top_kv .topics_block .top_topics_list .item .deactive {
  pointer-events: none;
  color: #000;
}
.section_top_kv .topics_block .top_topics_list .item .date {
  width: 8.5em;
}
.section_top_kv .topics_block .top_topics_list .item .label {
  width: calc(100% - 8.5em);
  line-height: 1.4;
}
@media screen and (max-width: 1070px) {
  .section_top_kv .topics_block .top_topics_list .item {
    padding-right: 2em;
  }
}
@media screen and (max-width: 800px) {
  .section_top_kv .topics_block .top_topics_list {
    max-height: 20vw;
    margin-top: 2vw;
  }
  .section_top_kv .topics_block .top_topics_list .item {
    padding-right: 0;
  }
  .section_top_kv .topics_block .top_topics_list .item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 2vw;
    border-radius: 2vw;
    background-color: rgba(97, 201, 247, 0.1);
  }
  .section_top_kv .topics_block .top_topics_list .item .deactive {
    background-color: rgba(97, 201, 247, 0);
  }
  .section_top_kv .topics_block .top_topics_list .item .date {
    width: 100%;
    font-size: 3.2vw;
    font-weight: bold;
  }
  .section_top_kv .topics_block .top_topics_list .item .label {
    width: 100%;
    font-size: 3.8vw;
  }
}

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

    section_top_access

===============================================================*/
.section_top_access {
  /*===============================================================
  block_googlemap
  ===============================================================*/
}
.section_top_access .section_headline .en {
  color: #61C9F7;
}
.section_top_access .block_googlemap iframe {
  width: 100%;
  height: 40rem;
}
/*===============================================================

    section_top_support

===============================================================*/
.section_top_support {
  color: #fff;
  /*===============================================================
  block_supportmenu
  ===============================================================*/
}
.section_top_support .section_headline {
  color: #fff;
}
.section_top_support .section_inner {
  background-color: #3057D8;
  border-radius: 0 0 10rem 10rem;
  margin-top: -1px;
  padding-top: 5rem;
  padding-bottom: 15rem;
}
@media screen and (max-width: 1070px) {
  .section_top_support .section_inner {
    border-radius: 0 0 10rem 10rem;
    padding-top: 5rem;
    padding-bottom: 15rem;
  }
}
@media screen and (max-width: 800px) {
  .section_top_support .section_inner {
    border-radius: 0 0 5vw 5vw;
    padding-top: 5vw;
    padding-bottom: 15vw;
  }
}
.section_top_support .block_supportmenu .item {
  text-align: center;
}
.section_top_support .block_supportmenu .item .thumbnail {
  border-radius: 2rem;
  overflow: hidden;
}
.section_top_support .block_supportmenu .item .title {
  margin-top: 1em;
}
.section_top_support .block_supportmenu .item p {
  line-height: 1.6;
  margin-top: 0.5em;
}
.section_top_support .block_supportmenu .item .c_btn_round {
  min-width: 20rem;
}
@media screen and (max-width: 800px) {
  .section_top_support .block_supportmenu .item {
    text-align: center;
  }
  .section_top_support .block_supportmenu .item .thumbnail {
    width: 80%;
    margin-inline: auto;
  }
  .section_top_support .block_supportmenu .item .title {
    font-size: 4.5vw;
  }
  .section_top_support .block_supportmenu .item p {
    font-size: 3.5vw;
  }
  .section_top_support .block_supportmenu .item .c_btn_round {
    min-width: 0;
    width: 50%;
    margin-top: 5vw;
  }
}

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

    section_top_faq

===============================================================*/
.section_top_faq .section_headline .en {
  color: #FFAC0D;
}
/*===============================================================

    section_top_voice

===============================================================*/
.section_top_voice {
  /*===============================================================
  pop_voice_block
  ===============================================================*/
  /*-------------------------------------------------------------
  pop_block
  -------------------------------------------------------------*/
  /* バリエーション */
  /*===============================================================
  contact_block
  ===============================================================*/
}
.section_top_voice .section_headline .en {
  color: #2BA015;
}
.section_top_voice .section_inner {
  background-image: url(/common/images/top/bg_voice.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  background-size: 1800px auto;
}
@media screen and (max-width: 800px) {
  .section_top_voice .section_inner {
    background-size: 400vw auto;
    background-position: top -15vw center;
  }
}
.section_top_voice .pop_voice_block {
  width: 120rem;
  margin-left: -6.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section_top_voice .pop_voice_block [class^=fig] {
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
  width: 6rem;
}
.section_top_voice .pop_voice_block .voice {
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  .section_top_voice .pop_voice_block {
    width: 100%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 800px) {
  .section_top_voice .pop_voice_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section_top_voice .pop_voice_block [class^=fig] {
    width: 12vw;
  }
  .section_top_voice .pop_voice_block .voice {
    font-size: 3.5vw;
  }
}
.section_top_voice .pop_block {
  width: 30%;
  text-align: center;
  background-color: #fff;
  position: relative;
  padding: 5rem 3rem;
  border-radius: 3rem;
}
.section_top_voice .pop_block::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -3rem;
  left: 0;
  right: 0;
  margin: auto;
  width: 2rem;
  height: 2rem;
  border-top: 2rem solid #fff;
  border-bottom: 2rem solid transparent;
  border-left: 2rem solid transparent;
  border-right: 2rem solid #fff;
  -webkit-transform: translateX(8rem);
          transform: translateX(8rem);
}
@media screen and (max-width: 1200px) {
  .section_top_voice .pop_block {
    width: 32%;
    padding: 5rem 2rem;
  }
  .section_top_voice .pop_block br {
    display: none;
  }
}
@media screen and (max-width: 800px) {
  .section_top_voice .pop_block {
    width: 100%;
    padding: 4vw;
    border-radius: 3vw;
  }
  .section_top_voice .pop_block + .pop_block {
    margin-top: 5vw;
  }
  .section_top_voice .pop_block br {
    display: block;
  }
  .section_top_voice .pop_block::after {
    content: "";
    position: absolute;
    bottom: -3vw;
    left: auto;
    right: 10vw;
    margin: auto;
    width: 5vw;
    height: 5vw;
    border-top: 3vw solid #fff;
    border-bottom: 3vw solid transparent;
    border-left: 3vw solid #fff;
    border-right: 3vw solid transparent;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.section_top_voice .pop_block:nth-child(1) .fig {
  top: -2rem;
  left: -2rem;
}
.section_top_voice .pop_block:nth-child(2)::after {
  -webkit-transform: translateX(-5rem);
          transform: translateX(-5rem);
}
.section_top_voice .pop_block:nth-child(2) .fig {
  top: -2rem;
  right: -2rem;
}
.section_top_voice .pop_block:nth-child(3)::after {
  border-top: 2rem solid #fff;
  border-bottom: 2rem solid transparent;
  border-left: 2rem solid #fff;
  border-right: 2rem solid transparent;
  -webkit-transform: translateX(-8rem);
          transform: translateX(-8rem);
}
.section_top_voice .pop_block:nth-child(3) .fig {
  bottom: -2rem;
  right: -2rem;
}
@media screen and (max-width: 800px) {
  .section_top_voice .pop_block:nth-child(3)::after {
    border-top: 3vw solid #fff;
    border-bottom: 3vw solid transparent;
    border-left: 3vw solid #fff;
    border-right: 3vw solid transparent;
    -webkit-transform: translateX(-27vw);
            transform: translateX(-27vw);
  }
  .section_top_voice .pop_block:nth-child(3) .fig {
    width: 14vw;
    bottom: auto;
    top: -5vw;
    right: auto;
    left: -5vw;
  }
}
.section_top_voice .contact_block {
  max-width: 66rem;
  margin: 0 auto;
}
.section_top_voice .contact_block .inner {
  border: solid 3px #24E014;
  background-color: #fff;
  border-radius: 3rem;
  padding: 4rem;
  text-align: center;
  position: relative;
}
.section_top_voice .contact_block .title {
  font-size: 3rem;
}
.section_top_voice .contact_block .fig {
  position: absolute;
  width: 14rem;
  top: -6rem;
  right: -2rem;
}
@media screen and (max-width: 800px) {
  .section_top_voice .contact_block .inner {
    border-radius: 3vw;
    padding: 8vw 3vw;
  }
  .section_top_voice .contact_block .title {
    font-size: 5vw;
  }
  .section_top_voice .contact_block .c_btn_round {
    margin-top: 3vw;
  }
  .section_top_voice .contact_block .fig {
    position: absolute;
    width: 22vw;
    top: -10vw;
    right: -5vw;
  }
}

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

    section_top_oneday

===============================================================*/
.section_top_oneday .section_headline .en {
  color: #318FD6;
}
/*===============================================================

    section_top_classroom

===============================================================*/
.section_top_classroom {
  /*===============================================================
  header_block
  ===============================================================*/
  /*===============================================================
  body_block
  ===============================================================*/
  /*===============================================================
  classroom
  ===============================================================*/
  /*===============================================================
  btn_block
  ===============================================================*/
}
.section_top_classroom .classroom_header_title {
  color: #D83039;
  text-align: center;
  font-size: 12rem;
  line-height: 1;
}
.section_top_classroom .section_inner {
  color: #fff;
  background-color: #D83039;
  border-radius: 10rem;
  padding: 5rem 3rem;
  margin-top: -2rem;
}
@media screen and (max-width: 800px) {
  .section_top_classroom .classroom_header_title {
    font-size: 10vw;
  }
  .section_top_classroom .section_inner {
    border-radius: 10vw;
    padding: 8vw 5vw;
    padding-bottom: 15vw;
    margin-top: -1vw;
  }
}
.section_top_classroom .header_block {
  text-align: center;
}
.section_top_classroom .header_block .title {
  font-size: 4rem;
  line-height: 1.2;
}
.section_top_classroom .header_block .lead {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-top: 0.5em;
}
@media screen and (max-width: 800px) {
  .section_top_classroom .header_block .title {
    font-size: 6vw;
  }
  .section_top_classroom .header_block .lead {
    font-size: 4vw;
  }
}
.section_top_classroom .body_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 3rem;
}
.section_top_classroom .body_block .classroom {
  width: calc((100% - 3rem) / 2);
}
@media screen and (max-width: 800px) {
  .section_top_classroom .body_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 5vw;
  }
  .section_top_classroom .body_block .classroom {
    width: 100%;
  }
}
.section_top_classroom .classroom .thumbnail {
  position: relative;
}
.section_top_classroom .classroom .thumbnail img {
  border-radius: 3rem;
  overflow: hidden;
}
.section_top_classroom .classroom .title_block {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  z-index: 2;
  display: inline-block;
  background-color: #fff;
  border-radius: 1rem;
  color: #333;
  height: 10rem;
  padding: 2rem;
}
.section_top_classroom .classroom .title_block .classname {
  font-size: 2rem;
  display: block;
}
.section_top_classroom .classroom .title_block .years {
  font-size: 2rem;
}
.section_top_classroom .classroom .lead {
  margin-top: 1.5em;
}
@media screen and (max-width: 800px) {
  .section_top_classroom .classroom + .classroom {
    margin-top: 8vw;
  }
  .section_top_classroom .classroom .thumbnail img {
    border-radius: 3vw;
  }
  .section_top_classroom .classroom .title_block {
    bottom: -1rem;
    left: -1rem;
    border-radius: 1rem;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 2vw 4vw;
  }
  .section_top_classroom .classroom .title_block .classname {
    font-size: 3vw;
  }
  .section_top_classroom .classroom .title_block .years {
    font-size: 4vw;
  }
  .section_top_classroom .classroom .lead {
    margin-top: 1.5em;
    font-size: 3.2vw;
    padding: 0 5vw;
  }
}
.section_top_classroom .btn_block {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
.section_top_classroom .btn_block .c_btn_round {
  width: 20rem;
  min-width: 0;
  margin: 0;
}
@media screen and (max-width: 800px) {
  .section_top_classroom .btn_block {
    margin-top: 8vw;
    gap: 3vw;
  }
  .section_top_classroom .btn_block .c_btn_round {
    width: 40vw;
    min-width: 0;
    margin: 0;
  }
}

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

    section_top_point

===============================================================*/
.section_top_point {
  /*===============================================================
  header_block
  ===============================================================*/
  /*===============================================================
  body_block
  ===============================================================*/
  /*===============================================================
  point_block
  ===============================================================*/
}
.section_top_point .header_block {
  text-align: center;
}
.section_top_point .header_block .title {
  font-size: 5rem;
  line-height: 1.2;
}
.section_top_point .header_block .subtitle {
  margin-top: 1em;
}
.section_top_point .header_block .subtitle span {
  font-size: 3rem;
  line-height: 1.2;
  background-color: #FAE859;
  margin-top: 0.5em;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .section_top_point .header_block .title {
    font-size: 6vw;
  }
  .section_top_point .header_block .subtitle span {
    font-size: 4vw;
    line-height: 1.5;
  }
}
.section_top_point .body_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5rem;
}
.section_top_point .body_block .js_gsap_parallax_photo {
  background-color: transparent;
}
.section_top_point .body_block .photo_block {
  width: 55%;
}
.section_top_point .body_block .photo_block .photo {
  border-radius: 100%;
  overflow: hidden;
}
.section_top_point .body_block .point_block {
  width: 38%;
}
@media screen and (max-width: 1070px) {
  .section_top_point .body_block .photo_block {
    width: 50%;
  }
  .section_top_point .body_block .photo_block .photo {
    border-radius: 100%;
    overflow: hidden;
  }
  .section_top_point .body_block .point_block {
    width: 45%;
  }
}
@media screen and (max-width: 800px) {
  .section_top_point .body_block {
    margin-top: 5vw;
  }
  .section_top_point .body_block .photo_block {
    width: 100%;
  }
  .section_top_point .body_block .point_block {
    margin-top: 5vw;
    width: 100%;
  }
}
.section_top_point .point_block .point {
  position: relative;
  border: solid 3px #318FD6;
  padding: 3rem 4rem;
  border-radius: 3rem;
  text-align: center;
}
.section_top_point .point_block .point + .point {
  margin-top: 3rem;
}
.section_top_point .point_block .ill {
  width: 10rem;
  position: absolute;
}
.section_top_point .point_block .point:nth-child(1) .ill {
  width: 10rem;
  top: -3rem;
  right: -1rem;
}
.section_top_point .point_block .point:nth-child(2) .ill {
  width: 8rem;
  top: -1rem;
  left: -2rem;
}
.section_top_point .point_block .point:nth-child(3) .ill {
  width: 10rem;
  top: -2rem;
  right: -1rem;
}
@media screen and (max-width: 1070px) {
  .section_top_point .point_block .point {
    padding: 2rem 3rem;
  }
  .section_top_point .point_block .point + .point {
    margin-top: 2rem;
  }
  .section_top_point .point_block .point:nth-child(1) .ill {
    width: 10rem;
    top: -3rem;
    right: -1rem;
  }
  .section_top_point .point_block .point:nth-child(2) .ill {
    width: 8rem;
    top: -1rem;
    left: -2rem;
  }
  .section_top_point .point_block .point:nth-child(3) .ill {
    width: 10rem;
    top: -2rem;
    right: -1rem;
  }
}
@media screen and (max-width: 800px) {
  .section_top_point .point_block .point {
    padding: 3vw;
    border-radius: 3vw;
  }
  .section_top_point .point_block .point p {
    font-size: 3.5vw;
  }
  .section_top_point .point_block .point + .point {
    margin-top: 5vw;
  }
  .section_top_point .point_block .point:nth-child(1) .ill {
    width: 18vw;
    top: -6vw;
    right: -2vw;
  }
  .section_top_point .point_block .point:nth-child(2) .ill {
    width: 13vw;
    top: -3vw;
    left: -3vw;
  }
  .section_top_point .point_block .point:nth-child(3) .ill {
    width: 18vw;
    top: -5vw;
    right: -2vw;
  }
}

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

    section_top_it_okay

===============================================================*/
.section_top_it_okay {
  position: relative;
  color: #fff;
  /*===============================================================
  fig_ufo
  ===============================================================*/
  /*===============================================================
  c_marquee
  ===============================================================*/
  /*===============================================================
  section_headline
  ===============================================================*/
  /*===============================================================
      title_block
  ===============================================================*/
  /*===============================================================
      concerns_block
  ===============================================================*/
  /*===============================================================
  btn_block
  ===============================================================*/
}
.section_top_it_okay .section_headline {
  color: #fff;
}
.section_top_it_okay .section_inner {
  background-color: #3057D8;
  border-radius: 0 0 10rem 10rem;
  margin-top: -1px;
  padding-top: 5rem;
  padding-bottom: 15rem;
}
@media screen and (max-width: 1070px) {
  .section_top_it_okay .section_inner {
    border-radius: 0 0 10rem 10rem;
    padding-top: 5rem;
    padding-bottom: 15rem;
  }
}
@media screen and (max-width: 800px) {
  .section_top_it_okay .section_inner {
    border-radius: 0 0 5vw 5vw;
    padding-top: 5vw;
    padding-bottom: 15vw;
  }
}
.section_top_it_okay .fig_ufo {
  position: absolute;
  z-index: 1;
  width: 44rem;
  height: 33rem;
  top: -5rem;
  right: -2rem;
}
@media screen and (max-width: 1300px) {
  .section_top_it_okay .fig_ufo {
    width: 33.85vw;
    height: 25.38vw;
    top: 5vw;
    right: -6vw;
  }
}
@media screen and (max-width: 800px) {
  .section_top_it_okay .fig_ufo {
    width: 33.85vw;
    height: 25.38vw;
    top: -11vw;
    right: -5vw;
  }
}
.section_top_it_okay .c_marquee {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  position: absolute;
  top: 5rem;
  left: 0;
  height: 30rem;
  z-index: 1;
  mix-blend-mode: overlay;
  pointer-events: none !important;
}
.section_top_it_okay .c_marquee .txt {
  color: rgba(255, 255, 255, 0.3);
  font-size: 20rem;
  line-height: 1.2;
}
@media screen and (max-width: 800px) {
  .section_top_it_okay .c_marquee {
    top: 1vw;
  }
  .section_top_it_okay .c_marquee .txt {
    font-size: 40vw;
  }
}
.section_top_it_okay .section_headline .title {
  font-size: 5rem;
  line-height: 1.4;
}
@media screen and (max-width: 1300px) {
  .section_top_it_okay .section_headline .title {
    font-size: 4rem;
  }
}
@media screen and (max-width: 800px) {
  .section_top_it_okay .section_headline .title {
    font-size: 5.5vw;
    line-height: 1.6;
  }
}
.section_top_it_okay .title_block .title {
  font-size: 3.5rem;
}
.section_top_it_okay .title_block .title strong {
  display: block;
  font-size: 60%;
}
@media screen and (max-width: 800px) {
  .section_top_it_okay .title_block .title {
    text-align: center;
    font-size: 5vw;
  }
  .section_top_it_okay .title_block .title strong {
    font-size: 70%;
  }
}
.section_top_it_okay .concerns_block {
  position: relative;
}
.section_top_it_okay .concerns_block .thumbnail {
  border-radius: 3rem;
  overflow: hidden;
}
.section_top_it_okay .concerns_block .item {
  text-align: center;
}
.section_top_it_okay .concerns_block .item .caption {
  font-size: 1.6rem;
  line-height: 1.4;
  margin-top: 1em;
  font-weight: bold;
}
.section_top_it_okay .concerns_block .fig_arw {
  position: absolute;
  aspect-ratio: 10.5/18.4;
  width: 10.5rem;
  left: -12rem;
  top: -1rem;
}
@media screen and (max-width: 800px) {
  .section_top_it_okay .concerns_block .thumbnail {
    border-radius: 3vw;
    width: 80%;
    margin-inline: auto;
  }
  .section_top_it_okay .concerns_block .item .caption {
    font-size: 4.5vw;
  }
  .section_top_it_okay .concerns_block .fig_arw {
    width: 18vw;
    left: -3vw;
    top: 3vw;
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
}
.section_top_it_okay .btn_block {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
.section_top_it_okay .btn_block .c_btn_round {
  width: 20rem;
  min-width: 0;
  margin: 0;
}
@media screen and (max-width: 800px) {
  .section_top_it_okay .btn_block {
    margin-top: 8vw;
    gap: 3vw;
  }
  .section_top_it_okay .btn_block .c_btn_round {
    width: 40vw;
    min-width: 0;
    margin: 0;
  }
}

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

    section_top_feature

===============================================================*/
.section_top_feature {
  position: relative;
  /*===============================================================
  header_block
  ===============================================================*/
  /*===============================================================
  body_block
  ===============================================================*/
  /*===============================================================
  txt_block
  ===============================================================*/
}
.section_top_feature .fig_arch {
  position: absolute;
  aspect-ratio: 421.38/321.01;
  width: 42rem;
  top: -5rem;
  right: -12rem;
}
@media screen and (max-width: 1070px) {
  .section_top_feature .fig_arch {
    width: 38vw;
    top: -20vw;
    right: -10vw;
  }
}
.section_top_feature .header_block {
  position: relative;
}
.section_top_feature .header_block .title {
  font-size: 4rem;
}
.section_top_feature .header_block p {
  font-size: 2.2rem;
  line-height: 1.6;
  margin-top: 1em;
  font-weight: bold;
}
.section_top_feature .header_block .fig_spark {
  position: absolute;
  aspect-ratio: 172.9/189.6;
  width: 16rem;
  top: -12rem;
  left: -12rem;
  -webkit-animation: scale_bounse 1s linear infinite;
          animation: scale_bounse 1s linear infinite;
}
@media screen and (max-width: 1070px) {
  .section_top_feature .header_block .title {
    font-size: 3.5rem;
  }
  .section_top_feature .header_block p {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 800px) {
  .section_top_feature .header_block .title {
    font-size: 6vw;
  }
  .section_top_feature .header_block p {
    font-size: 3.5vw;
  }
  .section_top_feature .header_block .fig_spark {
    width: 15vw;
    top: -11vw;
    left: -10vw;
  }
}
.section_top_feature .body_block {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.section_top_feature .body_block .photo_block {
  width: 65%;
  border-radius: 3rem;
  overflow: hidden;
  position: relative;
}
.section_top_feature .body_block .txt_block {
  width: 30%;
}
.section_top_feature .body_block .fig_good {
  position: absolute;
  aspect-ratio: 362.06/194.71;
  width: 36rem;
  bottom: -8rem;
  left: -9rem;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .section_top_feature .body_block .photo_block {
    width: 65%;
  }
  .section_top_feature .body_block .txt_block {
    width: 32%;
  }
}
@media screen and (max-width: 1070px) {
  .section_top_feature .body_block .photo_block {
    width: 100%;
  }
  .section_top_feature .body_block .txt_block {
    width: 100%;
    margin-top: 3rem;
  }
  .section_top_feature .body_block .fig_good {
    width: 32vw;
    bottom: auto;
    top: 50vw;
    left: -3vw;
  }
}
@media screen and (max-width: 800px) {
  .section_top_feature .body_block {
    margin-top: 5vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section_top_feature .body_block .photo_block {
    border-radius: 3vw;
  }
  .section_top_feature .body_block .txt_block {
    margin-top: 5vw;
  }
  .section_top_feature .body_block .fig_good {
    width: 32vw;
    bottom: auto;
    top: 40vw;
    left: -7vw;
  }
}
.section_top_feature .txt_block .title {
  font-size: 3rem;
}
.section_top_feature .txt_block p {
  margin-top: 1em;
}
@media screen and (max-width: 1070px) {
  .section_top_feature .txt_block .title {
    font-size: 3rem;
  }
  .section_top_feature .txt_block p {
    margin-top: 1em;
  }
}
@media screen and (max-width: 800px) {
  .section_top_feature .txt_block .title {
    font-size: 6vw;
  }
  .section_top_feature .txt_block p {
    margin-top: 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: #D83039;
  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: #3057D8 !important;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  cursor: pointer;
  -webkit-appearance: none;
  border: solid 1px #3057D8;
}
.submit input:hover {
  background-color: #D83039 !important;
  border: solid 1px #D83039 !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: #D83039;
  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;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

.demo .demo_txthide {
  display: none;
}

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

	demo_wrp

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

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

	_demo.scss 2021/10/1

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

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

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

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

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

	tenplate_menu

===============================================================*/
.tenplate_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: solid 1px #ccc;
}
.tenplate_menu li {
  padding: 10px;
}
.tenplate_menu a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .tenplate_menu {
    padding: 3vw 0;
  }
  .tenplate_menu li {
    padding: 0vw 3vw;
  }
  .tenplate_menu a {
    font-size: 3vw;
    line-height: 1.5;
  }
}

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

	section_demo

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

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

	content_demo

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

	content_block_outline

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

	page_element

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