@charset "utf-8";

/* ==========================================================
   CSS変数（カラー定義）
   ========================================================== */
:root {
  /* メインカラー */
  --color-primary: #214F7D;
  --color-sub-primary: #214F7D;
  --color-sub-primary01: #FEC800;
  --color-cont-title: #3674A7;
  --color-koumoku-bg: #009DE3; /* 各項目の配色 */
  --color-btn-main: #FF7D00;   /* 基本のリンクボタンの配色 */
  --color-btn-main01: #004EA2;   /* 基本のリンクボタンの配色 */
  --color-btn-sub : #3588BB;   /* お知らせ等のリンクボタンの配色 */
  --color-primary-hover: #F26100;  /* リンクボタン等のオンマウス時の配色 */
  --color-btn-back : #ECE4CC;      /* 戻るボタンの配色 */
  --color-btn-back-hover: #2E8B57; /* 戻るボタンのオンマウス時の配色 */
  --color-footer-bg: #E8F4F6; /* フッター背景色 */
  --color-bg-2nd: linear-gradient(to right, #FEFFFF, #E6EFFF);  /* section 偶数行目の背景 */

  /* グリーン系 */
  --color-green: #338536;
  --color-green-dark: #1A6730;
  --color-green-text: #0E5F25;

  /* ブラウン系 */
  --color-brown: #4E3627;
  --color-brown-dark: #3C2C25;

  /* ゴールド系 */
  --color-gold: #D3AF3D;
  --color-gold-dark: #A8891E;
  --color-gold-light: #F0DC8C;

  /* レッド系 */
  --color-red: #C62424;
  --color-red-light: #F24B46;
  --color-red-text: #d94e3b;

  /* テキスト・ボーダー */
  --color-text: #333;
  --color-text-dark: #2C2C2C;
  --color-border: #E2E8F0;

  /* 背景色 */
  --color-bg-light: #FEFFF6;
  --color-bg-cream: #F5F4DE;  /* section 偶数行目の背景色 */
  --color-bg-orange-light: #FEE9CF;
  --color-bg-orange-hover: #FEF0DE;


  /* 白 */
  --color-white: #fff;

  /* リンク */
  --color-link: #2A59B2;
}

/* SP/PC切替用改行 */
.br_sp { display: none; }
.br_pc { display: inline; }
@media screen and (max-width: 480px) {
  .br_sp { display: inline; }
  .br_pc { display: none; }
}

/* common rule
**********************************************************/

* {
	box-sizing: border-box;
}
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}
body {
    font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", Osaka, Verdana, Arial, sans-serif;
    margin: 0;
    color: #000;
    line-height: 1.6;
    font-size: 1.8rem;
}
@media print {
      .body {color: var(--color-text);}
    }
