@charset "UTF-8";
/* -------------------------------------------------------------------------
	Foundation
------------------------------------------------------------------------- */
/* Vendor */
/* Variable */
/*

brakepoints

*/
/*

base color

*/
/* $color_sub : ; */
/*

text color

*/
.color_red {
  color: #E22E00; }

.color.main {
  color: #68A1FF; }

.color.base {
  color: #ffffff; }

/* ================================================
	font color 20250512_移植
================================================== */
.red {
  color: #AC0B27; }

.blue {
  color: #003F97; }

sup {
  font-size: 50%;
  vertical-align: super; }

/*

base font size

*/
.font.bold {
  font-weight: 700; }

.font.color_main {
  color: #68A1FF; }

.font.color_accent {
  color: #A38C40; }

.font.mini {
  font-size: 14px; }

.font.en {
  font-family: "Barlow", sans-serif; }

/* ================================================
	font family 20250512_移植
================================================== */
.minchoTxt {
  /*font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-weight: normal;*/
  font-family: "游明朝 Medium", YuMincho Medium , "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "Hiragino Mincho Pro", "HGS明朝E", "MS PMincho", serif;
  -webkit-transform: rotate(0.028deg);
  -ms-transform: rotate(0.028deg);
  transform: rotate(0.028deg);
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal; }

/* ================================================
	font note 20250512_移植
================================================== */
.noteTxt, .attention {
  font-size: 10px;
  line-height: 1.4; }

ul.noteTxt li {
  font-size: 10px;
  line-height: 1.4;
  padding-left: 1em;
  text-indent: -1em; }

.noteTxtGray {
  font-size: 10px;
  line-height: 1.4;
  color: #666; }

ul.noteTxtGray li {
  font-size: 10px;
  line-height: 1.4;
  color: #666;
  padding-left: 1em;
  text-indent: -1em; }

/* ================================================
	font weight 20250512_移植
================================================== */
.b {
  font-weight: bold; }

.normal {
  font-weight: normal; }

/* $basic_font_size : 13, 81.25%; */
/* $basic_font_size : 14, 87.5%; */
/* $basic_font_size : 15, 93.75%; */
/*

width

*/
/* Function */
/*

フォントサイズをパーセントに変換して返す関数

```sass
.heading_lv1{
	font-size:fs(30);
}
```

指定が2重になる場合は、第2引数に親要素で指定したサイズを入れる

```sass
.heading_lv1{
	font-size:fs(30);
	span{
		font-size:fs(14,30);
	}
}
```

*/
/*

パーセントを返す関数

```sass
.section{
	margin-bottom:per(30px, 960px);
}
```

*/
/* Mixin */
/*

メディアクエリ

ブレークポイント定義
```sass
$breakpoints:(
	tablet: 959px,
	sp: 679px
);
```

● max-widthで指定する
```sass
@include mq(sp) {
	height:40px;
}
```
```output css
@media all and (max-width: 679px) {
	height: 40px;
}
```

● 範囲指定する場合は、引数に2つ入れる
```sass
@include mq(sp tablet) {
	height:40px;
}
```
```output css
@media all and (min-width: 680px) and (max-width: 959px) {
	height: 40px;
}
```

● min-widthで指定する場合は第2引数をtrueにする
```sass
@include mq(tablet, true) {
	height:40px;
}
```
```output css
@media all and (min-width: 960px) {
	height: 40px;
}
```

*/
/*

ブレイクポイントごとのキーワードとマージンの組み合わせを作る

```sass
@include create_margins(
	(
		default:(
			l:50px,
			m:40px,
			s:30px,
			xs:20px
		),
		tablet:(
			l:40px,
			m:30px,
			s:25px
		),
		sp:(
			l:30px,
			m:25px,
			s:20px,
			xs:15px
		)
	)
)
```

それぞれのキーワードに対する上下左右のマージン用クラスを
ブレークポイントの数だけ出力します

```output css
.rmb_l { margin-bottom: 50px !important; }
.rmt_l { margin-top: 50px !important; }
.rmr_l { margin-right: 50px !important; }
.rml_l { margin-left: 50px !important; }
～略～

@media screen and (max-width: 959px) {
  .rmb_l { margin-bottom: 40px !important; }
  .rmt_l { margin-top: 40px !important; }
  .rmr_l { margin-right: 40px !important; }
  .rml_l { margin-left: 40px !important; }
	～略～
}

@media screen and (max-width: 679px) {
  .rmb_l { margin-bottom: 30px !important; }
  .rmt_l { margin-top: 30px !important; }
  .rmr_l { margin-right: 30px !important; }
  .rml_l { margin-left: 30px !important; }
	～略～
}
```

*/
/* Base */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }

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

a {
  text-decoration: none; }

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block; }

div, h1, h2, h3, h4, h5, h6, p, dl, dt, dd, ol, ul, li, form, input, textarea, button, table, tr, th, td, article, aside, footer, header, hgroup, nav, section {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

/*

プロジェクトにおける基本的なスタイル
（ページ全体の背景や、基本的なタイポグラフィ）
※ クラスは使わない

*/
body {
  font-family: -apple-system, blinkMacSystemFont, "Helvetica Neue", "Segoe UI", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "MS PGothic", "Arial", sans-serif; }

img {
  vertical-align: bottom; }
  @media all and (max-width: 1000px) {
    img {
      height: auto; } }

a {
  text-decoration: none;
  word-break: break-all; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 500; }

/*----------------------------------------------------
 elements 20250512_移植
----------------------------------------------------*/
body {
  -webkit-text-size-adjust: none;
  /* フォントサイズ自動調整 */
  position: relative; }

a {
  -webkit-tap-highlight-color: transparent; }

img {
  vertical-align: bottom; }

li {
  list-style: none; }

/* -------------------------------------------------------------------------
	Layout
------------------------------------------------------------------------- */
/*------------------------------------
header 20250512_移植
------------------------------------*/
header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%; }
  header .inner_top {
    background-color: #000;
    padding: 0px 15px 0px 20px; }
    header .inner_top ul {
      font-size: 0;
      float: right; }
    header .inner_top .seo {
      padding: 12px 0;
      color: #ddd;
      font-size: 14px;
      display: inline-block; }
    header .inner_top p {
      color: #ddd;
      font-size: 14px;
      display: inline-block; }
    header .inner_top ul li {
      color: #ddd;
      font-size: 14px;
      display: inline-block;
      margin-right: 0; }
      header .inner_top ul li a {
        color: #ddd;
        font-size: 14px;
        display: inline-block; }
      header .inner_top ul li:nth-last-child(2) {
        margin-right: 0;
        margin-left: 30px; }
      header .inner_top ul li:last-child {
        margin-right: 0px;
        margin-left: 30px; }
      header .inner_top ul li img {
        width: 16px;
        height: auto;
        margin-left: 4px; }
      header .inner_top ul li.ic_line {
        margin-right: 20px;
        display: none; }
        header .inner_top ul li.ic_line img {
          width: 26px;
          height: auto;
          margin-left: 4px;
          vertical-align: -7px; }
      header .inner_top ul li a.request-tag {
        width: 6.5em;
        text-align: center;
        padding: 12px 10px;
        background: #B91316; }
      header .inner_top ul li a.contact-tag {
        padding: 12px 0px 12px 30px; }
  header .inner_bottom {
    background-color: rgba(0, 0, 0, 0.3); }
  header .header_logo {
    width: 145px;
    height: auto;
    margin-left: 20px;
    margin-right: auto; }
    header .header_logo img {
      width: 100%;
      display: block; }
  header .inner_bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    header .inner_bottom ul li {
      color: #fff;
      font-size: 14px;
      display: inline-block;
      vertical-align: middle;
      height: 100%; }
      header .inner_bottom ul li a {
        color: #fff;
        font-size: 14px;
        display: inline-block;
        vertical-align: middle;
        padding: 22px 14px;
        position: relative;
        line-height: 1.2; }
      header .inner_bottom ul li:first-child a::after, header .inner_bottom ul li:nth-child(2) a::after, header .inner_bottom ul li:nth-child(3) a::after, header .inner_bottom ul li:nth-child(4) a::after, header .inner_bottom ul li:nth-child(5) a::after, header .inner_bottom ul li:nth-child(7) a::after {
        position: absolute;
        bottom: 4px;
        left: 0;
        content: '';
        width: 100%;
        height: 2px;
        background: #fff;
        -webkit-transform: scale(0, 1);
        -ms-transform: scale(0, 1);
        transform: scale(0, 1);
        -webkit-transform-origin: center top;
        -ms-transform-origin: center top;
        transform-origin: center top;
        -webkit-transition: -webkit-transform .3s;
        transition: -webkit-transform .3s;
        -o-transition: transform .3s;
        transition: transform .3s;
        transition: transform .3s, -webkit-transform .3s; }
      header .inner_bottom ul li:nth-child(6) {
        display: none !important; }
      header .inner_bottom ul li a:hover::after {
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        transform: scale(1, 1); }
    header .inner_bottom ul .login {
      margin-right: 0;
      background: url(../img/login_bg.jpg) no-repeat;
      background-size: cover;
      position: relative;
      overflow: hidden;
      margin-left: 14px; }
      header .inner_bottom ul .login a {
        color: #000;
        display: inline-block;
        vertical-align: middle;
        padding: 31px 15px 31px 44px;
        position: relative; }
        header .inner_bottom ul .login a img {
          position: absolute;
          top: 28px;
          left: 26px;
          width: 14px;
          height: auto; }
      header .inner_bottom ul .login::before {
        position: absolute;
        top: 0;
        left: -75%;
        z-index: 2;
        display: block;
        content: '';
        width: 50%;
        height: 100%;
        background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
        background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
        background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
        background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
        -webkit-transform: skewX(-25deg);
        -ms-transform: skewX(-25deg);
        transform: skewX(-25deg); }
      header .inner_bottom ul .login:hover::before {
        -webkit-animation: shine 2.75s;
        animation: shine 2.75s; }

@-webkit-keyframes shine {
  100% {
    left: 125%; } }

@keyframes shine {
  100% {
    left: 125%; } }

@media screen and (max-width: 1210px) {
  header .header_logo {
    width: 120px; }
  header .inner_top .seo {
    font-size: 12px; }
  header .inner_top ul li a {
    font-size: 12px; }
  header .inner_bottom ul li a {
    font-size: 12px;
    padding: 22px 8px; } }

@media screen and (max-width: 1100px) {
  header .header_logo {
    width: 100px; }
  header .inner_top .seo {
    font-size: 11px; }
  header .inner_top ul li a {
    font-size: 11px; }
  header .inner_bottom ul li a {
    font-size: 11px;
    padding: 22px 8px; } }

@media all and (max-width: 968px) {
  header .header_logo {
    width: 80px; }
  header .inner_top .seo {
    font-size: 10px; }
  header .inner_top ul li a {
    font-size: 10px; }
  header .inner_bottom ul li {
    font-size: 12px; }
    header .inner_bottom ul li a {
      font-size: 10px;
      padding: 22px 4px; }
    header .inner_bottom ul li:first-child a::after, header .inner_bottom ul li:nth-child(2) a::after, header .inner_bottom ul li:nth-child(3) a::after {
      position: static;
      content: none;
      width: 0;
      height: 0;
      background: #fff;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none; }
    header .inner_bottom ul li a:hover::after {
      -webkit-transform: none;
      -ms-transform: none;
      transform: none; }
  header .inner_bottom ul .login {
    margin-left: 8px; }
    header .inner_bottom ul .login a {
      padding: 22px 7px 22px 30px; }
      header .inner_bottom ul .login a img {
        top: 18px;
        left: 11px; } }

@media all and (max-width: 767px) {
  header {
    width: 100%;
    height: 60px;
    background-color: #000 !important; }
    header h1, header .header_logo {
      margin-left: 3%;
      width: 125px;
      padding-top: 18px; }
  #spMenuArea {
    position: fixed;
    top: 0;
    right: 0;
    width: 45%;
    height: 60px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 50; }
    #spMenuArea li {
      float: right;
      width: 60px;
      height: 60px;
      padding-top: 10px;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      position: relative;
      text-align: center; }
    #spMenuArea #login {
      width: 70px;
      background: url(../img/login_bg.jpg) no-repeat;
      background-size: cover;
      padding-top: 8px; }
      #spMenuArea #login img {
        width: 15px;
        display: block;
        margin: 0 auto 3px; }
      #spMenuArea #login a {
        font-size: 10px;
        color: #000;
        display: block;
        line-height: 1.2; }
  #spMenu {
    display: inline-block;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    z-index: 200;
    text-align: center;
    background: #329448;
    display: inline-block;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    box-sizing: border-box; }
    #spMenu p {
      font-size: 11px;
      color: #001961;
      position: absolute;
      bottom: 8px;
      left: 50%;
      -ms-transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      margin: 0 auto;
      width: 100%;
      color: #fff;
      text-align: center; }
    #spMenu .bar {
      width: 30px;
      height: 22px;
      display: block;
      margin: 0 auto 4px;
      position: relative; }
      #spMenu .bar span {
        display: inline-block;
        -webkit-transition: all .4s;
        -o-transition: all .4s;
        transition: all .4s;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #fff;
        border-radius: 2px; }
        #spMenu .bar span:nth-of-type(1) {
          top: 0; }
        #spMenu .bar span:nth-of-type(2) {
          top: 10; }
        #spMenu .bar span:nth-of-type(3) {
          bottom: 0; }
        #spMenu .bar span:nth-of-type(2) {
          top: 50%;
          left: 50%;
          -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0); }
    #spMenu.active .bar span:nth-of-type(1) {
      -webkit-transform: translateY(10px) rotate(-315deg) scale(0.8);
      -ms-transform: translateY(10px) rotate(-315deg) scale(0.8);
      transform: translateY(10px) rotate(-315deg) scale(0.8); }
    #spMenu.active .bar span:nth-of-type(2) {
      width: 30px;
      height: 30px;
      background-color: transparent;
      border: 1.5px solid #fff;
      border-radius: 50%; }
    #spMenu.active .bar span:nth-of-type(3) {
      -webkit-transform: translateY(-10px) rotate(315deg) scale(0.8);
      -ms-transform: translateY(-10px) rotate(315deg) scale(0.8);
      transform: translateY(-10px) rotate(315deg) scale(0.8); }
  .navArea {
    display: none;
    margin-top: 16px;
    padding-bottom: 60px;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    color: #fff;
    font-size: 13px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    height: calc(100% - 60px);
    overflow-y: scroll !important; }
    .navArea a {
      color: #fff;
      padding: 15px 0;
      display: block; }
    .navArea li {
      width: 100%;
      padding: 0 5%;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      border-bottom: 1px dotted #999; }
      .navArea li a[href*="business_support/"] {
        display: none; }
      .navArea li a[href*="doctor_club/"] {
        display: none !important; }
      .navArea li:nth-child(10) {
        display: none !important; }
      .navArea li:nth-child(14) ul li:nth-child(2) {
        display: none !important; }
      .navArea li:last-child {
        border-bottom: none; }
    .navArea .openBtn {
      color: #fff;
      padding: 15px 5%;
      display: block;
      position: relative; }
      .navArea .openBtn::before {
        position: absolute;
        content: "";
        top: 15px;
        right: 5%;
        width: 6px;
        height: 6px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        transform: rotate(135deg); }
      .navArea .openBtn.active::before {
        top: auto;
        bottom: 16px;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg); }
    .navArea .open {
      display: none;
      background-color: rgba(0, 0, 0, 0.8);
      width: 100%;
      color: #fff;
      font-size: 13px;
      padding: 0; }
      .navArea .open.special ul li {
        width: 50%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        float: left;
        border-bottom: none;
        position: relative;
        border-right: 1px dotted #555; }
    .navArea li img {
      width: 13px;
      height: 13px;
      margin-left: 5px; } }

