@charset "UTF-8";
/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
/* 要素 フォントサイズ・マージン・パディングをリセット */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, abbr, address, cite, code, del, dfn, em,
img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl,
dt, dd, ol, ul, li, fieldset, form, label, legend, table,
caption, tbody, tfoot, thead, tr, th, td, article, aside,
canvas, details, figcaption, figure, footer, header, hgroup,
menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

/* 新規追加要素をブロック要素化 */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* ulのマーカー非表示 */
ol, ul {
  list-style: none;
}

/* 引用符の非表示 */
blockquote, q {
  quotes: none;
}

/* blockquote要素、q要素の前後にコンテンツ非表示 */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* フォントサイズ　リセット フォントの縦方向 ベースライン揃え 点線削除 */
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  outline: none;
}

a:hover, a:active {
  text-decoration: none;
  /* opacity: 0.75; */
  /* filter: alpha(opacity=75); */
}

a,
a * {
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  font-family: inherit;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  /* 追加 */
}

/* ins要素 デフォルトセット 色を変える場合はここで変更 */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素 デフォルトセット 色やフォントスタイルを変える場合はここで変更 */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* テキスト 打ち消し線 */
del {
  text-decoration: line-through;
}

/* IE　デフォルトで点線を下線表示設定　下線設定 マウスオーバー時 ヘルプカーソル表示可 */
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*　隣接するセルのボーダーを重ねて表示　*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 水平罫線デフォルトリセット */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/* 縦方向の揃え 中央揃え */
input,
select {
  vertical-align: middle;
}

/* 画像を縦に並べた時に余白0 */
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  /* width: 100%; */
  max-width: 100%;
  height: auto;
}

/*box-sizingを全ブラウザに対応*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.clearfix:after {
  overflow: hidden;
  visibility: hidden;
  height: 0;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
}

br {
  line-height: inherit;
}

/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
.xl_contain {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  max-width: 1000px;
}

@media screen and (max-width: 1000px) {
  .xl_contain {
    padding: 0 2.5rem;
  }
}

.lg_contain {
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

@media screen and (max-width: 800px) {
  .lg_contain {
    padding: 0 2.5rem;
  }
}

.md_contain {
  position: relative;
  width: 100%;
  padding: 0 0;
  margin: 0 auto;
  max-width: 768px;
}

@media screen and (max-width: 768px) {
  .md_contain {
    padding: 0 1rem;
  }
}

.sm_contain {
  position: relative;
  width: 100%;
  padding: 0 0;
  margin: 0 auto;
  max-width: 680px;
}

@media screen and (max-width: 680px) {
  .sm_contain {
    padding: 0 1rem;
  }
}

/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
/* 表示切り替え */
.sp_on {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .pc_on {
    display: none !important;
  }
  .sp_on {
    display: block !important;
  }
}

/* LAZYLOAD SETTINGS */
.blurUp {
  -webkit-filter: blur(5px);
          filter: blur(5px);
  transition: filter 400ms, -webkit-filter 400ms;
}

.blurUp.lazyloaded {
  -webkit-filter: blur(0);
          filter: blur(0);
}

/*----------------------------------------------------------------*/
/*----------------------------------------------------------------*/
/* flex layout */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.f_wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.f_content_stretch {
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
}

.f_content_between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.f_content_around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.f_content_evenly {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.f_content_start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.f_content_center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.f_content_end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.f_align_start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.f_align_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.f_align_end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.f_align_stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.f_column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.f_grow {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.w_full {
  width: 100%;
}

.f_screen {
  width: 100vw;
}

.w_1-2 {
  width: 50%;
}

.w_1-3 {
  width: 33.333333%;
}

.w_2-3 {
  width: 66.666667%;
}

.w_1-4 {
  width: 25%;
}

.w_1-5 {
  width: 20%;
}

.w_1-6 {
  width: 16.666667%;
}

.w_5-6 {
  width: 83.333333%;
}

.left_on {
  text-align: left;
}

.right_on {
  text-align: right;
}

.center_on {
  text-align: center;
}

.inview {
  opacity: 0;
  -webkit-transform: translate(0, 10%);
          transform: translate(0, 10%);
  -webkit-transition: 1s;
  transition: 1s;
}

.inview.is-show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.thumb {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.thumb img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: 'object-fit: cover; object-position: center';
}

/*--------------------------------------------------------------
    # メインコンテンツ
--------------------------------------------------------------*/
html {
  font-size: 62.5%;
  line-height: 1.714;
  overflow: hidden;
  scroll-behavior: smooth;
  overflow-y: scroll;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 2.4vw;
  }
}

body {
  width: 100%;
  line-height: 1.75;
  font-family: YuGothicR, メイリオ, Meiryo, sans-serif;
}

#wrapper {
  overflow: hidden;
  position: relative;
}

#wrapper main {
  position: relative;
  padding-top: 11rem;
}

@media screen and (max-width: 768px) {
  #wrapper main {
    padding-top: 5.5rem;
  }
}

/*--------------------------------------------------------------
    # text & background style
--------------------------------------------------------------*/
.bg_green {
  background: #66aa41;
}

.bg_white {
  background: #fff;
}

.bg_wblue {
  background: #41a8f4;
}

.t_white {
  color: #fff;
}

.t_orange {
  color: #f8634c;
}

.t_blue {
  color: #003798;
}

.t_wblue {
  color: #00abe4;
}

.section_ttl {
  font-family: RyuminProR;
  font-size: 4rem;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .section_ttl {
    font-size: 2.5rem;
    line-height: 1.4;
  }
}

.section_ttl span {
  font-size: 2.4rem;
}

@media screen and (max-width: 768px) {
  .section_ttl span {
    font-size: 1.6rem;
  }
}

.stxt {
  font-size: 1.2rem;
}

.ntxt {
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .ntxt {
    font-size: 1.6rem;
  }
}

.mtxt {
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .mtxt {
    font-size: 1.65rem;
  }
}

