@charset "UTF-8";
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  outline: none;
}

/*==========================================================*/
/*	responsive
-----------------------------------------------------------*/
/*  animation
---------------------------------------------------------------*/
.move {
  transform-origin: center top;
  transition: all 0.8s;
  opacity: 0;
  transform: translate(0, 30px) scale(1);
}
.move.moving {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/*	css
-----------------------------------------------------------*/
/*==========================================================*/
html {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
select,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

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

fieldset,
img {
  border: 0;
}

address,
button,
caption,
cite,
code,
dfn,
em,
input,
optgroup,
option,
select,
strong,
textarea,
th,
var {
  font: inherit;
}

del,
ins {
  text-decoration: none;
}

li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: baseline;
}

sub {
  vertical-align: baseline;
}

strong {
  font-weight: bold;
}

.bold {
  font-weight: bold;
}

.cf:before,
.cf:after {
  content: "";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  zoom: 1;
}

body,
html {
  width: 100%;
  height: 100%;
  font-family: noto-sans-cjk-jp, "源ノ角ゴシック Regular", 源ノ角ゴシック, 游ゴシック体, "Yu Gothic", YuGothic, "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.subtext *,
canvas,
.is_dragging *,
.js-draw-text,
.subtitles,
.subtitles span,
.to-scroll,
.menu-li .in,
.menu-li a,
.single-sub-title span,
.work-sub-title span,
.link,
.view-more a,
.work-title a,
.unselectable {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
}

[class^=icon-],
[class*=" icon-"] {
  font-family: "icon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.i-fb:before {
  content: "f";
}

.i-tw:before {
  content: "t";
}

.i-inst:before {
  content: "i";
}

.i {
  font-family: "i";
}

.is_waiting body {
  overflow: hidden !important;
}

body,
a {
  color: #333;
}

article {
  display: block;
}

video,
img,
canvas {
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

.table {
  display: table;
  width: 100%;
  height: 100%;
}

/*	input
-----------------------------------------------------------*/
input[type=text],
input[type=email] {
  width: 450px;
  height: 50px;
  border: 1px solid #999999;
  font-size: 15px;
  color: #000;
  padding: 0px 10px;
  -webkit-appearance: none;
  outline: 0;
  border-radius: 0px;
  box-sizing: border-box;
}
@media only screen and (max-width: 380px) {
  input[type=text],
  input[type=email] {
    width: 100%;
    height: 42px;
    border: 1px solid #999999;
    font-size: 14px;
    color: #000;
    padding: 0px 10px;
    -webkit-appearance: none;
    outline: 0;
    border-radius: 0px;
    box-sizing: border-box;
  }
}

/* ===== select ===== */
label.select_cover {
  position: relative;
  display: inline-block;
  width: 100%;
}
@media only screen and (max-width: 380px) {
  label.select_cover {
    width: 100%;
  }
}
label.select_cover:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 17px;
  right: 5px;
  display: inline-block;
  margin-right: 10px;
  border: 5px solid transparent;
  border-color: black black transparent transparent;
  width: 0;
  height: 0;
  pointer-events: none;
  transform: rotate(135deg);
}
@media only screen and (max-width: 380px) {
  label.select_cover:before {
    top: 12px;
  }
}

textarea {
  width: 300px;
  height: 10rem;
  border: 1px solid #999999;
  font-size: 15px;
  color: #000;
  padding: 15px 10px;
}
@media only screen and (max-width: 380px) {
  textarea {
    width: 100%;
    height: 200px;
    border: 1px solid #999999;
    font-size: 14px;
    color: #000;
    padding: 10px 10px;
    box-sizing: border-box;
    border-radius: 1px;
    -webkit-appearance: none;
    line-height: 1.4;
  }
}

select {
  position: relative;
  z-index: 1;
  border: 1px solid #999999;
  box-sizing: border-box;
  color: #000;
  width: 450px;
  height: 50px;
  padding: 0 10px;
  font-size: 15px;
  border-radius: 1px;
  background-color: white;
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
@media only screen and (max-width: 380px) {
  select {
    width: 100%;
    height: 42px;
    padding: 0 10px;
    font-size: 14px;
  }
}

select::-ms-expand {
  display: none;
}

.telllink {
  text-decoration: underline;
}
.telllink:hover {
  text-decoration: none;
}

/*  img
---------------------------------------------------------------*/
img {
  border: none;
}

/*  cf
---------------------------------------------------------------*/
/* .〇〇:after {
    content: '';
    display: table;
    clear: both;
} */
/*  align
---------------------------------------------------------------*/
.center {
  text-align: center !important;
}

.left {
  text-align: left !important;
}

.right {
  text-align: right !important;
}

/*  ul
---------------------------------------------------------------*/
li {
  list-style-type: none;
}

/*  font
---------------------------------------------------------------*/
:root {
  --max-size: 1.66rem;
  --base-size: 1.4rem;
  --slide-tb: 120vw;
  --slide-mb: 150vw;
  --land-mb: 80vw;
}

.font {
  font-size: calc(var(--base-size) * 1.9);
}

.green {
  color: #301209;
}

.red {
  color: #ff0000;
}

.orange {
  color: #fe5d00;
}

/*==========================================================*/
/*==========================================================*/
/*==========================================================*/
#wrap {
  position: relative;
  z-index: 91;
}

.inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.inner1100 {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.inner1200 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.inner1400 {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.innerDX1000 {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 6.25% 0px;
  box-sizing: content-box;
}

.innerDX1100 {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 6.25% 0px;
  box-sizing: content-box;
}

.innerDX1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6.25% 0px;
  box-sizing: content-box;
}

.innerDX1400 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6.25% 0px;
  box-sizing: content-box;
}

.innerDX1600 {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 6.25% 0px;
  box-sizing: content-box;
}

.innerDX {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 6.25% 0px;
  box-sizing: content-box;
}

@media only screen and (max-width: 768px) {
  .inner,
  .inner1100,
  .inner1200,
  .inner1400 {
    width: 100%;
    margin: 0 auto;
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
  .spOnly {
    width: 100%;
    margin: 0 auto;
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
}
.default {
  padding: 12rem 0;
}
@media only screen and (max-width: 768px) {
  .default {
    padding: 6rem 0;
  }
}

.contact_default {
  padding: 80px 0 140px;
}
@media only screen and (max-width: 768px) {
  .contact_default {
    padding: 40px 0 60px;
  }
}

@media only screen and (max-width: 768px) {
  .sec {
    margin-top: 0px;
  }
}

.js-mouse {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  transition: 0.1s;
}
@media only screen and (max-width: 768px) {
  .js-mouse {
    display: none;
  }
}

.cursor-follower {
  position: absolute;
  background-color: rgba(8, 191, 0, 0.1);
  width: 20px;
  height: 20px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.1s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 10000;
  transform: translate(5px, 5px);
}
.cursor-follower.active {
  opacity: 0.7;
  transform: scale(2);
}
@media only screen and (max-width: 768px) {
  .cursor-follower {
    display: none;
  }
}

/*=========================================================*/
/*	SEC*/
/*=========================================================*/
.sec h3.normal {
  max-width: 100%;
  margin: 4rem auto 3rem;
  position: relative;
  overflow: hidden;
  padding-bottom: 5px;
  border: 0;
  padding: 1.2rem 0;
  font-size: 2rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .sec h3.normal {
    font-size: 1.8rem;
  }
}
.sec h3.normal:before, .sec h3.normal:after {
  content: "";
  position: absolute;
  bottom: 0;
}
.sec h3.normal:before {
  border-bottom: 3px solid #301209;
  width: 100%;
}
.sec h3.normal:after {
  border-bottom: 3px solid #e5e5e5;
  width: 100%;
}
.sec h4.normal {
  max-width: 100%;
  margin: 4rem auto 2rem;
  position: relative;
  overflow: hidden;
  padding-bottom: 5px;
  border: 0;
  font-size: 1.2rem;
  padding: 1.2rem 0;
  font-size: 1.8rem;
  font-weight: bold;
}
.sec h4.normal:before, .sec h4.normal:after {
  content: "";
  position: absolute;
  bottom: 0;
}
.sec h4.normal:before {
  border-bottom: 1px solid #301209;
  width: 100%;
}
.sec .titleDAD {
  position: relative;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 2rem;
  min-width: 48%;
  padding-left: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .sec .titleDAD {
    margin-bottom: 1rem;
    min-width: 48%;
    padding-left: 2.2rem;
  }
}
.sec .titleDAD:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  border: 4px solid #301209;
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .sec .titleDAD:before {
    width: 1rem;
    height: 1rem;
    border: 3px solid #301209;
  }
}

.fit {
  width: 100%;
  height: auto;
}

.lineYellow {
  background: linear-gradient(transparent 50%, #f9fb67 0%);
}

.m20 {
  margin-bottom: 2rem;
}

.m30 {
  margin-bottom: 3rem;
}

.m40 {
  margin-bottom: 4rem;
}

.m50 {
  margin-bottom: 5rem;
}

@media only screen and (max-width: 768px) {
  .m40 {
    margin-bottom: 3rem;
  }
  .m50 {
    margin-bottom: 3rem;
  }
}
/*=========================================================*/
/*	PRICE*/
/*=========================================================*/
.table_price {
  width: 100%;
  /* background: #f5f5f5; */
  border-collapse: collapse;
  text-align: center;
  border-top: 1px solid #f6f6f6;
}
.table_price th,
.table_price td {
  padding: 1rem 1.5rem;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .table_price th,
  .table_price td {
    padding: 1rem 1rem;
  }
}
.table_price thead * {
  background: #301209;
  color: #fff;
  border-right: 1px solid #fff;
}
.table_price tbody th {
  background: #e7e6e6;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.table_price tbody td {
  background: #fff;
  border-right: 1px solid #f6f6f6;
  border-bottom: 1px solid #f6f6f6;
}

.priceNextWrap {
  margin-top: 10rem;
  padding: 10rem 0 8rem;
  background: #e0d1cc;
}
@media only screen and (max-width: 768px) {
  .priceNextWrap {
    margin-top: 6rem;
    padding: 6rem 0;
  }
}

.priceNextWrap02 {
  padding: 8rem 0 0rem;
}
@media only screen and (max-width: 768px) {
  .priceNextWrap02 {
    padding: 6rem 0 0;
  }
}

.priceNextWrap02 .inin {
  padding: 8rem 0 8rem;
}
@media only screen and (max-width: 768px) {
  .priceNextWrap02 .inin {
    padding: 6rem 0;
  }
}
.priceNextWrap02 .inin .flexWrap01 {
  flex-basis: auto;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .priceNextWrap02 .inin .flexWrap01 {
    display: block;
  }
}
.priceNextWrap02 .inin .flexWrap01 .imgBox {
  flex-basis: 46rem;
  margin-right: 5rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .priceNextWrap02 .inin .flexWrap01 .imgBox {
    margin-right: 0rem;
    margin-bottom: 3rem;
  }
}
.priceNextWrap02 .inin .flexWrap01 .imgBox .imgB:not(:first-child) {
  margin-top: 2rem;
}
.priceNextWrap02 .inin .flexWrap01 .textBox {
  position: relative;
  flex-grow: 1;
  flex-basis: 100px;
  text-align: left;
}
.priceNextWrap02 .inin .flexWrap01 .textBox .titleA {
  text-align: center;
  margin-bottom: 3rem;
}
.priceNextWrap02 .inin .flexWrap01 .textBox .titleA span {
  text-align: center;
  border-top: 3px solid #301209;
  border-bottom: 3px solid #301209;
  display: inline-block;
  font-size: 2.4rem;
  padding: 1.8rem 1rem;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .priceNextWrap02 .inin .flexWrap01 .textBox .titleA span {
    font-size: 2rem;
  }
}
.priceNextWrap02 .inin .flexWrap01 .textBox .okomari {
  background: #fff;
  margin-top: 3rem;
  margin-bottom: 4rem;
  padding: 1rem 1rem;
  flex-basis: auto;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .priceNextWrap02 .inin .flexWrap01 .textBox .okomari {
    margin-bottom: 2rem;
    padding: 1rem 2rem;
    display: block;
  }
}
.priceNextWrap02 .inin .flexWrap01 .textBox .okomari._bgBrown {
  background: #e7e6e6;
}
.priceNextWrap02 .inin .flexWrap01 .textBox .okomari .tAt {
  flex-basis: 11rem;
  margin-right: 1rem;
  margin-bottom: 0;
  color: #301209;
  font-size: 1.3rem;
}
@media only screen and (max-width: 768px) {
  .priceNextWrap02 .inin .flexWrap01 .textBox .okomari .tAt {
    margin-right: 0rem;
    margin-bottom: 1rem;
    text-align: center;
  }
}
.priceNextWrap02 .inin .flexWrap01 .textBox .okomari ul.mn_b_case_li {
  position: relative;
  flex-grow: 1;
  flex-basis: 100px;
  text-align: left;
  flex-basis: auto;
  display: flex;
  flex-wrap: wrap;
}
.priceNextWrap02 .inin .flexWrap01 .textBox .okomari ul.mn_b_case_li li {
  border: 1px solid #ddd;
  font-size: 1.2rem;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  padding: 0.2rem 0.4rem;
}
.priceNextWrap02 .inin .flexWrap01 .textBox .okomari ul.mn_b_case_li li:not(:last-child) {
  margin-right: 0.4rem;
}
.priceNextWrap02 .inin .flexWrap01 .textBox .inFlexWrap {
  display: flex;
}
@media only screen and (max-width: 768px) {
  .priceNextWrap02 .inin .flexWrap01 .textBox .inFlexWrap {
    display: block;
  }
}
.priceNextWrap02 .inin .flexWrap01 .textBox .inFlexWrap .priceInbox {
  width: 50%;
  text-align: center;
}
.priceNextWrap02 .inin .flexWrap01 .textBox .inFlexWrap .priceInbox:first-child {
  border-right: 1px solid #d4dedd;
}
@media only screen and (max-width: 768px) {
  .priceNextWrap02 .inin .flexWrap01 .textBox .inFlexWrap .priceInbox:first-child {
    border-right: none;
    border-bottom: none;
    margin-bottom: 0rem;
    padding-bottom: 0rem;
  }
}
@media only screen and (max-width: 768px) {
  .priceNextWrap02 .inin .flexWrap01 .textBox .inFlexWrap .priceInbox:nth-child(2) {
    margin-top: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .priceNextWrap02 .inin .flexWrap01 .textBox .inFlexWrap .priceInbox {
    width: 100%;
  }
  .priceNextWrap02 .inin .flexWrap01 .textBox .inFlexWrap .priceInbox._topNo {
    margin-top: 0;
  }
}
.priceNextWrap02 .inin .flexWrap01 .textBox .inFlexWrap .priceInbox .aTitle {
  display: inline-block;
  margin: 2rem auto 1.5rem;
  position: relative;
  overflow: hidden;
  padding: 0rem ​0 1.2rem;
  padding: 0 0 2rem;
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 1px solid #301209;
}
.priceNextWrap02 .inin .flexWrap01 .textBox .inFlexWrap .priceInbox .big {
  font-size: 2.2rem;
  font-weight: bold;
  display: inline-block;
  margin-left: 0.6rem;
}
.priceNextWrap02 .inin .flexWrap01 .textBox .inFlexWrap._solo {
  display: block;
}
.priceNextWrap02 .inin .flexWrap01 .textBox .inFlexWrap._solo .priceInbox {
  width: 100%;
  border-right: none;
}
@media only screen and (max-width: 768px) {
  .priceNextWrap02 .inin .flexWrap01 .textBox .inFlexWrap._sinple {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .priceNextWrap02 .inin .flexWrap01 .textBox .inFlexWrap._sinple .priceInbox:first-child {
    padding-bottom: 2rem;
  }
}
.priceNextWrap02 .inin._01, .priceNextWrap02 .inin._03, .priceNextWrap02 .inin._05 {
  background: #e7e6e6;
}
.priceNextWrap02 .inin._02 {
  background: #fff;
}
.priceNextWrap02 .inin._02 .flexWrap01 {
  flex-direction: row-reverse;
}
.priceNextWrap02 .inin._02 .flexWrap01 .imgBox {
  margin-right: 0rem;
  margin-left: 5rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .priceNextWrap02 .inin._02 .flexWrap01 .imgBox {
    margin-right: 0rem;
    margin-left: 0rem;
    margin-bottom: 3rem;
  }
}
.priceNextWrap02 .inin._04 {
  background: #fff;
}
.priceNextWrap02 .inin._04 .flexWrap01 {
  flex-direction: row-reverse;
}
.priceNextWrap02 .inin._04 .flexWrap01 .imgBox {
  margin-right: 0rem;
  margin-left: 5rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .priceNextWrap02 .inin._04 .flexWrap01 .imgBox {
    margin-right: 0rem;
    margin-left: 0rem;
    margin-bottom: 3rem;
  }
}

.ttlFirstBox {
  text-align: center;
}
.ttlFirstBox .sub {
  position: relative;
  display: block;
  font-size: 1.7rem;
  line-height: 0.9;
  font-family: acumin-pro-condensed, sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.2rem;
  margin-bottom: 1rem;
}
.ttlFirstBox .sub:after {
  content: "";
  width: 5rem;
  height: 0;
  background-color: #807a74;
  display: block;
  margin: 2.5rem auto 2rem;
  transition: 0.5s;
  height: 1px;
}
@media only screen and (max-width: 768px) {
  .ttlFirstBox .sub:after {
    margin: 1.5rem auto 1.5rem;
    height: 1px;
  }
}
.ttlFirstBox h2 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 0rem;
}
@media only screen and (max-width: 768px) {
  .ttlFirstBox h2 {
    font-size: 2rem;
  }
}

/*=========================================================*/
/*	ABOUT*/
/*=========================================================*/
.aboutTopBlock01 {
  padding: 8rem 0;
}
@media only screen and (max-width: 768px) {
  .aboutTopBlock01 {
    padding: 6rem 0;
  }
}
.aboutTopBlock01 .flexWrap {
  position: relative;
  z-index: 2;
  display: flex;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  .aboutTopBlock01 .flexWrap {
    display: block;
    margin-bottom: 0;
  }
}
.aboutTopBlock01 .flexWrap .tateText {
  writing-mode: vertical-rl;
  font-feature-settings: "pkna";
  text-orientation: upright;
  font-family: source-han-serif-japanese, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.6rem;
  line-height: 6rem;
  margin-right: 8rem;
}
@media only screen and (max-width: 768px) {
  .aboutTopBlock01 .flexWrap .tateText {
    font-size: 2rem;
    line-height: 4rem;
  }
}
.aboutTopBlock01 .flexWrap .normalText {
  padding-top: 3rem;
}

.aboutMiddleWrap02 {
  position: relative;
}
.aboutMiddleWrap02:before {
  content: "";
  position: absolute;
  top: 8rem;
  left: 0;
  width: 100%;
  height: 50rem;
  background: #e7e6e6;
}
.aboutMiddleWrap02 ._in {
  position: relative;
  z-index: 1;
}
.aboutMiddleWrap02 .flexWrap {
  flex-basis: auto;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .aboutMiddleWrap02 .flexWrap {
    display: block;
  }
}
.aboutMiddleWrap02 .flexWrap .imgBox {
  flex-basis: 72rem;
  margin-right: 8rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .aboutMiddleWrap02 .flexWrap .imgBox {
    flex-basis: 100%;
    margin-right: 0rem;
    margin-bottom: 3rem;
  }
}
.aboutMiddleWrap02 .flexWrap .textBox {
  position: relative;
  flex-grow: 1;
  flex-basis: 100px;
  text-align: left;
}
.aboutMiddleWrap02 .flexWrap .textBox p {
  margin-bottom: 3rem;
}
.aboutMiddleWrap02 .flexWrap .textBox .imgSection .iBox:first-child {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .aboutMiddleWrap02 .flexWrap .textBox .imgSection {
    display: flex;
    justify-content: space-between;
  }
  .aboutMiddleWrap02 .flexWrap .textBox .imgSection .iBox {
    width: 48%;
  }
}

.aboutTitleMiddle {
  margin-top: 8rem;
}
@media only screen and (max-width: 768px) {
  .aboutTitleMiddle {
    margin-top: 6rem;
  }
}

.aboutBox02 {
  margin-bottom: 10rem;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .aboutBox02 {
    margin-bottom: 2rem;
  }
}
.aboutBox02 .slider-nav .slick-prev,
.aboutBox02 .slider-nav .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
  display: block !important;
  z-index: 9;
}
.aboutBox02 .slider-nav .slick-prev {
  top: 0%;
  transform: rotate(-180deg);
  right: auto;
  left: 0;
  background: url(../img/btn_arrow.png) no-repeat center !important;
}
.aboutBox02 .slider-nav .slick-next {
  top: 25%;
  right: 0;
  left: auto;
  background: url(../img/btn_arrow.png) no-repeat center !important;
}
.aboutBox02 .slider-nav .slick-prev:hover {
  opacity: 1;
  display: block;
  background: url(../img/btn_arrow.png) no-repeat center;
}
.aboutBox02 .img-zoom {
  width: 1000px;
  height: 600px;
  background-position: center bottom;
}
.aboutBox02 .img-zoom-nav {
  width: 165px;
  height: 99px;
  background-position: center center;
}
.aboutBox02 .slider-for {
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .aboutBox02 {
    /* nav */
  }
  .aboutBox02 .slick-dotted.slick-slider {
    padding-bottom: 20px;
  }
  .aboutBox02 .slider-for_sp {
    margin-bottom: 10px;
  }
  .aboutBox02 .slider-for_sp img {
    width: 100%;
  }
  .aboutBox02 .slider-for_sp .spCon,
  .aboutBox02 .slider-nav_sp .spCon {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 100%;
  }
  .aboutBox02 .slider-for_sp .spCon::after,
  .aboutBox02 .slider-nav_sp .spCon::after {
    content: "";
    display: block;
    padding-top: 62.5%;
  }
  .aboutBox02 .img-zoom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: 0.8s;
    background: url() center no-repeat #e5e5e5;
  }
  .aboutBox02 .slider-nav_sp .slick-slide > div {
    margin: 0 5px 0 0px;
  }
  .aboutBox02 .slider-nav_sp img {
    width: 100%;
  }
  .aboutBox02 .slider-nav_sp .slick-prev,
  .aboutBox02 .slider-nav_sp .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    padding: 0;
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    display: block !important;
    z-index: 9;
  }
  .aboutBox02 .slider-nav_sp .slick-prev {
    top: 140%;
    right: auto;
    left: 0;
    background: url(../img/btn_arrow_back.png) no-repeat center !important;
  }
  .aboutBox02 .slider-nav_sp .slick-next {
    top: 140%;
    right: 0;
    left: auto;
    background: url(../img/btn_arrow.png) no-repeat center !important;
  }
  .aboutBox02 .slider-nav_sp .slick-prev:hover {
    opacity: 1;
    display: block;
    background: url(../img/btn_arrow.png) no-repeat center;
  }
  .aboutBox02 .slick-dots {
    display: none !important;
  }
}

.aboutBox03 {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 20;
  background: url(../img/bg_img01.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
@media only screen and (max-width: 768px) {
  .aboutBox03 {
    height: auto;
    background: url(../img/bg_img01.jpg) center no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.aboutBox03 .inininA {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  font-size: 2.2rem;
  padding: 16rem 0;
}
@media only screen and (max-width: 768px) {
  .aboutBox03 .inininA {
    font-size: 1.8rem;
    padding: 7rem 0;
  }
}
.aboutBox03 .inininA .oscarFont {
  font-size: 5.2rem;
  font-family: 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin-bottom: 0rem;
}
@media only screen and (max-width: 768px) {
  .aboutBox03 .inininA .oscarFont {
    font-size: 4rem;
  }
}

.aboutFeatureWrap {
  padding: 10rem 0;
}
@media only screen and (max-width: 768px) {
  .aboutFeatureWrap {
    padding: 6rem 0;
  }
}
@media only screen and (max-width: 768px) {
  .aboutFeatureWrap .profileIn .footerDTime .tbl_scroll {
    overflow-y: scroll;
  }
}
.aboutFeatureWrap .profileIn .footerDTime table {
  width: 100%;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #ddd;
  margin-bottom: 20px;
  text-align: center;
}
.aboutFeatureWrap .profileIn .footerDTime table .fs9 {
  font-size: 0.9rem;
}
@media only screen and (max-width: 768px) {
  .aboutFeatureWrap .profileIn .footerDTime table {
    width: 516px;
  }
}
.aboutFeatureWrap .profileIn .footerDTime table tr th {
  background: #301209;
  color: #fff;
  font-weight: normal;
  font-size: 14px;
  padding: 10px 0;
  text-align: center;
}
.aboutFeatureWrap .profileIn .footerDTime table tr th:first-child {
  width: 300px;
}
@media only screen and (max-width: 768px) {
  .aboutFeatureWrap .profileIn .footerDTime table tr th:first-child {
    width: 150px;
  }
}
.aboutFeatureWrap .profileIn .footerDTime table tr td {
  font-weight: normal;
  padding: 12px 0;
  border-right: 1px solid #e1e1e1;
  font-size: 1.6rem;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .aboutFeatureWrap .profileIn .footerDTime table tr td {
    text-align: center;
    font-size: 12px !important;
  }
}
.aboutFeatureWrap .profileIn .footerDTime table tr td:last-child {
  border-right: none;
  font-size: 1.6rem !important;
}
@media only screen and (max-width: 768px) {
  .aboutFeatureWrap .profileIn .footerDTime table tr td:last-child {
    text-align: center;
    font-size: 12px !important;
  }
}
.aboutFeatureWrap .profileIn .footerDTime table tr td:first-child {
  font-size: 1.6rem !important;
}
@media only screen and (max-width: 768px) {
  .aboutFeatureWrap .profileIn .footerDTime table tr td:first-child {
    font-size: 12px !important;
  }
}
.aboutFeatureWrap .profileIn .footerDTime table tr:last-child td {
  border-top: 1px solid #e1e1e1;
}
.aboutFeatureWrap .profileIn .footerDTime table tr td:nth-child(5) {
  font-size: 1.6rem !important;
}
@media only screen and (max-width: 768px) {
  .aboutFeatureWrap .profileIn .footerDTime table tr td:nth-child(5) {
    font-size: 12px !important;
  }
}
.aboutFeatureWrap .profileIn .footerDTime p {
  text-align: left;
  color: #ddd;
  font-size: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .aboutFeatureWrap .profileIn .footerDTime p {
    font-size: 12px !important;
  }
}
@media only screen and (max-width: 768px) {
  .aboutFeatureWrap .profileIn .footerDTime .tbl_scroll {
    width: 100%;
    margin: 0px auto 0px;
    overflow: auto;
  }
  .aboutFeatureWrap .profileIn .footerDTime .tbl_scroll:before {
    content: "※表はタッチして横移動できます。";
    color: #333;
    text-align: left;
    display: block;
    font-size: 13px;
  }
}
.aboutFeatureWrap .infoOuter dl {
  display: flex;
  width: 100%;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .aboutFeatureWrap .infoOuter dl {
    display: block;
  }
}
.aboutFeatureWrap .infoOuter dl dt {
  width: 220px;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #301209;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media only screen and (max-width: 768px) {
  .aboutFeatureWrap .infoOuter dl dt {
    width: 100%;
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-size: 14px;
  }
}
.aboutFeatureWrap .infoOuter dl dd {
  display: flex;
  width: 580px;
  -webkit-flex: 1 1 auto;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f2f2f2;
  font-size: 15px;
  letter-spacing: 0.06em;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@media only screen and (max-width: 768px) {
  .aboutFeatureWrap .infoOuter dl dd {
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 15px;
    font-size: 14px;
  }
}

/*=========================================================*/
/*	新着情報*/
/*=========================================================*/
.sec_news ._newsText ._in {
  text-align: center;
}
.sec_news ._newsText .leftTitle {
  display: none;
}
.sec_news ._newsText .rightMain {
  width: 100%;
}

/*	NEWS
---------------------------------------------------------------*/
.news {
  width: 100%;
  position: relative;
}
.news .companyBox {
  margin-top: 8rem;
}
@media only screen and (max-width: 768px) {
  .news .companyBox {
    margin-top: 5rem;
  }
}

.news .newsOuter {
  position: relative;
  margin: 0 auto 0px;
}

.newsList {
  margin-top: 0px;
  margin-bottom: 10rem;
}
@media only screen and (max-width: 768px) {
  .newsList {
    margin-top: 0px;
    margin-bottom: 0px;
  }
}

.news .newsOuter .title {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .news .newsOuter .title {
    margin-bottom: 15px;
  }
}

.news .newsOuter .title .eng02 {
  font-size: 3.4rem;
  font-weight: 600;
  letter-spacing: 0.24em;
}
@media only screen and (max-width: 768px) {
  .news .newsOuter .title .eng02 {
    font-size: 2.4rem;
    letter-spacing: 0.14em;
  }
}

.news .newsOuter ul {
  text-align: left;
  margin-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  .news .newsOuter ul {
    margin-bottom: 6rem;
  }
}

.news .newsOuter ul li:first-child {
  border-top: 1px dashed #b4b4b4;
}

.news .newsOuter ul li {
  border-bottom: 1px dashed #b4b4b4;
  padding: 3rem 3rem 3rem;
}
@media only screen and (max-width: 768px) {
  .news .newsOuter ul li {
    padding: 1.5rem 0%;
  }
}

.news .newsOuter ul li dl dt {
  color: #333;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 3rem;
  letter-spacing: 0.06em;
  vertical-align: top;
  display: inline-block;
  padding-right: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .news .newsOuter ul li dl dt {
    margin-bottom: 0rem;
  }
}

.news .newsOuter ul li dl dd {
  width: 780px;
  vertical-align: middle;
  font-size: 1.5rem;
  line-height: 3rem;
  letter-spacing: 0.06em;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .news .newsOuter ul li dl dd {
    width: 100%;
    font-size: 1.6rem;
  }
}

.news .newsOuter ul li dl dd a {
  color: #333;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .news .newsOuter ul li dl dd a {
    font-size: 1.5rem;
  }
}

.news .newsOuter ul li dl dd a:hover {
  text-decoration: underline;
}

/*	詳細
---------------------------------------------------------------*/
.nDetail {
  padding-top: 0px;
  padding-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  .nDetail {
    padding-top: 0px;
    padding-bottom: 6rem;
  }
}
.nDetail .detailBox a {
  text-decoration: underline;
  color: #301209;
}
.nDetail .detailBox a:hover {
  text-decoration: none;
}

.nDetail .newsInnerTop {
  margin: 0px auto 0px !important;
}

.newsDetail h2.mainT {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 4rem;
  padding-bottom: 1.5rem;
  text-align: left;
  border-bottom: 2px solid #301209;
}
@media only screen and (max-width: 768px) {
  .newsDetail h2.mainT {
    font-size: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
  }
}

.companyBox .inBtn {
  text-align: center;
}
.companyBox .inBtn a {
  background: #fff;
  color: #301209;
  border: 1px solid #301209;
  font-size: 1.4rem;
  font-family: arial;
  font-weight: bold;
  padding: 1.5rem 5rem;
  border-radius: 4rem;
  display: inline-block;
  transition: all 0.4s;
}
.companyBox .inBtn a:hover {
  opacity: 0.7;
}

.newsDetail .detailBox {
  text-align: left;
  min-height: 150px;
}
.newsDetail .detailBox ul {
  margin-left: 2rem;
}
.newsDetail .detailBox ul li {
  list-style-type: disc;
  margin-top: 1rem;
}
.newsDetail .detailBox ol {
  margin-left: 2rem;
}
.newsDetail .detailBox ol li {
  list-style-type: decimal;
  margin-top: 1rem;
}
.newsDetail .detailBox h2 {
  border-left: 4px solid #301209;
  margin-top: 4rem;
  margin-bottom: 2rem;
  padding-left: 12px;
  font-size: 2rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .newsDetail .detailBox h2 {
    font-size: 2.2rem;
    margin-top: 3rem;
  }
}
.newsDetail .detailBox h3 {
  margin-top: 4rem;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: bold;
  color: #301209;
}
@media only screen and (max-width: 768px) {
  .newsDetail .detailBox h3 {
    font-size: 2.2rem;
  }
}

.newsDetail .btnA {
  margin-top: 6rem;
  text-align: center;
}
.newsDetail .btnA a {
  margin: 0 auto;
}

.newsDetail h3#mainTitle {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  letter-spacing: 0.04em;
  text-align: left;
  line-height: 1.4;
  border-bottom: 2px solid #301209;
  background: none;
  color: #333;
  height: auto;
  text-align: left;
  display: block;
  margin-top: 5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}
.newsDetail h3#mainTitle:before {
  display: none;
}
@media only screen and (max-width: 768px) {
  .newsDetail h3#mainTitle {
    font-size: 1.8rem;
    margin-top: 0px;
    margin-bottom: 1.5rem;
  }
}

.newsDetail .days {
  text-align: left;
  margin-bottom: 1rem;
  color: #888;
  font-size: 1.5rem;
}

.newsDetail ul {
  margin-left: 2rem;
}

.newsDetail ul li {
  text-align: left;
  list-style-type: disc;
}

.newsDetail .detailBox {
  margin-bottom: 5rem;
}

.newsDetail .detailBox h3 {
  margin: 3rem 0 1rem 0;
}

.newsDetail .detailBox dt,
.newsDetail .detailBox dd,
.newsDetail .detailBox p,
.newsDetail .detailBox li {
  color: #333;
  font-size: 1.5rem;
  line-height: 3.2rem;
  letter-spacing: 0rem;
}

.btn_newsList a {
  margin-top: 1rem;
  display: inline-block;
  background-color: #301209;
  vertical-align: top;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 1.5rem 10rem;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
@media only screen and (max-width: 768px) {
  .btn_newsList a {
    padding-right: 0px;
    padding-left: 0px;
    width: 100%;
    font-size: 1.5rem;
  }
}
.btn_newsList a:hover {
  opacity: 0.8;
}

.newsDetail .btn a {
  width: auto;
  display: inline-block;
  padding-right: 100px;
  padding-left: 100px;
}
@media only screen and (max-width: 768px) {
  .newsDetail .btn a {
    padding-right: 0px;
    padding-left: 0px;
  }
}

/*=========================================================*/
/*	FAQ*/
/*=========================================================*/
.faq .qaBox {
  margin-bottom: 10rem;
}
@media only screen and (max-width: 768px) {
  .faq .qaBox {
    margin-bottom: 8rem;
  }
}

.faqTopLinkWrap {
  padding: 8rem 0;
}
@media only screen and (max-width: 768px) {
  .faqTopLinkWrap {
    padding: 6rem 0;
  }
}
.faqTopLinkWrap .linkSection ul {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.faqTopLinkWrap .linkSection ul li {
  width: 31rem;
}
@media only screen and (max-width: 768px) {
  .faqTopLinkWrap .linkSection ul li {
    width: 100%;
  }
  .faqTopLinkWrap .linkSection ul li:not(:first-child) {
    margin-top: 2rem;
  }
}
.faqTopLinkWrap .linkSection ul li a {
  position: relative;
  display: block;
  border: 2px solid #301209;
  color: #301209;
  padding: 1rem 1rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  transition: all 0.5s;
}
.faqTopLinkWrap .linkSection ul li a:before, .faqTopLinkWrap .linkSection ul li a:after {
  content: "";
  border: 1.6px solid transparent;
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  margin: auto;
  position: absolute;
  top: 2rem;
  transform: rotate(45deg) translate3d(0px, -4px, 0);
  border-top: none;
  border-left: none;
  right: 1.5rem;
  border-color: #301209;
}
.faqTopLinkWrap .linkSection ul li a:hover {
  opacity: 0.7;
}

.faqBoxWrap h4 {
  text-align: center;
  font-size: 2.6rem;
  color: #666;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 768px) {
  .faqBoxWrap h4 {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
.faqBoxWrap .inH._top {
  margin-top: 8rem;
}
@media only screen and (max-width: 768px) {
  .faqBoxWrap .inH._top {
    margin-top: 6rem;
  }
}
.faqBoxWrap .faq-list {
  border-bottom: 2px solid #e4e4e4;
}
.faqBoxWrap .faq-list dt:before,
.faqBoxWrap .faq-list dd:before {
  font-size: 3rem;
  font-family: arial;
  font-weight: 400;
  text-shadow: none;
  text-align: center;
  padding: 1rem 0 0;
  width: 6rem;
  position: absolute;
  left: 0;
  top: 1.3rem;
  bottom: 0;
}
@media only screen and (max-width: 768px) {
  .faqBoxWrap .faq-list dt:before,
  .faqBoxWrap .faq-list dd:before {
    font-size: 1.7rem;
    font-weight: 400;
    text-align: center;
    padding: 0.3rem 0 0;
    width: 3.2rem;
    position: absolute;
    left: 0;
    top: 1.3rem;
    bottom: 0;
  }
}
.faqBoxWrap .faq-list dt {
  font-size: 1.7rem;
  line-height: 1.3;
  border-top: 2px solid #e4e4e4;
  padding: 3rem 4rem 3.5rem 7rem;
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .faqBoxWrap .faq-list dt {
    font-size: 1.5rem;
    padding: 2rem 1.8rem 2rem 4rem;
    position: relative;
  }
}
.faqBoxWrap .faq-list dt:before {
  color: #f06985;
  text-shadow: 0 0 0 #fff;
  content: "Q";
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .faqBoxWrap .faq-list dt:before {
    top: 1.7rem;
  }
}
.faqBoxWrap .faq-list dt:after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url(../img/open.png) no-repeat center/contain;
}
@media only screen and (max-width: 768px) {
  .faqBoxWrap .faq-list dt:after {
    right: 0px;
    width: 20px;
    height: 20px;
  }
}
.faqBoxWrap .faq-list dd {
  display: none;
  font-size: 1.65rem;
  margin: 0 0 1rem;
  padding: 1rem 2rem 2rem 7rem;
  position: relative;
  line-height: 3.2rem;
}
@media only screen and (max-width: 768px) {
  .faqBoxWrap .faq-list dd {
    font-size: 1.5rem;
    line-height: 1.6;
    padding: 1rem 1.8rem 1rem 4rem;
    position: relative;
  }
}
.faqBoxWrap .faq-list dd:before {
  background: #fff;
  color: #301209;
  content: "A";
  top: 0.1rem;
}
@media only screen and (max-width: 768px) {
  .faqBoxWrap .faq-list dd:before {
    top: 0.6rem;
  }
}

/*=========================================================*/
/*	ACCIDENT*/
/*=========================================================*/
.accidentTopLinkWrap {
  padding: 8rem 0;
}
@media only screen and (max-width: 768px) {
  .accidentTopLinkWrap {
    padding: 6rem 0;
  }
}
.accidentTopLinkWrap .ttlWrap {
  margin-bottom: 5rem;
  text-align: center;
}
.accidentTopLinkWrap .ttlWrap h2 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 0rem;
}
.accidentTopLinkWrap .ttlWrap .sub {
  position: relative;
  display: inline-block;
  font-family: "TheanoDidot";
  font-variant-ligatures: none;
  font-size: 2rem;
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 600;
  font-style: normal;
}
.accidentTopLinkWrap .linkSection ul {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.accidentTopLinkWrap .linkSection ul li {
  width: 23rem;
}
@media only screen and (max-width: 768px) {
  .accidentTopLinkWrap .linkSection ul li {
    width: 100%;
  }
  .accidentTopLinkWrap .linkSection ul li:not(:first-child) {
    margin-top: 2rem;
  }
}
.accidentTopLinkWrap .linkSection ul li a {
  position: relative;
  display: block;
  border: 2px solid #301209;
  color: #301209;
  padding: 1rem 1rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  transition: all 0.5s;
}
.accidentTopLinkWrap .linkSection ul li a:before, .accidentTopLinkWrap .linkSection ul li a:after {
  content: "";
  border: 1.6px solid transparent;
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  margin: auto;
  position: absolute;
  top: 2rem;
  transform: rotate(45deg) translate3d(0px, -4px, 0);
  border-top: none;
  border-left: none;
  right: 1.5rem;
  border-color: #301209;
}
.accidentTopLinkWrap .linkSection ul li a:hover {
  opacity: 0.7;
}

.reasonWrapA {
  background: #e7e6e6;
  padding: 8rem 0;
}
@media only screen and (max-width: 768px) {
  .reasonWrapA {
    padding: 6rem 0;
  }
}
.reasonWrapA .ttlAI {
  margin-bottom: 5rem;
  letter-spacing: 0.04em;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .reasonWrapA .ttlAI {
    margin-bottom: 3rem;
  }
}
.reasonWrapA .ttlAI h3 {
  font-size: 3.4rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
}
@media only screen and (max-width: 768px) {
  .reasonWrapA .ttlAI h3 {
    font-size: 2.4rem;
  }
}
.reasonWrapA .ttlAI h3 span {
  font-size: 4.8rem;
}
@media only screen and (max-width: 768px) {
  .reasonWrapA .ttlAI h3 span {
    font-size: 3.3rem;
  }
}
.reasonWrapA .reasonBox {
  border: 5px solid #301209;
  background: #fffbf3;
  padding: 5rem 6rem 7rem;
}
@media only screen and (max-width: 768px) {
  .reasonWrapA .reasonBox {
    padding: 3rem 2rem 4rem;
  }
}
.reasonWrapA .reasonBox._01 {
  margin-bottom: 8rem;
}
@media only screen and (max-width: 768px) {
  .reasonWrapA .reasonBox._01 {
    margin-bottom: 5rem;
  }
}
.reasonWrapA .reasonBox._02 {
  margin-bottom: 8rem;
  padding: 6rem 6rem 7rem;
}
@media only screen and (max-width: 768px) {
  .reasonWrapA .reasonBox._02 {
    margin-bottom: 5rem;
    padding: 3rem 2rem 4rem;
  }
}
.reasonWrapA .reasonBox._03 {
  margin-bottom: 8rem;
  padding: 5rem 6rem 5rem;
}
@media only screen and (max-width: 768px) {
  .reasonWrapA .reasonBox._03 {
    margin-bottom: 5rem;
    padding: 3rem 2rem 4rem;
  }
}
.reasonWrapA .reasonBox._03 .flexWrap {
  flex-basis: auto;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .reasonWrapA .reasonBox._03 .flexWrap {
    display: block;
  }
}
.reasonWrapA .reasonBox._03 .flexWrap .textBox {
  position: relative;
  flex-grow: 1;
  flex-basis: 100px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .reasonWrapA .reasonBox._03 .flexWrap .textBox dl {
    text-align: center;
  }
}
.reasonWrapA .reasonBox._03 .flexWrap .textBox dl dt {
  background: linear-gradient(transparent 50%, #f9fb67 0%);
  font-size: 2.6rem;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 768px) {
  .reasonWrapA .reasonBox._03 .flexWrap .textBox dl dt {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  .reasonWrapA .reasonBox._03 .flexWrap .textBox dl dd {
    text-align: left;
  }
}
.reasonWrapA .reasonBox._03 .flexWrap .imgBox {
  flex-basis: 30rem;
  margin-left: 4rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .reasonWrapA .reasonBox._03 .flexWrap .imgBox {
    flex-basis: 100%;
    margin-top: 3rem;
    margin-left: 0rem;
  }
}
.reasonWrapA .reasonBox._04 .flexWrap {
  flex-basis: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 7rem;
}
@media only screen and (max-width: 768px) {
  .reasonWrapA .reasonBox._04 .flexWrap {
    display: block;
    margin-top: 5rem;
  }
}
.reasonWrapA .reasonBox._04 .flexWrap .flexbox {
  width: 48%;
}
@media only screen and (max-width: 768px) {
  .reasonWrapA .reasonBox._04 .flexWrap .flexbox {
    width: 100%;
  }
}
.reasonWrapA .reasonBox._04 .flexWrap .flexbox:nth-child(1), .reasonWrapA .reasonBox._04 .flexWrap .flexbox:nth-child(2) {
  margin-bottom: 5rem;
}
@media only screen and (max-width: 768px) {
  .reasonWrapA .reasonBox._04 .flexWrap .flexbox:nth-child(1), .reasonWrapA .reasonBox._04 .flexWrap .flexbox:nth-child(2), .reasonWrapA .reasonBox._04 .flexWrap .flexbox:nth-child(3) {
    margin-bottom: 5rem;
  }
}
.reasonWrapA .reasonBox._04 .flexWrap .flexbox .inin {
  position: relative;
  text-align: center;
  border: 3px solid #160703;
  padding-top: 5rem;
}
.reasonWrapA .reasonBox._04 .flexWrap .flexbox .inin .frameTitle {
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translate(-50%, 0);
  display: inline-block;
  background: #160703;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  padding: 1rem 2rem;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .reasonWrapA .reasonBox._04 .flexWrap .flexbox .inin .frameTitle {
    width: 25rem;
    font-size: 1.8rem;
  }
}
.reasonWrapA .reasonBox._04 .flexWrap .flexbox .inin p {
  text-align: left;
  font-size: 1.4rem;
  line-height: 3rem;
  letter-spacing: 0rem;
  padding: 0 2rem 3rem;
}
.reasonWrapA .reasonBox .inin .tttA {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .reasonWrapA .reasonBox .inin .tttA {
    font-size: 1.8rem;
  }
}
.reasonWrapA .reasonBox .inin .tttA._bottom {
  margin-bottom: 3rem;
}
.reasonWrapA .reasonBox .inin .tttA span {
  font-size: 3.2rem;
}
@media only screen and (max-width: 768px) {
  .reasonWrapA .reasonBox .inin .tttA span {
    font-size: 2.2rem;
  }
}
.reasonWrapA .reasonBox .inin .tttA02 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .reasonWrapA .reasonBox .inin .tttA02 {
    font-size: 2.4rem;
  }
}
.reasonWrapA .reasonBox .inin .tttA02._bottom {
  margin-bottom: 5rem;
}
@media only screen and (max-width: 768px) {
  .reasonWrapA .reasonBox .inin .tttA02._bottom {
    margin-bottom: 2rem;
  }
}
.reasonWrapA .reasonBox .inin .tttA02 span {
  font-size: 3.6rem;
}
@media only screen and (max-width: 768px) {
  .reasonWrapA .reasonBox .inin .tttA02 span {
    font-size: 2.6rem;
  }
}
.reasonWrapA .reasonBox .inin .tttA02 span.big {
  font-size: 6.2rem;
  line-height: 2rem;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .reasonWrapA .reasonBox .inin .tttA02 span.big {
    font-size: 5rem;
  }
}
.reasonWrapA .reasonBox .inin .img02 {
  margin-bottom: 3rem;
}
.reasonWrapA .reasonBox .inin .inininBox {
  border: 4px solid #301209;
  background: #fff;
  width: 85%;
  margin: -1rem auto;
  padding: 5rem 7rem;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .reasonWrapA .reasonBox .inin .inininBox {
    width: 100%;
    margin: 2rem auto 0;
    padding: 3rem 2rem;
  }
}
.reasonWrapA .reasonBox .inin .inininBox .ttlttl {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
}
.reasonWrapA .reasonBox .inin .inininBox .ttlttl._bottom {
  margin-bottom: 3rem;
}
.reasonWrapA .reasonBox .inin .inininBox .ttlttl span {
  font-size: 3.2rem;
}
@media only screen and (max-width: 768px) {
  .reasonWrapA .reasonBox .inin .inininBox .ttlttl span {
    font-size: 2.2rem;
  }
}
.reasonWrapA .reasonBox .inin .inininBox p {
  font-weight: 500;
}

.accident_flowWrap {
  padding: 8rem 0;
}
@media only screen and (max-width: 768px) {
  .accident_flowWrap {
    padding: 6rem 0;
  }
}
.accident_flowWrap .ttlW {
  text-align: center;
  margin-bottom: 5rem;
}
@media only screen and (max-width: 768px) {
  .accident_flowWrap .ttlW {
    margin-bottom: 4rem;
  }
}
.accident_flowWrap .ttlW .sub {
  font-size: 1.8rem;
  font-family: arial;
  letter-spacing: 0.1rem;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .accident_flowWrap .ttlW .sub {
    margin-bottom: 1rem;
  }
}
.accident_flowWrap .ttlW h2 {
  font-size: 2.8rem;
  font-weight: bold;
  color: #301209;
}
@media only screen and (max-width: 768px) {
  .accident_flowWrap .ttlW h2 {
    font-size: 2.4rem;
  }
}
.accident_flowWrap .flowBox._top {
  margin-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  .accident_flowWrap .flowBox._top {
    margin-bottom: 0rem;
  }
}
.accident_flowWrap .step {
  list-style-type: none;
  display: table;
  width: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.accident_flowWrap .step li {
  display: table-cell;
  position: relative;
  color: #fff;
  font-size: 2rem;
  width: 33.33336%;
}
@media only screen and (max-width: 768px) {
  .accident_flowWrap .step li {
    display: block;
    width: 100%;
  }
}
.accident_flowWrap .step li .listAA {
  position: relative;
  background: #504944;
  padding: 2rem 0.5rem 2rem 7.5rem;
}
@media only screen and (max-width: 768px) {
  .accident_flowWrap .step li .listAA {
    padding: 2rem 0.5rem 2rem 5.5rem;
  }
}
.accident_flowWrap .step li .listAA._02 .number {
  top: 3.7rem;
}
@media only screen and (max-width: 768px) {
  .accident_flowWrap .step li .listAA._02 .number {
    top: 2.2rem;
  }
}
.accident_flowWrap .step li .listAA._02 .aaa {
  position: relative;
  top: 1.5rem;
}
@media only screen and (max-width: 768px) {
  .accident_flowWrap .step li .listAA._02 .aaa {
    top: 0rem;
  }
}
.accident_flowWrap .step li .textSection {
  position: relative;
  z-index: 11;
  background: #fff;
  color: #333;
  text-align: left;
  font-size: 1.4rem;
  line-height: 3rem;
  letter-spacing: 0rem;
  padding: 2rem 2rem;
}
.accident_flowWrap .step li div.aaa {
  display: flex;
  align-items: center;
}
.accident_flowWrap .step li .number {
  position: absolute;
  top: 2.2rem;
  left: 5rem;
  font-size: 2.4rem;
  font-family: arial;
  font-weight: 500;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .accident_flowWrap .step li .number {
    left: 3rem;
  }
}
.accident_flowWrap .step li:last-child .listAA {
  padding-right: 1rem;
}
.accident_flowWrap .step li:last-child .listAA:before,
.accident_flowWrap .step li:last-child .listAA:after {
  display: none;
}
.accident_flowWrap .step li .listAA:before,
.accident_flowWrap .step li .listAA:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}
.accident_flowWrap .step li .listAA:before {
  top: -2rem;
  right: -2.6rem;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 7rem 0 6rem 3rem;
  z-index: 10;
}
.accident_flowWrap .step li .listAA:after {
  top: -2rem;
  right: -2.4rem;
  border-style: solid;
  border-color: transparent transparent transparent #504944;
  border-width: 7rem 0 6rem 3rem;
  z-index: 10;
}
.accident_flowWrap .step li.is-current .listAA {
  background: #9bbb30;
  font-weight: bold;
}
.accident_flowWrap .step li.is-current .listAA:after {
  border-color: transparent transparent transparent #9bbb30;
}

/*=========================================================*/
/*	treat*/
/*=========================================================*/
.treat h5.normal {
  position: relative;
  margin-bottom: 5rem;
  text-align: center;
  color: #301209;
  font-size: 2.4rem;
  font-weight: bold;
  font-family: Lato, "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, Arial, "MS P Gothic", "MS Pゴシック", sans-serif;
}
@media only screen and (max-width: 768px) {
  .treat h5.normal {
    margin-bottom: 3rem;
    font-size: 2rem;
  }
}
.treat h6.normal {
  color: #222;
  border-bottom: 1px dotted #222;
  margin-bottom: 5rem;
  padding-bottom: 1rem;
  font-size: 2.2rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .treat h6.normal {
    margin-bottom: 3rem;
    font-size: 2rem;
  }
}
.treat .secTitleh3 {
  background: #301209;
  color: #fff;
  margin-bottom: 2.5rem;
  padding: 1.5rem 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .treat .secTitleh3 {
    padding: 1.2rem 1.2rem;
    font-size: 1.6rem;
  }
}
.treat .dBox.mb60 {
  margin-bottom: 6rem;
}
.treat .treatmentWrap {
  margin: 7rem 0;
}
@media only screen and (max-width: 768px) {
  .treat .treatmentWrap {
    margin: 3rem 0;
  }
}
.treat .treatmentWrap h3 {
  font-size: 2.4rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .treat .treatmentWrap h3 {
    font-size: 1.8rem;
  }
}
.treat .treatBox01._01, .treat .treatBox01._02, .treat .treatBox01._03 {
  margin-top: 8rem;
  margin-bottom: 10rem;
}
@media only screen and (max-width: 768px) {
  .treat .treatBox01._01, .treat .treatBox01._02, .treat .treatBox01._03 {
    margin-top: 5rem;
    margin-bottom: 7rem;
  }
}
.treat .treatBox01 .treatWrap .flexWrap {
  position: relative;
}
@media only screen and (max-width: 768px) {
  .treat .treatBox01 .treatWrap .flexWrap._01 .imgTop {
    position: absolute;
    top: 15rem;
    left: 0rem;
    padding: 0 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .treat .treatBox01 .treatWrap .flexWrap.__03 .imgTop {
    position: absolute;
    top: 14rem;
    left: 0rem;
    padding: 0 3rem;
  }
}
.treat .treatBox01 .treatWrap .imgTop p {
  font-size: 2rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .treat .treatBox01 .treatWrap .imgTop p {
    font-size: 1.3rem;
  }
}
.treat .treatBox01 .treatWrap .imgTop p .big {
  font-size: 3.4rem;
}
@media only screen and (max-width: 768px) {
  .treat .treatBox01 .treatWrap .imgTop p .big {
    font-size: 2rem;
  }
}
.treat .treatBox01 .treatWrap .imgBottom .checkWrap {
  background: #fff;
  border: 2px solid #70b2ae;
  padding: 2.5rem 3rem;
  flex-basis: auto;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .treat .treatBox01 .treatWrap .imgBottom .checkWrap {
    display: block;
    padding: 1.5rem 1.5rem;
  }
}
.treat .treatBox01 .treatWrap .imgBottom .checkWrap .imgBox {
  flex-basis: 225px;
  margin-right: 5rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .treat .treatBox01 .treatWrap .imgBottom .checkWrap .imgBox {
    margin-right: 0px;
  }
}
.treat .treatBox01 .treatWrap .imgBottom .checkWrap .listBox {
  position: relative;
  flex-grow: 1;
  flex-basis: 380px;
  text-align: left;
  padding-top: 1rem;
}
.treat .treatBox01 .treatWrap .imgBottom .checkWrap .listBox ul {
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .treat .treatBox01 .treatWrap .imgBottom .checkWrap .listBox ul {
    display: block;
  }
}
.treat .treatBox01 .treatWrap .imgBottom .checkWrap .listBox ul li {
  position: relative;
  font-size: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  min-width: 48%;
  padding-left: 2.5rem;
}
@media only screen and (max-width: 768px) {
  .treat .treatBox01 .treatWrap .imgBottom .checkWrap .listBox ul li {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    min-width: 48%;
    padding-left: 2.2rem;
  }
}
.treat .treatBox01 .treatWrap .imgBottom .checkWrap .listBox ul li:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  border: 4px solid #301209;
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .treat .treatBox01 .treatWrap .imgBottom .checkWrap .listBox ul li:before {
    width: 1rem;
    height: 1rem;
    border: 3px solid #301209;
  }
}
.treat .treatBox01 .treatWrap._01 .imgTop {
  padding: 30rem 0 0 8rem;
  height: 457px;
  background: url(../img/img_treat01.jpg) no-repeat center center;
}
@media only screen and (max-width: 768px) {
  .treat .treatBox01 .treatWrap._01 .imgTop {
    padding: 0 0 0 0rem;
    height: auto;
    background: none;
  }
}
.treat .treatBox01 .treatWrap._01 .imgBottom {
  background: #c6f096;
  padding: 0 2rem 2rem 2rem;
}
.treat .treatBox01 .treatWrap._02 .imgTop {
  padding: 30rem 0 0 8rem;
  height: 458px;
  background: url(../img/img_treat05.jpg) no-repeat center center;
}
@media only screen and (max-width: 768px) {
  .treat .treatBox01 .treatWrap._02 .imgTop {
    padding: 0 0 0 0rem;
    height: auto;
    background: none;
  }
}
.treat .treatBox01 .treatWrap._02 .imgBottom {
  background: #c6f096;
  padding: 0 2rem 2rem 2rem;
}
.treat .treatBox01 .treatWrap._03 {
  margin-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  .treat .treatBox01 .treatWrap._03.treatWrap {
    margin-bottom: 4rem;
  }
}
.treat .treatBox01 .treatWrap._03 .imgTop {
  padding: 30rem 0 0 8rem;
  height: 460px;
  background: url(../img/img_treat11.jpg) no-repeat center center;
}
@media only screen and (max-width: 768px) {
  .treat .treatBox01 .treatWrap._03 .imgTop {
    padding: 0 0 0 0rem;
    height: auto;
    background: none;
  }
}
.treat .treatBox01 .treatWrap._03 .imgBottom {
  background: #c6f096;
  padding: 0 2rem 2rem 2rem;
}
.treat .treatBox01 .nekozeWrap {
  margin-bottom: 7rem;
}
.treat .treatBox01 .nekozeWrap ul {
  flex-basis: auto;
  display: flex;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}
@media only screen and (max-width: 768px) {
  .treat .treatBox01 .nekozeWrap ul {
    display: block;
    margin-right: 0px;
    margin-left: 0px;
  }
}
.treat .treatBox01 .nekozeWrap ul > li {
  flex-basis: 25%;
  margin: 1rem 0 !important;
  padding: 0 1rem;
}
@media only screen and (max-width: 768px) {
  .treat .treatBox01 .nekozeWrap ul > li {
    flex-basis: 50%;
    margin: 5px 0 !important;
    margin-top: 4.5rem !important;
    padding: 0 0px;
  }
}
.treat .treatBox01 .nekozeWrap ul > li .ttl {
  font-size: 1.6rem;
  font-weight: bold;
  border-left: 3px solid #301209;
  margin-bottom: 1rem;
  padding-left: 5px;
}
@media only screen and (max-width: 768px) {
  .treat .treatBox01 .nekozeWrap ul > li .ttl {
    margin-bottom: 2rem;
  }
}
.treat .treatBox01 .nekozeWrap ul > li .imgB {
  margin-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  .treat .treatBox01 .nekozeWrap ul > li .imgB {
    margin-bottom: 3rem;
  }
}
.treat .treatBox01 .nekozeWrap ul > li dl {
  margin-bottom: 2.5rem;
}
.treat .treatBox01 .nekozeWrap ul > li dl dt {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.treat .treatBox01 .nekozeWrap ul > li dl dd {
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .treat .treatBox01 .nekozeWrap ul > li dl dd {
    font-size: 1.5rem;
  }
}
.treat .treatBox01 .nekozeWrap ul > li .denger .denTTl {
  background: #ddd;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 2px 2px;
}
@media only screen and (max-width: 768px) {
  .treat .treatBox01 .nekozeWrap ul > li .denger .denTTl {
    font-size: 1.3rem;
    padding: 0.5rem 1rem;
  }
}
.treat .treatBox01 .nekozeWrap ul > li .denger .ddd {
  border: 1px solid #ddd;
  border-top: none;
  padding: 1rem 5px;
}
.treat .treatBox01 .nekozeWrap ul > li .denger ol {
  margin-left: 2rem;
}
.treat .treatBox01 .nekozeWrap ul > li .denger ol li {
  list-style-type: disc;
  font-size: 1.3rem;
}
.treat .treatBox01 .motherWrap {
  background: #c6f096;
  padding: 0 2rem 2rem 2rem;
}
.treat .treatBox01 .motherWrap .ininin {
  text-align: center;
}
.treat .treatBox01 .motherWrap .ininin .motherTitle {
  text-align: center;
  display: inline-block;
  background: #fff;
  color: #301209;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 4px 1.5rem;
}
.treat .treatBox01 .motherWrap .ininin .motherBox {
  border: 2px solid #fff;
  padding: 2rem 2rem;
}
@media only screen and (max-width: 768px) {
  .treat .treatBox01 .motherWrap .ininin .motherBox {
    padding: 1rem 1rem;
  }
}
.treat .treatBox01 .motherWrap .ininin .motherBox ul li {
  padding: 0 1rem;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .treat .treatBox01 .motherWrap .ininin .motherBox ul li {
    padding: 0;
    margin: 5px 0;
  }
}
.treat .treatBox01 .motherWrap .ininin .motherBox ul li span {
  background: #301209;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  border-radius: 3px;
  padding: 0.6rem 4rem;
  display: block;
}
@media only screen and (max-width: 768px) {
  .treat .treatBox01 .motherWrap .ininin .motherBox ul li span {
    font-size: 1.3rem;
    padding: 0.6rem 1.5rem;
  }
}
.treat .treatBox01 .box1 {
  flex-basis: auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  margin-top: 4rem;
}
@media only screen and (max-width: 768px) {
  .treat .treatBox01 .box1 {
    margin-top: 2.5rem;
  }
}
.treat .treatBox01 .box1:first-child {
  margin-top: 0;
}
.treat .treatBox01 .box1 .imgOuter {
  flex-basis: 44rem;
  margin-bottom: 0;
  margin-left: 6rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .treat .treatBox01 .box1 .imgOuter {
    flex-basis: 100%;
    margin-left: 0px;
    margin-bottom: 2.5rem;
  }
}
.treat .treatBox01 .box1 .imgOuter img {
  height: auto;
}
@media only screen and (max-width: 768px) {
  .treat .treatBox01 .box1 .imgOuter img {
    width: 100%;
  }
}
.treat .treatBox01 .box1 .textOuter {
  position: relative;
  flex-grow: 1;
  flex-basis: 100px;
  text-align: left;
  text-align: left;
}
.treat .treatBox01 .box1 .textOuter dl dt {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 768px) {
  .treat .treatBox01 .box1 .textOuter dl dt {
    font-size: 1.8rem;
  }
}
.treat .treatBox01 .box1 .textOuter dl dd {
  font-size: 1.4rem;
}
.treat .btnWarp {
  margin-top: 5rem;
}
.treat .btnWarp .btnZ a {
  background: #301209;
  color: #fff;
  border: 1px solid #301209;
  font-size: 1.4rem;
  font-family: arial;
  font-weight: bold;
  margin: 0 1rem;
  padding: 1.5rem 5rem;
  border-radius: 4rem;
  display: inline-block;
  transition: all 0.4s;
}
.treat .btnWarp .btnZ a:hover {
  opacity: 0.7;
}
.treat h6 {
  margin-bottom: 5rem;
}

/*=========================================================*/
/*	treatment*/
/*=========================================================*/
.default2 {
  margin-bottom: 8rem;
}
@media only screen and (max-width: 768px) {
  .default2 {
    margin-bottom: 8rem;
  }
}

.treatment .dddt {
  margin-top: -12rem;
  padding-top: 12rem;
}
@media only screen and (max-width: 768px) {
  .treatment .dddt {
    margin-top: -3rem;
    padding-top: 3rem;
  }
}
.treatment .backIMG {
  background-size: cover;
  width: 100%;
  height: 257px;
  padding: 6rem 0 0 0;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .treatment .backIMG {
    height: auto;
    padding: 3rem 0 3rem 0;
  }
}
.treatment .backIMG.symp01 {
  background: url(../img/treatment_img01.jpg) no-repeat center center;
  background-size: cover;
}
.treatment .backIMG.symp02 {
  background: url(../img/treatment_img02.jpg) no-repeat center center;
  background-size: cover;
  margin-top: 5rem;
}
@media only screen and (max-width: 768px) {
  .treatment .backIMG.symp02 {
    margin-top: 0px;
  }
}
.treatment .backIMG.symp03 {
  background: url(../img/treatment_img03.jpg) no-repeat center center;
  background-size: cover;
  margin-top: 5rem;
}
@media only screen and (max-width: 768px) {
  .treatment .backIMG.symp03 {
    margin-top: 0px;
  }
}
.treatment .backIMG.symp04 {
  background: url(../img/treatment_img04.jpg) no-repeat center center;
  background-size: cover;
  margin-top: 5rem;
}
@media only screen and (max-width: 768px) {
  .treatment .backIMG.symp04 {
    margin-top: 0px;
  }
}
.treatment .backIMG .title {
  margin: 0 auto 3rem;
  display: inline-block;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.9;
  text-shadow: 0px 0px 1rem rgba(0, 0, 0, 0.6);
  min-width: 500px;
}
@media only screen and (max-width: 768px) {
  .treatment .backIMG .title {
    font-size: 2rem;
    margin: 0 auto 2rem;
    min-width: auto;
  }
}
.treatment .backIMG .title span {
  background: linear-gradient(transparent 86%, #f9fb67 0%);
}
.treatment .backIMG .text {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 1px;
  line-height: 1.9;
  text-shadow: 0px 0px 1rem rgba(0, 0, 0, 0.6);
}
@media only screen and (max-width: 768px) {
  .treatment .backIMG .text {
    font-size: 1.4rem;
    min-width: auto;
    padding: 0 1.5rem;
  }
}
.treatment .checkList {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .treatment .checkList {
    margin: 0 0px 0px;
  }
}
.treatment .checkList ul {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .treatment .checkList ul {
    display: block;
  }
}
.treatment .checkList li {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: Lato, "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, Arial, "MS P Gothic", "MS Pゴシック", sans-serif;
  margin: 0 0 1rem;
  padding-left: 3.6rem;
  width: 50%;
}
.treatment .checkList li:before {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  content: "";
  width: 1rem;
  height: 0.5rem;
  border-left: 2px solid #301209;
  border-bottom: 2px solid #301209;
  transform: rotate(-45deg);
}
.treatment .checkList li:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid #301209;
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .treatment .checkList li {
    font-size: 1.5rem;
    width: 100%;
    margin: 0 0 2rem;
    padding-left: 3.6rem;
  }
  .treatment .checkList li:last-child {
    margin-bottom: 0;
  }
}
.treatment .effectOuter {
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .treatment .effectOuter {
    margin-bottom: 20px;
  }
}
.treatment .effectOuter ul {
  flex-basis: auto;
  display: flex;
  flex-wrap: wrap;
}
.treatment .effectOuter ul li {
  pointer-events: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4rem;
  font-size: 1.4rem;
  margin-right: 2rem;
  margin-bottom: 2rem;
  padding: 1rem 5rem;
  min-width: 220px;
  color: #301209;
  border: 2px solid #301209;
  background: #fff;
  vertical-align: middle;
}
@media only screen and (max-width: 768px) {
  .treatment .effectOuter ul li {
    font-size: 1.4rem;
    margin-right: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem 3rem;
    min-width: 100px;
  }
}
.treatment .checkOuter {
  margin-bottom: 50px;
}
.treatment .checkOuter:after {
  content: "";
  display: table;
  clear: both;
}
.treatment .checkOuter ul {
  /* margin-left: 20px; */
  float: left;
  width: 50%;
}
.treatment .checkOuter ul li {
  width: 90%;
  list-style-type: none;
  text-align: left;
  margin-bottom: 18px;
  padding: 0 0 0 3.4rem;
  font-size: 1.5px;
  font-weight: 600;
  color: #301209;
  letter-spacing: 1px;
  background: url(../img/icon_check.jpg) no-repeat 0 0;
}
@media only screen and (max-width: 768px) {
  .treatment .btnN a {
    margin-bottom: 15px;
  }
}

.btnOut {
  margin-top: 5rem;
}
@media only screen and (max-width: 768px) {
  .btnOut {
    margin-top: 3rem;
  }
}
.btnOut .btnN {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btnOut .btnN a {
  background: #301209;
  color: #fff;
  border: 1px solid #301209;
  font-size: 1.4rem;
  font-family: arial;
  font-weight: bold;
  margin: 0 1rem;
  padding: 1.5rem 5rem;
  border-radius: 4rem;
  display: inline-block;
  transition: all 0.4s;
}
.btnOut .btnN a:hover {
  opacity: 0.7;
}

/*	table
---------------------------------------------------------------*/
.table-1 {
  border-top: 1px solid #e5e5e5;
  width: 100%;
}

.table-1 th,
.table-1 td {
  border-bottom: 1px solid #e5e5e5;
  padding: 20px;
  position: relative;
  vertical-align: middle;
  line-height: 1.4;
  text-align: left;
}

.table-1 td::before {
  content: "";
  margin: auto;
  width: 1px;
  height: 80%;
  height: calc(100% - 20px);
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
}

.table-1 th {
  font-size: 14px;
  font-weight: bold;
}

.table-1 td {
  font-size: 14px;
  font-weight: 500;
}

/*=========================================================*/
/*	TOP*/
/*=========================================================*/
#mainvisual {
  position: relative;
}

#background {
  position: relative;
  width: calc(100% - 8rem);
  margin: 0 0 0 auto;
  height: calc(100vh - 130px);
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  #background {
    width: 100%;
    min-height: 500px;
    height: calc(65vh - 50px);
  }
}
#background .bannerOuter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  #background .bannerOuter {
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
  }
}
#background .bannerOuter .centerLogo {
  text-align: center;
}
#background .bannerOuter .centerLogo .logoImg {
  margin-bottom: 25px;
}
#background .bannerOuter .centerLogo .c_Btn a {
  position: relative;
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 25px;
  color: #fff;
  font-size: 14px;
  padding: 10px 120px;
}
@media only screen and (max-width: 768px) {
  #background .bannerOuter .centerLogo .c_Btn a {
    min-width: 250px;
    padding: 10px 20px;
  }
}
#background .bannerOuter .centerLogo .c_Btn a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 6px;
  height: 6px;
  margin-top: -5px;
  border-top: 3px solid #202020;
  border-right: 3px solid #202020;
  transform: scaleX(0.8) rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
