@charset "UTF-8";

/*変数設定*/
:root {
  --red-color: #e71a1d;
  --blue-color: #043459;
  --light-red:#fc0b4f;
  --light-blue:#165184;
  --hokkaido:#7d8fc7;
  --tohoku: #44bfec;
  --koushinetu: #227838;
  --syutoken: #4670b7;
  --chubu: #6ab82c;
  --kinki: #c4d836;
  --chugoku: #f2dd25;
  --shikoku: #f4a81c;
  --kyushu: #eb8bb7;
}
/*
var(--red-color)
var(--blue-color)
*/

body {
  position: relative;
  background-color: #fff;
  line-height: 1.6;
  color: #000000;
}

input:focus, select:focus, textarea:focus {
  outline: none;
}

/*ページ内アンカースクロール時ヘッダー回避*/
html {
  scroll-padding-top: 180px;
}

@media (max-width: 767px) {

  html {
    scroll-padding-top: 160px;
  }
}

/*footer下部固定*/
html,body{
  height:100vh;
}
#container {
  /*background-color: #ccc;*/
  padding-top: 160px;
  padding-bottom: 530px; /*フッターの高さと同じ*/
}

#wrap {
  position: relative;
  height:auto !important;
  height: 100%;
  min-height: 100%;
}

#footer{
  /*background-color: rgba(255,255,255,0.7);*/
  position:absolute;
  bottom: 0;
}

#seal{
  box-sizing: border-box;
  margin: 0 auto;
  padding: 10px;
  align-items: center;
  justify-content: center;
}

#seal p{
  padding-left: 10px;
  font-size: 10px;
  color: #666;
}
@media (max-width: 767px) {
  #seal{
    border: 1px solid #ccc;
    width: 80%;
    margin-bottom: 10px;
  }

  #seal p{
    flex:1;
    width: 100%;
  }
}

h2 {
  font-weight: normal;
  text-align: center;
  margin-bottom: 3vw;
}
@media (min-width: 320px) {
  h2 {
    font-size: calc(1.5rem + ((1vw - 3.2px) * 2.1053));
    min-height: 0vw;
  }
}
@media (min-width: 1080px) {
  h2 {
    font-size: 40px;
  }
}
h2 .bdb {
  border-bottom: solid 1px var(--red-color);
  padding: 0px 10px;
}


.sameh2 {
  font-weight: normal;
  text-align: center;
  margin-bottom: 3vw;
}

/*40-24*/
@media (min-width: 320px) {
  .sameh2 {
    font-size: calc(1.5rem + ((1vw - 3.2px) * 2.1053));
    min-height: 0vw;
  }
}
@media (min-width: 1080px) {
  .sameh2 {
    font-size: 40px;
  }
}
.sameh2 .bdb {
  border-bottom: solid 1px var(--red-color);
  padding: 0px 10px;
}


.sameh2 {
  font-weight: normal;
  text-align: center;
  margin-bottom: 3vw;
}
@media (min-width: 320px) {
  .sameh2 {
    font-size: calc(1.5rem + ((1vw - 3.2px) * 2.1053));
    min-height: 0vw;
  }
}
@media (min-width: 1080px) {
  .sameh2 {
    font-size: 40px;
  }
}
.sameh2 .bdb {
  border-bottom: solid 1px var(--red-color);
  padding: 0px 10px;
}