.lh15 {
  line-height: 1.5;
}

.lh17 {
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  .lh17 {
    line-height: 1.57;
  }
}

.lh2 {
  line-height: 2;
}

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

.link_btn {
  position: relative;
  display: table;
  margin: auto;
  max-width: 75%;
  width: 100%;
  padding: 1.5rem 0;
  border-radius: 10rem;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .link_btn {
    max-width: 100%;
    padding: 1.3rem 3rem;
    text-align: left;
    font-size: 1.4rem;
  }
}

.link_btn::after {
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 1.5rem;
  content: '';
  width: 1.1rem;
  height: 1.8rem;
}

.link_btn.arr_w::after {
  background: url(../images/arr_white_sp.png) 95% center no-repeat;
  background-size: contain;
}

table.infors_grid {
  width: 100%;
  margin-bottom: 1rem;
  border-collapse: collapse;
  border: 1px solid #CFCFCF;
}

@media screen and (max-width: 768px) {
  table.infors_grid tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

table.infors_grid th {
  width: 50%;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: left;
  padding: 1.5rem 2rem;
  background: #E5E5E5;
  border-bottom: 1px solid #CFCFCF;
  border-right: 1px solid #CFCFCF;
}

@media screen and (max-width: 768px) {
  table.infors_grid th {
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.7;
    padding: 0.8rem 1.5rem;
  }
}

table.infors_grid td {
  width: 50%;
  font-size: 1.4rem;
  line-height: 1.5;
  vertical-align: middle;
  padding: 1.5rem 2rem;
  background-color: #fff;
  border-bottom: 1px solid #CFCFCF;
}

@media screen and (max-width: 768px) {
  table.infors_grid td {
    width: 100%;
    font-size: 1.5rem;
  }
}

table.table_style1 {
  width: 100%;
  border-left: 1px solid #CFCFCF;
  border-collapse: collapse;
}

table.table_style1 .ttl {
  border-bottom: 1px solid #CFCFCF;
  background: #00AE99;
  color: #fff;
}

table.table_style1 .ttl th, table.table_style1 .ttl td {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

table.table_style1 td {
  min-width: 73.5rem;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: left;
  padding: 1.5rem 0;
  padding-left: 2rem;
  padding-right: 1rem;
  border-bottom: 1px solid #CFCFCF;
  border-right: 1px solid #CFCFCF;
}

table.table_style1 th {
  min-width: 26rem;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: left;
  padding: 1.5rem 0;
  padding-left: 3.5rem;
  border-bottom: 1px solid #CFCFCF;
  border-right: 1px solid #CFCFCF;
}

table.table_style1 .th_style1 {
  min-width: 13rem;
}

table.table_style1 .th_style2 {
  padding-left: 2rem;
  min-width: 13rem;
}

table.table_style2 {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #B2B2B2;
}

@media screen and (max-width: 768px) {
  table.table_style2 tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

table.table_style2 th {
  background: #E5E5E5;
  border-right: 1px solid #B2B2B2;
  border-bottom: 1px solid #B2B2B2;
  padding: 1.5rem 0;
  padding-left: 2rem;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  table.table_style2 th {
    width: 100%;
    padding: 1rem 0 1rem 2rem;
  }
}

table.table_style2 td {
  background: #FFFFFF;
  color: #222222;
  border-bottom: 1px solid #B2B2B2;
  border-right: 1px solid #B2B2B2;
  padding: 1.5rem 0;
  padding-left: 3rem;
  font-size: 1.4rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  table.table_style2 td {
    width: 100%;
    padding: 1rem 1rem 1rem 2rem;
  }
}

table.table_style3 {
  list-style: inside;
  width: 100%;
  border-top: 1px solid #B2B2B2;
  border-left: 1px solid #b2b2b2;
  border-collapse: collapse;
}

table.table_style3 th {
  width: 20%;
  background: #FFFFFF;
  color: #222222;
  text-align: left;
  padding: 2rem 0;
  padding-left: 3rem;
  font-size: 1.4rem;
  line-height: 1.5;
  border-right: 1px solid #B2B2B2;
  border-bottom: 1px solid #B2B2B2;
}

@media screen and (max-width: 768px) {
  table.table_style3 th {
    vertical-align: middle;
    width: 25%;
    padding: 1rem 1rem 1rem 1rem;
  }
}

table.table_style3 td {
  width: 80%;
  padding: 2rem 0 2rem 2rem;
  font-size: 1.4rem;
  line-height: 1.5;
  border-right: 1px solid #B2B2B2;
  border-bottom: 1px solid #B2B2B2;
  color: #222222;
}

@media screen and (max-width: 768px) {
  table.table_style3 td {
    width: 75%;
    word-break: break-all;
    padding: 1rem 1rem 1rem 1rem;
  }
}

table.table_style3 .th_style1,
table.table_style3 .td_style1 {
  background-color: #E5E5E5;
  text-align: center;
  padding-left: 0;
}

@media screen and (max-width: 768px) {
  table.table_style3 .th_style1,
  table.table_style3 .td_style1 {
    padding-right: 0;
  }
}

table.table_style4 {
  margin-bottom: 2.5rem;
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #C5C5C5;
  border-left: 1px solid #C5C5C5;
}

@media screen and (max-width: 768px) {
  table.table_style4 tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

table.table_style4 th {
  width: 20%;
  background: #E5E5E5;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: left;
  padding: 2rem 0;
  padding-left: 2rem;
  border-right: 1px solid #C5C5C5;
  border-bottom: 1px solid #C5C5C5;
}

@media screen and (max-width: 768px) {
  table.table_style4 th {
    width: 100%;
    padding: 1rem 0 1rem 1.5rem;
  }
}

table.table_style4 td {
  width: 80%;
  background: #FFFFFF;
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 2rem 0 2rem 2rem;
  border-right: 1px solid #C5C5C5;
  border-bottom: 1px solid #C5C5C5;
}

@media screen and (max-width: 768px) {
  table.table_style4 td {
    width: 100%;
    padding: 1rem 0 1rem 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  ul.contact_grid {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  ul.contact_grid li {
    width: 100%;
  }
}

ul.contact_grid li:first-of-type {
  padding-right: 5rem;
}

@media screen and (max-width: 768px) {
  ul.contact_grid li:first-of-type {
    padding: 0;
    margin-bottom: 2rem;
  }
}

ul.contact_grid a.contact_link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #00ae99;
  width: 30.5rem;
  text-align: center;
  font-size: 1.8rem;
  line-height: 5.2rem;
}

ul.contact_grid a.contact_link picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 1rem;
}

ul.contact_grid a.contact_link picture img {
  width: 2.1rem;
}

@media screen and (max-width: 768px) {
  ul.contact_grid a.contact_link picture img {
    width: 1.7rem;
  }
}

@media screen and (max-width: 768px) {
  ul.contact_grid a.contact_link {
    width: 100%;
    font-size: 1.55rem;
    line-height: 4.5rem;
  }
}

ul.type_grid {
  width: 100%;
  list-style: none;
}

ul.type_grid li {
  position: relative;
  font-size: 1.4rem;
  line-height: 2;
}

ul.type_grid li::before {
  position: relative;
  display: inline-block;
  background: #00ae99;
  padding: 0 0.3rem;
  margin-right: 0.5rem;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #fff;
}

ul.type_grid li:nth-of-type(1)::before {
  content: 'A';
}

ul.type_grid li:nth-of-type(2)::before {
  content: 'B';
}

ul.type_grid li:nth-of-type(3)::before {
  content: 'C';
}

@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes fadeIn {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@-webkit-keyframes stretch-animate {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  28% {
    -webkit-transform: scale(1.15, 0.85);
            transform: scale(1.15, 0.85);
  }
  50% {
    -webkit-transform: scale(0.9, 1.1);
            transform: scale(0.9, 1.1);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@keyframes stretch-animate {
  0% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  28% {
    -webkit-transform: scale(1.15, 0.85);
            transform: scale(1.15, 0.85);
  }
  50% {
    -webkit-transform: scale(0.9, 1.1);
            transform: scale(0.9, 1.1);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  33.33333% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  66.66667% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes floating {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  33.33333% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  66.66667% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
  100% {
    -webkit-transform: translate(0%, -30px);
            transform: translate(0%, -30px);
  }
}

@keyframes fuwafuwa {
  0% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
  100% {
    -webkit-transform: translate(0%, -30px);
            transform: translate(0%, -30px);
  }
}

@-webkit-keyframes cloud {
  0% {
    -webkit-transform: translate(-30px, 0%);
            transform: translate(-30px, 0%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    opacity: 1;
  }
}

@keyframes cloud {
  0% {
    -webkit-transform: translate(-30px, 0%);
            transform: translate(-30px, 0%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    opacity: 1;
  }
}

@-webkit-keyframes cloud-left {
  0% {
    -webkit-transform: translate(-100%, 0%);
            transform: translate(-100%, 0%);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    opacity: 1;
  }
}

@keyframes cloud-left {
  0% {
    -webkit-transform: translate(-100%, 0%);
            transform: translate(-100%, 0%);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    opacity: 1;
  }
}

@-webkit-keyframes cloud-right {
  0% {
    -webkit-transform: translate(200%, 0%);
            transform: translate(200%, 0%);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    opacity: 1;
  }
}

@keyframes cloud-right {
  0% {
    -webkit-transform: translate(200%, 0%);
            transform: translate(200%, 0%);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    opacity: 1;
  }
}

@-webkit-keyframes cloud-down {
  0% {
    -webkit-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    opacity: 1;
  }
}

@keyframes cloud-down {
  0% {
    -webkit-transform: translate(0%, -50%);
            transform: translate(0%, -50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    opacity: 1;
  }
}

@-webkit-keyframes shine {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -250%, 0);
            transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -250%, 0);
    background: rgba(255, 255, 255, 0.5);
  }
  70% {
    -webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -250%, 0);
            transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -250%, 0);
    background: rgba(255, 255, 255, 0.5);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, 190%, 0);
            transform: rotate3d(0, 0, 1, -45deg) translate3d(0, 190%, 0);
    background: rgba(255, 255, 255, 0.5);
  }
}

@keyframes shine {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -250%, 0);
            transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -250%, 0);
    background: rgba(255, 255, 255, 0.5);
  }
  70% {
    -webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -250%, 0);
            transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -250%, 0);
    background: rgba(255, 255, 255, 0.5);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, 190%, 0);
            transform: rotate3d(0, 0, 1, -45deg) translate3d(0, 190%, 0);
    background: rgba(255, 255, 255, 0.5);
  }
}