/*------------------------------------
footer
------------------------------------*/
/*販売実績非表示*/
footer .ftr_Nav ul:nth-child(2) li:first-child, footer .ftr_Nav ul:nth-child(2) li:nth-child(13), footer .ftr_Nav ul:nth-child(2) li:nth-child(9) {
  display: none !important; }

footer .ftr_inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap; }

footer .company_Area {
  width: 25%;
  background-color: #333;
  padding: 50px 0 50px;
  text-align: center;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  footer .company_Area .ftr_Logo {
    width: 75%;
    margin: 0 auto 14px;
    text-align: left;
    max-width: 300px; }
    footer .company_Area .ftr_Logo img {
      max-width: 217px;
      margin: 0 auto; }
  footer .company_Area div > p {
    color: #fff;
    font-size: 14px;
    width: 75%;
    max-width: 300px;
    margin: 0 auto; }
  footer .company_Area .ftr_Tel {
    width: 75%;
    max-width: 299px;
    margin: 25px auto 18px;
    display: none; }
  footer .company_Area .tab_Cbox {
    margin-top: 50px;
    width: 100%;
    text-align: center; }
  footer .company_Area .tab_Rbox {
    margin-top: 30px;
    margin-bottom: 50px; }
  footer .company_Area .ftr_Tel p {
    color: #fff;
    font-size: 16px;
    width: 100%;
    line-height: 1.3; }
    footer .company_Area .ftr_Tel p:nth-child(2) {
      font-size: 0;
      margin-bottom: 15px; }
    footer .company_Area .ftr_Tel p:nth-child(3) {
      margin-bottom: 5px;
      font-size: 13px;
      padding-top: 10px;
      border-top: 1px solid #9f9f9f; }
    footer .company_Area .ftr_Tel p:nth-child(4) {
      border-bottom: 1px solid #9f9f9f; }
    footer .company_Area .ftr_Tel p:nth-child(2):after {
      font-size: 16px;
      content: "お電話受付時間 10:00〜18:00(平日)"; }
    footer .company_Area .ftr_Tel p img {
      margin: 0 auto 12px; }

.special .lastBox ul li:nth-child(1) {
  position: relative;
  overflow: hidden; }

footer .company_Area .request_Btn {
  width: 85%;
  max-width: 300px;
  margin: 0 auto 10px;
  position: relative;
  overflow: hidden; }

footer .company_Area .contact_Btn {
  width: 85%;
  max-width: 300px;
  margin: 0 auto;
  position: relative;
  overflow: hidden; }

.special .lastBox ul li:nth-child(1)::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  -webkit-animation: shine 3s infinite;
  animation: shine 3s infinite; }

footer .company_Area .request_Btn::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  -webkit-animation: shine 3s infinite;
  animation: shine 3s infinite; }

footer .company_Area .contact_Btn::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg); }