.boxsize {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.outvew{
  transform: translate(0,80px);
  -webkit-transform: translate(0,80px);
  transition: all 1.5s ease;
  -webkit-transition: all 1.5s ease;
  opacity: 0;
}

.invew{
  opacity: 1;
  transform: translate(0,0px);
  -webkit-transform: translate(0,0px);
}

/* 320 18 - 1080 22*/
h3 {
  font-weight: normal;
/*  border-bottom: solid 1px var(--red-color);*/
}
@media (min-width: 320px) {
  h3 {
    font-size: calc(1.125rem + ((1vw - 3.2px) * 0.5263));
    min-height: 0vw;
  }
}
@media (min-width: 1080px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-weight: normal;
}

a.anc {
    display: block;
    padding-top: 170px;
    margin-top: -170px;
    width: 0px;
    height: 0px;
}


/* Underline From Center */
.a_line {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
}

.a_line:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  bottom: 0;
  background: var(--red-color);
  height: 1px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.a_line:hover:before, .a_line:focus:before, .a_line:active:before {
  left: 0;
  right: 0;
}


/* 30px @ 320px increasing to 80px @ 1000px */
.fontSize_xl {
   font-size: calc(1.875rem + ((1vw - 3.2px) * 7.3529));
   /* Where: * 7.3529 = 100 * font_Size_Difference / viewport_Width_Difference */
}

/* Prevent font scaling beyond this breakpoint */
@media (min-width: 1000px) {
   .fontSize_xl {
      font-size: 80px;
  }
}

/* 20px @ 320px increasing to 48px @ 1000px */
.fontSize_l {
   font-size: calc(1.25rem + ((1vw - 3.2px) * 4.1176));
   /* Where: * 4.1176 = 100 * font_Size_Difference / viewport_Width_Difference */
}

/* Prevent font scaling beyond this breakpoint */
@media (min-width: 1000px) {
   .fontSize_l {
      font-size: 48px;
  }
}

/* 15px @ 320px increasing to 24px @ 1000px */
/*16-36*/
.fontSize_m {
   font-size: calc(1rem + ((1vw - 3.2px) * 2.9412));
   /* Where: * 2.9412 = 100 * font_Size_Difference / viewport_Width_Difference */
}
/* Prevent font scaling beyond this breakpoint */
@media (min-width: 1000px) {
   .fontSize_m {
      font-size: 36px;
  }
}

/* 24px @ 320px increasing to 30px @ 1080px */
@media (min-width: 320px) {
  .fontSize_m2 {
    font-size: calc(1.5rem + ((1vw - 3.2px) * 0.7895));

    min-height: 0vw;
  }
}
@media (min-width: 1080px) {
  .fontSize_m2 {
    font-size: 30px;
  }
}

/* 20px @ 320px increasing to 30px @ 1080px */
@media (min-width: 320px) {
  .fontSize_m3 {
    font-size: calc(1.25rem + ((1vw - 3.2px) * 1.3158));
    min-height: 0vw;
  }
}
@media (min-width: 1080px) {
  .fontSize_m3 {
    font-size: 30px;
  }
}


/* 14px @ 320px increasing to 19px @ 1000px */
.fontSize_s {
   font-size: calc(0.875rem + ((1vw - 3.2px) * 0.7353));
   /* Where: * 0.7353 = 100 * font_Size_Difference / viewport_Width_Difference */
}

/* Prevent font scaling beyond this breakpoint */
@media (min-width: 1000px) {
   .fontSize_s {
      font-size: 19px;
  }
}

/* 12px @ 320px increasing to 16px @ 1000px */
.fontSize_s2 {
   font-size: calc(0.75rem + ((1vw - 3.2px) * 0.5882));
   /* Where: * 0.5882 = 100 * font_Size_Difference / viewport_Width_Difference */
}

/* Prevent font scaling beyond this breakpoint */
@media (min-width: 1000px) {
   .fontSize_s2 {
      font-size: 16px;
  }
}

.fontSize_ss {
   font-size: 12px;
}

.btn_a {
  display: block;
  margin: 1vw auto 3vw;
  border: solid 1px var(--red-color);
  padding: 1vw 3vw;
  background-color: #fff;
  text-align: center;
  color: var(--blue-color);
  width: 100%;
  max-width: 220px;
  -moz-transition-duration:0.5s;
  -webkit-transition-duration:0.5s;
  -o-transition-duration:0.5s;
  -ms-transition-duration:0.5s;
  -moz-transition-timing-function:ease-in-out;
  -webkit-transition-timing-function:ease-in-out;
  -o-transition-timing-function:ease-in-out;
  -ms-transition-timing-function:ease-in-out;
}

.btn_a:hover {
  background-color: var(--red-color);
  color: #fff;
}

/* 16px @ 320px increasing to 20px @ 1080px */
@media (min-width: 320px) {
  .btn_a {
    font-size: calc(1rem + ((1vw - 3.2px) * 0.5263));
    min-height: 0vw;
  }
}
/* Prevent scaling beyond this breakpoint */
@media (min-width: 1080px) {
  .btn_a {
    font-size: 20px;
  }
}

.panWap {
  width: 100vw;
  max-width: 1080px;
  margin: 0px auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 2vw 0vw;
}

.pen {
  background:linear-gradient(transparent 50%, #fff45c 50%);
}

.pcShow {
  display: block!important;
}

.pc_inl_Show {
  display: inline!important;
}

.spnShow {
  display: none!important;
}

.spn_inl_Show {
  display: none!important;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
          ヘッダー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#header {
  width: 100vw;
  position: fixed;
  top: 0px;
  z-index: 100;
  background-color: rgba(255,255,255,0.7);
}

.headLine {
  display: block;
   width: 100vw;
   padding: 10px 1%;
   background-color: var(--blue-color);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.headLine_sp {
  display: none;
}

.headLine a{
   color: #fff;
   display: inline-block;
   margin-right: 1vw;
}

.headLine .headL_txt {
  padding-bottom: 1px;
  border-bottom: solid 1px #fff;
}

.headLine .headL_block {
  border: solid 1px #fff;
  padding: 8px 20px;
}

.sp_mb {
  margin-bottom: 0px;
}

.headWap {
  width: 100vw;
  padding: 10px 2.1%;
 /* background-color: #fff;*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  display: box;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*ヘッダー　ひだり（ロゴ）*/
.head_Left {
 /* background-color: #cfc;*/
  width: 24%;
  max-width: 246px;
}

/*ヘッダー　真ん中（ナビ）*/
.head_Nav {
 /* background-color: #fcc;*/
  width: 41%;
  padding-left: 1.5%;
  display: box;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*ヘッダー　みぎ（開閉ナビ）*/
.head_Right {
  /*background-color: #ffc;*/
  width: 33%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  display: box;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝ヘッダー　ひだりの詳細*/

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝ヘッダー　なかの詳細*/

.head_Nav_a {
  color: #221815;
}

@media (min-width: 760px) {
  .head_Nav_a {
    font-size: calc(0.875rem + ((1vw - 7.6px) * 1.0526));
    min-height: 0vw;
  }
}
@media (min-width: 950px) {
  .head_Nav_a {
    font-size: 16px;
  }
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝ヘッダー　みぎの詳細*/

.head_Tel {
  padding-right: 5px;
}
/*最寄りの赤帽組合に*/

/* 4px @ 767px increasing to 11px @ 1000px */
@media (min-width: 767px) {
  .head_Tel .txt {
    font-size: calc(0.25rem + ((1vw - 7.67px) * 3.0043));
    /* Note: The calc base value (0.25rem) MUST be stated in REM to maintain accessibility */
    /* Where: 3.0043 = 100 * font-size_difference / viewport_width_difference */

    /* Safari resize fix */
    min-height: 0vw;
  }
}
/* Prevent scaling beyond this breakpoint */
@media (min-width: 1000px) {
  .head_Tel .txt {
    font-size: 11px;
  }
}

/* Prevent scaling beyond this breakpoint */
@media (min-width: 1080px) {
  .head_Tel .txt {
    font-size: 11px;
  }
}

/*フリーダイヤル*/
@media (min-width: 760px) {
  .head_Tel .tel {
    font-size: calc(1.5rem + ((1vw - 7.6px) * 6.3158));
    min-height: 0vw;
  }
}
@media (min-width: 950px) {
  .head_Tel .tel {
    font-size: 36px;
  }
}

.head_Tel_Txt_Br {
  display: none;
}
@media handheld, only screen and (max-width: 854px) {
  .head_Tel .txt {
    text-align: center;
  }

  .head_Tel_Txt_Br {
    display: inline;
  }
}

/*メニュートリガー*/
body.side-open{
  overflow: hidden;
}

.side-open .side-menu-btn,
.side-open .side-menu {
  z-index: 10000;
}

.side-open .side-menu-btn > .text:after{
  content: "CLOSE";
}

.side-menu-btn > .text:after{
  content: "MENU";
}

.ellipsis-v{
  position: relative;
  display: block;
  cursor: pointer;
  width: 40px;
  height: 30px;
  margin: 5px auto;
}

.side-open .ellipsis-v{
  width: 30px;
}

.ellipsis-v .point {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  width: 40px;
  height: 2px;
  margin: auto;
  background: #000;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.ellipsis-v .point.top {
  top: 0;
}

.ellipsis-v .point.mid {
  top: 0;
  bottom: 0;
}

.ellipsis-v .point.bot {
  bottom: 0;
}


.side-menu-btn:hover .top {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.side-menu-btn:hover .bot {
  -webkit-transform: translateY(2px);
  -ms-transform: translateY(2px);
  transform: translateY(2px);
}

.side-open .side-menu-btn:hover .top,
.side-open .top {
  width: 42px;
  height: 1px;
  background: #000;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.side-open .mid {
  opacity: 0;
}

.side-open .side-menu-btn:hover .bot,
.side-open .bot {
  width: 42px;
  height: 1px;
  background: #000;
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.side-open .side-menu-btn:hover .bot,
.side-open .side-menu-btn:hover .top {
  background: #595656;
}

/*ナビ開閉部分*/

.sidebarMenu {
  height: 100%;
  padding-top: 172px;
  z-index: 999;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  transform: translateX(100vw);
  transition: transform 370ms ease-in-out;
  background: rgba(255,255,255,0.9);
  overflow-y: scroll;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

.sidebarMenuOpen {
  transform: translateX(0);
}

#gnavi_Wap .txt {
  text-align: center;
}

#gnavi_Wap p {
  text-align: center;
}

#gnavi_Wap .tel {
  text-align: center;
}

@media (min-width: 320px) {
  #gnavi_Wap .tel {
    font-size: calc(1.875rem + ((1vw - 3.2px) * 0.8824));
    min-height: 0vw;
  }
}
@media (min-width: 1000px) {
  #gnavi_Wap .tel {
    font-size: 36px;
  }
}

.g_navi_title {
  text-align: center;
  cursor: pointer;
  border-bottom: solid 1px #ccc;
  padding: 1vw 0px;
}

.g_navi_title:before{
    position: absolute;
    content: '≫';
/*    width: 8vw;
    height: 8vw;
    background: #f00;
    border-radius: 50%;*/
    left: 10vw;
}

#gnavi_Wap .button_on:before{
  transform: rotate(90deg);
}


@media (min-width: 320px) {
  .g_navi_title {
    font-size: calc(1.125rem + ((1vw - 3.2px) * 0.8824));
    min-height: 0vw;
  }
}
@media (min-width: 1000px) {
  .g_navi_title {
    font-size: 24px;
  }
}

.acd_inner {
  text-align: center;
  border-bottom: solid 1px #ccc;
  padding-bottom: 1vw;
}

.acd_inner a{
  color: var(--light-red);
  padding: 1vw 0px;
  /*background-color: blue;*/
  width: 100%;
}

.just_Link a{
  color: var(--light-blue);
  padding: 1vw 0px;
  /*background-color: red;*/
   width: 100%;
}


@media (min-width: 320px) {
  .acd_inner a  {
    font-size: calc(1rem + ((1vw - 3.2px) * 0.5882));
    min-height: 0vw;
  }
}
@media (min-width: 1000px) {
  .acd_inner a  {
    font-size: 20px;
  }
}



.just_Link {
  text-align: center;
}

@media (min-width: 320px) {
  .just_Link a {
    font-size: calc(1rem + ((1vw - 3.2px) * 0.5882));
    min-height: 0vw;
  }
}
@media (min-width: 1000px) {
  .just_Link a {
    font-size: 20px;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
        コンテナー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#container {

}

.inner {
  width: 100vw;
  max-width: 1080px;
  margin: 0px auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0px 2vw;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
          日本地図
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.jp_map_wap {
  width: 100%;
  padding: 1vw 2%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.map_link_wap {
  width: 42%;
  padding: 0px 0vw;
  /*background-color: #ccc;*/
}

.map_image {
  width: 54%;
  padding: 0px 0vw;
}

.area_line {
  margin-bottom: 1vw;
}

.area_line span{
  padding-bottom: 5px;
}

.area_line a {
  color: var(--blue-color);
}

.area_line a:not(:last-child) {
  margin-right: 5px;
}

.hokkaido_block span{
  border-bottom: solid 3px var(--hokkaido);
}
.tohoku_block span{
  border-bottom: solid 3px var(--tohoku);
}
.koushinetu_block span{
  border-bottom: solid 3px var(--koushinetu);
}
.syutoken_block span{
  border-bottom: solid 3px var(--syutoken);
}
.chubu_block span{
  border-bottom: solid 3px var(--chubu);
}
.kinki_block span{
  border-bottom: solid 3px var(--kinki);
}
.chugoku_block span{
  border-bottom: solid 3px var(--chugoku);
}
.shikoku_block span{
  border-bottom: solid 3px var(--shikoku);
}
.kyushu_block span{
  border-bottom: solid 3px var(--kyushu);
}


.map_kojin_wap p,
.map_houjin_wap p {
  width: 100%;
  max-width: 1080px;
  margin: 0px auto 6vw;
  text-align: center;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
          フッター
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#footer {
  border-top: solid 1px var(--blue-color);
  width: 100vw;
  padding-top: 20px;
  color: var(--blue-color);
  text-decoration: none;
  margin-top: 150px;
}

/*フッターナビ*/
.foote_info_line {
  padding: 10px 1%;
  display: box;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: top;
  -ms-flex-align: top;
  align-items: top;
}

.foote_info_line a {
  color: #221815;
}

.fi_info {
  max-width: 244px;
}

.fi_info a img{
  max-width: 244px;
}

.foote_info_line .fi_info .tel {
  color: var(--red-color);
}

/*フリーダイヤル*/
@media (min-width: 760px) {
  .fi_info .tel {
    font-size: calc(2.125rem + ((1vw - 7.6px) * 1.0526));
    min-height: 0vw;
  }
}
@media (min-width: 950px) {
  .fi_info .tel {
    font-size: 36px;
  }
}



/*SNS*/

.snsWap {
  padding-top: 20px;
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.snsWap a {
  display: inline-block;
  background-color: var(--light-red);
    color: #fff;
    font-size: 20px;
    width: 45px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 40px;
    height: 45px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
  -moz-transition-duration:0.5s;
  -webkit-transition-duration:0.5s;
  -o-transition-duration:0.5s;
  -ms-transition-duration:0.5s;
  -moz-transition-timing-function:ease-in-out;
  -webkit-transition-timing-function:ease-in-out;
  -o-transition-timing-function:ease-in-out;
  -ms-transition-timing-function:ease-in-out;
}

.snsWap a+a {
  margin-left: 20px;
}

.snsWap a:hover {
  background-color: var(--light-blue);
}

/*--light-red*/
.foot_Line {
  width: 100vw;
  background-color: var(--blue-color);
  color: #fff;
  padding: 15px 0px;
  display: box;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}


#footer address {
  font-style: normal;
  padding-left: 1%;
}

.foot_line_link {
  padding-right: 1%;
}

.foot_line_link a{
  color: #fff;
}

.foot_line_link a+a {
  margin-left: 20px;
}



/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
          Fixメニュー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.fix_box {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 3;
}

.fix_box_wap {
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.fix_box_inner {
  background-color: rgba(255,255,255,0.9);
  padding: 15px 1vw;
  border: solid 1px var(--blue-color);
  display: box;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.fix_box_blodk a{
  color: var(--blue-color);
  margin-right: 5px;
  padding-right: 5px;
  border-right: solid 1px var(--blue-color);
  display: box;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.fix_box_blodk img {
  margin-right: 3px;
}

.fix_box_inner .last a{
  margin-right: 0px;
  border-right: none;
}

.scrollTop {
  margin-left: 2vw;
  cursor: pointer;
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
          Cookie バナー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.cookie_banner_Wap{
  display: none;
}

.cookie_banner {
  background-color: rgba(255,255,255,0.95);
  width: 100vw;
  padding: 2vw 1vw;
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: 999;
  box-shadow: 0px -10px 15px -15px #777777;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  display: box;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cookie_txt {
  width: 70%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.cookie_btn {
  width: 30%;
    -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  display: box;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  -o-justify-content: space-around;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.i_agree_btn,
.i_disagree_btn {
  cursor: pointer;
}

.i_disagree_btn {
 /* text-decoration: underline;*/
 padding-bottom: 2px;
 border-bottom: solid 1px var(--light-red);
}

.i_agree_btn {
  background-color: var(--light-red);
  color: #fff;
  padding: 10px 20px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}





  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
            サンプルコード　4つならび
  ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


.fourBox_Line {
  background-color: #f3f3f3;
  padding: 6vw 0px 6vw;
  margin-bottom: 3vw;
}


.fourBox_wap {
  display: box;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: top;
  -ms-flex-align: top;
  align-items: top;
}

.fourBox_wap::before{
  content:"";
  display: block;
  width:24%;
  order:1;
}
.fourBox_wap::after{
  content:"";
  display: block;
  width:24%;
}

.fourBox_wap .fourBox {
  width:24%;
  margin-bottom: 2vw;
}

@media handheld, only screen and (max-width: 900px) {
  .fourBox_wap::before{
    width:30%;
  }
  .fourBox_wap::after{
    width:30%;
  }

  .fourBox_wap .fourBox {
    width:30%;
  }

}
@media handheld, only screen and (max-width: 767px) {
  .fourBox_wap::before{
    width:48%;
  }
  .fourBox_wap::after{
    width:48%;
  }

  .fourBox_wap .fourBox {
    width:48%;
  }

}

.fourBox_wap .fourBox .img {
  width: 100%;
  max-width: 202px;
  margin: 1vw auto;
}

.fourBox_wap .fourBox .title {
  text-align: center;
  color: var(--light-red);
}

.fourBox_wap .fourBox .txt {
  max-width: 220px;
  margin: 1vw auto;
  min-height: 90px;
}


.fourBox .btn_a {
  margin: 1vw auto 3vw;
  border: solid 1px var(--light-red);
  padding: 5px 0;
  background-color: #fff;
  color: var(--red-color);
  width: 80%;
  font-size: 16px;
}

.fourBox .btn_a:hover {
  background-color: var(--light-red);
  color: #fff;
}


  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
            サンプルコード　3つならび
  ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.threeBox_Line {
  padding: 6vw 0px 6vw;
  margin-bottom: 3vw;
}

.threeBox_wap {
  display: box;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: top;
  -ms-flex-align: top;
  align-items: top;
}

.threeBox_wap::after {
  content:"";
  display: block;
  width: 30%;
}

.threeBox_wap .threeBox {
  width: 30%;
  max-width: 340px;
}


.threeBox_wap .threeBox .img {
  width: 100%;
  max-width: 340px;
  margin: 1vw auto;
}

.threeBox_wap .threeBox .title {
  text-align: center;
  color: var(--light-red);
}

.threeBox_wap .threeBox .txt {
  /*max-width: 190px;*/
  margin: 1vw auto;
  min-height: 60px;
}


.threeBox .btn_a {
  margin: 1vw auto 3vw;
  border: solid 1px var(--light-red);
  padding: 5px 0;
  background-color: #fff;
  color: var(--red-color);
  width: 80%;
  font-size: 16px;
}

.threeBox .btn_a:hover {
  background-color: var(--light-red);
  color: #fff;
}

  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
           テキストのみ サンプルコード　
  ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.only_txt_line {
  background-color: #f3f3f3;
  padding: 6vw 0px;
  margin-bottom: 6vw;
}


.only_txt p{
  margin-bottom: 2vw;
}

  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
            サンプルコード　左写真
  ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.l_img_r_txt,
.r_img_l_txt {
  padding: 6vw 0px;
}

.l_img_line,
.r_img_line {
  margin-bottom: 3vw;
  display: box;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l_img_line .img,
.r_img_line .img {
  width: 50%;
  padding: 0px 2vw;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.l_img_line .txtWap,
.r_img_line .txtWap{
  width: 50%;
  padding: 0px 2vw;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}


.l_img_line .txtWap h4,
.r_img_line .txtWap h4
 {
  margin-bottom: 3vw;
}


/*リスト*/
.list_Wap {

}

.list_Wap ul{
  list-style-type: none;
}


.list_Wap ul li{
    margin-bottom: 1vw;

}

@media handheld, only screen and (max-width: 767px) {


  .pcShow {
    display: none!important;
  }

  .pc_inl_Show {
    display: none!important;
  }

  .spnShow {
    display: block!important;
  }

  .spn_inl_Show {
    display: inline!important;
  }

  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
            SP ヘッダー
  ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  #header {

  }

  .headLine {
    display: none;
  }
/*
 .headLine {
   width: 100vw;
   padding: 10px 1%;
   background-color: var(--blue-color);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
*/
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
            SP ヘッダー　4文字実験
  ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  .headLine_sp {
   width: 100vw;
   padding: 10px 1%;
   background-color: var(--blue-color);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

.headLine_sp a{
   color: #fff;
   display: inline-block;
   margin-right: 1vw;
}

.headLine_sp a:last-child{
   color: #fff;
   display: inline-block;
   margin-right: 0px;
}


  .headLine_sp .headL_txt {
    /*display: none;*/
/*    display: block;
    width: 45%;
    text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;*/
  }

.headLine .headL_txt {
    padding: 4px 1%;
    display: block;
    width: 45%;
    border: solid 1px #fff;
    text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
  .headLine .headL_block {
    padding: 4px 1%;
    display: block;
    width: 45%;
    border: solid 1px #fff;
    text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  }


.headLine_sp .headL_txt {
    padding: 8px 1%;
    display: block;
    width: 23%;
    border: solid 1px #fff;
    text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
  .headLine_sp .headL_block {
    padding: 8px 1%;
    display: block;
    width: 23%;
    border: solid 1px #fff;
    text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  }

.sp_mb {
  margin-bottom: 2vw;
}

  /*ヘッダー　ひだり（ロゴ）*/
  .head_Left {
   /* background-color: #cfc;*/
    width: 48%;
    max-width: 246px;
  }

  /*ヘッダー　真ん中（ナビ）*/
  .head_Nav {
    display: none;
  }

  /*ヘッダー　みぎ（開閉ナビ）*/
  .head_Right {
    /*background-color: #ffc;*/
    width: 48%;
  /*  display: block;*/
  }


  .head_Tel {
    display: none;
  }

  .menu_trg {
    width: 46px;
    margin: 0 0 0 auto;
  }

  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
           SP コンテナー
  ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  #container {
    /*background-color: #ccc;*/
    padding-top: 160px;
    padding-bottom: 0px; /*フッターの高さと同じ*/
  }

 .inner {
/*  width: 100vw;
  max-width: 1080px;
  margin: 0px auto;*/
 }

  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
           SP 日本地図
  ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  .jp_map_wap {
    width: 100%;
    padding: 1vw 2%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -o-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

.map_link_wap {
  width: 95%;
  padding: 0px 0vw;
  margin: 0px auto;
  order: 2;
  /*background-color: #ccc;*/
}

.map_image {
  width: 95%;
  padding: 0px 0vw;
  margin: 0px auto;
  order: 1;
}

@media (min-width: 320px) {
  .area_line a  {
    font-size: calc(1rem + ((1vw - 3.2px) * 0.8949));
    min-height: 0vw;
  }
}
@media (min-width: 767px) {
  .area_line a  {
    font-size: 20px;
  }
}

.area_line {
  margin-bottom: 4vw;
}

.area_line span{
  padding-bottom: 1vw;
}


.area_line a:not(:last-child) {
  margin-right: 4vw;
}

  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
            SP フッター
  ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
  #footer{
    position:relative;
  }

  .foote_info_line {
    /*display: none;*/
  }

  .fi_nav {
    width: 40vw;
    margin: 1vw 4vw;
    text-align: center;
  }

  .fi_nav a {
    width: 100%;
    display: inline-block;
    text-align: center;
    margin-bottom: 1vw;
  }

  .fi_info {
    margin: 3vw auto 0px;
    text-align: center;
  }

  .fi_info a img{
    width: 244px;
  }

  .fi_info .tel{
    font-size: 34px;
  }

  .foot_Line {
    width: 100vw;
  }

  #footer address {
     width: 100vw;
     text-align: center;
  }

  .foot_line_link {
     width: 100vw;
     text-align: center;
     padding-right: 0px;
  }

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
       SP   Fixメニュー
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.fix_box {
 /* display: none;*/
  position: fixed;
/*  bottom: 0px!important;*/
  left: 50%;
  margin-left: -50vw;
  width: 100vw;
  }

.fix_box_wap {
  padding: 0px 1%;
}

.fix_box_inner {
 /* width: calc(98vw - 21px);*/
}

.fix_box_blodk img {
  margin-right: 3px;
 /* width: 30px;*/
}


@media (max-width: 340px) {
  .fix_box_blodk img {
    width: 30px;
  }
}



  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
          SP  Cookie バナー
  ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

  .cookie_banner {
    background-color: rgba(255,255,255,0.95);
    width: 100vw;
    padding: 2vw 1vw;
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 999;
    box-shadow: 0px -10px 15px -15px #777777;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
  }

  .cookie_txt {
    width: 100%;
    margin-bottom: 2vw;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
  }

  .cookie_btn {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    -o-justify-content: space-around;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  /*
  .i_agree_btn,
  .i_disagree_btn {
    cursor: pointer;
  }

  .i_disagree_btn {
   padding-bottom: 2px;
   border-bottom: solid 1px var(--light-red);
  }

  .i_agree_btn {
    background-color: var(--light-red);
    color: #fff;
    padding: 10px 20px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    border-radius: 10px;
  }
  */


  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
            サンプルコード　4つならび
  ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/


  .fourBox_Line {
    padding: 6vw 0px 6vw;
    margin-bottom: 10vw;
  }

  .fourBox_wap .fourBox {
    margin-bottom: 5vw;
  }

  .fourBox_wap .fourBox .img {
    width: 100%;
    max-width: 101px;
    margin: 1vw auto;
  }

  .fourBox .btn_a {
      padding: 2px 0;
      font-size: 14px;
  }



  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
          SP  サンプルコード　3つならび
  ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

  .threeBox_Line {
    padding: 6vw 0px 6vw;
    margin-bottom: 10vw;
  }

  .threeBox_wap {
    display: box;
    align-items: top;
  }

  .threeBox_wap::after {
    content:"";
    display: block;
    width: 32%;
  }

  .threeBox_wap .threeBox {
    width: 32%;
    max-width: 340px;
  }

  .threeBox_wap .threeBox .img {
    text-align: center;
  }

  .threeBox_wap .threeBox .img img{
    max-width: 170px;
  }

  .threeBox_wap .threeBox .title {
  /*  text-align: center;
    color: var(--light-red);*/
  }

  .threeBox_wap .threeBox .txt {
    min-height: 80px;
    margin-bottom: 2vw;
  }


  .threeBox .btn_a {
      padding: 2px 0;
      font-size: 14px;
  }
  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
          SP テキストのみ サンプルコード　
  ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

  .only_txt_line {
    background-color: #f3f3f3;
    padding: 6vw 0px;
    margin-bottom: 10vw;
  }


  .only_txt p{
    margin-bottom: 2vw;
  }

  /*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
            サンプルコード　左写真
  ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

  .single_pack {
    padding: 10vw 0px;
  }

  .s_pack_line {
    margin-bottom: 3vw;
    display: block;
  }

  .s_pack_line .img {
    width: 80%;
    padding: 0px 2vw;
    margin: 0px auto 1vw;
  }

  .s_pack_line .txtWap {
    width: 100%;
    padding: 0px 2vw;
    margin: 0px auto 1vw;
    text-align: justify;
  }

  .s_pack_line .txtWap h4{
    text-align: center;
  }

  .l_img_r_txt,
  .r_img_l_txt {
    padding: 6vw 0px;
  }


  .l_img_line,
  .r_img_line {
      margin-bottom: 3vw;
      display: block;
  }

  .l_img_line .img,
  .r_img_line .img {
      width: 80%;
      padding: 0px 2vw;
      margin: 0px auto 1vw;
  }

  .l_img_line .txtWap,
  .r_img_line .txtWap{
      width: 100%;
      padding: 0px 2vw;
      margin: 0px auto 1vw;
      text-align: justify;
  }

  .l_img_line .txtWap h4,
  .r_img_line .txtWap h4 {
     text-align: center;
  }

  .r_img_line {
    display: flex;
    flex-wrap: wrap;
  }

  .r_img_line .txtWap {
    order: 2;
  }

   .r_img_line .img  {
    order: 1;
   }

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
          スマホ〆
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
}


/**/
.red {
   color: #e71a1d;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

.alignR {
  text-align: right;
}

.alignC {
  text-align: center;
}


/* lNavi */
.lNavi {
  width: 100vw;
  max-width: 1080px;
  margin: 0px auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 2vw;
}

.lNavi ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: no-wrap;
  list-style-type: none;
  margin: 0;
}

.lNavi ul li {
  position: relative;
  padding-left: 1.2em;
  margin-top: 0.5em;
}

.lNavi ul li:before {
  display: inline-block;
  content: '';
  width: 0.8em;
  height: 0.8em;
  background-image: url(../img/common/lNavi_icon.svg?new);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}

.lNavi ul li:hover:before {
  opacity: 0.7;
}

.lNavi ul li a {
  color: var(--blue-color);
  font-size: 1.6vw;
}

@media handheld, only screen and (min-width: 1280px) {

  .lNavi ul li a {
    font-size: 1.1vw;
  }
}

@media handheld, only screen and (max-width: 800px) {

  .lNavi ul li {
    padding-left: 1em;
  }

  .lNavi ul li:before {
    width: 0.6em;
    height: 0.6em;
  }
}

@media handheld, only screen and (max-width: 600px) {

  .lNavi ul {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 2.5%;
  }

  .lNavi ul li {
    padding-left: 0.85em;
    width: 40vw;
  }

  .lNavi ul li:before {
    width: 0.6em;
    height: 0.6em;
  }

  .lNavi ul li a {
    font-size: 15px;
  }

}