@-webkit-keyframes ball {
  0% {
    -webkit-transform: translate(0%, 0%) rotateX(25deg);
            transform: translate(0%, 0%) rotateX(25deg);
  }
  100% {
    -webkit-transform: translate(0%, -30px);
            transform: translate(0%, -30px);
  }
}

@keyframes ball {
  0% {
    -webkit-transform: translate(0%, 0%) rotateX(25deg);
            transform: translate(0%, 0%) rotateX(25deg);
  }
  100% {
    -webkit-transform: translate(0%, -30px);
            transform: translate(0%, -30px);
  }
}

@-webkit-keyframes koton {
  0% {
    -webkit-transform: translate(0%, -100%);
            transform: translate(0%, -100%);
    opacity: 0;
  }
  20% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
  30% {
    -webkit-transform: translate(0%, -10%);
            transform: translate(0%, -10%);
  }
  50% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
  60% {
    -webkit-transform: translate(0%, -3%);
            transform: translate(0%, -3%);
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
  90% {
    -webkit-transform: translate(0%, -1%);
            transform: translate(0%, -1%);
  }
  100% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    opacity: 1;
  }
}

@keyframes koton {
  0% {
    -webkit-transform: translate(0%, -100%);
            transform: translate(0%, -100%);
    opacity: 0;
  }
  20% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
  30% {
    -webkit-transform: translate(0%, -10%);
            transform: translate(0%, -10%);
  }
  50% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
  60% {
    -webkit-transform: translate(0%, -3%);
            transform: translate(0%, -3%);
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
  90% {
    -webkit-transform: translate(0%, -1%);
            transform: translate(0%, -1%);
  }
  100% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    opacity: 1;
  }
}

