@charset "utf-8";

/* ==========================================================
   CSS変数（カラー定義）
   ========================================================== */
:root {
  /* メインカラー */
  --color-primary: #2E8B57;
  --color-primary-hover: #F26100;
  --color-btn-main: #31855A;
  --color-main-light: #D4AF37;

  /* オレンジ系 */
  --color-btn-orange: #F7701B;
  --color-orange-light: #FF8E3F;

  /* グリーン系 */
  --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-gray: #848484;
  --color-gray-light: #ddd;
  --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-black: #000;

  /* リンク */
  --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);}
      header .global_menu ul {display: none;}
    }
@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;}
@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_175em{ font-size: 1.75em; }
.f_15em { font-size: 1.5em;  }
.f_14em { font-size: 1.4em;  }
.f_13em { font-size: 1.3em;  }
.f_125em{ font-size: 1.25em; }
.f_12em { font-size: 1.2em;  }
.f_115em{ font-size: 1.15em; }
.f_11em { font-size: 1.1em;  }
.f_1_075em{ font-size: 1.075em; }
.f_105em{ 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; }


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


.line_height_15em{line-height: 1.5em!important;}
.mt_075em { margin-top   : 0.75em!important; }

.max_width_750{max-width:750px;}
.max_width_700{max-width:700px;}
.max_width_650{max-width:650px;}
.max_width_640{max-width:640px; }





/* 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:8px 40px;
border-radius: 50px;
margin-top: 2.5em;
max-width: 300px;
font-size: 0.9em;
background: var(--color-gold);
}



@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.green { background: var(--color-green);}
.button.brown { background: var(--color-gold-dark);}
.button.blue  { background: var(--color-link);}
.button.pink  { background: #FF604A;}
.button.gold  { background: var(--color-gold);}






/* ===================================================================================== */
/*  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;
}
.item_visible header{
background: linear-gradient(rgba(255,255,255,1),rgba(255,255,255,0));
}




header .header_main{
box-shadow: 3px 3px 3px 0 rgba(50, 50, 50, .15);
}

.item_visible header .header_main{

}
.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 h1.header_sitename a{
  display: flex;
  align-items: center;
  height: 100%;
}

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

header h1.header_sitename a:link,
header h1.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_top{
background-color: #38E1EE;
color: #fff;
height:26px;
box-sizing: border-box;
font-size: 14px;
line-height: 1.5em;
font-weight: normal;
padding: 2px 15px;
text-align: center;
width: 100%;
}
.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;
}

@media screen and ( max-width:1000px) {
header h2.header_logo {display: none; visibility: hidden;}
}

/* -----------------------------------------  */
/*  メインメニュー   */
/* -----------------------------------------  */
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 ul.global_menu_ul {
  padding:0px;
  flex-grow: 1;
  display: flex;
  flex-direction: row; /* flex-direction を row に設定して子要素を横に並べる */
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
}
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.h_shinki_button:link,
header .global_menu ul li.h_menu_li_button a.h_shinki_button:visited{
  text-decoration: none;
  color: #fff; background-color: var(--color-brown);
}
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: var(--color-btn-main);
  color: var(--color-white);
}
li.h_menu_li_button a:hover,
li.h_menu_li_button a:active{
background: var(--color-primary-hover); color: #fff;
text-shadow: var(--color-primary-hover) 1px 0 10px;
}


/* プルダウンメニュー */
.h_li_pulldown_menu{ position: relative; }
header .global_menu ul li.h_li_pulldown_menu a{ padding-right: 17px}

.h_pulldown_menu {
    display: none; /* デフォルトは非表示 */
    position: absolute; /* 必要に応じて位置を調整 */
    background-color: var(--color-white);
    border: 1px solid #ddd;
    list-style: none;
    padding:0;
    margin: 0;
    width: 180px;
    top:32px;
    left:8px;
    z-index: 999;
    border-radius: 3px;
}

.global_menu_item:hover > .h_pulldown_menu {
    display: block; /* ホバー時に表示 */
    height: auto;
}
header .global_menu ul li.h_li_pulldown_menu > a::before{
    content: "";
    position: absolute;
    top: calc(50% + 4px);
    right: 6px;
	width: 4px;
	height: 4px;
	border-top: 2px solid var(--color-primary);
	border-right: 2px solid var(--color-primary);
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}