#background #bgSlideTop {
  position: relative;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#background #bgSlideTop:before {
  content: "";
  background: #160703;
  width: 16rem;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}
@media only screen and (max-width: 768px) {
  #background #bgSlideTop:before {
    width: 8rem;
  }
}
#background #bgSlideTop .main_action {
  width: 100%;
}
#background #bgSlideTop .main_action._01 {
  background: url(../img/mainvisual01.jpg) no-repeat center center;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  #background #bgSlideTop .main_action._01 {
    background: url(../img/mainvisual01.jpg) no-repeat center center;
    background-size: cover;
  }
}
#background #bgSlideTop .main_action._02 {
  background: url(../img/mainvisual02.jpg) no-repeat center center;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  #background #bgSlideTop .main_action._02 {
    background: url(../img/mainvisual02.jpg) no-repeat center center;
    background-size: cover;
  }
}
#background #bgSlideTop .main_action._03 {
  background: url(../img/mainvisual03.jpg) no-repeat center center;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  #background #bgSlideTop .main_action._03 {
    background: url(../img/mainvisual03.jpg) no-repeat center center;
    background-size: cover;
  }
}
@media only screen and (max-width: 768px) {
  #background #bgSlideTop .main_action {
    height: 100%;
  }
}
@media only screen and (max-width: 380px) {
  #background #bgSlideTop .main_action {
    height: 100%;
  }
}
#background .kv_scroll {
  width: 1px;
  height: 70px;
  position: absolute;
  left: -4rem;
  top: 50%;
  z-index: 100;
  background-color: #333;
}
@media only screen and (max-width: 768px) {
  #background .kv_scroll {
    display: none;
    bottom: 0%;
  }
}
#background .kv_scroll ._pointer {
  animation: moveScrollPointer 1.8s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}