footer .company_Area .contact_Btn:hover::before {
  -webkit-animation: shine 3s;
  animation: shine 3s; }

footer .company_Area .ftr_Logo img, footer .company_Area .ftr_Tel p img, footer .company_Area .request_Btn img, footer .company_Area .contact_Btn img {
  display: block;
  width: 100%; }

footer .ftr_Nav {
  width: 75%;
  background-color: #e8e8e8;
  /*float: right;*/
  /*height: 530px !important;*/
  color: #555;
  font-size: 0;
  padding: 0 1%;
  text-align: center; }
  footer .ftr_Nav ul {
    padding: 35px 0 50px;
    width: 32%;
    margin-right: 1%;
    font-size: 15px;
    display: inline-block;
    text-align: left;
    vertical-align: top; }
    footer .ftr_Nav ul li small {
      font-size: 14px;
      letter-spacing: -2px; }
    footer .ftr_Nav ul li a[href*="business_support/"] {
      display: none; }
    footer .ftr_Nav ul:first-child {
      width: 27%; }
    footer .ftr_Nav ul:nth-child(2) {
      width: 34%; }
    footer .ftr_Nav ul:last-child {
      margin-right: 0; }
    footer .ftr_Nav ul li {
      line-height: 2.2;
      color: #777;
      font-weight: bold; }
      footer .ftr_Nav ul li a {
        color: #555;
        text-decoration: none;
        font-weight: normal; }
    footer .ftr_Nav ul .indent {
      text-indent: 1em; }
    footer .ftr_Nav ul .here {
      text-decoration: underline;
      position: relative; }
      footer .ftr_Nav ul .here::before {
        position: absolute;
        top: 0;
        left: -6px;
        bottom: 0;
        margin: auto;
        content: "";
        width: 0;
        height: 0;
        border-left: 6px solid #555;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent; }
    footer .ftr_Nav ul li a:hover {
      -webkit-transition: .3s;
      -o-transition: .3s;
      transition: .3s;
      text-decoration: underline; }

footer #group {
  background-color: #5f5f5f;
  width: 100%;
  padding: 40px 2% 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  font-size: 15px; }
  footer #group .group_L {
    float: left;
    width: 69%; }
  footer #group .group_Txt {
    width: 145px;
    margin-bottom: 18px; }
    footer #group .group_Txt img {
      width: 100%; }
  footer #group .group_L > p {
    line-height: 1.4; }
  footer #group .group_R {
    float: right;
    width: 30%;
    max-width: 300px; }
    footer #group .group_R img {
      display: block;
      width: 100%; }
  footer #group ul {
    width: 100%;
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    footer #group ul li {
      float: left;
      padding-top: 1%;
      padding-left: 1%;
      padding-right: 1%;
      padding-bottom: 1%;
      border-right: 1px dotted #fff;
      border-bottom: 1px dotted #fff;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
      footer #group ul li:first-child {
        width: 27%; }
      footer #group ul li:nth-child(2) {
        width: 25%; }
      footer #group ul li:nth-child(3) {
        width: 23%; }
      footer #group ul li:nth-child(4) {
        width: 25%;
        border-right: none; }
      footer #group ul li:nth-child(5) {
        width: 27%;
        border-bottom: none; }
      footer #group ul li:nth-child(6) {
        width: 25%;
        border-bottom: none; }
      footer #group ul li:last-child {
        width: 23%;
        padding-right: 0;
        border-bottom: none;
        margin-right: 0; }
      footer #group ul li a {
        color: #fff; }
      footer #group ul li dt {
        margin-bottom: 5px;
        line-height: 1.2; }
        footer #group ul li dt img {
          width: 16px;
          height: 16px;
          margin-left: 5px; }
      footer #group ul li dd {
        font-size: 12px;
        line-height: 1.7; }
        footer #group ul li dd a {
          text-decoration: underline; }