header .global_menu ul ul.h_pulldown_menu li,
header .global_menu ul.h_pulldown_menu li{ 

}
.global_menu_item:hover .h_pulldown_menu,
.global_menu_item:hover .h_pulldown_menu li,
header .global_menu_item:hover  ul.h_pulldown_menu li a{
display: block;
}
header .global_menu ul.h_pulldown_menu li a{
padding: 8px 5px 8px 1.25em;
line-height: 1.25em;
}
header .global_menu ul.h_pulldown_menu li a::before{
        content: "";
        position: absolute;
        top: calc(50% - 3px);
        left: 7px!important;
        width: 4px;
        height: 4px;
        border-top: 2px solid var(--color-primary);
        border-right: 2px solid var(--color-primary);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
header .global_menu ul.h_pulldown_menu li:first-child a{ padding-top: 8px;}
header .global_menu ul.h_pulldown_menu li:last-child a{ }


header .global_menu ul.h_pulldown_menu li a:hover{
background-color: var(--color-bg-orange-light);
border-radius: 3px;
}



@media screen and (max-width:800px) {
header .global_menu ul li.h_li_pulldown_menu a{ padding-bottom:5px;}
.global_menu_item .h_pulldown_menu {
  display: block; /* ホバー時に表示 */
  height: auto;
  position: initial;
  width: 100%;
  }

.global_menu_item .h_pulldown_menu {
  box-shadow: none;
  border:0px solid #ddd;
  padding-top: 0;
  }

header .global_menu ul li.h_li_pulldown_menu > a::before{
display: none;
}
header .global_menu ul li.h_li_pulldown_menu ul a{ position: relative; padding-left:2.5em;}
header .global_menu ul li.h_li_pulldown_menu ul a::before{
        content: "";
        position: absolute;
        top: calc(50% - 3px);
        left: 1.5em !important;
        width: 4px;
        height: 4px;
        border-top: 2px solid var(--color-primary);
        border-right: 2px solid var(--color-primary);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

}




/* ハンバーガーメニュー アイコン 通常時 */
.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:1300px) {
header .global_menu { padding: 5px 8px; font-size: 0.9em;}
header .header_main { padding: 0px 15px 0px 15px;}
.header_logo img { margin-left: 0px; }
header .global_menu ul li.h_menu_li_button a{
    margin: 2px 5px 5px 5px;
    padding: 3px 20px;
}
}
@media screen and (max-width:1200px) {
header li a { padding: 0px 8px; }
.only_pc{ display: none; visibility: hidden;}
}/* End/max-width:1200px */
@media screen and (max-width:1150px) {
header .global_menu{ padding-right: 0; font-size: 0.85em;}
.header_logo img{ max-width: 100px;}
header .header_main{ padding-right: 10px;}
}
@media screen and (max-width:1100px) {

header li a { padding: 0px 6px; }
}
@media screen and (max-width:1050px) {
header .global_menu { font-size: 0.8em;}
header li a { padding: 0px 5px; }
header .global_menu ul li.h_menu_li_button a { padding: 3px 8px; }
header .header_main{ padding-right: 5px; }
}
@media screen and (max-width:1000px) {
.header_logo img{ max-width: 90px;}
header .global_menu {  padding-top: 0; font-size: 0.9em;}/* 860pxまで変更しない */
header .header_main{ padding: 0px 10px 0px 15px; }
header .global_menu ul li.h_menu_li_button a { padding: 5px 8px;}
}
@media screen and (max-width:980px) {
.header_wrapper .header_right{ font-size: 0.85em;}
}

@media screen and (max-width:900px) {
.header_sitename {}
/* header .global_menu { font-size: 0.72em;} *//* 860pxまで変更しない */
header .global_menu { font-size: 0.8em;}
/* .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;}
header li a { padding: 0px 6px; }
}
@media screen and (max-width:880px) and (min-width:801px) {

/* 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;}
}
@media screen and (max-width:850px) {
  header .header_main{  height: 50px;}
header .global_menu { font-size: 0.75em;}
header h1.header_sitename a img{ height: 50px; width: auto; }
}
@media screen and (max-width:1000px) {
 .header_sitename{}
 header .global_menu ul li a{padding: 12px 15px 12px 25px;}
 header .header_logo img {  width: 100px; }


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: 55px;
   z-index: 1;
   background-color: var(--color-white);
 }
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 ul li{display: block; width: 98%; margin: auto;}
 header .global_menu li a::after { display: none; visibility: hidden;}
 header .global_menu ul li.h_menu_li_home,
 header li.h_menu_li_home,
 .h_icon_home span{ display: block; }

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

@media screen and (max-width:700px) {
 header h1.header_sitename a img{ max-width: 280px; }
}










/* 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:1050px) {
#contents,
.naka_page #contents {padding-top:55px;}
}
@media screen and ( max-width:1000px) {
#contents {padding-top:50px;}
.naka_page #contents {padding-top:50px;}
}
@media screen and ( max-width:500px) {
header h2.kankou_logo {display: none; visibility: hidden;}
}


h2.h2_page_title{
  background-color:#F5F4DE;
  color: #000;
  padding: 0;
  display: flex;
  align-items: stretch;
  position: relative;
}
.naka_page h2.h2_page_title::after {
  content: '';
  position: absolute;
  bottom:-8px;
  height: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3em;
  max-width: 100%;
  
  background: #ECE4CC;
  border-radius: 0 0 2px 2px;
}

h2.h2_page_title .h2_page_title_inner {
    max-width: 750px;
    margin: 0 auto 0px auto;
    padding: 1em 0.25em;
    box-sizing: border-box;
    text-align: center;
    font-size: 3.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--color-primary);
}
h2.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.h2_page_title .h2_page_title_inner {
    max-width: 820px;
  }
}
@media screen and ( max-width:767px) {
h2.h2_page_title .h2_page_title_inner {
    font-size: 2.8rem;
    padding: 0.75em 0.25em;
  }
}
@media screen and ( max-width:480px) {
h2.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: 460px; /* 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:500px) {
#contents #main_visual {height:350px; }
}


#main_visual .main_title {
position: absolute;
left:1%;
top: 0;
text-align: center;
padding: 20px;
width: 33%;
height: 100%;
z-index: 1;
border: none;
background: rgba(0, 0, 0, 0.30);
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
}
@media screen and ( max-width:1030px) {
  #main_visual .main_title {
    width: 40%;
    min-width: 340px;;
  }
}
@media screen and ( max-width:767px) {
  #main_visual .main_title {
    width: 45%;
    padding: 15px;
  }
}
@media screen and ( max-width:500px) {
  #main_visual .main_title {
    width: 50%;
    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: inline-block;
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: "游明朝", "Yu Mincho", "YuMincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-size: 4.1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.65em;
}
#main_visual .main_title .main_subtitle br {
}
@media screen and (max-width:1500px) {
  #main_visual .main_title .main_subtitle {
    font-size: 4rem;
  }
}
@media screen and (max-width:1450px) {
  #main_visual .main_title .main_subtitle {
    font-size: 3.8rem;
  }
}
@media screen and (max-width:1400px) {
  #main_visual .main_title .main_subtitle {
    font-size: 3.5rem;
  }
}

@media screen and (max-width:1300px) {
  #main_visual .main_title .main_subtitle {
    font-size: 3.2rem;
  }
}
@media screen and (max-width:1200px) {
  #main_visual .main_title .main_subtitle {
    font-size: 3rem;
  }
}
@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 {
    display: none;
  }
  #main_visual .main_title .main_subtitle {
    font-size: 2.5rem;
  }
}
@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 .main_title .main_subtitle02 {
  display: inline-block;
  border: 1px #fff solid;
  padding: 6px 40px 6px 25px;
  font-size: 1.7rem; line-height: 1.5em;;
  position: relative;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
#main_visual .main_title .main_subtitle02::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 12px;
  height: 1px;
  background: #fff;
  transform: translateY(-50%);
  transition: background 0.3s ease;
}
#main_visual .main_title .main_subtitle02::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.3s ease;
}
#main_visual .main_title .main_subtitle02:hover {
  background: #fff;
  color: #e67e22;
  text-shadow: none;
}
#main_visual .main_title .main_subtitle02:hover::before {
  background: #e67e22;
}
#main_visual .main_title .main_subtitle02:hover::after {
  border-top-color: #e67e22;
  border-right-color: #e67e22;
}

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

@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:500px) {
#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;

}

#contents section:nth-child(odd)::before,
.naka_page #contents section:nth-child(2n)::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg-cream);
    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;
}


#pan{ font-size: 0.85em; margin-top: -20px;}

.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-green-text);
  font-weight: normal;
  padding: 5.5rem 0 0 0;
  margin: 0 auto 3rem auto;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #ddd;
}
.naka_page #contents .line_box h1::before,
.naka_page #contents .line_box h1.h1_main_title::before,
.line_box h3::before,
.line_box h3.h3_main_title01::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3em;
  max-width: 100%;
  height: 15px;
  background: var(--color-primary);
  border-radius: 0 0 3px 3px;
}
/* h3 下部アクセントライン */
.naka_page #contents .line_box h1::after,
.naka_page #contents .line_box h1.h1_main_title::after,
.line_box h3::after,
.line_box h3.h3_main_title01::after {
  display: block;
  content: '';
  width: 160px;
  height: 2px;
  background: var(--color-primary);
  position: absolute;
  bottom: -1px;
  left: 0;
}
.line_box h3.h3_main_title01{font-size: 2.8rem; padding-top: 0;}
.line_box h3.h3_main_title01::before{display: none;}

@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;}
  .line_box h3.h3_main_title01{font-size: 2rem;}
}

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

