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

	_reset.scss 2021/9/24

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

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

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

blockquote,
q {
  quotes: none;
}

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

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

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

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

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

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

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

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

ul,
li {
  list-style: none;
}

option {
  padding-right: 1em;
}

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

a {
  text-decoration: underline;
}

ul a,
li a {
  zoom: 1;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

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

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

/*===============================================================
	フォント
===============================================================*/
/*===============================================================

	_common.scss 2021/9/24

===============================================================*/
/* html/body設定
----------------------------------------------------------------*/
body {
  width: 100%;
  color: #000;
  background: #fff;
  text-align: left;
  position: relative;
  overflow-x: hidden;
  -webkit-text-size-adjust: none;
  /* 縦横文字サイズ同じ */
  -webkit-font-smoothing: antialiased;
}

img {
  -webkit-user-drag: none; /* Safari・一部のChromeで必要 */
  -webkit-touch-callout: none; /* iOS長押し対策 */
  user-drag: none;
}

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

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

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

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

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

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

	基本文字サイズ、装飾

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

p {
  line-height: 2;
}

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

.bold {
  font-weight: bold;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

	skip_link

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

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

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

	マージン

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

.mt05 {
  margin-top: 0.5rem;
}

.mt10 {
  margin-top: 1rem;
}

.mt15 {
  margin-top: 1.5rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt25 {
  margin-top: 2.5rem;
}

.mt30 {
  margin-top: 3rem;
}

.mt40 {
  margin-top: 4rem;
}

.mt50 {
  margin-top: 5rem;
}

.mt60 {
  margin-top: 6rem;
}

.mt70 {
  margin-top: 7rem;
}

.mt80 {
  margin-top: 8rem;
}

.mt90 {
  margin-top: 9rem;
}

.mt100 {
  margin-top: 10rem;
}

.mb05 {
  margin-bottom: 0.5rem;
}

.mb10 {
  margin-bottom: 1rem;
}

.mb15 {
  margin-bottom: 1.5rem;
}

.mb20 {
  margin-bottom: 2rem;
}

.mb25 {
  margin-bottom: 2.5rem;
}

.mb30 {
  margin-bottom: 3rem;
}

.mb40 {
  margin-bottom: 4rem;
}

.mb50 {
  margin-bottom: 5rem;
}

.mb60 {
  margin-bottom: 6rem;
}

.mb70 {
  margin-bottom: 7rem;
}

.mb80 {
  margin-bottom: 8rem;
}

.mb90 {
  margin-bottom: 9rem;
}

.mb100 {
  margin-bottom: 10rem;
}

/* タブレット以下 */
@media screen and (max-width: 1070px) {
  .mt0 {
    margin-top: 0px !important;
  }
  .mt05 {
    margin-top: 0.47vw;
  }
  .mt10 {
    margin-top: 0.93vw;
  }
  .mt15 {
    margin-top: 1.4vw;
  }
  .mt20 {
    margin-top: 1.87vw;
  }
  .mt25 {
    margin-top: 2.34vw;
  }
  .mt30 {
    margin-top: 2.8vw;
  }
  .mt40 {
    margin-top: 3.74vw;
  }
  .mt50 {
    margin-top: 4.67vw;
  }
  .mt60 {
    margin-top: 5.61vw;
  }
  .mt70 {
    margin-top: 6.54vw;
  }
  .mt80 {
    margin-top: 7.48vw;
  }
  .mt90 {
    margin-top: 8.41vw;
  }
  .mt100 {
    margin-top: 9.35vw;
  }
  .mb05 {
    margin-bottom: 0.47vw;
  }
  .mb10 {
    margin-bottom: 0.93vw;
  }
  .mb15 {
    margin-bottom: 1.4vw;
  }
  .mb20 {
    margin-bottom: 1.87vw;
  }
  .mb25 {
    margin-bottom: 2.34vw;
  }
  .mb30 {
    margin-bottom: 2.8vw;
  }
  .mt05 {
    margin-top: 0.47vw;
  }
  .mt10 {
    margin-top: 0.93vw;
  }
  .mt15 {
    margin-top: 1.4vw;
  }
  .mt20 {
    margin-top: 1.87vw;
  }
  .mt25 {
    margin-top: 2.34vw;
  }
  .mt30 {
    margin-top: 2.8vw;
  }
  .mt40 {
    margin-top: 3.74vw;
  }
  .mt50 {
    margin-top: 4.67vw;
  }
  .mt60 {
    margin-top: 5.61vw;
  }
  .mt70 {
    margin-top: 6.54vw;
  }
  .mt80 {
    margin-top: 7.48vw;
  }
  .mt90 {
    margin-top: 8.41vw;
  }
  .mt100 {
    margin-top: 9.35vw;
  }
  .mb05 {
    margin-bottom: 0.47vw;
  }
  .mb10 {
    margin-bottom: 0.93vw;
  }
  .mb15 {
    margin-bottom: 1.4vw;
  }
  .mb20 {
    margin-bottom: 1.87vw;
  }
  .mb25 {
    margin-bottom: 2.34vw;
  }
  .mb30 {
    margin-bottom: 2.8vw;
  }
  .mb40 {
    margin-bottom: 3.74vw;
  }
  .mb50 {
    margin-bottom: 4.67vw;
  }
  .mb60 {
    margin-bottom: 5.61vw;
  }
  .mb70 {
    margin-bottom: 6.54vw;
  }
  .mb80 {
    margin-bottom: 7.48vw;
  }
  .mb90 {
    margin-bottom: 8.41vw;
  }
  .mb100 {
    margin-bottom: 9.35vw;
  }
}
/* for tablet max-width: 1070px */
/* SP向けレイアウトの指定：～800px */
@media screen and (max-width: 800px) {
  .mt05 {
    margin-top: 0.63vw;
  }
  .mt10 {
    margin-top: 1.25vw;
  }
  .mt15 {
    margin-top: 1.88vw;
  }
  .mt20 {
    margin-top: 2.5vw;
  }
  .mt25 {
    margin-top: 3.13vw;
  }
  .mt30 {
    margin-top: 3.75vw;
  }
  .mt40 {
    margin-top: 5vw;
  }
  .mt50 {
    margin-top: 6.25vw;
  }
  .mt60 {
    margin-top: 7.5vw;
  }
  .mt70 {
    margin-top: 8.75vw;
  }
  .mt80 {
    margin-top: 10vw;
  }
  .mt90 {
    margin-top: 11.25vw;
  }
  .mt100 {
    margin-top: 12.5vw;
  }
  .mb05 {
    margin-bottom: 0.63vw;
  }
  .mb10 {
    margin-bottom: 1.25vw;
  }
  .mb15 {
    margin-bottom: 1.88vw;
  }
  .mb20 {
    margin-bottom: 2.5vw;
  }
  .mb25 {
    margin-bottom: 3.13vw;
  }
  .mb30 {
    margin-bottom: 3.75vw;
  }
  .mb40 {
    margin-bottom: 5vw;
  }
  .mb50 {
    margin-bottom: 6.25vw;
  }
  .mb60 {
    margin-bottom: 7.5vw;
  }
  .mb70 {
    margin-bottom: 8.75vw;
  }
  .mb80 {
    margin-bottom: 10vw;
  }
  .mb90 {
    margin-bottom: 11.25vw;
  }
  .mb100 {
    margin-bottom: 12.5vw;
  }
  .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 */
/*===============================================================

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

/*===============================================================
    js_scroll
===============================================================*/
.js_scroll {
  -webkit-transition: all 1s;
  transition: all 1s;
  /* タブレット */
}
.js_scroll {
  /* for TABLET */
  /* SP */
}
.js_scroll {
  /* for SP */
}

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

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

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

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

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

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

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

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

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

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

    c_return_to_top

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

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

    テーブル

===============================================================*/
.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);
}
.c_table {
  /* タブレット */
}
.c_table {
  /* for TABLET */
  /* SP */
}
@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;
  }
}
.c_table {
  /* for SP */
  /*===============================================================
      //	c_table
  ===============================================================*/
}

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

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

    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 #333;
  background-color: #fff;
  color: #333;
}
.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 #333;
  background-color: #333;
  color: #fff;
}
.c_btn_list, .c_btn_list_round {
  /* タブレット */
}
.c_btn_list, .c_btn_list_round {
  /* for TABLET */
  /* SP */
}
@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_round {
  /* for SP */
  /*-------------------------------------------------------------
      btn_list_2column	
  -------------------------------------------------------------*/
}
.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;
}
.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;
}
.c_btn_list.c_btn_list_2column, .c_btn_list_2column.c_btn_list_round {
  /* タブレット */
}
.c_btn_list.c_btn_list_2column, .c_btn_list_2column.c_btn_list_round {
  /* for TABLET */
  /* SP */
}
@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.c_btn_list_2column, .c_btn_list_2column.c_btn_list_round {
  /* for SP */
}
.c_btn_list, .c_btn_list_round {
  /*===============================================================
      //	btn_list
  ===============================================================*/
}

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

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

    btn_round