@media screen and ( max-width:767px) {
  body {
    font-size: 1.5rem;
  }
}
body {
    animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
p,
h1,
h2,
h3,
h4,
h5,
h6,
dl,
dt,
dd,
ul {
  margin: 0;
  padding: 0;
}
.c{ text-align: center!important;}
.l{ text-align: left!important;}
.r{ text-align: right!important;}

li {
    list-style: none;
}
img {
    max-width: 100%;
    outline: none;
    border-style: none;
  vertical-align: bottom;
}
a {
    color: var(--color-link);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    text-decoration: underline;
}
a:hover {
    color: var(--color-link);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    text-decoration: none;
}
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.clearfix {
	min-height: 1px;
}

* html .clearfix {
	height: 1px;
	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}
.font_color_red{color: var(--color-red-text);}
.only_pc {display: inline;}
.only_pc_1120 {display: inline;}
.only_pc_800 {display: inline;}
.only_pc_700 {display: inline;}
.only_sp {display: none;}
.only_sp_1500 {display: none;}
.only_sp_900 {display: none;}
.only_1120{display: none;}

.required{ 
  padding: 2px 5px;
  font-size: 11px; list-style: 1em;
  background-color:var(--color-red-light); ;
  color: var(--color-white);
  border-radius:3px;
  margin-top: -3px;
  display: inline-block;
  vertical-align: middle;
}

@media screen and ( max-width:1500px) {
.only_sp_1500 { display: inline; }
}
@media screen and ( max-width:900px) {
.only_sp_900 { display: inline; }
}
@media screen and ( max-width:1120px) {
.only_1120{ display: inline; }
.only_pc_1120 { display: none; }
}

@media screen and (max-width:800px) {
  .only_pc_800 { display: none; }
}
@media screen and (max-width:700px) {
  .only_pc_700 { display: none; }
}
@media screen and ( max-width:767px) {
	.only_sp { display: inline;	}
    .only_pc { display: none; }
}
.tel {pointer-events: none;}
@media screen and ( max-width:767px) {
	.tel {	pointer-events: auto;	}
}

.flex {
  display: flex;
  flex-wrap: wrap;
}
.flex_justify_content_center{
  justify-content: center;
}

.nowrap{
  flex-wrap:nowrap;
}
.nowrap{ white-space:nowrap;}
.f_1_75em{ font-size: 1.75em; }
.f_1_5em { font-size: 1.5em;  }
.f_1_4em { font-size: 1.4em;  }
.f_1_3em { font-size: 1.3em;  }
.f_1_25em{ font-size: 1.25em; }
.f_1_2em { font-size: 1.2em;  }
.f_1_15em{ font-size: 1.15em; }
.f_1_1em { font-size: 1.1em;  }
.f_1_075em{ font-size: 1.075em; }
.f_1_05em{ font-size: 1.05em; }

.f_09em { font-size: 0.9em;  }
.f_085em{ font-size: 0.85em; }
.f_075em{ font-size: 0.75em; }
.f_065em{ font-size: 0.65em; }
.f_05em { font-size: 0.5em;  }

.pt_0 { padding-top   : 0px!important; }
.pb_0 { padding-bottom: 0px!important; }
.pl_0 { padding-left  : 0px!important; }
.pr_0 { padding-right : 0px!important;  }

.pt_015em { padding-top   : 0.15em!important; }
.pb_015em { padding-bottom: 0.15em!important; }
.pl_015em { padding-left  : 0.15em!important; }
.pr_015em { padding-right : 0.15em!important; }


.pt_025em { padding-top   : 0.25em!important; }
.pb_025em { padding-bottom: 0.25em!important; }
.pl_025em { padding-left  : 0.25em!important; }
.pr_025em { padding-right : 0.25em!important; }

.pt_05em { padding-top   : 0.5em!important; }
.pb_05em { padding-bottom: 0.5em!important; }
.pl_05em { padding-left  : 0.5em!important; }
.pr_05em { padding-right : 0.5em!important; }


.pt_075em { padding-top   : 0.75em!important; }
.pb_075em { padding-bottom: 0.75em!important; }
.pl_075em { padding-left  : 0.75em!important; }
.pr_075em { padding-right : 0.75em!important; }

.pt_1em { padding-top   : 1em!important; }
.pb_1em { padding-bottom: 1em!important; }
.pl_1em { padding-left  : 1em!important; }
.pr_1em { padding-right : 1em!important; }

.pt_15em { padding-top   : 1.5em!important; }
.pb_15em { padding-bottom: 1.5em!important; }
.pl_15em { padding-left  : 1.5em!important; }
.pr_15em { padding-right : 1.5em!important; }

.pt_2em { padding-top   : 2em!important; }
.pb_2em { padding-bottom: 2em!important; }
.pl_2em { padding-left  : 2em!important; }
.pr_2em { padding-right : 2em!important; }


.pt_5px { padding-top   : 5px!important; }
.pb_5px { padding-bottom: 5px!important; }
.pl_5px { padding-left  : 5px!important; }
.pr_5px { padding-right : 5px!important; }

.pt_10px { padding-top   : 10px!important; }
.pb_10px { padding-bottom: 10px!important; }
.pl_10px { padding-left  : 10px!important; }
.pr_10px { padding-right : 10px!important; }


.mt_0 { margin-top   : 0px!important; }
.mb_0 { margin-bottom: 0px!important; }
.ml_0 { margin-left  : 0px!important; }
.mr_0 { margin-right : 0px!important; }

.mt_5px { margin-top   : 5px!important; }
.mb_5px { margin-bottom: 5px!important; }
.ml_5px { margin-left  : 5px!important; }
.mr_5px { margin-right : 5px!important; }

.mt_025em { margin-top   : 0.25em!important; }
.mb_025em { margin-bottom: 0.25em!important; }
.ml_025em { margin-left  : 0.25em!important; }
.mr_025em { margin-right : 0.25em!important; }

.mt_05em { margin-top   : 0.5em!important; }
.mb_05em { margin-bottom: 0.5em!important; }
.ml_05em { margin-left  : 0.5em!important; }
.mr_05em { margin-right : 0.5em!important; }

.mt_075em { margin-top   : 0.75em!important; }
.mb_075em { margin-bottom: 0.75em!important; }
.ml_075em { margin-left  : 0.75em!important; }
.mr_075em { margin-right : 0.75em!important; }

.mt_1em { margin-top   : 1em!important; }
.mb_1em { margin-bottom: 1em!important; }
.ml_1em { margin-left  : 1em!important; }
.mr_1em { margin-right : 1em!important; }

.mt_125em { margin-top   : 1.25em!important; }
.mb_125em { margin-bottom: 1.25em!important; }
.ml_125em { margin-left  : 1.25em!important; }
.mr_125em { margin-right : 1.25em!important; }

.mt_15em { margin-top   : 1.5em!important; }
.mb_15em { margin-bottom: 1.5em!important; }
.ml_15em { margin-left  : 1.5em!important; }
.mr_15em { margin-right : 1.5em!important; }

.mt_2em { margin-top   : 2em!important; }
.mb_2em { margin-bottom: 2em!important; }
.ml_2em { margin-left  : 2em!important; }
.mr_2em { margin-right : 2em!important; }

.mt_3em { margin-top   : 3em!important; }
.mb_3em { margin-bottom: 3em!important; }
.ml_3em { margin-left  : 3em!important; }
.mr_3em { margin-right : 3em!important; }

.mt_10px { margin-top   : 10px!important; }
.mb_10px { margin-bottom: 10px!important; }
.ml_10px { margin-left  : 10px!important; }
.mr_10px { margin-right : 10px!important; }

.mt_20px { margin-top   : 20px!important; }
.mb_20px { margin-bottom: 20px!important; }
.ml_20px { margin-left  : 20px!important; }
.mr_20px { margin-right : 20px!important; }


.line_height_15em{line-height: 1.5em!important;}
.mt_075em { margin-top   : 0.75em!important; }
.max_width_1250{max-width:1250px;}
.max_width_1200{max-width:1200px;}
.max_width_1150{max-width:1150px;}
.max_width_1100{max-width:1100px;}
.max_width_1050{max-width:1050px;}
.max_width_1000{max-width:1000px;}
.max_width_950{max-width:950px;}
.max_width_900{max-width:900px;}
.max_width_850{max-width:800px;}
.max_width_800{max-width:800px;}
.max_width_750{max-width:750px;}
.max_width_700{max-width:700px;}
.max_width_650{max-width:650px;}
.max_width_640{max-width:640px;}
.max_width_600{max-width:600px;}
.max_width_550{max-width:550px;}
.max_width_500{max-width:500px;}
.max_width_450{max-width:450px;}
.max_width_400{max-width:400px;}

.min_width_1250{min-width:1250px;}
.min_width_1200{min-width:1200px;}
.min_width_1150{min-width:1150px;}
.min_width_1100{min-width:1100px;}
.min_width_1050{min-width:1050px;}
.min_width_1000{min-width:1000px;}
.min_width_950{min-width:950px;}
.min_width_900{min-width:900px;}
.min_width_850{min-width:800px;}
.min_width_800{min-width:800px;}
.min_width_750{min-width:750px;}
.min_width_700{min-width:700px;}
.min_width_650{min-width:650px;}
.min_width_640{min-width:640px;}
.min_width_600{min-width:600px;}
.min_width_550{min-width:550px;}
.min_width_500{min-width:500px;}
.min_width_450{min-width:450px;}
.min_width_400{min-width:400px;}

.width_1250{width:1250px;}
.width_1200{width:1200px;}
.width_1150{width:1150px;}
.width_1100{width:1100px;}
.width_1050{width:1050px;}
.width_1000{width:1000px;}
.width_950{ width:950px;}
.width_900{ width:900px;}
.width_850{ width:800px;}
.width_800{ width:800px;}
.width_750{ width:750px;}
.width_700{ width:700px;}
.width_650{ width:650px;}
.width_640{ width:640px;}
.width_600{ width:600px;}
.width_550{ width:550px;}
.width_500{ width:500px;}
.width_450{ width:450px;}
.width_400{ width:400px;}




/* 共通記述ここまで */


/* common rule
**********************************************************/

body {
  position: relative;
}
.button {
  display: block;
  background: var(--color-btn-main);
  color: var(--color-white);
  text-align: center;
  text-decoration: none;
  padding: 13px 25px;
  font-weight: 500;
  max-width: 350px;
  margin: 0 auto;
  border-radius: 3px;
}

.button.top_button_small{
padding:15px 40px;
border-radius: 50px;
margin-top: 2.5em;
max-width: 300px;
font-size: 0.9em;
background: var(--color-btn-sub);
}



@media screen and ( max-width:767px) {
  .button {
    padding: 10px;
  }
}
.button::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 16px;
  background: url("../img/arrow_wht_right.svg") no-repeat left top;
  background-size: 100%;
  position: relative;
  top: 3px;
  margin-left: 10px;
  margin-right: -5px;
}
@media screen and ( max-width:767px) {
  .button::after {
    width: 6px;
    height: 14px;
  }
}
.button:hover {
  color: var(--color-white);
  opacity: 0.7;
}
.button.brown { background: var(--color-gold-dark);}
.button.blue { background: var(--color-btn-sub);}





/* ===================================================================================== */
/*  header   */
/* ===================================================================================== */


header{
padding: 0 0px;
z-index: 999;
position: fixed;
top: 0px;
left: 0;
width: 100%;
height: 70px;
box-sizing: border-box;
transition: 0.175s;
}




header .header_main{
box-shadow: 3px 3px 3px 0 rgba(50, 50, 50, .15);
}
.header_wrapper {
width: 100%;
box-sizing: border-box;
padding: 0px;
z-index: 100;

border-radius: 0;
margin: auto;

}


header .header_main{
margin: 0 auto;

width: 100%;
height:60px;
padding:0px 25px 0px 15px;

z-index: 2;
display: flex;
align-items: center;
border-radius: 0px;
background-color: var(--color-white);
background-image: url(../img/header_title_bg.svg);
background-repeat: no-repeat;
background-position: 12px bottom;
background-size: auto;

box-sizing: border-box;

}






header h2 a{transition:none;}
.header_sitename{
display: flex;
align-items: center;
padding: 0;
box-sizing: border-box;
height: 100%;
}

header .header_sitename a{
  display: flex;
  align-items: center;
  height: 100%;
}

header .header_sitename a img{
  height: 100%;
  width: auto;
}