footer .copyright {
  width: 100%;
  color: #fff;
  font-size: 12px;
  background-color: #000;
  padding: 8px 0;
  text-align: center;
  display: block; }

footer .guide_sp {
  display: none; }

@keyframes shine {
  0% {
    left: -75%; }
  40% {
    left: 150%; }
  100% {
    left: 150%; } }

@media screen and (min-width: 969px) and (max-width: 1100px) {
  footer .ftr_Nav ul {
    font-size: 14px; } }

@media all and (max-width: 968px) {
  footer .company_Area {
    width: 100%;
    float: none;
    padding: 30px 0 30px;
    text-align: center;
    text-align: left;
    height: auto;
    font-size: 0; }
    footer .company_Area .tab_Cbox {
      width: 100%;
      text-align: center;
      margin-bottom: 20px;
      margin-top: 20px; }
    footer .company_Area .ftr_Logo {
      width: 30%;
      vertical-align: middle;
      margin: 0 auto; }
    footer .company_Area .tab_Cbox p {
      display: inline-block;
      vertical-align: middle;
      max-width: initial;
      width: auto;
      margin-left: 30px; }
    footer .company_Area .tab_Rbox {
      margin-bottom: 20px; }
    footer .company_Area > p {
      width: 70%;
      display: inline-block; }
  footer .ftr_inner {
    display: block; }
  footer .company_Area .ftr_Tel {
    display: none;
    width: 50%;
    max-width: initial;
    vertical-align: middle;
    margin: 0 auto; }
  footer .tab_Rbox {
    width: 50%;
    display: inline-block;
    max-width: initial;
    vertical-align: middle;
    margin: 0 auto; }
  footer .ftr_Nav {
    width: 100%;
    float: none;
    height: auto;
    padding: 0 3%; }
    footer .ftr_Nav ul {
      padding: 30px 0 30px;
      width: 30%;
      margin-right: 2%;
      font-size: 15px;
      display: inline-block;
      text-align: left;
      vertical-align: top; }
  footer #group {
    padding: 15px 3%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 13px;
    background: url(../img/bg_main.png);
    border-top: 1px #2a2a2a solid;
    color: #000; }
    footer #group .group_L {
      float: none;
      width: 100%; }
    footer #group .group_R {
      display: none; }
    footer #group .group_Txt.pcOnly {
      display: none; }
    footer #group .group_Txt.spOnly {
      display: inline-block !important;
      vertical-align: middle;
      font-size: 16px;
      font-weight: bold;
      width: 100%;
      margin-bottom: 10px; }
      footer #group .group_Txt.spOnly img {
        width: 31px;
        height: 23px;
        vertical-align: middle;
        margin-right: 10px; }
    footer #group > p {
      font-size: 14px;
      line-height: 20px; }
    footer #group ul {
      margin-top: 10px;
      display: block !important;
      border: 1px solid #999;
      background-color: #fff; }
      footer #group ul li {
        float: none;
        width: 100% !important;
        padding: 0;
        border-right: none;
        margin-right: 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border-bottom: 1px solid #999; }
        footer #group ul li:nth-child(5), footer #group ul li:nth-child(6) {
          border-bottom: 1px solid #999; }
        footer #group ul li a {
          font-size: 14px;
          font-weight: bold;
          color: #333; }
        footer #group ul li dl {
          padding-bottom: 14px; }
        footer #group ul li dt {
          margin-bottom: 0;
          padding: 14px 40px 0 20px;
          position: relative; }
        footer #group ul li dl dt::before {
          position: absolute;
          content: "";
          top: 15px;
          right: 20px;
          width: 8px;
          height: 8px;
          border-top: 2px solid #ccc;
          border-right: 2px solid #ccc;
          -webkit-transform: rotate(135deg);
          -ms-transform: rotate(135deg);
          transform: rotate(135deg); }
        footer #group ul li dl.active dt::before {
          top: 16px;
          bottom: auto;
          -webkit-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
          transform: rotate(-45deg); }
        footer #group ul li dl dt a {
          position: relative;
          padding-right: 20px; }
          footer #group ul li dl dt a::after {
            position: absolute;
            content: "";
            top: 0;
            bottom: 0;
            right: 0;
            margin: auto;
            width: 12px;
            height: 11px;
            background: url(../img/target_blank_group.png) no-repeat;
            background-size: 12px 11px; }
        footer #group ul li dt img {
          width: 0;
          height: 0;
          display: none; }
        footer #group ul li dd {
          font-size: 12px;
          line-height: 1.2;
          display: none;
          padding: 10px 20px 5px 20px; }
          footer #group ul li dd:nth-of-type(2) {
            border-top: 1px dotted #9f9f9f;
            padding-top: 10px; }
        footer #group ul li .pre {
          padding: 0 0 10px;
          margin: 0 20px; }
        footer #group ul li dd.pre02 {
          border-top: none; }
        footer #group ul li .pre a {
          font-size: 11px;
          text-decoration: none;
          position: relative;
          padding: 0 20px;
          font-weight: normal; }
          footer #group ul li .pre a::before {
            position: absolute;
            top: 0;
            bottom: 0;
            margin: auto;
            content: "";
            vertical-align: middle;
            left: 5px;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            width: 4px;
            height: 4px;
            border: 4px solid transparent;
            border-left: 4px solid #000; }
          footer #group ul li .pre a::after {
            position: absolute;
            content: "";
            top: 0;
            bottom: 0;
            right: 0;
            margin: auto;
            width: 12px;
            height: 11px;
            background: url(../img/target_blank_group.png) no-repeat;
            background-size: 12px 11px; }
        footer #group ul li dd:last-of-type {
          padding-bottom: 0; }
        footer #group ul li:last-child {
          border-bottom: none; }
      footer #group ul .open {
        display: none;
        background-color: rgba(0, 0, 0, 0.8);
        width: 100%;
        color: #fff;
        font-size: 13px;
        padding: 0; }
  .navArea .open {
    display: none;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    color: #fff;
    font-size: 13px;
    padding: 0; }
  footer #group ul .open ul li {
    width: 33.33%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    border-bottom: none;
    position: relative;
    border-right: 1px dotted #555; }
  footer .guide_sp {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #000;
    border-bottom: 1px solid #555;
    padding: 10px 0; }
    footer .guide_sp a {
      color: #fff;
      font-size: 12px; } }