#background .kv_scroll ._pointer:before {
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  border-radius: 50%;
  background-color: #eee;
}
#background .kv_scroll ._text {
  position: absolute;
  top: -55px;
  left: -7px;
  writing-mode: vertical-lr;
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #333;
}
@media only screen and (max-width: 768px) {
  #background .kv_scroll ._text {
    bottom: -20px;
    color: #fff;
  }
}
@keyframes moveScrollPointer {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, 50px, 0);
  }
}
@keyframes scrollPointerInOut {
  0% {
    transform: scale(0);
  }
  10% {
    transform: scale(1);
  }
  60% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}

.inner-content {
  position: absolute;
  bottom: 10%;
  left: 4%;
  z-index: 2;
  padding: 0px;
  color: #fff;
  font-size: 1.5em;
}
@media only screen and (max-width: 768px) {
  .inner-content {
    bottom: 10%;
    font-size: 3vw;
  }
}

#textAnimation div.txt span {
  position: relative;
  display: inline-block;
  transform: translate3d(0px, 0, 0);
  font-family: "TheanoDidot";
  font-variant-ligatures: none;
  font-size: 12rem;
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 10rem;
}
@media only screen and (max-width: 768px) {
  #textAnimation div.txt span {
    font-size: 6rem;
    line-height: 6rem;
  }
}
#textAnimation div.txt span.opacity {
  opacity: 0 !important;
}