.line_box h3 .red {
    color: var(--color-red-text);
}

.wnew_page .line_box h3 {
padding-left: 0.7em!important;}
.wnew_page .line_box h3 .page_title_date{
    color:#F96C37;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0px 0px 0px 2px;
    text-align: left;
    width: auto;
}

@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; }
.line_box h3.h3_main_title01{ font-size: 2.2rem; }
}
@media screen and ( max-width:480px) {
    .naka_page #contents .line_box h1, .line_box h3 {
        padding-left: 5px; margin-bottom: 10px!important;
    }
}

.naka_page #contents .line_box.red h1,
.line_box.red h3 {
  border-color: var(--color-red);
}



.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);
}
.line_3 > * {
  width: calc(33.3333% - 18px);
}


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


footer .notch_title {
  background: #31855A;
  color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-top: -42px;
  width: 10em;
  text-align: center;
  padding: 0.25em 10px;
  position: relative;
  margin-bottom: 35px;
  border-radius: 3px 3px 0 0;
}
footer .notch_title::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 15px 20px 0 20px;
  border-color: #31855A transparent transparent transparent;
}

@media screen and ( max-width:767px) {
  footer .notch_title {
    font-size: 1.8rem;
    margin-bottom:25px;
        margin-top: -38px;
  }
}





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