===============================================================*/
.c_btn, .c_btn_round {
  width: 30%;
  max-width: 30rem;
  margin-left: auto;
  margin-right: auto;
}
* + .c_btn, * + .c_btn_round {
  margin-top: 3rem;
}
.c_btn a, .c_btn_round a {
  display: block;
  text-align: center;
  color: #fff;
  background-color: #333;
  padding: 1.5rem 0;
  font-weight: bold;
  position: relative;
}
.c_btn a .label, .c_btn_round a .label {
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.3;
}
.c_btn a:hover, .c_btn_round a:hover {
  text-decoration: none;
  color: #fff;
  background-color: #000;
}
.c_btn, .c_btn_round {
  /* タブレット */
}
.c_btn, .c_btn_round {
  /* for TABLET */
  /* SP */
}
@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;
  }
}
.c_btn, .c_btn_round {
  /* for SP */
}

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

/*-------------------------------------------------------------
    icon	
-------------------------------------------------------------*/
span + [class^=icon_],
span + [class*=" icon_"] {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.5rem;
  margin: auto;
  height: 1em;
  /* タブレット */
}
span + [class^=icon_],
span + [class*=" icon_"] {
  /* for TABLET */
  /* SP */
}
span + [class^=icon_],
span + [class*=" icon_"] {
  /* for SP */
}