header .header_sitename a:link,
header .header_sitename a:visited{
  color: var(--color-primary);
  text-decoration: none;
}
.cont_page header.flex h1 a:hover,
.cont_page header.flex h1 a:active{
  text-decoration: none;
}
.header_left{  margin-right: auto; z-index: 9998; height: 100%; }
.header_right{ margin-left : auto; z-index: 9999 }

.header_logo{ font-size: 10px; line-height: 1em;}
.header_logo img{ max-width: 120px; vertical-align: middle; margin-left: 12px; }
.header_logo_area{
display: flex;
flex-wrap: wrap;
width:  100%;
height: 100%;
padding:0px; margin: 0px;
font-size: 0.85em;
box-sizing: border-box;
}

/* -----------------------------------------  */
/* header_logo: ハンバーガーメニュー表示時の位置調整 */
/* phaseに関係なく共通の表示                      */
/* -----------------------------------------  */
/* 1100px: phase3_openのみハンバーガー表示 */
@media screen and ( max-width:1100px) {
header:has(.phase3_open) h2.header_logo {position: absolute; right: 70px;}
header:has(.phase3_open) .header_logo img { width: 110px; max-width: inherit; }
}
/* 900px: phase2_openがハンバーガー表示 / phase3_openは調整 */
@media screen and ( max-width:900px) {
header:has(.phase2_open) h2.header_logo {position: absolute; right: 70px;}
header:has(.phase2_open) .header_logo img { width: 110px; max-width: inherit; }
header:has(.phase3_open) h2.header_logo {right: 65px;}
header:has(.phase3_open) .header_logo img { width: 105px; max-width: inherit; }
}
/* 800px以下: 全phaseでハンバーガー表示 */
@media screen and ( max-width:800px) {
header h2.header_logo,
header:has(.phase2_open) h2.header_logo,
header:has(.phase3_open) h2.header_logo {position: absolute; right: 70px;}
header .header_logo img,
header:has(.phase2_open) .header_logo img,
header:has(.phase3_open) .header_logo img { width: 110px; max-width: inherit; }
 header .header_logo img { width: 100px; }
}
@media screen and ( max-width:550px) {
header h2.header_logo,
header:has(.phase2_open) h2.header_logo,
header:has(.phase3_open) h2.header_logo {right: 60px;}
header .header_logo img,
header:has(.phase2_open) .header_logo img,
header:has(.phase3_open) .header_logo img { width: 85px; max-width: inherit; }
}
@media screen and ( max-width:460px) {
header h2.header_logo,
header:has(.phase2_open) h2.header_logo,
header:has(.phase3_open) h2.header_logo {right: 60px;}
header .header_logo img,
header:has(.phase2_open) .header_logo img,
header:has(.phase3_open) .header_logo img { width: 80px; max-width: inherit; }
}
@media screen and ( max-width:400px) {
.header_logo_area { max-width: 210px; }
header .header_logo img { width: 80px; }
}

/* -----------------------------------------  */
/* phase2/phase3: メニュー項目の表示切替       */
/* -----------------------------------------  */
/* phase: メニュー項目の段階的な表示切替 */
header .global_menu ul li.phase2,
header .global_menu ul li.phase3 { display: none !important; }
header .global_menu.phase2_open ul li.phase2 { display: block !important; }
header .global_menu.phase3_open ul li.phase2,
header .global_menu.phase3_open ul li.phase3 { display: block !important; }

/* menu_btn: 申請ページボタンの表示切替（phaseとは独立制御） */
header .global_menu ul li.menu_btn { display: none !important; }
header .global_menu.menu_btn_open ul li.menu_btn { display: flex !important; }
@media screen and (max-width:450px) {
  header .global_menu.menu_btn_open { padding-left: 5px; }
}

/* -----------------------------------------  */
/*  メインメニュー   */
/* -----------------------------------------  */
header .global_menu {
  width:  100%;
  height: 100%;
  padding:5px 0px 0 0; margin: 0px;
  font-size: 0.95em;
  line-height: 1.75em;
}