footer {
  background: var(--color-bg-light);
  color: var(--color-text);
  border-top:1px solid var(--color-primary);
  position: relative;
  margin-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: normal;
  line-height: 1.4;
  color: #41210F;
}
@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 .medium {
  font-size: 2.3rem;
}
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:#F2EDDD;
  color: var(--color-primary);
  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 #39AE6F;
    border-right: 2px solid #39AE6F;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* よくある質問 ページ内リンク */
.qa_menu_area{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 8rem;
}
.qa_menu_area a{
  padding: 10px 10px 10px 20px;
  width: 48%;
  background-color: var(--color-white);
  border: 2px solid #ffcdba;
  border-radius: 25px;
  margin-bottom: 20px;
  text-decoration: none;
  color: var(--color-text);
  font-size: 18px;
  box-sizing: border-box;
  
}
.qa_menu_area a:hover{
    background-color: var(--color-primary);
    border: 2px solid #F96C37;
    color: #fff;
}

.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: 1150px){
  .qa_menu_area a{ font-size: 15px; }
}
@media screen and (max-width: 840px){
  .qa_menu_area a{ font-size: 14px; }
}
@media screen and (max-width: 760px){
  .qa_menu_area a{ font-size: 15px; width: 100%; margin-bottom:15px; }
}












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

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

/* 公募期間の２月27日 左余白（780px超のみ） */
.schedule_date_pl { padding-left: 3px; }

/* 850px以下用改行 */
.br_850 { display: none; }
@media screen and (max-width: 850px) {
  .br_850 { display: inline; }
  .schedule_date_pl { padding-left: 0; }
}

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

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

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

.br_480 { display: none; }
@media screen and (max-width: 480px) {
  .br_480 { display: inline; }
  .indent_480 { 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;
  }
}