@-webkit-keyframes jump {
  0% {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
  3% {
    -webkit-transform: translate(0, -20px);
            transform: translate(0, -20px);
  }
  5% {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
  6% {
    -webkit-transform: translate(0, -5px);
            transform: translate(0, -5px);
  }
  7% {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
  100% {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
}

@keyframes jump {
  0% {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
  3% {
    -webkit-transform: translate(0, -20px);
            transform: translate(0, -20px);
  }
  5% {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
  6% {
    -webkit-transform: translate(0, -5px);
            transform: translate(0, -5px);
  }
  7% {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
  100% {
    -webkit-transform: translate(0, 0px);
            transform: translate(0, 0px);
  }
}

@-webkit-keyframes exclamation {
  0% {
    -webkit-transform: translate(0%, 0%) rotateX(25deg);
            transform: translate(0%, 0%) rotateX(25deg);
  }
  100% {
    -webkit-transform: translate(0%, -15px);
            transform: translate(0%, -15px);
  }
}

@keyframes exclamation {
  0% {
    -webkit-transform: translate(0%, 0%) rotateX(25deg);
            transform: translate(0%, 0%) rotateX(25deg);
  }
  100% {
    -webkit-transform: translate(0%, -15px);
            transform: translate(0%, -15px);
  }
}

.box1__text3, .p-section__top__textbox4, .box12, .box13, .animation {
  visibility: hidden;
}

.box1__text3.scrolled, .p-section__top__textbox4.scrolled, .box12.scrolled, .box13.scrolled, .animation.scrolled {
  visibility: visible;
}

header {
  position: fixed;
  width: 100%;
  z-index: 10000;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /*	グローバナビ（スマホ用）- global navigator(smartphone)
    ---------------------------------*/
}

header.over {
  -webkit-box-shadow: 0 5px 10px #0000002f;
          box-shadow: 0 5px 10px #0000002f;
}

header .header_menu {
  height: 11rem;
}

@media screen and (max-width: 768px) {
  header .header_menu {
    height: 5.5rem;
    padding-right: 0;
    padding-left: 1rem;
  }
}

header .header_menu h1.hd_logo {
  position: relative;
  z-index: 10000;
}

@media screen and (max-width: 1000px) {
  header .header_menu h1.hd_logo {
    padding-left: 1rem;
  }
}

@media screen and (max-width: 768px) {
  header .header_menu h1.hd_logo {
    width: 50%;
    padding-left: 0.5rem;
  }
}

header .header_menu .tel_contact a.tel_link {
  margin-right: 1rem;
  font-family: YuGothicB;
  font-size: 1.1rem;
  text-align: center;
}

header .header_menu .tel_contact a.tel_link img {
  margin-right: 1rem;
}

header .header_menu .tel_contact a.contact_link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #00ae99;
  width: 18.6rem;
  font-family: YuGothicR;
  font-size: 1.3rem;
  line-height: 3.2rem;
  color: #fff;
}

header .header_menu .tel_contact a.contact_link:hover {
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  header .header_menu .tel_contact {
    display: none;
  }
}

header .header_menu ul.hd_menu {
  width: 100%;
}

@media screen and (max-width: 768px) {
  header .header_menu ul.hd_menu {
    display: none;
  }
}

header .header_menu ul.hd_menu li {
  border-left: solid #dedede 1px;
}

header .header_menu ul.hd_menu li:first-of-type {
  width: 4.9rem;
}

header .header_menu ul.hd_menu li:last-child {
  border-right: solid #dedede 1px;
}

header .header_menu ul.hd_menu li a {
  width: 100%;
  text-align: center;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-size: 1.3rem;
  line-height: 2.1rem;
}

header .header_menu ul.hd_menu li a img {
  margin: auto;
}

header .navToggle {
  position: relative;
  display: none;
  z-index: 10000;
}

@media screen and (max-width: 768px) {
  header .navToggle {
    display: inline-block;
    width: 5.5rem;
    height: 5.5rem;
    padding: 1.7rem 1.4rem;
    cursor: pointer;
    z-index: 10010;
  }
  header .navToggle div {
    position: relative;
  }
  header .navToggle span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background: #000;
    left: 0;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  header .navToggle span:nth-child(1) {
    top: 0;
  }
  header .navToggle span:nth-child(2) {
    top: 0.95rem;
  }
  header .navToggle span:nth-child(3) {
    top: 1.9rem;
  }
}

header nav.sp-nav {
  display: none;
}

@media screen and (max-width: 768px) {
  header nav.sp-nav {
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 9000;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    -webkit-transition: opacity 0.2s, visibility 0s 0.2s, -webkit-transform 0.2s;
    transition: opacity 0.2s, visibility 0s 0.2s, -webkit-transform 0.2s;
    transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
    transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s, -webkit-transform 0.2s;
  }
  header nav.sp-nav a {
    display: inline-block;
  }
  header nav.sp-nav a* {
    -webkit-transition: 0s;
    transition: 0s;
  }
  header nav.sp-nav .logo {
    width: 100%;
    padding: 13vw 0 0;
  }
  header nav.sp-nav .logo img {
    margin: 0;
    text-align: left;
  }
  header nav.sp-nav ul.l_menu {
    display: block;
    width: 100%;
    padding: 0 2.5rem;
    border-top: solid #c9c9c9 1px;
  }
  header nav.sp-nav ul.l_menu li.sub-menu-li {
    position: relative;
    border-bottom: solid #c9c9c9 1px;
    padding: 1.04rem 0;
  }
  header nav.sp-nav ul.l_menu li.sub-menu-li span {
    font-size: 1.55rem;
    line-height: 1.5;
  }
  header nav.sp-nav ul.l_menu li.sub-menu-li.home img {
    width: 3rem;
  }
  header nav.sp-nav ul.l_menu li.hambugar-contact {
    width: 100%;
    padding: 3.5rem 0;
  }
  header nav.sp-nav ul.l_menu li.hambugar-contact a.tel_link p {
    font-family: RyuminProM;
    font-size: 1.5rem;
  }
  header nav.sp-nav ul.l_menu li.hambugar-contact a.blc-contact {
    background: #00ae99;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 4.4rem;
    margin-top: 1.3rem;
    font-size: 1.5rem;
    line-height: 1;
    color: #fff;
  }
  header nav.sp-nav ul.l_menu li.hambugar-contact a.blc-contact img {
    width: 1.8rem;
    margin-right: 2rem;
  }
}

header.open nav.sp-nav {
  display: block;
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
}

header.open .navToggle span:nth-child(1) {
  top: 0.95rem;
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}

header.open .navToggle span:nth-child(2) {
  width: 0;
  left: 50%;
}

header.open .navToggle span:nth-child(3) {
  top: 0.95rem;
  -webkit-transform: rotate(-315deg);
          transform: rotate(-315deg);
}

footer {
  position: relative;
  background: #139484;
  color: #fff;
}

footer .ft_top {
  background: #00AE99;
}

footer .ft_top .xl_contain {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

footer .ft-copyright {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.2rem;
  line-height: 1.5;
}

section.hero {
  padding-top: 21rem;
  padding-bottom: 21rem;
  background: url(../images/mv_bg_01.jpg) center center no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  section.hero {
    padding-top: 16rem;
    padding-bottom: 15.5rem;
    background: url(../images/mv_bg_01_sp.jpg) center center no-repeat;
  }
}

section.flow {
  background: url(../images/index_bg_02.jpg) bottom center no-repeat, -webkit-gradient(linear, left top, left bottom, from(#c8e2f9), to(#e1ecfa));
  background: url(../images/index_bg_02.jpg) bottom center no-repeat, linear-gradient(#c8e2f9, #e1ecfa);
  background-size: auto, auto;
}

section.flow .xl_contain {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

@media screen and (max-width: 768px) {
  section.flow .xl_contain {
    padding-top: 3rem;
    padding-bottom: 4.5rem;
  }
}

section.flow h3.section_ttl {
  margin-bottom: 3rem;
}

section.flow .desc1 {
  margin-bottom: 5rem;
}

@media screen and (max-width: 768px) {
  section.flow .desc1 {
    margin-bottom: 3.7rem;
  }
}

section.flow .desc1 p.thumb {
  max-width: 25%;
}

@media screen and (max-width: 768px) {
  section.flow .desc1 p.thumb {
    display: none;
  }
}

section.flow .desc1 p.ntxt {
  width: 70%;
}

@media screen and (max-width: 768px) {
  section.flow .desc1 p.ntxt {
    width: 100%;
  }
}

section.flow .link_grid {
  margin-bottom: 8rem;
}

section.flow h4.block_label1,
section.flow h4.block_label2 {
  margin-bottom: 1rem;
  font-family: RyuminProM;
}

@media screen and (max-width: 768px) {
  section.flow h4.block_label1,
  section.flow h4.block_label2 {
    text-align: left;
  }
}

section.flow table.infors_grid {
  margin-bottom: 2rem;
}

section.flow .block_desc {
  margin-top: 5rem;
  font-family: RyuminProR;
}

@media screen and (max-width: 768px) {
  section.flow .block_desc {
    margin-top: 3rem;
    text-align: left;
    line-height: 1.85;
  }
}

section.contact_nav {
  background: url(../images/index_bg_03.jpg) bottom center no-repeat;
}

@media screen and (max-width: 768px) {
  section.contact_nav {
    background: url(../images/index_bg_03_sp.jpg) bottom center no-repeat;
    background-size: cover;
  }
}

section.contact_nav .xl_contain {
  height: 25rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

@media screen and (max-width: 768px) {
  section.contact_nav .xl_contain {
    height: 21.2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

section.contact_nav .xl_contain h3 {
  width: 100%;
  font-family: RyuminProR;
  font-size: 3rem;
}

@media screen and (max-width: 768px) {
  section.contact_nav .xl_contain h3 {
    font-size: 2.2rem;
  }
}

section.pcb_example .xl_contain {
  padding-top: 7rem;
  padding-bottom: 5rem;
}

@media screen and (max-width: 768px) {
  section.pcb_example .xl_contain {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

section.pcb_example .xl_contain h3.section_ttl {
  margin-bottom: 6rem;
}

@media screen and (max-width: 768px) {
  section.pcb_example .xl_contain h3.section_ttl {
    margin-bottom: 2.5rem;
  }
}

section.pcb_example .xl_contain .scroll_box {
  width: 100%;
  height: auto;
  overflow-x: auto;
}

section.pcb_example .xl_contain .scroll_box::-webkit-scrollbar {
  width: 1rem;
  height: 1rem;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 1rem;
  background: #b4b4b4;
}

section.pcb_example .xl_contain .scroll_box::-webkit-scrollbar-track {
  width: 1rem;
  height: 1rem;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 1rem;
  background: #b4b4b4;
}

section.pcb_example .xl_contain .scroll_box::-webkit-scrollbar-thumb {
  border-radius: 2rem;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background: #555;
}

section.pcb_example .seperate {
  height: 20rem;
  background: url(../images/contact_nav_bg.jpg) center center no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  section.pcb_example .seperate {
    height: 16.7rem;
  }
}

section.disposal .xl_contain {
  padding-top: 7rem;
  padding-bottom: 5rem;
}

@media screen and (max-width: 768px) {
  section.disposal .xl_contain {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

section.disposal .xl_contain h3.section_ttl {
  margin-bottom: 4rem;
}

@media screen and (max-width: 768px) {
  section.disposal .xl_contain h3.section_ttl {
    margin-bottom: 0;
  }
}

section.disposal .xl_contain ul.disposal_grid {
  width: 100%;
  list-style: none;
}

section.disposal .xl_contain ul.disposal_grid li.disposal_block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  section.disposal .xl_contain ul.disposal_grid li.disposal_block {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-top: 3rem;
  }
}

section.disposal .xl_contain ul.disposal_grid li.disposal_block div.step_block {
  width: 19rem;
  height: 19rem;
  border-radius: 100%;
  border: solid #00ae99 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  section.disposal .xl_contain ul.disposal_grid li.disposal_block div.step_block {
    width: 11rem;
    height: 11rem;
  }
}

section.disposal .xl_contain ul.disposal_grid li.disposal_block div.step_block p {
  text-align: center;
}

section.disposal .xl_contain ul.disposal_grid li.disposal_block div.step_block span {
  display: block;
  font-family: RyuminProR;
  color: #00ae99;
}

section.disposal .xl_contain ul.disposal_grid li.disposal_block div.step_block span:first-of-type {
  font-size: 2rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  section.disposal .xl_contain ul.disposal_grid li.disposal_block div.step_block span:first-of-type {
    font-size: 1.6rem;
  }
}

section.disposal .xl_contain ul.disposal_grid li.disposal_block div.step_block span:last-of-type {
  font-size: 2.5rem;
  line-height: 1.28;
}

@media screen and (max-width: 768px) {
  section.disposal .xl_contain ul.disposal_grid li.disposal_block div.step_block span:last-of-type {
    font-size: 2rem;
  }
}

section.disposal .xl_contain ul.disposal_grid li.disposal_block div.content {
  position: relative;
  width: calc( 100% - 21rem);
  padding-left: 2rem;
  padding-right: 1rem;
}

@media screen and (max-width: 768px) {
  section.disposal .xl_contain ul.disposal_grid li.disposal_block div.content {
    width: calc( 100% - 12.5rem);
    padding-left: 0;
    padding-right: 0;
  }
}

section.disposal .xl_contain ul.disposal_grid li.disposal_block.step1 .content {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  section.disposal .xl_contain ul.disposal_grid li.disposal_block.step1 .content {
    padding-top: 0;
    padding-bottom: 3rem;
  }
}

section.disposal .xl_contain ul.disposal_grid li.disposal_block.step1 .content .ntxt {
  margin-bottom: 3rem;
}

@media screen and (max-width: 768px) {
  section.disposal .xl_contain ul.disposal_grid li.disposal_block.step1 .content .ntxt {
    margin-bottom: 1rem;
  }
}

section.disposal .xl_contain ul.disposal_grid li.disposal_block.step2 .content {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background: url(../images/anchor_ast_01.png) bottom right no-repeat;
  background-size: auto;
}

@media screen and (max-width: 768px) {
  section.disposal .xl_contain ul.disposal_grid li.disposal_block.step2 .content {
    padding-top: 0;
    padding-bottom: 3rem;
    background: none;
  }
}

section.disposal .xl_contain ul.disposal_grid li.disposal_block.step2 .content .ntxt {
  margin-bottom: 1rem;
}

section.disposal .xl_contain ul.disposal_grid li.disposal_block.step2 .content .desc1 {
  margin-top: 1rem;
}

section.disposal .xl_contain ul.disposal_grid li.disposal_block.step2 .content .listwrap .list1 {
  margin-right: 4rem;
}

section.disposal .xl_contain ul.disposal_grid li.disposal_block.step2 .content .listwrap p {
  font-size: 1.4rem;
  font-weight: bold;
  background: url(../images/chk_ast.png) left center no-repeat;
  background-size: auto;
  padding-left: 2rem;
}

@media screen and (max-width: 768px) {
  section.disposal .xl_contain ul.disposal_grid li.disposal_block.step2 .content .listwrap p {
    background: url(../images/chk_ast_sp.png) left center no-repeat;
  }
}

section.disposal .xl_contain ul.disposal_grid li.disposal_block.step3 .content,
section.disposal .xl_contain ul.disposal_grid li.disposal_block.step4 .content,
section.disposal .xl_contain ul.disposal_grid li.disposal_block.step5 .content,
section.disposal .xl_contain ul.disposal_grid li.disposal_block.step6 .content {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

section.disposal .xl_contain ul.disposal_grid li.disposal_block.step5 .content {
  background: url(../images/step_05.jpg) center right no-repeat;
  background-size: auto;
}

@media screen and (max-width: 768px) {
  section.disposal .xl_contain ul.disposal_grid li.disposal_block.step5 .content {
    background: url(../images/step_05_sp.jpg) center 90% no-repeat;
    background-size: 90%;
    padding-bottom: 15rem;
  }
}

section.disposal .xl_contain ul.disposal_grid li.disposal_block.step5 .content p.ntxt {
  max-width: calc( 100% - 23rem);
}

@media screen and (max-width: 768px) {
  section.disposal .xl_contain ul.disposal_grid li.disposal_block.step5 .content p.ntxt {
    max-width: 100%;
  }
}

section.disposal .xl_contain ul.disposal_grid li.disposal_block.step6 .content {
  background: url(../images/step_06.jpg) center right no-repeat;
  background-size: auto;
}

@media screen and (max-width: 768px) {
  section.disposal .xl_contain ul.disposal_grid li.disposal_block.step6 .content {
    background: url(../images/step_06_sp.jpg) center 90% no-repeat;
    background-size: 75%;
    padding-bottom: 15rem;
    border-bottom: solid #00ae99 1px;
  }
}

section.disposal .xl_contain ul.disposal_grid li.disposal_block.step6 .content p.ntxt {
  max-width: calc( 100% - 20rem);
}

@media screen and (max-width: 768px) {
  section.disposal .xl_contain ul.disposal_grid li.disposal_block.step6 .content p.ntxt {
    max-width: 100%;
  }
}

section.disposal .xl_contain ul.disposal_grid li.disposal_block.step1 .content::before,
section.disposal .xl_contain ul.disposal_grid li.disposal_block.step2 .content::before,
section.disposal .xl_contain ul.disposal_grid li.disposal_block.step3 .content::before,
section.disposal .xl_contain ul.disposal_grid li.disposal_block.step4 .content::before,
section.disposal .xl_contain ul.disposal_grid li.disposal_block.step5 .content::before {
  content: '';
  position: absolute;
  right: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  bottom: 0;
  width: 100%;
  height: 4rem;
  background: url(../images/sep_line_bg.png) top center no-repeat;
  background-size: auto;
}

section.price {
  background: #F6F6F6;
}

section.price .xl_contain {
  padding-top: 7rem;
  padding-bottom: 11rem;
}

@media screen and (max-width: 768px) {
  section.price .xl_contain {
    padding-top: 3.5rem;
    padding-bottom: 5rem;
  }
}

section.price .xl_contain h3.section_ttl {
  margin-bottom: 6rem;
}

@media screen and (max-width: 768px) {
  section.price .xl_contain h3.section_ttl {
    margin-bottom: 3rem;
  }
}

section.price .xl_contain .price_grid {
  width: 100%;
}

section.price .xl_contain .price_grid .l_block {
  width: 65%;
}

@media screen and (max-width: 768px) {
  section.price .xl_contain .price_grid .l_block {
    width: 100%;
  }
}

section.price .xl_contain .price_grid .l_block .ntxt {
  margin-top: 1rem;
}

section.price .xl_contain .price_grid .r_block {
  width: 30%;
}

@media screen and (max-width: 768px) {
  section.price .xl_contain .price_grid .r_block {
    display: none;
  }
}

section.price .xl_contain .ntxt {
  margin-top: 2rem;
}

section.faq {
  background: url(../images/faq_bg.jpg) bottom center no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  section.faq {
    background: url(../images/faq_bg_sp.png) bottom center no-repeat, #cce1f4;
  }
}

section.faq .lg_contain {
  padding-top: 7rem;
  padding-bottom: 20rem;
}

@media screen and (max-width: 768px) {
  section.faq .lg_contain {
    padding-top: 3.5rem;
    padding-bottom: 10rem;
  }
}

section.faq .lg_contain h3.section_ttl {
  margin-bottom: 3rem;
}

@media screen and (max-width: 768px) {
  section.faq .lg_contain h3.section_ttl {
    margin-bottom: 0rem;
  }
}

section.faq .lg_contain .qa_block {
  position: relative;
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-bottom: solid #d2d2d2 1px;
}

@media screen and (max-width: 768px) {
  section.faq .lg_contain .qa_block {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

section.faq .lg_contain .qa_block .q_line {
  position: relative;
  padding-left: 4rem;
  font-size: 2rem;
  line-height: 1.5;
  color: #ec0000;
}

@media screen and (max-width: 768px) {
  section.faq .lg_contain .qa_block .q_line {
    padding-left: 3rem;
    font-size: 1.6rem;
  }
}

section.faq .lg_contain .qa_block .q_line::before {
  position: absolute;
  content: 'Q';
  left: 0;
  top: 0;
  font-family: RyuminProR;
  font-size: 3rem;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  section.faq .lg_contain .qa_block .q_line::before {
    font-size: 2.2rem;
  }
}

section.faq .lg_contain .qa_block .a_line {
  position: relative;
  margin-top: 3rem;
  padding-left: 4rem;
  font-size: 1.4rem;
  line-height: 1.714;
}

@media screen and (max-width: 768px) {
  section.faq .lg_contain .qa_block .a_line {
    margin-top: 2.5rem;
    padding-left: 3rem;
    font-size: 1.6rem;
    line-height: 1.57;
  }
}

section.faq .lg_contain .qa_block .a_line::before {
  position: absolute;
  content: 'A';
  left: 0;
  top: 0;
  font-family: RyuminProR;
  font-size: 3rem;
  line-height: 1;
  color: #00ae99;
}

@media screen and (max-width: 768px) {
  section.faq .lg_contain .qa_block .a_line::before {
    font-size: 2.2rem;
  }
}

section.guide .xl_contain {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

@media screen and (max-width: 768px) {
  section.guide .xl_contain {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

section.guide .xl_contain h3.section_ttl {
  margin-bottom: 6rem;
}

@media screen and (max-width: 768px) {
  section.guide .xl_contain h3.section_ttl {
    margin-bottom: 3rem;
  }
}

section.about {
  background: url(../images/about_bg.jpg) bottom center no-repeat;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  section.about {
    background: url(../images/about_bg_sp.jpg) bottom center no-repeat;
    background-size: cover;
  }
}

section.about .xl_contain {
  padding-top: 7.5rem;
  padding-bottom: 20rem;
}

@media screen and (max-width: 768px) {
  section.about .xl_contain {
    padding-top: 3rem;
    padding-bottom: 10rem;
  }
}

section.about .xl_contain h3.section_ttl {
  margin-bottom: 3.5rem;
}

@media screen and (max-width: 768px) {
  section.about .xl_contain h3.section_ttl {
    margin-bottom: 2rem;
  }
}

section.about .xl_contain a {
  color: #0068B7;
  text-decoration: underline;
}

section.about .xl_contain .mtxt {
  margin-top: 3rem;
  font-family: RyuminProM;
}

@media screen and (max-width: 768px) {
  section.about .xl_contain .mtxt {
    text-align: left;
  }
}

span#disposal,
span#price,
span#faq,
span#guide,
span#about {
  display: block;
  width: 0;
  height: 10rem;
  margin-top: -10rem;
  visibility: hidden;
}

@media screen and (max-width: 768px) {
  span#disposal,
  span#price,
  span#faq,
  span#guide,
  span#about {
    height: 5rem;
    margin-top: -5rem;
  }
}

@font-face {
  font-family: YuGothicB;
  src: url("../font/YuGothicB.woff") format("woff");
}

@font-face {
  font-family: YuGothicM;
  src: url("../font/YuGothicM.woff") format("woff");
}

@font-face {
  font-family: YuGothicR;
  src: url("../font/YuGothicR.woff") format("woff");
}

@font-face {
  font-family: YuGothicL;
  src: url("../font/YuGothicL.woff") format("woff");
}

@font-face {
  font-family: RyuminProR;
  src: url("../font/RyuminProR.woff") format("woff");
}

@font-face {
  font-family: RyuminProM;
  src: url("../font/RyuminProM.woff") format("woff");
}
/*# sourceMappingURL=style.css.map */

/*211105 ADD CSS*/
section.disposal .xl_contain ul.disposal_grid li.disposal_block{
    margin-bottom: 20px;
}

@media screen and (max-width: 768px){
    
    section.contact_nav{
        margin-bottom: 50px;}
    section.disposal .xl_contain ul.disposal_grid li.disposal_block.step2 .content .listwrap p{
        padding-left: 20px;
        background-size: 14px;}
    table.table_style1 td{
        font-size: 0.8em;}
    ul.contact_grid a.contact_link picture img.mailIcon{
        width: 50%;
        height: 100%;}
    ul.contact_grid a.contact_link picture{
        justify-content: center;
    }
    }

@media screen and (max-width: 480px){
    
    picture .contactImg{
        width: 70%;
    }
    
}

/*2025.04 ADD mainVisual・footer修正・*/
section.hero{
	position: relative;
}
section.hero .xl_contain{
	display: none;
}
/*section.hero{
	height: 700px;
}*/
section.hero .redCta{
	position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.fix_footer {
    background-color: #FFFFFF;
    position: fixed;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    z-index: 99;
	color: #000;
}
.fix_footer .col3 {
    display: flex;
    align-items: flex-end;
    margin: 0 auto;
    padding: 15px 0;
    width: 80%;
	justify-content: center;
    align-items: center;
}
.fix_footer .col3 li.service {
    margin-bottom: 2px;
    width: 30%;
}
.fix_footer .col3 li.contact {
    padding: 0;
    width: 67%;
}
.fix_footer .col3 li.service dl {
    margin-bottom: 0;
}
.fix_footer .col3 li.service dt {
    margin: 0 0 5px;
    font-size: 15px;
	font-weight: bold;
}
.fix_footer .col3 li dd {
    margin-bottom: 0;
    line-height: 1;
}
.fix_footer .col3 li.service dd a {
    color: #000;
    font-size: 2.5em;
    font-weight: 600;
}
.fix_footer .col3 li.service dd a:before {
    content: '';
    background: url(../images/free.png) 0 0 no-repeat;
    display: inline-block;
    margin: 0 10px 0 0;
    width: 38px;
    height: 25px;
}
.fix_footer .col3 li.contact a {
    background: #cc3838;
    display: block;
    margin-bottom: -1px;
    padding: 9px 12px;
    color: #fff;
    font-size: 1.8em;
    width: 94%;
	text-align: center;
	font-weight: bold;
}
.fix_footer .col3 li.contact a:before {
    content: '';
    background: url(../images/mail.png) 0 0 no-repeat;
    display: inline-block;
    margin: 0 10px 0 0;
    width: 19px;
    height: 13px;
}


@media screen and (max-width: 3500px){
	
	section.hero{
	height: 1200px;
	}
}

@media screen and (max-width: 2500px){
	
	section.hero{
	height: 1000px;
	}
}
@media screen and (max-width: 1900px){
	
	section.hero{
	height: 700px;
	}
}
@media screen and (max-width: 1200px){
	
	section.hero{
	height: 500px;
	}
}


@media screen and (max-width: 1024px){
	
	section.hero{
	height: 450px;
	}
	
	section.hero .redCta{
		width: 35%;
		bottom: 30px;
	}
	.fix_footer .col3 {
        padding: 10px 0;
        width: 94%;
    }
	.fix_footer .col3 li.service {
        width: 50%;
	}
	.fix_footer .col3 li.service dt {
        margin: 0 0 2px;
        font-size: 10px;
    }
	.fix_footer .col3 li.service dd a {
        font-size: 1.9em;
		font-weight: bold;
    }
	.fix_footer .col3 li.service dd a:before {
        background-size: 100%;
        margin: 0 5px 0 0;
        width: 19px;
        height: 14px;
    }
	.fix_footer .col3 li.contact {
        margin-bottom: 4px;
        padding: 0;
        width: 50%;
    }
	.fix_footer .col3 li.contact a {
        margin-bottom: -6px;
        padding: 8px 5px;
        color: #fff;
        font-size: 1.2em;
    }
	.fix_footer .col3 li.contact a:before {
        margin: 0 3px 0 0;
        width: 12px;
        height: 9px;
        background-size: 100%;
    }
	.fix_footer .col3 li.contact span {
        display: none;
    }
}

@media screen and (max-width: 768px){
	
	section.hero{
	height: 1400px;
	}
	
	section.hero {
		background-size: cover;
	}
	
	section.hero .redCta{
		width: 80%;
	}
}
@media screen and (max-width: 700px){
	
	section.hero{
	height: 1200px;
	}
}
@media screen and (max-width: 600px){
	
	section.hero{
	height: 900px;
	}
}
	
	@media screen and (max-width: 480px){
		
	section.hero{
	height: 700px;
	}
		
	}