#textAnimation span.b {
  color: #00aeff;
}

#textAnimation .disc {
  text-align: left;
}
#textAnimation p {
  margin-top: 10px;
  color: #fff;
  text-align: left;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.16rem;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  #textAnimation p {
    font-size: 3.5vw;
    font-weight: bold;
  }
}

#textAnimation p .strip_anim {
  position: absolute;
  top: 0;
  left: -101%;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: translate(0%, 0);
}

#textAnimation p.active .text_on {
  animation: 1.2s cubic-bezier(0.25, 0.74, 0.22, 0.99) 0s forwards OPACITY;
}

#textAnimation p.active .strip_anim {
  animation: 1.6s cubic-bezier(0.25, 0.74, 0.22, 0.99) 0s forwards STRIPE;
}

@keyframes OPACITY {
  0% {
    opacity: 0;
  }
  22% {
    opacity: 0;
  }
  23% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes STRIPE {
  0% {
    transform: translate(0%, 0);
  }
  90% {
    transform: translate(215%, 0);
  }
  100% {
    transform: translate(215%, 0);
  }
}
.topMainvisualTextBox {
  margin-top: 4rem;
}
@media only screen and (max-width: 768px) {
  .topMainvisualTextBox {
    width: 95%;
    margin-top: 2rem;
  }
}
.topMainvisualTextBox .whiteB {
  display: inline-block;
  background: #fff;
  font-size: 1.6rem;
  padding: 0.5rem 1.5rem;
  color: #000;
}
@media only screen and (max-width: 768px) {
  .topMainvisualTextBox .whiteB {
    padding: 1rem 1.5rem;
  }
}
.topMainvisualTextBox .whiteB:first-child {
  margin-bottom: 0.5rem;
}

.smallH2 {
  margin-bottom: 30px;
}
.smallH2 h2 {
  font-size: 20px;
  font-weight: bold;
  font-family: Lato, "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, Arial, "MS P Gothic", "MS Pゴシック", sans-serif;
  display: inline-block;
  border-bottom: 4px solid #301209;
  margin-bottom: 15px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .smallH2 h2 {
    font-size: 17px;
  }
}
.smallH2 span {
  display: block;
  font-size: 15px;
  font-weight: bold;
  font-family: Lato, "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, Arial, "MS P Gothic", "MS Pゴシック", sans-serif;
}
@media only screen and (max-width: 768px) {
  .smallH2 span {
    font-size: 13px;
  }
}

.fit {
  width: 100%;
  height: auto;
}

/*=========================================================*/
/*	header*/
/*=========================================================*/
.top-page .header #head_Logo {
  background: #fff;
  padding: 2rem 4rem;
  height: 100px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .top-page .header #head_Logo {
    padding: 3rem 3%;
    width: 24rem;
    height: auto;
  }
}
.top-page .header #head_Logo a {
  display: block;
}
.top-page .header .headerInner {
  background: #31323a;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.top-page .header .headerInner #nav ul li {
  position: relative;
  display: -webkit-flex;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.top-page .header .headerInner #nav ul li a {
  pointer-events: auto;
  position: relative;
  display: block;
  width: 14rem;
  color: #fff;
  font-size: 1.3rem;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  text-align: center;
}
@media only screen and (max-width: 1400px) {
  .top-page .header .headerInner #nav ul li a {
    padding: 0px 15px;
  }
}
.top-page .header .headerInner #nav ul li a span {
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  display: block;
}
.top-page .header .headerInner #nav ul li a .en {
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #aaa;
}
.top-page .header .headerInner #nav ul li a .jp {
  position: relative;
  top: 0;
  left: 0;
}
.top-page .header .headerInner #nav ul li a:hover .en {
  color: #160703;
}
.top-page .header .headerInner #nav ul li a:hover .jp {
  opacity: 1;
}
.top-page .header .headerInner #nav ul li:nth-child(1) a {
  padding: 0px 10px;
}
.top-page .header .headerInner #nav ul li:nth-child(2) a {
  padding: 0px 10px;
}
.top-page .header .headerInner .snsBtnWrap {
  margin-right: 340px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1400px) {
  .top-page .header .headerInner .snsBtnWrap {
    margin-right: 290px;
  }
}
.top-page .header .headerInner .snsBtnWrap .insns {
  display: flex;
}
.top-page .header .headerInner .snsBtnWrap .insns .iconSns {
  margin: 0 6px;
}
.top-page .header .headerInner .overlay_menu {
  top: 0;
  right: 0;
  z-index: 2;
}
.top-page .header .headerInner .overlay_menu ul {
  display: flex;
  justify-content: flex-end;
  height: 100%;
}
.top-page .header .headerInner .overlay_menu ul li {
  height: 100%;
}
.top-page .header .headerInner .overlay_menu ul li a {
  transition: all 0.4s;
}
.top-page .header .headerInner .overlay_menu ul li a:hover {
  opacity: 0.7;
}
.top-page .header .headerInner .overlay_menu ul li a {
  background: #160703;
  color: #fff;
  width: 150px;
  height: 100%;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
  position: relative;
  transition: all 0.3s;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1400px) {
  .top-page .header .headerInner .overlay_menu ul li a {
    width: 140px;
    height: 140px;
    font-size: 14px;
  }
}
.top-page .header .headerInner .overlay_menu ul li a span {
  display: block;
}
.top-page .header .headerInner .overlay_menu ul li a .out .mailIcon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.top-page .header .headerInner .overlay_menu ul li a .out .mailText {
  margin-bottom: 0.5rem;
}
.top-page .header .headerInner .overlay_menu ul li a .out .subText {
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  font-family: acumin-pro-extra-condensed, sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #ddd;
}
.top-page .header nav {
  display: block;
  height: 100%;
}
.top-page .header nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