@media all and (max-width: 767px) {
  footer .ftr_inner_sp {
    width: 100%;
    text-align: center;
    padding-top: 10px; }
    footer .ftr_inner_sp ul {
      font-size: 0;
      margin-top: 20px; }
    footer .ftr_inner_sp .ftr_Logo {
      width: 50%;
      margin: 15px auto; }
    footer .ftr_inner_sp .ftr_Tel {
      width: 70%;
      margin: 0 auto 15px;
      display: none;
      font-size: 13px; }
      footer .ftr_inner_sp .ftr_Tel p:nth-child(2) {
        font-size: 0; }
        footer .ftr_inner_sp .ftr_Tel p:nth-child(2):after {
          font-size: 14px;
          content: "お電話受付時間 10:00〜18:00(平日)"; }
      footer .ftr_inner_sp .ftr_Tel p:nth-child(3) {
        border-top: 1px solid #6a6a6a;
        padding-top: 10px;
        font-size: 14px;
        margin-top: 10px; }
      footer .ftr_inner_sp .ftr_Tel p:nth-child(4) a {
        padding: 5px 0 10px; }
      footer .ftr_inner_sp .ftr_Tel a {
        padding: 10px 0;
        display: block; }
      footer .ftr_inner_sp .ftr_Tel p {
        line-height: 1.3; }
    footer .ftr_inner_sp > p {
      font-size: 13px; }
    footer .ftr_inner_sp ul li {
      font-size: 13px;
      display: inline-block;
      vertical-align: middle;
      width: 50%;
      text-align: center;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      border-top: 1px solid #ccc;
      border-right: 1px solid #ccc;
      line-height: 1.2; }
      footer .ftr_inner_sp ul li a {
        display: block;
        padding: 10px 0; }
      footer .ftr_inner_sp ul li:nth-child(2n) {
        border-right: none; }
      footer .ftr_inner_sp ul li a {
        color: #333; }
      footer .ftr_inner_sp ul li img {
        width: 13px;
        height: 13px;
        margin-left: 5px; }
  footer .copyright {
    padding-bottom: 68px; }
  #fix_Nav {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 50;
    width: 100%;
    height: 60px;
    background-color: #329448; }
    #fix_Nav ul {
      font-size: 0; }
      #fix_Nav ul li {
        width: 50%;
        display: inline-block;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border-right: 1px solid #70b47f;
        text-align: center;
        font-size: 12px;
        color: #fff;
        height: 60px;
        vertical-align: top; }
        #fix_Nav ul li a {
          font-size: 10px;
          color: #fff;
          display: block;
          padding-top: 13px;
          height: 100%;
          -webkit-box-sizing: border-box;
          box-sizing: border-box; }
        #fix_Nav ul li:nth-child(3), #fix_Nav ul li:nth-child(4), #fix_Nav ul li:nth-child(5) {
          display: none; }
        #fix_Nav ul li:last-child {
          border-right: none; }
        #fix_Nav ul li:first-child {
          background: #9a0c0c; }
        #fix_Nav ul li img {
          display: block;
          width: auto;
          height: 20px;
          margin: 0 auto 5px; } }

/* ================================================
	20250512_移植
================================================== */
#pageTop {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 15px;
  right: 20px;
  z-index: 1; }
  #pageTop a {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    display: block;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.6); }
    #pageTop a::after {
      content: "";
      position: absolute;
      width: 9px;
      height: 9px;
      top: 20px;
      left: 20px;
      border-left: solid 1px #fff;
      border-top: solid 1px #fff;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); }

@media all and (max-width: 767px) {
  #pageTop {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 70px;
    right: 10px; } }

/* -------------------------------------------------------------------------
	Object
------------------------------------------------------------------------- */