header .global_menu ul {
  padding:0; margin: 0 ;
  height: 100%;
}
header .global_menu li,
header .global_menu ul li {
  padding:0; margin: 0px;
  display: flex;
  align-items: center;
  position: relative;
}
header .global_menu li > a::after {
    width: 1px;
    height: 16px;
    content: "";
    display: block;
    height: 1em;
    background: #DBDFD7;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
header .global_menu li:last-child > a::after {
    display: none!important;
}

header .global_menu ul li a{
  display: flex;
  align-items: center;
  height: 100%;
}
header .global_menu ul li a:link,
header .global_menu ul li a:visited{
  text-decoration: none;
}
header .global_menu ul li a:hover,
header .global_menu ul li a:active{
  text-decoration: none;
  color: var(--color-primary);
}
header .global_menu ul li.h_menu_li_button a:hover,
header .global_menu ul li.h_menu_li_button a:active,
header .global_menu ul li.h_menu_li_button a.h_shinki_button:hover,
header .global_menu ul li.h_menu_li_button a.h_shinki_button:active{
  text-decoration: none;
  color: #fff;opacity: 0.5;
}




/* メインボタン */
header .global_menu ul li.h_menu_li_button {
  display: flex;
  flex-direction: column;
  padding:0px; margin: 0px;
}
header .global_menu ul li.h_menu_li_button a{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;

  text-align: center;
  text-decoration: none;

  font-weight: 500;
  margin: 2px 10px 5px 8px;
  padding:3px 30px;

  border-radius: 20px;

  position: relative;
}

li.h_menu_li_button a:link,
li.h_menu_li_button a:visited{
  background: linear-gradient(100deg, #004EA2 0%, #0096D7 100%);
  color: var(--color-white);
}
li.h_menu_li_button a:hover,
li.h_menu_li_button a:active{
opacity: 0.7;
}




/* ハンバーガーメニュー アイコン 通常時 */
.menu_trigger {  display: none;}


header li a {
  color: var(--color-text-dark);
  font-weight: 600;
  text-decoration: none;
  display: block;
  padding:0px 10px ;
  position: relative;
  
}


@media screen and (max-width:1200px) {
header .global_menu ul li.h_menu_li_button a { padding: 5px 12px;}
/* header .global_menu { font-size: 0.82em;} *//* 860pxまで変更しない */
header li a { padding: 0px 8px; }
/* phase2_open/phase3_open: header_logo margin-left を 0 に */
header:has(.phase2_open) .header_logo img,
header:has(.phase3_open) .header_logo img { margin-left: 0px; }
}/* End/max-width:1200px */
@media screen and (max-width:1100px) {
header .header_main{ padding-right: 10px;}
/* .header_logo img{ max-width: 80px; margin-left: 8px;} *//* 860pxまで変更しない */
/* header .global_menu { font-size: 0.78em;} *//* 860pxまで変更しない */
header li a { padding: 0px 6px; }
header .global_menu ul li.h_menu_li_button a { padding: 5px 20px;}
}
/* phase2_open: 1050px相当の処理を1060pxで適用 */
@media screen and (max-width:1060px) {
header .global_menu.phase2_open li a { padding: 0px 5px; }
header .global_menu.phase2_open ul li.h_menu_li_button a { padding: 5px 8px; font-size: 0.9em;}
}
/* phase2_open: 1000px相当の処理を1050pxで適用 */
@media screen and (max-width:1050px) {
header .global_menu.phase2_open { padding-top: 0; font-size: 0.9em;}
header:has(.phase2_open) .header_main{ padding: 5px 10px }
header .global_menu.phase2_open ul li.h_menu_li_button a { padding: 5px 8px;}
}
@media screen and (max-width:1050px) {
/* .header_logo img{ max-width: 70px; margin-left: 5px;} *//* 860pxまで変更しない */
header li a { padding: 0px 5px; }
header .global_menu ul li.h_menu_li_button a { padding: 5px 8px; font-size: 0.9em;}
}
@media screen and (max-width:1000px) {
.header_sitename {}
header .global_menu {  padding-top: 0; font-size: 0.9em;}/* 860pxまで変更しない */
header .header_main{ padding: 5px 10px }
/* .header_logo img{ max-width: 70px; margin-left: 5px; padding-right: 0px;} *//* 860pxまで変更しない */
header .global_menu ul li.h_menu_li_button a { padding: 5px 8px;}
}
/* phase2_open: 900px相当の処理を949pxで適用 */
@media screen and (max-width:949px) {
header .global_menu.phase2_open { font-size: 0.8em;}
header:has(.phase2_open) .header_main{ padding-right: 5px;}
header .global_menu.phase2_open ul li.h_menu_li_button a{padding: 5px 6px; font-size: 0.875em;}
header .global_menu.phase2_open li a { padding: 0px 6px; }
}
@media screen and (max-width:900px) {
.header_sitename {}
/* header .global_menu { font-size: 0.72em;} *//* 860pxまで変更しない */
header .global_menu { font-size: 0.8em;}
header .header_main{ padding-right: 5px;}
/* .header_logo img{ max-width: 60px; margin-left: 5px; padding-right: 0px;} *//* 860pxまで変更しない */
header .global_menu ul li.h_menu_li_button a{padding: 5px 6px; font-size: 0.875em;}
header li a { padding: 0px 6px; }
}
@media screen and (max-width:880px) and (min-width:801px) {
.header_sitename { }
/* header .global_menu { font-size: 0.7em;} *//* 860pxまで変更しない */
/* .header_logo img{ max-width: 55px; margin-left: 5px; padding-right: 0px;} *//* 860pxまで変更しない */
header .global_menu ul li.h_menu_li_button a { padding: 5px 5px; font-size: 0.85em;}
}
@media screen and (max-width:950px) {
header .header_main { height: 50px;}
header .header_sitename a img{ height: 50px; width: auto; }
}
@media screen and (max-width:850px) {
header .global_menu { font-size: 0.75em;}
}

/* =========================================================
   phase2_open: 3項目メニューのハンバーガー切替（900px）
   ========================================================= */
@media screen and (max-width:900px) {
  header .global_menu.phase2_open ul li a{padding: 12px 15px 12px 25px;}
  header:has(.phase2_open) .header_main {
    padding: 0 10px;
    height: 50px;
  }
  header:has(.phase2_open) .header_logo img { width: 100px; }
  header:has(.phase2_open) .header_sitename a img{ height: 100%; width: auto; }

  header .global_menu.phase2_open ul{
    box-shadow: 3px 3px 3px 0 rgba(50, 50, 50, 0.01);
  }

  /* ハンバーガーメニュー アイコン 表示 */
  header:has(.phase2_open) .header_wrapper { position: relative;}
  header:has(.phase2_open) .menu_trigger,
  header:has(.phase2_open) .menu_trigger span {
    display: block;
    transition: all .3s;
    box-sizing: border-box;
  }
  header:has(.phase2_open) .menu_trigger {
    position: absolute;
    width: 32px;
    height: 18px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
    right: 20px;
    top: calc(50% - 14px);
  }
  header:has(.phase2_open) .menu_trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 3px;
  }
  header:has(.phase2_open) .menu_trigger::after {
    content: 'MENU';
    font-size: 10px;
    line-height: 1em;
    position: absolute;
    top: calc(100% + 0px);
    display: block;
    width: 100%;
    height: 20px;
    text-align: center;
    white-space: nowrap;
    padding: 7px 0px 3px 0px;
    box-sizing: border-box;
  }
  header:has(.phase2_open) .menu_trigger.active::after {
    content: 'CLOSE';
    font-size: 10px;
    left: -2px;
  }
  header:has(.phase2_open) .menu_trigger span:nth-of-type(1) { top: 0; }
  header:has(.phase2_open) .menu_trigger span:nth-of-type(2) { top: calc(50% - 1px); }
  header:has(.phase2_open) .menu_trigger span:nth-of-type(3) { bottom: 0; }
  header:has(.phase2_open) .menu_trigger.active span:nth-of-type(1) { transform: translateY(8px) rotate(-45deg); }
  header:has(.phase2_open) .menu_trigger.active span:nth-of-type(2) { opacity: 0; }
  header:has(.phase2_open) .menu_trigger.active span:nth-of-type(3) { transform: translateY(-8px) rotate(45deg); }

  /* グローバルメニュー → ドロップダウン化 */
  header .global_menu.phase2_open li a {
    padding: 12px 15px 12px 25px;
    font-size: 1.7rem;
    position: relative;
  }
  header .global_menu.phase2_open {
    display: none;
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    top: 50px;
    z-index: 1;
    background-color: var(--color-white);
  }
  header .global_menu.phase2_open::before {
    width: 100%;
    content: "";
    position: absolute;
    display: block;
    height: 1px;
    left: 0;
    right: 0;
    top: 15px;
    bottom: inherit;
    background: var(--color-border);
  }
  header .global_menu.phase2_open li::after {
    width: 100%;
    content: "";
    position: absolute;
    display: block;
    height: 1px;
    left: 0;
    right: 0;
    bottom: 0;
    top: inherit;
    background: var(--color-border);
  }
  header .global_menu.phase2_open li:last-child:after { display: none; }

  header .global_menu.phase2_open li.h_menu_li_button::after,
  header .global_menu.phase2_open li.h_menu_li_button a::after {
    display: none; visibility: hidden;
  }
  header .global_menu.phase2_open ul li.h_menu_li_button a {
    width: calc(100% - 20px);
    max-width: 275px;
    padding: 10px 18px;
    margin: 10px auto 5px auto;
    font-size: 1.4rem;
  }
  header .global_menu.phase2_open ul {
    box-shadow: 3px 3px 3px 0 rgba(50, 50, 50, 0.01);
    padding-top: 15px;
    padding-bottom: 10px;
    background: rgba(255, 255, 255, 1);
    border-radius: 0 0 8px 8px;
  }
  header .global_menu.phase2_open ul li { display: block; width: 98%; margin: auto; }
  header .global_menu.phase2_open li a::after { display: none; visibility: hidden; }
}/* End phase2_open /max-width:900px */

@media screen and (max-width:800px) {
 .header_sitename{}
 header .global_menu ul li a{padding: 12px 15px 12px 25px;}
 header .header_main,
 header:has(.phase2_open) .header_main,
 header:has(.phase3_open) .header_main {
   padding: 0 10px;
   height: 50px;
 }

 header .header_sitename a img,
 header:has(.phase2_open) .header_sitename a img,
 header:has(.phase3_open) .header_sitename a img { height: 100%; width: auto; }


header .global_menu ul{
box-shadow: 3px 3px 3px 0 rgba(50, 50, 50, 0.01);
}
 /* ハンバーガーメニュー アイコン 表示時  */
 .header_wrapper{ position: relative;}
 .menu_trigger,
 .menu_trigger span {
   display: block;
   transition: all .3s;
   box-sizing: border-box;
 }
 .menu_trigger {
   position: absolute;
   width : 32px;
   height: 18px;
   background: none;
   border: none;
   appearance: none;
   cursor: pointer;
   right: 20px;
   top: calc(50% - 14px);
 }

 .menu_trigger span {
   position: absolute;
   left: 0;
   width: 100%;
   height: 2px;
   background-color: var(--color-primary);
   border-radius: 3px;
 }

  .menu_trigger::after{
  content: 'MENU';
  font-size: 10px;
  line-height: 1em;
  position: absolute;
  top: calc(100% + 0px);
  display: block;
  width: 100%;
  height: 20px;
  text-align: center;
  white-space: nowrap;
  padding:7px 0px 3px 0px;
  box-sizing: border-box;
 }
   .menu_trigger.active::after{
    content: 'CLOSE';
    font-size: 10px;
    left: -2px;
 }

 .menu_trigger span:nth-of-type(1) { top: 0; }
 .menu_trigger span:nth-of-type(2) { top:calc(50% - 1px); }
 .menu_trigger span:nth-of-type(3) { bottom: 0; }
 .menu_trigger.active span:nth-of-type(1) { transform: translateY(8px) rotate(-45deg); }
 .menu_trigger.active span:nth-of-type(2) { opacity: 0; }
 .menu_trigger.active span:nth-of-type(3) { transform: translateY(-8px) rotate(45deg); }

 header li a {
   padding: 12px 15px 12px 25px;
   font-size: 1.7rem;
   position: relative;
 }

 header .global_menu {
   display: none;
   position: absolute;
   width: 100%;
   height: auto;
   left: 0;
   top: 45px;
   z-index: 1;
   background-color: var(--color-white);
 }
 /* 800px以下では全phaseで同じtop位置に統一 */
 header .global_menu.phase2_open,
 header .global_menu.phase3_open {
   top: 45px;
 }
header .global_menu::before{
   width: 100%;
   content: "";
   position: absolute;
   display: block;
   height: 1px;
   left: 0;
   right: 0;
   top: 15px;
   bottom: inherit;
   background: var(--color-border);
 }
header .global_menu li::after {
   width: 100%;
   content: "";
   position: absolute;
   display: block;
   height: 1px;
   left: 0;
   right: 0;
   bottom: 0;
   top: inherit;
   background: var(--color-border);
 }

header .global_menu li:last-child:after{display: none;}

 header li.h_menu_li_home a::after,
 header li a::after {
   content: "";
   display: block;
   width: 8px;
   height: 16px;
   background: url(../img/arrow_black.svg) no-repeat left top;
   background-size: 100%;
   position: absolute;
   top: calc(50% - 8px);
   right: 23px;
 }
 header .global_menu li.h_menu_li_button::after,
 header li.h_menu_li_button a::after {
   display: none; visibility: hidden;
 }

 header .global_menu ul li.h_menu_li_button a{
   width: calc(100% - 20px);
   max-width: 275px;
   padding: 10px 18px;
   margin:10px auto 5px auto;
   font-size: 1.4rem;
 }

 header .global_menu ul {
 padding-top: 15px;
 padding-bottom: 10px;
 background: rgba(255, 255, 255, 1);
 border-radius: 0 0 8px 8px;
 }
 header .global_menu ul li{display: block; width: 98%; margin: auto;}
 header .global_menu li a::after { display: none; visibility: hidden;}

}/* End/max-width:800px */


/* =========================================================
   phase3_open: 6項目メニューのレスポンシブ対応
   global_menu に phase3_open クラスが付与された時、
   html2 と同等のレスポンシブ動作を適用
   ※ header:has(.phase3_open) は global_menu 外の要素に適用
   ========================================================= */

/* --- 1400px --- */
@media screen and (max-width:1400px) and (min-width:801px) {
  header .global_menu.phase3_open { padding:5px 0px 5px 5px; font-size: 0.95em;}
  header:has(.phase3_open) .header_main { padding: 0px 15px 0px 15px;}
  header:has(.phase3_open) .header_logo img { margin-left: 0px; }
  header .global_menu.phase3_open ul li.h_menu_li_button a{
      margin: 2px 5px 5px 5px;
      padding: 3px 20px;
  }
}

/* --- 1300px --- */
@media screen and (max-width:1300px) and (min-width:801px) {
  header .global_menu.phase3_open { font-size: 0.9em;}
  header .global_menu.phase3_open li a { padding: 0px 8px; }
  header:has(.phase3_open) .header_main { height: 55px;}
}

/* --- 1250px --- */
@media screen and (max-width:1250px) and (min-width:801px) {
  header .global_menu.phase3_open { padding-right: 0; font-size: 0.875em;}
  header:has(.phase3_open) .header_logo img { max-width: 100px;}
  header:has(.phase3_open) .header_main { padding-right: 10px;}
}

/* --- 1200px --- */
@media screen and (max-width:1200px) and (min-width:801px) {
  header .global_menu.phase3_open { font-size: 0.85em;}
  header .global_menu.phase3_open li a { padding: 0px 6px; }
}

/* --- 1150px --- */
@media screen and (max-width:1150px) and (min-width:801px) {
  header .global_menu.phase3_open li a { padding: 0px 5px; }
  header .global_menu.phase3_open ul li.h_menu_li_button a { padding: 3px 8px; }
  header:has(.phase3_open) .header_main { padding-right: 5px; }
}

/* --- 1100px: レイアウト調整（801px以上のみ） --- */
@media screen and (max-width:1100px) and (min-width:801px) {
  header:has(.phase3_open) .header_logo img { max-width: 90px; width: 100px;}
  header .global_menu.phase3_open { padding-top: 0;}
  header:has(.phase3_open) .header_main { padding: 0px 10px 0px 15px; }
}

/* --- 1100px: ハンバーガーメニュー切替 --- */
@media screen and (max-width:1100px) {
  /* ハンバーガーメニュー アイコン 表示 */
  header:has(.phase3_open) .header_wrapper { position: relative;}
  header:has(.phase3_open) .menu_trigger,
  header:has(.phase3_open) .menu_trigger span {
    display: block;
    transition: all .3s;
    box-sizing: border-box;
  }
  header:has(.phase3_open) .menu_trigger {
    position: absolute;
    width: 32px;
    height: 18px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
    right: 20px;
    top: calc(50% - 14px);
  }
  header:has(.phase3_open) .menu_trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 3px;
  }
  header:has(.phase3_open) .menu_trigger::after {
    content: 'MENU';
    font-size: 10px;
    line-height: 1em;
    position: absolute;
    top: calc(100% + 0px);
    display: block;
    width: 100%;
    height: 20px;
    text-align: center;
    white-space: nowrap;
    padding: 7px 0px 3px 0px;
    box-sizing: border-box;
  }
  header:has(.phase3_open) .menu_trigger.active::after {
    content: 'CLOSE';
    font-size: 10px;
    left: -2px;
  }
  header:has(.phase3_open) .menu_trigger span:nth-of-type(1) { top: 0; }
  header:has(.phase3_open) .menu_trigger span:nth-of-type(2) { top: calc(50% - 1px); }
  header:has(.phase3_open) .menu_trigger span:nth-of-type(3) { bottom: 0; }
  header:has(.phase3_open) .menu_trigger.active span:nth-of-type(1) { transform: translateY(8px) rotate(-45deg); }
  header:has(.phase3_open) .menu_trigger.active span:nth-of-type(2) { opacity: 0; }
  header:has(.phase3_open) .menu_trigger.active span:nth-of-type(3) { transform: translateY(-8px) rotate(45deg); }

  /* グローバルメニュー → ドロップダウン化 */
  header .global_menu.phase3_open li a {
    padding: 12px 15px 12px 25px;
    font-size: 1.7rem;
    position: relative;
  }
  header .global_menu.phase3_open {
    display: none;
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    top: 50px;
    z-index: 1;
    background-color: var(--color-white);
  }
  header .global_menu.phase3_open::before {
    width: 100%;
    content: "";
    position: absolute;
    display: block;
    height: 1px;
    left: 0;
    right: 0;
    top: 15px;
    bottom: inherit;
    background: var(--color-border);
  }
  header .global_menu.phase3_open li::after {
    width: 100%;
    content: "";
    position: absolute;
    display: block;
    height: 1px;
    left: 0;
    right: 0;
    bottom: 0;
    top: inherit;
    background: var(--color-border);
  }
  header .global_menu.phase3_open li:last-child:after { display: none; }

  header .global_menu.phase3_open li.h_menu_li_button::after,
  header .global_menu.phase3_open li.h_menu_li_button a::after {
    display: none; visibility: hidden;
  }
  header .global_menu.phase3_open ul li.h_menu_li_button a {
    width: calc(100% - 20px);
    max-width: 275px;
    padding: 10px 18px;
    margin: 10px auto 5px auto;
    font-size: 1.4rem;
  }
  header .global_menu.phase3_open ul {
    box-shadow: 3px 3px 3px 0 rgba(50, 50, 50, 0.01);
    padding-top: 15px;
    padding-bottom: 10px;
    background: rgba(255, 255, 255, 1);
    border-radius: 0 0 8px 8px;
  }
  header .global_menu.phase3_open ul li { display: block; width: 98%; margin: auto; }
  header .global_menu.phase3_open li a::after { display: none; visibility: hidden; }
}/* End phase3_open /max-width:1100px */