/*  header(top-page)
---------------------------------------------------------------*/
.top-page header {
  top: 0;
  z-index: 999;
  transition: 0.35s 0.7s;
  position: fixed;
  width: 100%;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.7);
}
@media only screen and (max-width: 768px) {
  .top-page header {
    padding: 0 20px;
  }
}

/*******************************************************************/
/* footer                                                 */
/*******************************************************************/
footer {
  width: 100%;
  margin: 0 auto;
}

footer .btn_pagetop {
  width: 100%;
  text-align: center;
}

footer .btn_pagetop a {
  display: block;
  width: 100%;
  background: #f5f5f5;
  padding: 16px 0 16px 0;
  transition: all 0.5s ease-in-out 0s;
}

footer .fa-angle-up {
  color: #000;
  font-size: 3.4rem !important;
}

footer .btn_pagetop a:hover {
  background: #fff;
}

footer .btn_pagetop a img {
  opacity: 1;
}

footer .btn_pagetop a:hover img {
  opacity: 0.6;
}

@media only screen and (max-width: 768px) {
  /*  header
    ---------------------------------------------------------------*/
  header {
    position: relative;
    top: 0;
    left: 0%;
    width: 100%;
    transform: translate3d(0%, 0px, 0);
    z-index: 20;
    background: #fff;
    box-shadow: 0px 7.5px 18px 1.2px rgba(0, 0, 0, 0.12);
    transition: 0.35s 0.7s;
  }
  header .headerInner {
    display: block;
    height: 70px;
    margin: 0 auto;
    padding: 0 0 0 2%;
  }
  header .headerInner:after {
    content: "";
    display: table;
    clear: both;
  }
  header .headerInner #head_Logo {
    float: left;
    position: relative;
    top: 50%;
    left: 10px;
    transform: translate3d(0, -50%, 0);
  }
  header .headerInner #head_Logo a {
    display: block;
    width: 170px;
  }
  header .headerInner .headerBtn .btt {
    width: 70px;
    height: 70px;
    display: block;
    text-align: center;
    padding-top: 46px;
    position: absolute;
    top: 0;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
  header .headerInner .headerBtn .btn_global {
    background: #006fff;
    color: #fff;
    right: 0px;
  }
  header .headerInner .headerBtn .btn_global:hover {
    background: #187dff;
  }
  header .headerInner .headerBtn .btn_contact {
    display: none;
  }
  header .headerInner .headerBtn .btt .icon {
    display: block;
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    margin: auto;
  }
  header .headerInner .headerBtn .btn_global .icon {
    width: 26px;
  }
  header .headerInner .headerBtn .btn_contact .icon {
    width: 24px;
  }
  header .headerInner .headerBtn .icon img {
    width: 100%;
    height: auto;
  }
  header .headerInner .headerBtn .te {
    color: #fff;
    font-size: 11px;
    position: relative;
    display: inline-block;
    vertical-align: top;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0em;
  }
  .none {
    display: none !important;
  }
  /*  header
    ---------------------------------------------------------------*/
  /*	nav
    ---------------------------------------------------------------*/
  header nav {
    display: none;
  }
  #spNavigation .head {
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: 22;
    background-color: rgba(255, 255, 255, 0.6);
    display: table;
    padding: 3px 0 2px;
    transform: translate3d(0%, 100%, 0);
    transition: all 0.3s ease-in-out 0s;
  }
  #spNavigation .head.scrollActive {
    transform: translate3d(0%, 0px, 0);
  }
  #spNavigation .head .cell {
    display: table-cell;
    vertical-align: bottom;
    width: 20%;
    height: 50px;
    text-align: center;
  }
  #spNavigation .head .cell .menuOut {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #160703;
  }
  #spNavigation .head .cell .subIcon {
    border-radius: 50%;
    color: #fff;
  }
  #spNavigation .head .cell.cell01 .subIcon {
    background: #160703;
  }
  #spNavigation .head .cell.cell02 .subIcon {
    background: #160703;
  }
  #spNavigation .head .cell.cell03 .subIcon {
    background: #160703;
  }
  #spNavigation .head .cell.cell04 .subIcon {
    background: #160703;
  }
  #spNavigation .head .cell.cell05 .subIcon {
    background: #160703;
  }
  #spNavigation .head .cell#regist {
    display: table-cell;
    vertical-align: middle;
    width: 25%;
    height: 50px;
  }
  #spNavigation .head .cell a {
    display: block;
    padding: 4px 0;
  }
  /* text */
  #spNavigation .head .cell a .subIcon {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #spNavigation .head .cell a .subIcon .fa-home {
    padding: 0 0 3px 0;
    font-size: 26px;
  }
  #spNavigation .head .cell a .subIcon .fa-map-marker-alt {
    padding: 0 0 0px 0;
    font-size: 22px;
  }
  #spNavigation .head .cell a .subIcon .fa-phone {
    font-size: 26px;
  }
  #spNavigation .head .cell a .subIcon .fa-envelope {
    padding: 0 0 3px 0;
    font-size: 20px;
  }
  /* text */
  #spNavigation .head .cell a .subList_text {
    font-size: 11px;
    font-weight: bold;
    display: block;
    letter-spacing: -0.06em;
    margin-right: -1px;
  }
  #spNavigation .head .cell a .subList_text:after {
    content: ".";
    width: 0;
    font-size: 0;
    color: transparent;
    margin-right: 1px;
  }
  #spNavigation .head .nav_btn {
    position: relative;
    display: table-cell;
  }
  /* button */
  #spNavigation .head .nav_btn .menuBtn {
    /* width: 50px; */
    padding: 0px 0px 0px 0;
    position: relative;
    top: 0px;
    right: 0px;
  }
  #spNavigation .head .nav_btn .menuBtn a.menu-trigger {
    vertical-align: middle;
  }
  #spNavigation .head .nav_btn .menu-trigger {
    position: relative;
    /* width: 24px; */
    /* height: 25px; */
    display: inline-block;
  }
  #spNavigation .head .nav_btn .menu-trigger div.menu {
    width: 22px;
    height: 19px;
    margin-bottom: 0px;
    position: relative;
  }
  #spNavigation .head .nav_btn .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
  }
  #spNavigation .head .nav_btn .menu-trigger span:nth-of-type(1) {
    top: 0;
    transition: all 0.3s;
  }
  #spNavigation .head .nav_btn .menu-trigger span:nth-of-type(2) {
    top: 8px;
    transition: all 0.3s;
  }
  #spNavigation .head .nav_btn .menu-trigger span:nth-of-type(3) {
    bottom: 0px;
    transition: all 0.3s;
  }
  .menuOpen #spNavigation .head .nav_btn .menu-trigger span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
    top: -2px;
  }
  .menuOpen #spNavigation .head .nav_btn .menu-trigger span:nth-of-type(2) {
    opacity: 0;
  }
  .menuOpen #spNavigation .head .nav_btn .menu-trigger span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
  }
  /*******************************************************************/
  /* navInner                                                 */
  /*******************************************************************/
  #navInner {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background: #0f3278;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 21;
    overflow-y: auto;
    /* -webkit-overflow-scrolling: touch; */
    /* overflow-scrolling: touch; */
    transform: translate3d(-100%, 0px, 0);
    transition: all 0.4s cubic-bezier(1, 0, 0, 1);
  }
  .menuOpen #navInner {
    transform: translate3d(0%, 0px, 0) !important;
  }
  #navInner .navIn {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background: #160703;
    position: relative;
    bottom: 0;
    right: 0;
    padding-bottom: 60px;
    overflow-y: auto;
  }
  #navInner .navIn li {
    text-align: left;
  }
  #navInner .navIn ul li div.sub_btn {
    position: relative;
    color: #fff;
    font-size: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  }
  #navInner .navIn ul li div.sub_btn::before,
  #navInner .navIn ul li div.sub_btn::after {
    content: "";
    border: 1.6px solid transparent;
    display: block;
    width: 10px;
    height: 10px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    transform: rotate(45deg) translate3d(0px, -4px, 0);
    border-top: none;
    border-left: none;
    right: 20px;
    border-color: #fff;
    /* transition: all 0.2s ease-in-out 0.0s; */
  }
  #navInner .navIn ul li div.sub_btn.open::before,
  #navInner .navIn ul li div.sub_btn.open::after {
    content: "";
    border: 1.6px solid transparent;
    display: block;
    width: 10px;
    height: 10px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    transform: rotate(-135deg) translate3d(0px, -4px, 0);
    border-top: none;
    border-left: none;
    right: 14px;
    border-color: #fff;
    /* transition: all 0.2s ease-in-out 0.0s; */
  }
  #navInner .navIn ul li ul.sub_item {
    text-align: left;
    background: #061d4c;
    display: none;
  }
  #navInner .navIn ul li ul.sub_item a {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  }
  #navInner .navIn ul.m_menu li a,
  #navInner .navIn ul.s_menu li a {
    position: relative;
    color: #fff;
    font-size: 14px;
    padding: 14px 20px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  }
  #navInner .navIn li.nextOpen {
    position: relative;
    color: #607db7;
    font-size: 14px;
    padding: 14px 20px;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  }
  /*	footer SNS
    ---------------------------------------------------------------*/
  #navInner .navIn .f_tell_m a {
    width: 90%;
    margin: 12% auto;
    padding: 12px 0;
    display: block;
    background: #fff;
  }
  #navInner .f_tell_m a {
    color: #301209;
    text-align: center;
  }
  #navInner .f_tell_m a .tell_top {
    font-size: 4vw;
    display: block;
  }
  #navInner .f_tell_m a .subIcon {
    font-size: 7vw;
    padding-right: 5px;
  }
  #navInner .f_tell_m a .subList_text {
    font-size: 7vw;
    letter-spacing: 0.04em;
  }
}
@media screen and (min-width: 769px) {
  /*<start>==========================================================*/
  body {
    font-size: 80%;
  }
  .sp,
  br.s {
    display: none !important;
  }
  .text {
    font-size: 1.8rem;
    line-height: 3.6rem;
    letter-spacing: 0rem;
  }
  .text02 {
    font-size: 1.6rem;
    line-height: 3.6rem;
    letter-spacing: 0rem;
  }
  .text03 {
    font-size: 1.5rem;
    line-height: 3.2rem;
    letter-spacing: 0rem;
  }
  .text14 {
    font-size: 1.3rem;
    line-height: 2.3rem;
    letter-spacing: 0.04em;
  }
  .text13 {
    font-size: 13px;
    line-height: 1.95;
    letter-spacing: 0.04em;
  }
  /*=========================================================*/
  /*	○○○*/
  /*=========================================================*/
  /*	○○○○
  ---------------------------------------------------------------*/
  /*	○○○○○
  -----------------------------------------------------------*/
  /*<end>============================================================*/
}
@media screen and (max-width: 1400px) {
  .text02 {
    font-size: 1.6rem;
    line-height: 3.2rem;
    letter-spacing: 0rem;
  }
  .text03 {
    font-size: 1.6rem;
    line-height: 3.2rem;
    letter-spacing: 0rem;
  }
}
@media screen and (max-width: 768px) {
  /*<start>==========================================================*/
  html {
    font-size: 75%;
  }
  body {
    font-size: 0.9rem;
  }
  html,
  body {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
  }
  .pc,
  br.p {
    display: none !important;
  }
  .text,
  .text16 {
    font-size: 1.66rem;
    line-height: 3rem;
    letter-spacing: 0.04em;
  }
  .text02 {
    font-size: 1.66rem;
    line-height: 3rem;
    letter-spacing: 0.04em;
  }
  .text03 {
    font-size: 1.66rem;
    line-height: 3rem;
    letter-spacing: 0.04em;
  }
  .text14 {
    font-size: 1.6rem;
    line-height: 2.8rem;
    letter-spacing: 0.02em;
  }
  img {
    width: 100%;
    height: auto;
  }
  /*<end>============================================================*/
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.180644vw;
  }
}
@media screen and (min-width: 769px) {
  /*PC <start>==========================================================*/
  html {
    font-size: 0.7806442167vw;
  }
  body {
    font-size: 0.16rem;
  }
  .sp,
  br.s {
    display: none !important;
  }
  /*<end>============================================================*/
}
@media screen and (min-width: 1401px) {
  /*<start>==========================================================*/
  html {
    font-size: 63.5%;
  }
  /*<end>============================================================*/
}/*# sourceMappingURL=style.css.map */