/*-------------------------------------------------------------
    btn_line	
-------------------------------------------------------------*/
.c_btn_line a {
  border: solid 2px #333;
  background-color: transparent;
  color: #333;
  padding: calc(1.5rem - 2px) 0;
}
.c_btn_line a:hover {
  border: solid 2px #000;
}
.c_btn_line {
  /* タブレット */
}
.c_btn_line {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .c_btn_line a {
    padding: calc(2.5vw - 2px) 0;
  }
}
.c_btn_line {
  /* for SP */
}

/*-------------------------------------------------------------
    btn_flex	
-------------------------------------------------------------*/
.c_btn_flex {
  width: auto;
  display: inline-block;
  min-width: inherit;
  max-width: 60rem;
}
.c_btn_flex a {
  padding-left: 3rem;
  padding-right: 3rem;
}
.c_btn_flex {
  /* タブレット */
}
.c_btn_flex {
  /* for TABLET */
  /* SP */
}
.c_btn_flex {
  /* for SP */
}

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

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

    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;
}
.c_btns .c_btn,
.c_btns .c_btn_round {
  margin: 0 1rem;
  margin-top: 3rem;
}
.c_btns {
  /* タブレット */
}
.c_btns {
  /* for TABLET */
  /* SP */
}
@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_btns {
  /* for SP */
  /*===============================================================
      //	c_btns
  ===============================================================*/
}

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

    c_txtlink

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

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

	c_datalist

===============================================================*/
.c_datalist {
  text-align: left;
}
.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: 20%;
  font-weight: bold;
}
.c_datalist dd {
  width: 80%;
}
.c_datalist {
  /* タブレット以下 */
}
.c_datalist {
  /* for tablet max-width: 960px */
  /* SP向けレイアウトの指定：～736px */
}
@media screen and (max-width: 800px) {
  .c_datalist {
    width: 100%;
    margin-top: 5vw;
  }
  .c_datalist dt,
  .c_datalist dd {
    width: 100%;
    font-size: 4vw;
    line-height: 1.8;
  }
  .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_datalist {
  /* for SP max-width: 736px */
}

/*-------------------------------------------------------------
    c_indent_list	
-------------------------------------------------------------*/
.c_indent_list li {
  padding-left: 1em;
  text-indent: -1em;
}
.c_indent_list li + li {
  margin-top: 5px;
}
.c_indent_list {
  /* タブレット */
}
.c_indent_list {
  /* for TABLET */
  /* SP */
}
.c_indent_list {
  /* for SP */
}

/*---------------------------------------------------------------
		リスト
	---------------------------------------------------------------*/
.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: #000;
}
.c_ul_list li + li {
  margin-top: 2rem;
}
@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: #000;
  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: 3.6rem;
  line-height: 1.5;
  font-weight: 800;
}
.headline .lead {
  font-size: 1.8rem;
}
.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: 5.5vw;
    line-height: 1.4;
  }
  .headline .lead {
    font-size: 4vw;
    line-height: 1.7;
  }
  .headline .title + .lead {
    margin-top: 1.5rem;
  }
  .headline .lead + .title {
    margin-top: 0.5rem;
  }
  .content * + .headline {
    margin-top: 5rem;
  }
}

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

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

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

/*-------------------------------------------------------------
	lv_3	
-------------------------------------------------------------*/
.lv_3 .title {
  font-size: 2rem;
}
.lv_3 .lead {
  font-size: 1.4rem;
}
@media screen and (max-width: 800px) {
  .lv_3 .title {
    font-size: 4.5vw;
  }
  .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: 0;
  }
}

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

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

	pankuzu

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