/* --- phase3_open: #contents padding-top / global_menu top 調整 --- */
@media screen and (max-width:1300px) {
  body:has(.phase3_open) #contents,
  body:has(.phase3_open).naka_page #contents { padding-top: 55px;}
}
@media screen and (max-width:1050px) {
  body:has(.phase3_open) #contents,
  body:has(.phase3_open).naka_page #contents { padding-top: 55px;}
  header .global_menu.phase3_open { top: 55px;}
}
@media screen and (max-width:1000px) {
  body:has(.phase3_open) #contents,
  body:has(.phase3_open).naka_page #contents { padding-top: 50px;}
  header .global_menu.phase3_open { top: 50px;}
}
@media screen and (max-width:950px) {
  body:has(.phase3_open) #contents,
  body:has(.phase3_open).naka_page #contents { padding-top: 50px;}
  header .global_menu.phase3_open { top: 50px;}
}
/* ========= End phase3_open レスポンシブ ========= */








/* contents
**********************************************************/

/* main_visual
*****************************/

#contents {padding-top:60px;}
.naka_page #contents {padding-top:60px;}

.h2_cont_gaiyou{ font-size: 1em; font-weight: normal;}

@media screen and ( max-width:950px) {
#contents {padding-top:50px;}
.naka_page #contents {padding-top:50px;}
}


.h2_page_title{
  background:#0054AC;
  color: #000;
  padding: 0;
  padding-bottom: 40px;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.h2_page_title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/h2_bg01.jpg) center / cover no-repeat;
  opacity: 0.25;
  z-index: 0;
}
.h2_page_title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 40' preserveAspectRatio='none'%3E%3Cpath d='M0,0 C300,40 900,40 1200,0 L1200,40 L0,40 Z' fill='%23ffffff'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: 100% 100%;
  z-index: 2;
}

.h2_page_title .h2_page_title_inner {
    max-width: 750px;
    margin: 0 auto 0px auto;
    padding:1.25em 0.25em 0.75em 0.25em;
    box-sizing: border-box;
    text-align: center;
    font-size: 3.8rem;
    font-family: "Zen Maru Gothic", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    color: #fff;
}
/* 
.h2_page_title .h2_page_title_inner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ECE4CC;
}
*/
@media screen and ( max-width:1120px) {
.h2_page_title .h2_page_title_inner {
    max-width: 820px;
  }
}
@media screen and ( max-width:767px) {
.h2_page_title {
    padding-bottom: 0;
  }
.h2_page_title::after {
    display: none;
  }
.h2_page_title .h2_page_title_inner {
    font-size: 2.8rem;
    padding: 0.75em 0.25em;
  }
}
@media screen and ( max-width:480px) {
.h2_page_title .h2_page_title_inner {
    font-size: 2.2rem;
    padding: 0.5em 0.25em;
  }
}

#contents #main_visual{
position: relative;
width: 100%;
overflow: hidden;
line-height: 0px;
padding: 0;
}

/* スライドショー */
.mv_slideshow {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
}
.mv_slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-position: center center;
background-size: cover;
background-color: rgba(0,0,0,0.05);
background-blend-mode: darken;
opacity: 0;
transition: opacity 1s ease-in-out;
}
.mv_slide.mv_slide_active {
opacity: 1;
}

#main_visual {
  background: #CCC;
  height: 400px; /* 20230303 change */
  position: relative;
  margin-top: 0px; /* 20230303 add */
}
@media screen and ( max-width:900px) {
#contents #main_visual {
  height: 380px;
  }
}
@media screen and ( max-width:767px) {
#contents #main_visual {
    height:300px;
    margin-top: 0px; /* 20230303 add */
  }
}
@media screen and ( max-width:650px) {
#contents #main_visual {height:220px; }
}


#main_visual .main_title {
position: absolute;
left: 50%;
transform: translate(-50%, -50%);
top: 50%;
text-align: center;
padding: 20px;
width: calc(100% - 50px);
max-width: 750px;
min-height: 240px;
z-index: 1;
border: none;
background: rgba(0, 0, 0, 0.30);
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
border: 1px #fff solid;
border-radius: 3px;
}
@media screen and ( max-width:1030px) {
  #main_visual .main_title {
  }
}
@media screen and ( max-width:767px) {
  #main_visual .main_title {
    width: 85%;
    padding: 15px;
  }
}
@media screen and ( max-width:550px) {
  #main_visual .main_title {
    padding: 10px;
  }
}






#main_visual .main_title h2 {
  font-size: 5.2rem;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and ( max-width:880px) {
  #main_visual .main_title h2 {
    font-size: 4.2rem;
  }
}
@media screen and ( max-width:790px) {
  #main_visual .main_title h2 {
    font-size: 4rem;
  }
}
@media screen and ( max-width:650px) {
  #main_visual .main_title h2 {
    font-size: 3.4rem;
    padding:  0px 5px;
  }
}
@media screen and ( max-width:550px) {
  #main_visual .main_title h2 {
    font-size: 3rem;
  }
}
@media screen and ( max-width:450px) {
  #main_visual .main_title h2 {
    font-size: 2.7rem;
    padding:  0px 5px;
  }
}


#main_visual .main_title span.main_subtitle{ display: none; visibility: hidden;}
@media screen and (max-width: 767px) {
#main_visual .main_title span.main_subtitle {
    font-size: 1.8rem;
    border-top: solid 1px #fff;
    border-bottom: solid 1px #fff;
    font-weight: 400;
    padding: 5px 5px;
    display: block;
    visibility: inherit;
    line-height: 1em;
    margin-bottom: 10px;
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(237, 233, 230, 0.65) 30%,
    rgba(237, 233, 230, 0.65) 50%,
    rgba(237, 233, 230, 1) 70%,
    rgba(255, 255, 255, 0) 100%);
}
  header .global_menu ul { box-shadow: 3px 3px 3px 0 rgba(50, 50, 50, .15);  }
}


#main_visual .main_title .main_title_inner {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 0px 15px;
 /* 明朝
font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
*/
color: #fff;
line-height: 1.25em;
text-align: left;
text-shadow:
2px 2px 3px rgba(0,0,0,0.5),
-2px 2px 3px rgba(0,0,0,0.5),
2px -2px 3px rgba(0,0,0,0.5),
-2px -2px 3px rgba(0,0,0,0.5);
}