.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;
}
.detail .pankuzu .large_width .update,
.detail .pankuzu .content_width .update {
  text-align: right;
}
.detail .pankuzu .large_width,
.detail .pankuzu .content_width {
  /* タブレット */
}
.detail .pankuzu .large_width,
.detail .pankuzu .content_width {
  /* for TABLET */
  /* SP */
}
@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%;
  }
}
.detail .pankuzu .large_width,
.detail .pankuzu .content_width {
  /* for SP */
}

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

    c_photo

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

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

    c_column

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

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

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

	c_topics_list

===============================================================*/
.c_topics_list {
  border-bottom: solid 1px #666;
}
.c_topics_list a {
  color: #000;
  text-decoration: none;
}
.c_topics_list a:hover {
  color: #444;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.05);
}
.c_topics_list .item {
  border-top: solid 1px #666;
}
.c_topics_list .link {
  position: relative;
  padding: 2rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c_topics_list .date,
.c_topics_list .text {
  color: #000;
}
.c_topics_list .date:hover .text,
.c_topics_list .link:hover .text {
  color: #444;
}
.c_topics_list .date {
  width: 130px;
}
.c_topics_list .label {
  margin-right: 30px;
  margin-left: 15px;
  width: 10rem;
  height: 2.5rem;
  border-radius: 1.25rem;
  overflow: hidden;
  background-color: #000;
}
.c_topics_list .label span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  padding-bottom: 1px;
}
.c_topics_list .text {
  width: calc(100% - 235px);
  text-decoration: none !important;
}
@media screen and (max-width: 800px) {
  .c_topics_list .link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 1.2rem 0.5rem;
  }
  .c_topics_list .date {
    width: calc(100% - 10rem);
    font-weight: bold;
    color: #000;
    line-height: 1.4;
  }
  .c_topics_list .label {
    width: 9rem;
    height: 5vw;
    border-radius: 3vw;
    margin-left: auto;
    margin-right: 0;
    font-size: 1.2rem;
  }
  .c_topics_list .text {
    width: 100%;
    line-height: 1.5;
    margin-top: 0.5rem;
  }
}
.c_topics_list {
  /*-------------------------------------------------------------
      ラベル色	
  -------------------------------------------------------------*/
}
.c_topics_list .label_red {
  background-color: #FA0F0C;
}
.c_topics_list .label_blue {
  background-color: #5987EF;
}
.c_topics_list .label_green {
  background-color: #4BA300;
}
.c_topics_list .label_brown {
  background-color: #724141;
}
.c_topics_list .label_orange {
  background-color: #E69901;
}

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

	レイアウト
	_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;
  /* タブレット */
}
.section_wrp {
  /* for TABLET */
  /* SP */
}
.section_wrp {
  /* 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: 6rem;
}

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

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

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

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

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

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

    block_title

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

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

	_header.scss 2021/10/4

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

	header

===============================================================*/
.header {
  position: relative;
  width: 100%;
  height: 90px;
  border-bottom: 1px solid #D0D0D0;
}
.header .toplogo {
  position: absolute;
  top: 25px;
  left: 30px;
  width: 300px;
  height: auto;
}
.header {
  /* タブレット */
}
.header {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .header {
    height: 14.5vw;
  }
  .header .toplogo {
    top: 3vw;
    left: 3vw;
    width: 60%;
  }
}
.header {
  /* for SP */
  /*===============================================================

  	header_menu

  ===============================================================*/
}
.header .header_menu .humberger {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 1020;
  width: 40px;
  height: 30px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .header_menu .humberger span {
  position: relative;
  width: 40px;
  height: 30px;
  color: #f00;
  display: block;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  cursor: pointer;
}
.header .header_menu .humberger::before,
.header .header_menu .humberger span::before,
.header .header_menu .humberger span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 40px;
  height: 1px;
  background: #343434;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header .header_menu .humberger::before {
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
}
.header .header_menu .humberger span::before {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
.header .header_menu .humberger span::after {
  -webkit-transform: translateY(25px);
          transform: translateY(25px);
}
.header .header_menu {
  /* hover	*/
}
.header .header_menu .humberger:hover span:after {
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.header .header_menu .humberger:hover span:before {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.header .header_menu {
  /* active	*/
}
.header .header_menu.opend .humberger::before {
  background: none;
}
.header .header_menu.opend .humberger span::after {
  -webkit-transform: translateY(15px) rotate(135deg);
          transform: translateY(15px) rotate(135deg);
  background: #fff;
}
.header .header_menu.opend .humberger span::before {
  -webkit-transform: translateY(15px) rotate(-135deg);
          transform: translateY(15px) rotate(-135deg);
  background: #fff;
}
.header .header_menu.opend .humberger:hover span::after, .header .header_menu.opend .humberger:hover span::before {
  background: #D6000F;
}
.header .header_menu .scrolled .header_menu .humberger {
  position: fixed;
  top: 15px;
}
.header .header_menu {
  /* タブレット以下 */
}
.header .header_menu {
  /* for tablet max-width: 1070px */
  /* SP向けレイアウトの指定：～800px */
}
@media only screen and (max-width: 800px) {
  .header .header_menu .humberger {
    top: 4vw;
    right: 3vw;
    width: 8vw;
    height: 6vw;
    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;
  }
  .header .header_menu.opend .humberger {
    right: 3vw;
  }
  .header .header_menu .humberger span {
    width: 8vw;
    height: 6vw;
  }
  .header .header_menu .humberger::before,
  .header .header_menu .humberger span::before,
  .header .header_menu .humberger span::after {
    width: 8vw;
    height: 1px;
  }
  .header .header_menu .humberger::before {
    -webkit-transform: translateY(3vw);
            transform: translateY(3vw);
  }
  .header .header_menu .humberger:hover span:before,
  .header .header_menu .humberger span::before {
    -webkit-transform: translateY(1vw);
            transform: translateY(1vw);
  }
  .header .header_menu .humberger:hover span:after,
  .header .header_menu .humberger span::after {
    -webkit-transform: translateY(5vw);
            transform: translateY(5vw);
  }
  .header .header_menu.opend .humberger span::after {
    -webkit-transform: translateY(3vw) rotate(135deg);
            transform: translateY(3vw) rotate(135deg);
  }
  .header .header_menu.opend .humberger span::before {
    -webkit-transform: translateY(3vw) rotate(-135deg);
            transform: translateY(3vw) rotate(-135deg);
  }
}
.header .header_menu {
  /* for SP max-width: 800px */
}
.header {
  /*===============================================================

  	header_menu .menu_panel

  ===============================================================*/
}
.header .header_menu .menu_panel {
  position: fixed;
  top: 0;
  right: -300px;
  background: #fff;
  background: #343434;
  background: -webkit-gradient(linear, left bottom, left top, from(#343434), to(#282828));
  background: linear-gradient(0deg, #343434 0%, #282828 100%);
  width: 300px;
  height: 100vh;
  z-index: 1010;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 100px 30px 80px 30px;
  overflow-y: scroll;
  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-transition: all 0.3s;
  transition: all 0.3s;
}
.header .header_menu.opend .menu_panel {
  top: 0;
  right: 0;
}
.header .header_menu .menu_panel .menu li + li {
  margin-top: 20px;
}
.header .header_menu .menu_panel .menu a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.header .header_menu .menu_panel .menu .sub a {
  font-size: 14px;
  font-weight: normal;
}
.header .header_menu .menu_panel .menu a:hover {
  color: #D6000F;
}
.header .header_menu .menu_panel .sns {
  height: 30px;
  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;
}
.header .header_menu .menu_panel .sns li {
  margin-right: 10px;
}
.header .header_menu .menu_panel .sns a {
  display: block;
  width: 30px;
  height: 30px;
  background: #000;
  border-radius: 50%;
}
.header .header_menu .menu_panel .sns a:hover {
  background: #D6000F;
}
.header .header_menu .menu_panel .sns a img {
  width: 100%;
  height: auto;
}
.header {
  /* タブレット以下 */
}
.header {
  /* for tablet max-width: 1070px */
  /* SP向けレイアウトの指定：～800px */
}
@media only screen and (max-width: 800px) {
  .header .header_menu .menu_panel {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .header .header_menu .menu_panel .menu li + li {
    margin-top: 4vw;
  }
  .header .header_menu .menu_panel .menu li + li.about {
    margin-top: 8vw;
  }
  .header .header_menu .menu_panel .menu a {
    font-size: 4vw;
    line-height: 1.5;
    font-weight: bold;
  }
  .header .header_menu .menu_panel .menu .sub a {
    font-size: 3vw;
    font-weight: normal;
  }
  .header .header_menu .menu_panel .sns {
    margin-top: 12vw;
    height: 40px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header .header_menu .menu_panel .sns a {
    width: 40px;
    height: 40px;
  }
}
.header {
  /* for SP max-width: 800px */
}

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

	maintitle

===============================================================*/
.section_department {
  text-align: center;
  padding: 50px 0 0;
}
.section_department .maintitle {
  font-size: 4rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
  margin-bottom: 0.7em;
  line-height: 45px;
}
.section_department .maintitle::before {
  content: "";
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 20px;
  height: 7px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #000;
}
.section_department .maintitle a {
  text-decoration: none;
  color: #000;
}
.section_department .maintitle_lead {
  font-size: 1.6rem;
  font-weight: 400;
}
.section_department {
  /* タブレット */
}
.section_department {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .section_department {
    padding: 8vw 0 0;
  }
  .section_department .maintitle {
    font-size: 6vw;
    line-height: 1.2;
  }
  .section_department .maintitle::before {
    bottom: -2vw;
    width: 3vw;
    height: 1vw;
  }
  .section_department .maintitle_lead {
    font-size: 3.5vw;
  }
}
.section_department {
  /* for SP */
}

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

	_footer.scss 2021/10/4

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

	footer

===============================================================*/
.footer {
  text-align: center;
}
.footer .footer_logo {
  width: 260px;
  height: auto;
  margin: 0 auto;
}
.footer .copyright {
  font-size: 14px;
  color: #666;
}
.footer {
  /* タブレット */
}
.footer {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .footer .footer_logo {
    width: 40%;
  }
  .footer .copyright {
    font-size: 3vw;
  }
}
.footer {
  /* for SP */
}

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

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

	_top.scss 2024/2/16

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

	page_top

===============================================================*/
.page_top {
  /* タブレット */
}
.page_top {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .page_top .vw4 {
    font-size: 4vw;
  }
}
.page_top {
  /* for SP */
  /*===============================================================

  	section_news_list

  ===============================================================*/
}
.page_top .section_news_list .section_inner {
  padding-top: 8rem;
}
.page_top .section_news_list .grid_wrp {
  margin-top: 20px;
}
.page_top .section_news_list .grid {
  position: relative;
  padding: 30px 30px 30px 0;
  border-bottom: 1px solid #000;
  margin-top: 0;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.page_top .section_news_list .grid::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 9px;
  height: 17px;
  background-image: url("../images/icon_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 10;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.page_top .section_news_list .grid.link_pdf::after {
  background-image: url("../images/icon_pdf.svg");
  width: 20px;
  height: 20px;
}
.page_top .section_news_list .grid.link_blank::after {
  background-image: url("../images/icon_blank.svg");
  width: 16px;
  height: 16px;
}
.page_top .section_news_list .grid:hover::after {
  -webkit-transform: translate(5px, -50%);
          transform: translate(5px, -50%);
}
.page_top .section_news_list .grid:nth-child(1),
.page_top .section_news_list .grid:nth-child(2) {
  border-top: 1px solid #000;
}
.page_top .section_news_list .grid > a {
  position: absolute;
  inset: 0;
  z-index: 10;
  text-indent: -9999px;
}
.page_top .section_news_list .grid:hover {
  opacity: 0.8;
}
.page_top .section_news_list .date {
  font-size: 14px;
  margin-right: 5px;
  display: inline-block;
}
.page_top .section_news_list .tag {
  font-size: 14px;
  font-weight: bold;
  display: inline-block;
  color: #fff;
  padding: 0 5px;
}
.page_top .section_news_list .tag.naruto {
  background-color: #385492;
}
.page_top .section_news_list .tag.minamiawaji {
  background-color: #081F5D;
}
.page_top .section_news_list .news_title {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
  line-height: 1.8;
}
.page_top .section_news_list {
  /* タブレット */
}
.page_top .section_news_list {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .page_top .section_news_list .section_inner {
    padding-top: 8vw;
  }
  .page_top .section_news_list .grid_wrp {
    margin-top: 5vw;
  }
  .page_top .section_news_list .grid {
    padding: 5vw 10vw 5vw 0;
  }
  .page_top .section_news_list .grid:nth-child(2) {
    border-top: 0px solid #000;
  }
  .page_top .section_news_list .date {
    font-size: 3.5vw;
    margin-right: 2vw;
  }
  .page_top .section_news_list .tag {
    font-size: 3.5vw;
    padding: 0 2vw;
  }
  .page_top .section_news_list .news_title {
    font-size: 4vw;
    margin-top: 2vw;
  }
}
.page_top .section_news_list {
  /* for SP */
  /*===============================================================

  	accordion

  ===============================================================*/
}
.page_top .section_news_list .accordion .accordion_header {
  position: relative;
  width: 260px;
  color: #000;
  background: #fff;
  margin: 0 auto;
  border: 1px solid #000;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  margin-top: 60px;
  padding: 20px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}
.page_top .section_news_list .accordion .accordion_header:hover {
  opacity: 0.4;
}
.page_top .section_news_list .accordion .accordion_header .title {
  font-size: 16px;
  font-weight: 800;
}
.page_top .section_news_list .accordion .accordion_body .grid_wrp {
  margin-top: 0;
}
.page_top .section_news_list .accordion .accordion_body .grid_wrp .grid:nth-child(1),
.page_top .section_news_list .accordion .accordion_body .grid_wrp .grid:nth-child(2) {
  border-top: 0px solid #000;
}
.page_top .section_news_list .accordion {
  /*.accordion_header.active {
  	border-bottom: 0;
  }*/
  /* タブレット以下 */
}
.page_top .section_news_list .accordion {
  /* for tablet max-width: $width_content */
  /* SP向けレイアウトの指定：～$width_sp */
}
@media screen and (max-width: 800px) {
  .page_top .section_news_list .accordion .accordion_body .grid_wrp {
    margin-top: 0;
  }
  .page_top .section_news_list .accordion .accordion_header {
    width: 50%;
    padding: 3vw 5vw;
    margin-top: 15vw;
  }
  .page_top .section_news_list .accordion .accordion_header pointer .title {
    font-size: 3.5vw;
    font-weight: 800;
  }
}
.page_top .section_news_list .accordion {
  /* for SP max-width: $width_sp */
}
.page_top {
  /*===============================================================

  	section_news_list

  ===============================================================*/
  /* タブレット */
}
.page_top {
  /* for TABLET */
  /* SP */
}
.page_top {
  /* for SP max-width: $width_sp */
}

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

	section_news

===============================================================*/
.section_news {
  word-break: break-all;
}
.section_news .block_title {
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
}
.section_news .ph_caption {
  font-size: 1.5rem;
  text-align: center;
  margin-top: 1.2rem;
}
.section_news .news_txt {
  font-size: 1.8rem;
  text-align: left;
}
.section_news .copyright {
  font-size: 1.1rem;
  text-align: center;
  color: #666;
  margin-top: 1rem;
}
.section_news .align_center .grid_wrp {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section_news .align_bottom .grid_wrp {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.section_news .align_bottom .grid_wrp .news_caption_btm {
  text-align: right;
}
.section_news .name_flame {
  border: 1px solid #666;
  padding: 1rem;
}
.section_news .name_flame span {
  font-size: 2rem;
  font-weight: 800;
}
.section_news .news_img.news_illust {
  text-align: center;
  margin: 0 auto;
  margin-top: 2rem;
}
.section_news .news_img.news_illust img {
  width: 60%;
}
.section_news .c_column_round .block_title {
  border-bottom: none;
}
.section_news .c_column_round .news_img.news_illust img {
  width: 90%;
}
.section_news .qa .qa_q, .section_news .qa .qa_a {
  font-size: 1.8rem;
}
.section_news .qa .qa_q::before {
  content: "───";
}
.section_news .qa .qa_a {
  font-weight: bold;
}
.section_news .news_flex {
  margin-top: 5rem;
}
.section_news .news_flex .grid {
  border: 1px solid #666;
  padding: 3rem;
}
.section_news .news_flex .grid .kuniumi {
  position: relative;
}
.section_news .news_flex .grid .kuniumi .headline {
  text-align: center;
}
.section_news .news_flex .grid .kuniumi .headline .title {
  font-size: 3.5rem;
}
.section_news .news_flex .grid .kuniumi .headline .read {
  font-size: 2rem;
}
.section_news .news_flex .grid .kuniumi .qr_img {
  width: 100px;
  position: absolute;
  right: 0;
  bottom: 5%;
}
.section_news .news_flex .grid .c_ul_list li span {
  margin-left: 1rem;
}
.section_news .news_flex .grid .headlin_img {
  width: 60%;
  height: auto;
  margin: 0 auto;
}
.section_news .news_flex .grid .headlin_img + p {
  margin-top: 2rem;
}
.section_news .news_flex .grid .c_datalist dl {
  border-bottom: none;
  margin-top: 1.5rem;
}
.section_news .news_flex .grid .c_datalist dl dt {
  width: 30%;
  border-top: none;
  padding: 0.5rem 0;
}
.section_news .news_flex .grid .c_datalist dl dd {
  width: 70%;
  border-top: none;
  padding: 0.5rem 0 0.5rem 1rem;
}
.section_news {
  /* タブレット */
}
@media screen and (max-width: 1070px) {
  .section_news .news_flex .grid {
    padding: 2rem;
  }
  .section_news .news_flex .grid .kuniumi .headline .title {
    font-size: 3rem;
  }
  .section_news .news_flex .grid .kuniumi .qr_img {
    width: 100px;
    position: absolute;
    right: 0;
    bottom: 10%;
  }
  .section_news .news_flex .grid .c_datalist {
    margin-top: 3vw;
  }
  .section_news .news_flex .grid .c_datalist dl {
    margin-top: 0;
  }
  .section_news .news_flex .grid .c_datalist dl dt {
    width: 25%;
  }
  .section_news .news_flex .grid .c_datalist dl dd {
    width: 75%;
  }
}
.section_news {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .section_news .content + .content {
    margin-top: 10vw;
  }
  .section_news .ph_caption {
    font-size: 3vw;
    margin-top: 2vw;
  }
  .section_news .news_txt {
    font-size: 4vw;
    text-align: left;
  }
  .section_news .copyright {
    font-size: 3vw;
    margin-top: 2vw;
  }
  .section_news .name_flame {
    width: 70%;
    margin: 0 auto;
  }
  .section_news .name_flame span {
    font-size: 4.5vw;
  }
  .section_news .grid_wrp .grid_2_1 + .grid_2_1 {
    margin-top: 10vw;
  }
  .section_news .news_img.news_illust {
    text-align: center;
    margin: 0 auto;
    margin-top: 5vw;
  }
  .section_news .news_img.news_illust img {
    width: 60%;
  }
  .section_news .align_bottom .grid_wrp .news_caption_btm {
    text-align: center;
    margin-top: 2vw;
    font-size: 3.5vw;
  }
  .section_news .c_column_round .block_title {
    border-bottom: none;
    padding-bottom: 5vw;
  }
  .section_news .c_column_round .news_img.news_illust img {
    width: 60%;
  }
  .section_news .c_column_round .block + .block_title {
    margin-top: 20vw;
  }
  .section_news .qa .qa_q, .section_news .qa .qa_a {
    font-size: 4vw;
  }
  .section_news .news_flex {
    margin-top: 15vw;
  }
  .section_news .illust_flex .grid_3_1 {
    width: calc((100% - 0rem) / 3);
  }
}
.section_news {
  /* for SP max-width: $width_sp */
  /*===============================================================
  	//	img
  ===============================================================*/
}
.section_news.news_kankoku .headline .logo_img {
  width: 120%;
  margin-left: -40px;
  margin-top: -20px;
}
.section_news.news_kankoku .narrow_width + .news_img, .section_news.news_kankoku .news_img + .narrow_width {
  margin-top: 6rem;
}
.section_news.news_kankoku .news_txt + .news_txt, .section_news.news_kankoku .news_img + .news_txt, .section_news.news_kankoku .news_img + .block_title {
  margin-top: 2rem;
}
.section_news.news_kankoku {
  /* タブレット */
}
.section_news.news_kankoku {
  /* for TABLET */
  /* SP */
}
@media screen and (max-width: 800px) {
  .content * + .section_news.news_kankoku {
    margin-top: 0;
  }
  .section_news.news_kankoku .headline .logo_img {
    width: 80%;
    margin: 0 auto;
  }
  .section_news.news_kankoku .narrow_width + .news_img, .section_news.news_kankoku a.news_img + .narrow_width {
    margin-top: 3.2rem;
  }
  .section_news.news_kankoku .news_txt + .news_txt, .section_news.news_kankoku .news_img + .news_txt, .section_news.news_kankoku .news_img + .block_title {
    margin-top: 1.6rem;
  }
  .section_news.news_kankoku .c_datalist {
    margin-top: 0;
  }
  .section_news.news_kankoku .c_column_round .block_title {
    border-bottom: none;
    padding-bottom: 2vw;
    font-size: 4vw;
  }
  .section_news.news_kankoku .c_column_round .c_ul_list li {
    font-size: 4vw;
  }
  .section_news.news_kankoku .c_column_round p {
    font-size: 4vw;
  }
  .section_news.news_kankoku .c_column_round .block + .block {
    margin-top: 6rem;
  }
}
.section_news.news_kankoku {
  /* for SP max-width: $width_sp */
}
.section_news {
  /*===============================================================

  	section_

  ===============================================================*/
  /* タブレット */
}
.section_news {
  /* for TABLET */
  /* SP */
}
.section_news {
  /* for SP max-width: $width_sp */
}

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

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

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

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

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

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

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

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

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

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

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

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

.demo .demo_txthide {
  display: none;
}

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

	demo_wrp

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

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

	_demo.scss 2021/10/1

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

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

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

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

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

	tenplate_menu

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

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

	section_demo

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

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

	content_demo

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

	content_block_outline

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

	page_element

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

/*===============================================================
	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;
}
.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 {
  margin-left: auto;
  margin-right: auto;
}
.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;
}
.btn_link {
  border: solid 1px #000;
}
@media screen and (max-width: 800px) {
  .btn_link {
    width: 80%;
  }
}

.btn_sankaku {
  width: 300px;
}
.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 {
  margin-left: auto;
  margin-right: auto;
}
.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;
}
.btn_sankaku {
  border: solid 1px #000;
}
@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 */