#main_visual .main_title .main_subtitle {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "YuGothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-size: 4.35rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}
#main_visual .main_title .main_subtitle_s {
  font-size: 0.75em;font-weight:normal;
  margin: 0.5em 0;
}
#main_visual .main_title .button {
  text-shadow: none;
  font-size: 18px;
}
#main_visual .main_title .main_subtitle br {
}



@media screen and (max-width:1300px) {
  #main_visual .main_title .main_subtitle {
    font-size: 4rem;
  }
}
@media screen and (max-width:1200px) {
  #main_visual .main_title .main_subtitle {
    font-size: 3.85rem;
  }
}
@media screen and (max-width:1150px) {
  #main_visual .main_title{ padding: 20px 0px;}
  #main_visual .main_title .main_subtitle {

  }
}
@media screen and (max-width:1100px) {
  #main_visual .main_title .main_subtitle {
  }
}

@media screen and (max-width:900px) {
  #main_visual .main_title .main_subtitle br {
   
  }
  #main_visual .main_title .main_subtitle {

  }
}
@media screen and (max-width: 767px) {
  #main_visual .main_title {
    min-width: inherit;
  }
}
@media screen and (max-width:480px) {
  #main_visual .main_title .main_subtitle {
    font-size: 2.2rem;
  }
}

#main_visual .main_title .main_subtitle01 {
  font-family: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 1.6rem;
  line-height: 1.4;
  margin-bottom: 1.5em;
}

/* main_visual レスポンシブ */
@media screen and (max-width: 767px) {
  #main_visual .main_title .main_subtitle01 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 500px) {
  #main_visual .main_title .main_subtitle01 {
    font-size: 1.0rem;
  }
}

@media screen and ( max-width:880px) {
  #main_visual .main_title span {
    font-size: 1.8rem;
  }
}
@media screen and ( max-width:790px) {
  #main_visual .main_title span {
    font-size: 1.5rem;
  }
}
@media screen and ( max-width:767px) {
  #main_visual .main_title {
    font-size: 1.2rem;
    padding:30px 10px 50px 10px;
  }
}
@media screen and ( max-width:650px) {
  #main_visual .main_title {
    font-size: 1.2rem;
    padding:10px 10px 10px 10px;
    min-height: 130px;
  }
#main_visual .main_title .main_title_inner {
padding: 0px 5px;
  }
}

/* section
*****************************/
#contents section{ position: relative; padding-bottom: 100px;}
@media screen and ( max-width:480px) {
#contents section { padding-bottom: 40px }
}

#contents section::before,
#contents section::after { content: ""; display: block; clear: both;}

#contents section:nth-child(odd),
.naka_page #contents section:nth-child(2n){
    position: relative;

}

.has-section-bg #contents section:nth-child(odd)::before,
.has-section-bg.naka_page #contents section:nth-child(2n)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-2nd);
    z-index: -1;
}

#contents section:first-child{
    top: 0px!important;
    margin-bottom: 0px!important;
    padding-top: 100px;;
}
.naka_page  #contents section:first-child{
    padding-top: 0px;;
}


#contents section:first-child::before,
.naka_page #contents section:first-child::before{
    background-color: #fff!important;
}
.naka_page #contents section:first-child{
    top: auto!important;
    margin-bottom: 0px!important;
}

.component {
  max-width: 920px;
  margin: 0 auto 0px auto;
  padding: 0px 20px;
}
@media screen and ( max-width:1120px) {
  .component {
    padding: 0 20px 20px 20px;
    max-width: 820px;
  }
  .component.component_koubo_shinseiyoushiki {
    max-width: 920px;
  }
}
@media screen and ( max-width:767px) {
  .component {
    padding: 0 15px 25px 15px;
  }
}

/* contents
*****************************/
.naka_page #contents .line_box h1,
.naka_page #contents .line_box h1.h1_main_title,
.line_box h3,
.line_box h3.h3_main_title01{
  display: block;
  font-size: 3.2rem;
  line-height: 1.4;
  text-align: center;
  position: relative;
  color: var(--color-cont-title);
  color: #0098DB;
  font-weight: bold;
  padding: 5.5rem 0 0 0;
  margin: 0 auto 3rem auto;
  margin-bottom: 40px;
  padding-bottom: 16px;
}

.line_box h3{
  font-family: "Zen Maru Gothic", sans-serif;
}
.line_box h3 span {
    padding-bottom: 4px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    display: inline-block;
    letter-spacing: 2px;
    /* text-shadow: 2px 2px 0 rgba(031,066,101, 0.7); */
}
.line_box h3 span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #FFEE77;
    clip-path: polygon(5% 80%, 0% 100%, 95% 100%, 100% 60%);
    z-index: -1;
}
.line_box h3::after {
    content: "";
    display: block;
    width: 160px;
    height: 5px;
    margin: 8px auto 0 auto;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 5' preserveAspectRatio='none'><line x1='2.5' y1='2.5' x2='157.5' y2='2.5' stroke='%23F7C969' stroke-width='5' stroke-linecap='round' stroke-dasharray='6 12'/></svg>") no-repeat center / 100% 100%;
}



@media screen and ( max-width:767px) {
  .naka_page #contents .line_box h1,
  .naka_page #contents .line_box h1.h1_main_title,
  .line_box h3,
  .line_box h3.h3_main_title01{
    font-size: 2.4rem;
    padding: 4rem 0 0 0;
    margin: 0 auto 2rem auto;
  }
  .line_box h3{ padding-bottom: 1em;}
}

.naka_page #contents .line_box h1,
.cont_page .line_box h3{ margin-bottom: 1.5rem;}

.wnew_page .line_box h3 {
padding-left: 0.7em!important;}

@media screen and ( max-width:1120px) {
.naka_page #contents .line_box h1,
  .line_box h3 {
    font-size: 3.4rem;
    padding-left: 20px;
  }
}
@media screen and ( max-width:767px) {
.naka_page #contents .line_box h1,
.naka_page #contents .line_box h1.h1_main_title,
.line_box h3{ font-size: 2.6rem; }
.cont_page .line_box h3{ margin-bottom: 1rem; font-size: 2rem !important; }
}
@media screen and ( max-width:480px) {
    .naka_page #contents .line_box h1, .line_box h3 {
        padding-left: 5px; margin-bottom: 10px!important;
    }
}



.line_box .content {
  padding: 20px 30px 25px 30px;
}
@media screen and ( max-width:1120px) {
  .line_box .content {
    padding: 20px 10px 25px 10px;
  }
}
@media screen and ( max-width:767px) {
  .line_box .content {
    padding: 10px 5px 15px 5px;

  }
}
.line_2,
.line_3 {
  justify-content: space-between;
}
.line_2 > * {
  width: calc(50% - 13px);
}


/* application
*****************************/


footer .notch_title {
  background: var(--color-sub-primary01);
  color: var(--color-white);
  font-size: 20px;
  font-weight: 600;
  margin-top: -80px;
  width: 15em;
  text-align: center;
  padding: 0.65em 30px;
  position: relative;
  margin-bottom: 25px;
  border-radius: 30px;
}
footer .notch_title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: var(--color-sub-primary01) transparent transparent;
}


@media screen and ( max-width:767px) {
  footer .notch_title {
  font-size: 1.8rem;
  margin-bottom: 25px;
  width: 9em;
  padding: 0.5em 0px;
  margin-left: -5px;
  }
footer .notch_title::after {
  left:35px;
}
}





/* footer
********************************************************* */

footer {
  background: var(--color-footer-bg);
  color: var(--color-text);
  /* border-top:1px solid var(--color-primary); */
  position: relative;
  margin-top: -50px;
  padding-top: 50px;
}
@media screen and ( max-width:767px) {
  footer .component {
    padding-bottom: 85px;
  }
}


footer .contact_name,
footer .contact_address {
  padding-bottom: 40px;
}
@media screen and ( max-width:767px) {
  footer .contact_name,
  footer .contact_address {
    padding-bottom: 25px;
  }
}
footer .contact_name h4 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4;
  color: #006FB9;
}
@media screen and ( max-width:767px) {
  footer .contact_name h4 {
    font-size: 1.7rem;
  }
}
footer .contact_name h4 span {
  display: block;
}
footer .contact_name h4 .small {
  font-size: 1.75rem;
}
@media screen and ( max-width:767px) {
  footer .contact_name h4 .small {
    font-size: 1.5rem;
  }
}
footer .contact_name p {
  color: var(--color-white);
  margin-left: 1em;
  font-size: 1.2rem;
}
footer .contact_address {
  padding-bottom: 30px;
}
@media screen and ( max-width:767px) {
  footer .contact_address div {
    width: 100%;
  }
}
footer .contact_address h5 {
  font-size: 1.75rem;

  background-color:#fff;
  color: #006FB9;
  font-weight: normal;
  padding: 3px 10px;
  margin-bottom: 15px;
  font-weight: bold;
}
footer .contact_address a {
  text-decoration: none;
  color: var(--color-brown);
  line-height: 1;
}
footer .contact_address p {
  padding-bottom: 20px;
}
footer .contact_address .mail {
  padding-left: 2em;
  background-image: url(../img/icon_mail.svg);
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
}
footer .contact_address .mail a {
  font-size: 2.5rem;
}
@media screen and ( max-width:767px) {
  footer .contact_address h5 {
    font-size: 1.6rem;
  }
  footer .contact_address .mail a {
    font-size: 1.8rem;
  }
  footer .contact_address .tel dd {
    font-size: 1.5rem;
  }
}
footer .contact_address .tel dt {
padding-left: 2.25em;
    background-image: url(../img/icon_telephone.svg);
    background-repeat: no-repeat;
    background-position: 5px 5%;
    background-size: 2em auto;
}
footer .contact_address .tel {
  align-items: end;
}
footer .contact_address .tel a {
  font-size: 3.5rem;
  font-weight: 500;
}
footer .contact_address .tel dd {
  font-size: 1.65rem;
  padding-left: 20px;
  line-height: 1.5;
}

footer .contact_address .sitepolicy {
position: relative;
height: 100%;
font-size: 0.9em;
}
footer .contact_address .sitepolicy a{
position: relative;
display: inline-block;
padding: 5px 10px;
margin: 0 5px;
height: 100%;
border-radius:3px;
}
footer .contact_address .sitepolicy a:link,
footer .contact_address .sitepolicy a:visited{
color: #3C2C25;
}
footer .contact_address .sitepolicy a:hover,
footer .contact_address .sitepolicy a:active{background-color: #4F4139; color: #fff;}

.sitepolicy a:hover span::before{
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

/*
.sitepolicy::before{
content: '';
height:100%; width:1px;
background-color: #aaa;
display: block;
}
.sitepolicy::after{
content: '';
height:100%; width:1px;
background-color: #aaa;
display: block;
}
*/

.sitepolicy a span{ padding-left: 10px }
.sitepolicy a span::before{
position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    font-size: 16px;
    left: 7px;
    width: 4px;
    height: 4px;
    border-top: 2px solid var(--color-btn-sub);
    border-right: 2px solid var(--color-btn-sub);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.qa_list_title01{
    line-height: 2em;
    font-size: 2.15rem;
    color: var(--color-primary);
    position: relative;
    padding-left: 0em;
}
.qa_list_title01:before{
    content: "";
    color: var(--color-primary);
    background: #F96C37;
    position: absolute;
    display: block;
    left: -10px;
    top: 20px;
    font-size: 1px;
    line-height: 1px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    padding: 0px;
}
.qa_list_subtitle01{
display: block;
padding: 0.75em 1em; border-radius: 8px; background-color: #FFFADF;
}
.qa_button_small.button{
    margin: 10px 1.5em;
    max-width: inherit;
    width: 180px;
    padding: 6px 20px;
    font-weight: normal;
}
.qa_list_subtitle01.qa_list_subtitle_icon01{
    background-image: url(../img/file_icon_contents.svg);
    background-repeat: no-repeat;
    background-position: top 12px left 16px;
    background-size: 29px auto;
    padding: 0.75em 1em 0.75em 50px;
}












@media screen and ( max-width:900px) {
  footer .contact_address .tel dt,
  footer .contact_address .tel dd {  width: 100%;  }
}
@media screen and ( max-width:900px) {
  footer .contact_address .tel dt{ background-size: 1.7em auto; }
}



footer .contact_address .tel dd span {

  display: block;
}
@media screen and ( max-width:900px) {
  footer .contact_address .tel dd span {
    display: inline;
  }
}
footer .copyright {
  width: 100%;
  font-size: 1.2rem;
  text-align: right;
  border-top: solid 1px var(--color-primary);
  padding: 30px 0 0;
}
@media screen and ( max-width:1260px) {
  footer .copyright {
    text-align: left;
  }
}
@media screen and ( max-width:767px) {
  footer .copyright {
    font-size: 0.9rem;
    padding: 20px 0 0;
  }
footer .contact_address .tel a{ font-size:2rem;}
}
footer .copyright br {
  display: none;
}
@media screen and ( max-width:767px) {
  footer .copyright br {
    display: inline;
  }
}
.fixed_button {
  width: 70px;
  height: 70px;
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 1;
}
@media screen and ( max-width:767px) {
  .fixed_button {
    width: 40px;
    height: 40px;
    bottom: 75px;
    z-index: 2;
  }
}
.fixed_button a {
  display: block;
  width: 70px;
  height: 70px;
  border-radius:5px;
  background: var(--color-brown-dark);
  color: var(--color-white);
  text-align: center;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  padding-top: 33px;
  opacity: 0.3;
}
.fixed_button a:hover{opacity:0.9;}
@media screen and ( max-width:767px) {
  .fixed_button a {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    padding-top: 16px;
  }
}
.fixed_button a::before {
  content: "";
  display: block;
  width: 10px;
  height: 20px;
  background: url("../img/arrow_wht_right.svg") no-repeat left top;
  background-size: 100%;
  position: absolute;
  top: 15px;
  left: calc(50% - 5px);
  transform: rotate(-90deg);
}
@media screen and ( max-width:767px) {
  .fixed_button a::before {
    width: 6px;
    height: 11px;
    top: 8px;
    left: calc(50% - 3px);
  }
}

/* 870px以下用改行・インデント */
.br_870 { display: none; }
@media screen and (max-width: 870px) {
  .br_870 { display: inline; }
  .indent_870 { padding-left: 0.75em; }
}

/* 1150px以下用改行・インデント */
.br_1150 { display: none; }
@media screen and (max-width: 1150px) {
  .br_1150 { display: inline; }
  .indent_1150 { padding-left: 0.75em; }
}

/* フッターお問い合わせ 480px以下 */
@media screen and (max-width: 480px) {
  footer .contact_name h4 {
    font-size: 1.5rem;
  }
  footer .contact_name h4 .small {
    font-size: 1.3rem;
  }
  footer .contact_address h5 {
    font-size: 1.4rem;
  }
  footer .contact_address .mail a {
    font-size: 1.6rem;
  }
  footer .contact_address .tel a {
    font-size: 1.8rem;
  }
  footer .contact_address .tel dd {
    font-size: 1.3rem;
  }
}
