@charset "UTF-8";
/*このcssはscssにより書き出されています*/
.loader-wrap {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #1F1F1F;
  z-index: 9999;
}

.loader,
.loader:before,
.loader:after {
  background: #ffffff;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}

.loader {
  color: #ffffff;
  text-indent: -9999em;
  margin: 88px auto;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: '';
}

.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader:after {
  left: 1.5em;
}

@-webkit-keyframes load1 {
  0%,
	80%,
	100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
@keyframes load1 {
  0%,
	80%,
	100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 0;
  min-width: 0;
}

html {
  height: 100%;
  line-height: 1.5;
  font-size: 62.5%;
  /*fontのデフォルトサイズを10pxに指定しています*/
}

body {
  font-display: swap;
  font-family: 'Noto Serif JP', serif;
  font-weight: bold;
  font-size: 2rem;
  background-color: #fff;
  word-wrap: break-word;
}
@media screen and (max-width: 896px) {
  body {
    font-size: 1.8rem;
  }
}
body::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-image: url("../img/paper.jpg");
  background-size: cover;
}

a, button {
  text-decoration: none;
  color: #333;
  cursor: pointer;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border: none;
  outline: none;
}

pre {
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  white-space: pre-wrap;
  word-wrap: break-word;
}

@media screen and (max-width: 630px) {
  .only_pc {
    display: none;
  }
}

.only_sp {
  display: none;
}
@media screen and (max-width: 630px) {
  .only_sp {
    display: block;
  }
}

main {
  padding-bottom: 6rem;
}

.flex-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.flex-box.-center {
  align-items: center;
}

.section-title img {
  width: 100%;
  display: block;
  height: 80px;
  object-fit: contain;
  margin-bottom: 6rem;
}
@media screen and (max-width: 896px) {
  .section-title img {
    height: 60px;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 4rem;
  }
}
.section-title .kaitori {
  height: 120px;
}

/*-------------------header-------------------------*/
#header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  transition: all .5s;
}
#header.header-color {
  background-color: #fff;
  border-bottom: 4px solid #f7e052;
}

.header_inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  /*.menu*/
}
@media screen and (max-width: 1024px) {
  .header_inner {
    display: block;
    padding: 0;
    height: 65px;
  }
}
.header_inner .drawer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  /*.toggle*/
}
.header_inner .drawer h1 {
  line-height: 1;
  margin-top: 0.2em;
}
.header_inner .drawer h1 a {
  display: block;
}
.header_inner .drawer h1 a img {
  max-width: 180px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .header_inner .drawer h1 a img {
    max-width: 135px;
  }
}
@media screen and (max-width: 1024px) {
  .header_inner .drawer {
    padding: 0 4%;
    height: 65px;
  }
}
.header_inner .drawer .toggle {
  display: none;
  /*.toggle@include tb*/
}
@media screen and (max-width: 1024px) {
  .header_inner .drawer .toggle {
    display: block;
    z-index: 9999;
    /*.open*/
  }
  .header_inner .drawer .toggle .toggle_bdr {
    position: relative;
    display: block;
    height: 2px;
    width: 26px;
    background: #333;
    -webkit-transition: ease .5s;
    transition: ease .5s;
  }
  .header_inner .drawer .toggle .toggle_bdr:nth-child(1) {
    top: 0;
  }
  .header_inner .drawer .toggle .toggle_bdr:nth-child(2) {
    margin: 8px 0 0 0;
  }
  .header_inner .drawer .toggle .toggle_bdr:nth-child(3) {
    margin: 8px 0 0 0;
  }
  .header_inner .drawer .toggle.open {
    /*.toggle_bdr*/
  }
  .header_inner .drawer .toggle.open .toggle_bdr:nth-child(1) {
    top: 5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .header_inner .drawer .toggle.open .toggle_bdr:nth-child(2) {
    display: none;
  }
  .header_inner .drawer .toggle.open .toggle_bdr:nth-child(3) {
    top: -4px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
.header_inner .menu {
  /*ul*/
  /*@include tb*/
}
.header_inner .menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /*li*/
  /*@include tb*/
}
.header_inner .menu ul li {
  font-size: 1.6rem;
  padding: 0 14px;
  border-bottom: none;
  /*a*/
}
.header_inner .menu ul li a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: .14rem;
  border-bottom: 2px solid #f7e052;
  padding-bottom: 4px;
}
.header_inner .menu ul li a:hover {
  padding-bottom: 2px;
  color: #002a7f;
  border-bottom: 4px solid #f7e052;
}
.header_inner .menu ul li:last-child {
  padding: 0 0 0 20px;
}
@media screen and (max-width: 1024px) {
  .header_inner .menu ul {
    display: block;
    padding: 3em 0 0 0;
    /*li*/
  }
  .header_inner .menu ul li {
    font-size: 1.6rem;
    padding: 1em 20px;
  }
  .header_inner .menu ul li:last-child {
    padding: 1em 20px;
  }
}
@media screen and (max-width: 1024px) {
  .header_inner .menu {
    width: 60%;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: ease .5s;
    transition: ease .5s;
    z-index: 1000;
    height: 100vh;
    margin-top: -65px;
    /*.open*/
  }
  .header_inner .menu.open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #faf4e4;
    border-right: 4px solid #f7e052;
  }
}

/*-------------------フロートボタン 電話とLINE-------------------------*/
.float-area {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 1000px;
  left: 50%;
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 3;
  /*.btn-box*/
}
@media screen and (max-width: 1024px) {
  .float-area {
    padding: 0;
  }
}
.float-area .btn-box {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
  /*a*/
}
.float-area .btn-box a {
  background-color: #e86500;
  border: 4px solid #fff;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-weight: bold;
  letter-spacing: .2rem;
  width: 100%;
  transition-duration: .3s;
  position: relative;
  border-radius: 50px;
  /*&.line*/
}
.float-area .btn-box a:first-child {
  margin: 0 10px;
}
.float-area .btn-box a:hover {
  opacity: .5;
}
@media screen and (max-width: 1024px) {
  .float-area .btn-box a {
    margin: 0;
    max-width: 100%;
    padding: 20px 10px;
  }
}
@media screen and (max-width: 375px) {
  .float-area .btn-box a {
    letter-spacing: .10rem;
    padding: 10px;
  }
}
.float-area .btn-box a span {
  font-size: 80%;
}
.float-area .btn-box a.mobile::before {
  margin-right: 0.5rem;
  display: inline-block;
  content: '';
  width: 22px;
  height: 22px;
  background-image: url(../img/ico_mobile.svg);
  background-size: contain;
}
@media screen and (max-width: 375px) {
  .float-area .btn-box a.mobile::before {
    margin-left: -.5rem;
  }
}
.float-area .btn-box a.line {
  background-color: #049E00;
  /*&::before*/
}
.float-area .btn-box a.line::before {
  margin-right: 0.8rem;
  display: inline-block;
  content: '';
  width: 22px;
  height: 22px;
  background-image: url(../img/ico_line.svg);
  background-size: contain;
}
@media screen and (max-width: 375px) {
  .float-area .btn-box a.line::before {
    margin-left: -.5rem;
  }
}

/*.float-area*/
@keyframes dokidoki {
  0% {
    transform: scale(1.15);
  }
  5% {
    transform: scale(1);
  }
  95% {
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
  }
}
.mv {
  position: relative;
}
.mv .toptext {
  position: absolute;
  z-index: 2;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
}
.mv .toptext img {
  width: 100%;
  max-width: 400px;
  filter: drop-shadow(0 0px 5px black);
}
@media screen and (max-width: 896px) {
  .mv .toptext img {
    max-width: 50%;
  }
}
@media screen and (max-width: 375px) {
  .mv .toptext img {
    max-width: 80%;
  }
}
.mv .slick {
  position: relative;
}
.mv .slick img {
  width: 100%;
  display: block;
  height: 580px;
  object-fit: cover;
}
@media screen and (max-width: 896px) {
  .mv .slick img {
    height: 400px;
  }
}
.mv .slick .imgBox {
  margin: 0 auto;
  position: relative;
}
.mv .slick .imgBox::after {
  position: absolute;
  content: "";
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  background-image: radial-gradient(rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0) 31%), radial-gradient(rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0) 31%);
  background-size: 4px 4px;
  background-position: 0 0, 2px 2px;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.mv .slick .imgBox .text {
  position: absolute;
  font-weight: bold;
  font-size: 50px;
  z-index: 2;
  color: #fff;
  filter: drop-shadow(0 0px 10px black);
}
@media screen and (max-width: 896px) {
  .mv .slick .imgBox .text {
    font-size: 30px;
  }
}
.mv .slick .imgBox .text span {
  display: block;
  font-size: 20px;
}
@media screen and (max-width: 896px) {
  .mv .slick .imgBox .text span {
    font-size: 16px;
  }
}
.mv .slick .imgBox .center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .mv .slick .imgBox .center {
    font-size: 22px;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }
}
.mv .slick .imgBox .topleft {
  top: 5%;
  left: 5%;
  margin-right: 10px;
}
.mv .slick .imgBox .topright {
  top: 5%;
  right: 5%;
  text-align: right;
  margin-left: 10px;
}
.mv .slick .imgBox .bottomright {
  bottom: 5%;
  right: 5%;
  text-align: right;
  margin-left: 10px;
}
.mv .slick .imgBox .bottomleft {
  bottom: 5%;
  left: 5%;
  margin-right: 10px;
}

.slickB {
  padding: 0;
  margin: 0 -15px;
  width: 100%;
  margin: 0 auto;
}

.results-block .results-card {
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 5px;
}
.results-block .results-card.-fuyou {
  border: 4px solid #002a7f;
}
.results-block .results-card.-ihin {
  border: 4px solid #00aaa0;
}
.results-block .results-card.-hikkosi {
  border: 4px solid #ff7c5e;
}
.results-block .results-card .img-block {
  widows: 100%;
}
.results-block .results-card .img-block img {
  width: 100%;
  display: block;
}
.results-block .results-card .text-block {
  margin: 10px;
  /*.title*/
}
.results-block .results-card .text-block .title {
  text-align: center;
  font-weight: bold;
  padding: 6px 0;
  margin-bottom: 8px;
  border-radius: 6px;
  letter-spacing: .24rem;
}
.results-block .results-card .text-block .title.-fuyou {
  color: #fff;
  background-color: #002a7f;
}
.results-block .results-card .text-block .title.-ihin {
  color: #fff;
  background-color: #00aaa0;
}
.results-block .results-card .text-block .title.-hikkosi {
  color: #fff;
  background-color: #ff7c5e;
}
.results-block .results-card .text-block .content {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2em;
  margin-bottom: 10px;
}
.results-block .results-card .text-block .mono {
  margin-bottom: 4px;
}
.results-block .results-card .text-block .mono .main {
  font-size: 16px;
  width: 82px;
  font-weight: bold;
  display: inline-block;
}
@media screen and (max-width: 896px) {
  .results-block .results-card .text-block .mono .main {
    width: 100%;
  }
}
@media screen and (max-width: 896px) {
  .results-block .results-card .text-block .mono .main.-no100 {
    width: inherit;
  }
}
.results-block .results-card .text-block .mono .tag {
  background-color: #333;
  padding: 2px 4px;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  display: inline-block;
  font-family: 'Noto Sans JP', sans-serif;
}
.results-block .results-card .text-block .mono .tag:not(:last-child) {
  margin-right: 2px;
}
.results-block .results-card .text-block .unit-block {
  text-align: center;
}
.results-block .results-card .text-block .unit-block .text {
  font-size: 16px;
}
.results-block .results-card .text-block .unit-block .unit {
  font-size: 30px;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
}
.results-block .results-card .text-block .unit-block .en {
  font-size: 16px;
}
@media screen and (max-width: 896px) {
  .results-block .results-card .text-block .unit-block .en {
    font-size: 12px;
  }
}

/*---------------リサイクル3つのポイント-------------------*/
.advice .advice-card {
  background-color: #fff;
  padding: 40px;
}
.advice .advice-card:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 896px) {
  .advice .advice-card {
    padding: 20px;
    padding-top: 40px;
  }
}
.advice .advice-card .card-title {
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .advice .advice-card .card-title {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
}
.advice .advice-card .card-title .point {
  width: 100%;
  max-width: 160px;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 896px) {
  .advice .advice-card .card-title .point {
    margin: 10px auto;
  }
}
.advice .advice-card .card-title .title {
  font-weight: bold;
  font-size: 30px;
}
@media screen and (max-width: 896px) {
  .advice .advice-card .card-title .title {
    text-align: center;
    margin-bottom: 20px;
  }
}
.advice .advice-card .card-text {
  font-size: 20px;
  line-height: 4rem;
}
.advice .advice-card .card-text .pickup {
  font-weight: bold;
  color: #e86500;
  font-size: 24px;
}
.advice .advice-card .card-text .underline {
  border-bottom: 4px solid #e86500;
}
.advice .advice-card .card-text .navytext {
  color: #002a7f;
  font-weight: bold;
  font-size: 24px;
}

/*--------------------せくしょん指定------------------------*/
.section {
  width: 92%;
  max-width: 800px;
  margin: 0 auto;
  /*-mv*/
  /*-news*/
}
.section.-mv {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-top: 90px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .section.-mv {
    margin-top: 65px;
  }
}
.section.-news {
  width: 100%;
  max-width: 1000px;
  margin-bottom: 20px;
}
.section.-topbottom {
  margin: 8rem auto;
}
@media screen and (max-width: 896px) {
  .section.-topbottom {
    margin: 6rem auto;
  }
}

/*.section*/
.back-max-width {
  /*背景ベタ塗り指定*/
  width: 100%;
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 1024px) {
  .back-max-width {
    padding: 6rem 0;
  }
}

.back-max-width.-backA {
  background-color: #faf4e4;
}

.back-max-width.-backB {
  background-color: #efefef;
}

.back-max-width.-backC {
  background-color: #fff;
}

.up-text {
  color: #fff;
  text-align: center;
  padding-top: 3rem;
  font-weight: bold;
  font-size: 2.6rem;
  letter-spacing: .15rem;
}
@media screen and (max-width: 896px) {
  .up-text {
    font-size: 1.6rem;
  }
}
.up-text span {
  font-size: 2.2rem;
}
@media screen and (max-width: 896px) {
  .up-text span {
    font-size: 1.4rem;
  }
}

/*-----------------------ニュース-----------------------------*/
.news-inner {
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid #eee;
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .news-inner {
    display: block;
    margin: 0 5px;
    padding: 0 10px;
    border: none;
    background-color: inherit;
  }
}
.news-inner .news-title {
  width: 22%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .news-inner .news-title {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
.news-inner .news-title .title {
  color: #333;
  letter-spacing: .23rem;
  line-height: 2rem;
  font-size: 18px;
}
@media screen and (max-width: 1024px) {
  .news-inner .news-title .title {
    line-height: 2.6rem;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
  }
}
.news-inner .news-title .title:first-line {
  font-size: 12px;
  color: #e86500;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .news-inner .news-title .title:first-line {
    font-size: 16px;
  }
}
.news-inner .news-content {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .news-inner .news-content {
    background-color: #fff;
    padding: 20px;
  }
}
.news-inner .news-content .news-list {
  display: flex;
  align-items: center;
  color: #333;
  font-size: 16px;
}
@media screen and (max-width: 896px) {
  .news-inner .news-content .news-list {
    display: block;
  }
}
.news-inner .news-content .news-list:hover {
  opacity: .5;
}
.news-inner .news-content .news-list:not(:last-child) {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #eee;
}
.news-inner .news-content .news-list .time {
  color: #B9B9B9;
  letter-spacing: .14rem;
  font-family: 'Roboto', sans-serif;
}
.news-inner .news-content .news-list .new::after {
  content: "NEW";
  color: #fff;
  font-weight: bold;
  padding: 0px 6px;
  border-radius: 4px;
  font-size: 14px;
  margin-left: 0.5rem;
  background-color: #e86500;
  font-family: 'Roboto', sans-serif;
}
.news-inner .news-content .news-list .text {
  margin-left: 1.5rem;
  line-height: 1.9rem;
  letter-spacing: .14rem;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 896px) {
  .news-inner .news-content .news-list .text {
    margin-left: 0;
  }
}

/*--------------------お電話での受付は------------------------*/
.time-block {
  padding: 3rem 1.4rem;
  border-radius: 1rem;
  text-align: center;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  background-color: #fff;
  color: #002a7f;
  /*.inner*/
}
.time-block .inner {
  max-width: 600px;
  margin: 0 auto;
}
.time-block .inner .time-title {
  font-size: 2.6rem;
  line-height: 2.6rem;
  font-weight: bold;
  width: 100%;
  display: inline-block;
  margin-bottom: -4px;
}
.time-block .inner .time {
  font-weight: bold;
  font-size: 4rem;
  margin-top: -8px;
}
@media screen and (max-width: 896px) {
  .time-block .inner .time {
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 2.8rem;
    margin-top: 0;
  }
}
.time-block .inner .flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 896px) {
  .time-block .inner .flex {
    display: block;
  }
}
.time-block .inner .sub-text {
  font-size: 2rem;
  margin-top: 1.8rem;
  letter-spacing: .15rem;
  line-height: 2.3rem;
}
@media screen and (max-width: 896px) {
  .time-block .inner .sub-text {
    margin-top: 2rem;
  }
}
.time-block .inner .sub-text a {
  text-decoration: none;
  color: #fff;
}
.time-block .inner .sub-text .mobile-btn {
  color: #002a7f;
  display: inline-block;
  font-weight: bold;
  font-size: 3.8rem;
  padding-bottom: 8px;
  border-bottom: 2px solid #002a7f;
  margin-top: 8px;
}
@media screen and (max-width: 896px) {
  .time-block .inner .sub-text .mobile-btn {
    font-size: 3.4rem;
  }
}

/*.time-block*/
.btn {
  font-weight: bold;
  color: #fff;
  margin-top: 0.8rem;
  padding: 1.5rem 2rem;
  max-width: 290px;
  width: 100%;
  display: block;
  border-radius: 50px;
  font-size: 1.6rem;
  letter-spacing: .14rem;
  transition-duration: .3s;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.3);
}
.btn:not(:last-child) {
  margin-right: 1rem;
}
@media screen and (max-width: 896px) {
  .btn {
    margin: 0 auto;
    max-width: 300px;
  }
  .btn:not(:last-child) {
    margin: 0 auto;
    margin-bottom: .8rem;
  }
}

.btn.-line {
  background-color: #049E00;
  border: 2px solid #049E00;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: dokidoki 1.5s infinite;
}
.btn.-line:hover {
  background-color: #fff;
  color: #049E00;
}
.btn.-line::before {
  margin-right: 1rem;
  display: inline-block;
  content: '';
  width: 30px;
  height: 30px;
  background-image: url(../img/ico_line.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 375px) {
  .btn.-line::before {
    margin-left: -.5rem;
  }
}

.btn.-mail {
  background-color: #e86500;
  border: 2px solid #e86500;
}
.btn.-mail:hover {
  background-color: #fff;
  color: #e86500;
}

.btnonly {
  margin: 0 auto !important;
  margin-top: 3.5rem !important;
  max-width: 460px;
  padding: 30px 10px;
  font-size: 2rem;
  line-height: 2.4rem;
}
@media screen and (max-width: 896px) {
  .btnonly {
    padding: 20px 10px;
  }
}

/*--------------------不用品　遺品整理------------------------*/
.top-text-block {
  /*.main-plan*/
}
.top-text-block .top-title {
  font-size: 3.4rem;
  margin-bottom: 3.5rem;
  text-align: center;
  letter-spacing: .20rem;
  color: #002a7f;
}
@media screen and (max-width: 896px) {
  .top-text-block .top-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 630px) {
  .top-text-block .top-title {
    text-align: left;
  }
}
.top-text-block .staff-img {
  width: 100%;
  max-width: 800px;
  display: block;
  border-radius: 10px;
}
.top-text-block .top-text {
  font-size: 2rem;
  line-height: 3.4rem;
  letter-spacing: .11rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  color: #002a7f;
}
@media screen and (max-width: 1024px) {
  .top-text-block .top-text {
    margin: 1rem 0 2rem 0;
  }
}
@media screen and (max-width: 896px) {
  .top-text-block .top-text {
    font-size: 1.8rem;
    letter-spacing: inherit;
  }
}
.top-text-block .main-plan {
  margin-top: 5rem;
  width: 47%;
  /*.img-box*/
  /*.text-box*/
}
@media screen and (max-width: 630px) {
  .top-text-block .main-plan {
    width: 100%;
    margin-top: 2rem;
  }
}
.top-text-block .main-plan .img-box {
  width: 100%;
  clip-path: polygon(10% 0, 100% 0, 100% 85%, 90% 100%, 0 100%, 0 15%);
}
.top-text-block .main-plan .img-box img {
  width: 100%;
  display: block;
}
.top-text-block .main-plan .text-box {
  width: 100%;
  margin-top: 2rem;
}
.top-text-block .main-plan .text-box .plan-title {
  font-weight: bold;
  font-size: 2.6rem;
  text-align: center;
  letter-spacing: .1rem;
}
@media screen and (max-width: 896px) {
  .top-text-block .main-plan .text-box .plan-title {
    font-size: 2.2rem;
  }
}
.top-text-block .main-plan .text-box .plan-text {
  margin-top: 1.6rem;
  font-size: 1.8rem;
  line-height: 1.8em;
}
@media screen and (max-width: 896px) {
  .top-text-block .main-plan .text-box .plan-text {
    margin-top: 1.2rem;
  }
}
.top-text-block .main-plan + .main-plan {
  margin-left: 3rem;
}
@media screen and (max-width: 630px) {
  .top-text-block .main-plan + .main-plan {
    margin-left: 0;
  }
}

/*-------------------小さい画像たち-------------------------*/
.sub-img {
  margin-top: 6rem;
}
@media screen and (max-width: 630px) {
  .sub-img {
    margin-top: 4rem;
  }
}

/*.sub-img*/
.sub-title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: bold;
}
@media screen and (max-width: 896px) {
  .sub-title {
    font-size: 2.2rem;
  }
}

/*--------------------------------------------*/
.h3-title {
  font-size: 3.6rem;
  font-weight: bold;
  color: #fff;
  background-color: #002a7f;
  max-width: 800px;
  text-align: center;
  padding: 1.8rem 0;
  margin: 0 auto;
  letter-spacing: .28rem;
}
@media screen and (max-width: 896px) {
  .h3-title {
    font-size: 3rem;
    padding: 18px 10px;
  }
}

.h3-title.-navy {
  background-color: #002a7f;
}

.paragraph {
  font-size: 2rem;
  text-align: center;
}
.paragraph:not(:last-child) {
  margin-bottom: 1rem;
}
@media screen and (max-width: 896px) {
  .paragraph {
    text-align: left;
  }
}

.h4-title {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  color: #002a7f;
  margin-top: 5rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 896px) {
  .h4-title {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    margin-top: 3rem;
  }
}
.h4-title span {
  display: block;
  font-size: 2rem;
  font-weight: 100;
}

.h4-title.-navy {
  color: #002a7f;
}

/*----------------- 料金プラン ------------------*/
#recovery .sub-text {
  margin-bottom: 60px;
  font-size: 2rem;
}
@media screen and (max-width: 896px) {
  #recovery .sub-text {
    margin-bottom: 30px;
  }
}
#recovery .sub-text .paragraph {
  font-size: 2rem;
  line-height: 3.8rem;
  letter-spacing: .18rem;
  font-weight: bold;
  text-align: center;
  color: #002a7f;
}
@media screen and (max-width: 896px) {
  #recovery .sub-text .paragraph {
    text-align: left;
  }
}

.pack {
  width: 49%;
  margin-bottom: 2rem;
  border-radius: 10px;
  display: flex;
  /*.pack-item*/
}
.pack:not(:nth-child(2n+1)) {
  margin-left: 2%;
}
@media screen and (max-width: 630px) {
  .pack:not(:nth-child(2n+1)) {
    margin-left: 0;
  }
}
@media screen and (max-width: 630px) {
  .pack {
    width: 100%;
    margin-left: 0;
    margin-bottom: 2rem;
  }
}
.pack .pack-item {
  width: 100%;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /*.pack-img*/
  /*.rough*/
}
.pack .pack-item .plan {
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  padding: 10px;
  margin-bottom: 20px;
  letter-spacing: .24rem;
}
.pack .pack-item .plan.-fuyou {
  background-color: #002a7f;
}
.pack .pack-item .plan.-ihin {
  background-color: #00aaa0;
}
.pack .pack-item .plan.-hikkosi {
  background-color: #ff7c5e;
}
.pack .pack-item .pack-name {
  font-size: 2.6rem;
  font-weight: bold;
  color: #002a7f;
  letter-spacing: .14rem;
  line-height: 1.1em;
  margin-bottom: 15px;
  padding: 0 20px;
}
@media screen and (max-width: 630px) {
  .pack .pack-item .pack-name {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }
}
.pack .pack-item .pack-img {
  width: 100%;
  /*img*/
}
.pack .pack-item .pack-img img {
  width: 70%;
  margin: 0 auto;
  display: block;
}
.pack .pack-item .rough {
  display: flex;
  margin: 0 auto;
  margin-bottom: 10px;
  padding: 0 20px;
  /*.rough-price*/
  /*.rough-floor*/
}
@media screen and (max-width: 896px) {
  .pack .pack-item .rough {
    flex-direction: column-reverse;
    padding: 0 10px;
    margin-bottom: 2px;
  }
}
.pack .pack-item .rough .rough-price {
  /*.price-block*/
}
.pack .pack-item .rough .rough-price .title {
  font-size: 14px;
  background-color: #eee;
  text-align: center;
  border-radius: 4px;
  color: #002a7f;
  letter-spacing: .23rem;
  margin-bottom: 6px;
  font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 896px) {
  .pack .pack-item .rough .rough-price .title {
    font-size: 18px;
    padding: 4px;
    margin-bottom: 2px;
  }
}
.pack .pack-item .rough .rough-price .title.-verB {
  font-weight: bold;
  font-size: 18px;
  padding: 2px 14px;
}
.pack .pack-item .rough .rough-price .price-block {
  text-align: left;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: -18px;
}
.pack .pack-item .rough .rough-price .price-block .max {
  font-size: 18px;
  line-height: 2.3rem;
  margin-bottom: 13px;
  margin-right: 4px;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 896px) {
  .pack .pack-item .rough .rough-price .price-block .max {
    font-size: 20px;
    line-height: 2.6rem;
    margin-bottom: 16px;
    margin-right: 2px;
  }
}
.pack .pack-item .rough .rough-price .price-block .unit {
  font-weight: bold;
  color: #e86500;
  font-size: 50px;
  margin-right: 4px;
  letter-spacing: -.18rem;
  font-family: 'Roboto', sans-serif;
}
@media screen and (max-width: 896px) {
  .pack .pack-item .rough .rough-price .price-block .unit {
    font-size: 60px;
  }
}
.pack .pack-item .rough .rough-price .price-block .en {
  margin-bottom: 13px;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
}
.pack .pack-item .rough .rough-floor {
  margin-left: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  /*.floor*/
}
@media screen and (max-width: 896px) {
  .pack .pack-item .rough .rough-floor {
    margin-left: 0;
    margin-bottom: 6px;
    display: flex;
  }
}
.pack .pack-item .rough .rough-floor .floor {
  padding: 4px 12px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  letter-spacing: .14rem;
}
.pack .pack-item .rough .rough-floor .floor:not(:last-child) {
  margin-bottom: 6px;
}
@media screen and (max-width: 896px) {
  .pack .pack-item .rough .rough-floor .floor:not(:last-child) {
    margin-bottom: 0;
    margin-right: 6px;
  }
}
.pack .pack-item .rough .rough-floor .floor.-orange {
  color: #fff;
  background-color: #00aaa0;
}
.pack .pack-item .rough .rough-floor .floor.-yellow {
  color: #002a7f;
  background-color: #f7e052;
}
.pack .pack-item .rough .rough-floor .floor.-navy {
  color: #fff;
  background-color: #002a7f;
}
.pack .pack-item .rough .rough-floor .floor.-pink {
  color: #fff;
  background-color: #ff7c5e;
}
.pack .pack-item .sub-text {
  text-align: left;
  padding: 18px;
  padding-bottom: 20px;
  letter-spacing: .12rem;
  line-height: 2.6rem;
  background-color: #eee;
}
.pack .pack-item .anker-link {
  background-color: #002a7f;
  color: #fff;
  padding: 10px 0;
}
.pack .pack-text {
  background-color: #e7e4cf;
  padding: 2rem 2.5rem;
  border-radius: 0 0 10px 10px;
  font-size: 1.4rem;
}

/*.pack*/
/*----------------買取例-------------------*/
.kaitori {
  display: flex;
  flex-wrap: wrap;
}
.kaitori .card {
  width: 32%;
  display: block;
  transition-duration: .4s;
  margin-right: 10px;
  background-color: #fff;
  padding: 10px 10px 6px 10px;
  box-shadow: 0px 0px 15px -10px rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 896px) {
  .kaitori .card {
    width: 49%;
  }
}
.kaitori .card .img-box {
  width: 100%;
  position: relative;
}
.kaitori .card .img-box img {
  width: 100%;
  display: block;
  border-radius: 6px;
}
.kaitori .card .img-box .name {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  font-size: 16px;
  color: #fff;
  width: 100%;
  padding: 6px 10px;
  line-height: 1.8rem;
  letter-spacing: .24rem;
  border-radius: 0 0 6px 6px;
}
@media screen and (max-width: 375px) {
  .kaitori .card .img-box .name {
    font-size: 14px;
  }
}
.kaitori .card .flex-box {
  display: flex;
  align-items: center;
}
.kaitori .card .title {
  font-size: 18px;
  background-color: #eee;
  text-align: center;
  border-radius: 4px;
  color: #002a7f;
  letter-spacing: .23rem;
  padding: 6px 14px;
  margin-right: 1rem;
  font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 375px) {
  .kaitori .card .title {
    font-size: 16px;
    padding: 6px 10px;
  }
}
.kaitori .card .price-block {
  text-align: left;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  /*.en*/
}
.kaitori .card .price-block .max {
  font-size: 18px;
  line-height: 2.3rem;
  margin-bottom: 13px;
  margin-right: 4px;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
}
.kaitori .card .price-block .unit {
  font-weight: bold;
  color: #333;
  font-size: 40px;
  margin-right: 4px;
  letter-spacing: -.18rem;
  font-family: 'Roboto', sans-serif;
}
@media screen and (max-width: 630px) {
  .kaitori .card .price-block .unit {
    font-size: 40px;
  }
}
@media screen and (max-width: 375px) {
  .kaitori .card .price-block .unit {
    font-size: 32px;
  }
}
.kaitori .card .price-block .unit.-Expensive {
  color: #e86500;
}
.kaitori .card .price-block .en {
  margin-bottom: 8px;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 630px) {
  .kaitori .card .price-block .en {
    margin-bottom: 8px;
  }
}
.kaitori .card .badge {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  z-index: 1;
}
.kaitori .card .badge span {
  font-size: 12px;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 896px) {
  .kaitori .card .badge span {
    border-radius: 4px;
    height: 30px;
  }
}
.kaitori .card .badge span:nth-child(n+2) {
  margin-left: 5px;
}
.kaitori .card .badge .jank {
  background-color: #333;
  color: #fff;
}
.kaitori .card .badge .new {
  background-color: #00aaa0;
  color: #fff;
  border: double 4px #fff;
}
.kaitori .card .badge .old {
  background-color: #d1b000;
  color: #fff;
  border: solid 1px #fff;
}

/*-----------------------------------*/
.present_text {
  text-align: center;
  margin-top: 6rem;
}
.present_text p {
  color: #002a7f;
  font-weight: bold;
  font-size: 2rem;
  display: inline-block;
  position: relative;
}
.present_text p:before {
  content: "";
  width: 24px;
  height: 2px;
  background: #002a7f;
  transform: rotate(60deg);
  position: absolute;
  top: 14px;
  left: -30px;
}
.present_text p:after {
  content: "";
  width: 24px;
  height: 2px;
  background: #002a7f;
  transform: rotate(120deg);
  position: absolute;
  top: 14px;
  right: -30px;
}

.normal-img {
  width: 90%;
  margin: 0 auto;
  margin-top: 2rem;
}
.normal-img img {
  width: 100%;
  display: block;
}

.normal-img.-tora {
  position: relative;
}
.normal-img.-tora::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -10px;
  background-image: url(../img/tora.png);
  width: 100%;
  max-width: 76px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
}

.case {
  margin-top: 4rem;
  text-align: center;
  /*.table*/
}
.case .table {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid #d1b000;
  /*.text-box*/
}
.case .table .text-box {
  position: relative;
  /*p*/
}
.case .table .text-box:not(:first-child) {
  padding-left: 4.5%;
}
@media screen and (max-width: 375px) {
  .case .table .text-box:not(:first-child) {
    padding-left: 3.5%;
  }
}
.case .table .text-box:not(:last-child) {
  padding-right: 4.5%;
}
@media screen and (max-width: 375px) {
  .case .table .text-box:not(:last-child) {
    padding-right: 3.5%;
  }
}
.case .table .text-box:after {
  content: "";
  height: 50px;
  width: 1px;
  background: #d1b000;
  position: absolute;
  right: 0;
  top: 8px;
}
.case .table .text-box:last-child:after {
  content: none;
}
.case .table .text-box .color-text {
  color: #d1b000;
}
.case .table .text-box p {
  width: 100%;
  font-weight: bold;
  font-size: 2rem;
  line-height: 2.6rem;
  text-align: center;
}

/*.case*/
.case.-fee {
  background: #fff;
  padding: 1rem;
  margin: 2rem auto 0;
  max-width: 500px;
}
.case.-fee .table {
  margin-bottom: .5rem;
  max-width: 800px;
}
.case.-fee .table:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.case.-fee .table .text-box {
  width: 50%;
}

.base-price {
  margin-top: .5rem;
  font-weight: bold;
}
.base-price span {
  font-size: 4rem;
  color: #d1b000;
  margin: 0 .4rem;
}

/*.base-price*/
.base-price.-border_top {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 1rem;
}

.purchase-box {
  background-color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  border: 2px solid #002a7f;
  border-radius: 10px;
  margin-top: 5rem;
}
.purchase-box .purchase-title {
  font-weight: bold;
  font-size: 3rem;
  color: #002a7f;
}

.total-amount-box {
  margin: 4rem 0;
}
.total-amount-box .amount {
  margin-right: .5rem;
  font-weight: bold;
  letter-spacing: .06rem;
  font-size: 2.6rem;
}
@media screen and (max-width: 896px) {
  .total-amount-box .amount {
    margin-right: 0;
    text-align: center;
    line-height: 3rem;
  }
}
.total-amount-box .amount .shame-mainasu {
  margin: 0 .5rem;
  vertical-align: .1rem;
}
.total-amount-box .amount .color-text {
  color: #d1b000;
  font-size: 3.4rem;
  margin: 0 .4rem;
}
.total-amount-box .total-amount {
  font-weight: bold;
  border-bottom: 4px solid #e86500;
  font-size: 1.8rem;
}
.total-amount-box .total-amount .total {
  font-size: 3.8rem;
  color: #e86500;
  margin: 0 .5rem;
}
.total-amount-box .total-amount .shame-icorl {
  vertical-align: .4rem;
  font-size: 2.4rem;
  margin: 0 .4rem;
}

/*------------------吹き出し-----------------------*/
.arrow-box {
  position: relative;
  background: #fff;
  padding: 1.5rem 2rem;
  width: 100%;
  text-align: center;
  border-bottom: 2px solid #002a7f;
  color: #002a7f;
  font-size: 2.6rem;
  font-weight: bold;
  margin: 0 auto;
  margin-top: 8rem;
}
@media screen and (max-width: 1024px) {
  .arrow-box {
    max-width: 500px;
  }
}
@media screen and (max-width: 896px) {
  .arrow-box {
    font-size: 2rem;
    margin-top: 5rem;
  }
}
@media screen and (max-width: 630px) {
  .arrow-box {
    text-align: left;
  }
}
.arrow-box::after, .arrow-box::before {
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
}
.arrow-box::after {
  border-color: rgba(255, 255, 255, 0);
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 13px;
  border-right-width: 13px;
  margin-left: -13px;
  border-top-color: #fff;
}
.arrow-box::before {
  border-color: rgba(12, 10, 255, 0);
  border-top-width: 11px;
  border-bottom-width: 11px;
  border-left-width: 14px;
  border-right-width: 14px;
  margin-left: -14px;
  margin-top: 2px;
  border-top-color: #002a7f;
}

/*---------------------すてっぷ---------------------------*/
.point-box {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  /*.step-box*/
}
@media screen and (max-width: 1024px) {
  .point-box {
    flex-wrap: wrap;
  }
}
.point-box .step-box {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #002a7f;
  padding: 3rem;
  transition-duration: .5s;
  /*.title*/
  /*.step-text*/
}
@media screen and (max-width: 1024px) {
  .point-box .step-box {
    width: 100%;
  }
}
.point-box .step-box:not(:last-child) {
  margin-right: 1%;
}
@media screen and (max-width: 1024px) {
  .point-box .step-box:not(:last-child) {
    margin-right: 0;
  }
}
@media screen and (max-width: 896px) {
  .point-box .step-box {
    padding: 2rem;
  }
}
.point-box .step-box .title {
  position: absolute;
}
.point-box .step-box .step-text {
  width: 100%;
  letter-spacing: .15rem;
  text-align: center;
  z-index: 2;
  font-size: 2.4rem;
  text-align: left;
  /*span*/
}
@media screen and (max-width: 896px) {
  .point-box .step-box .step-text {
    font-size: 2rem;
  }
}
.point-box .step-box .step-text span {
  font-size: 3rem;
  font-weight: bold;
  color: #002a7f;
  margin-bottom: 2rem;
  margin-top: 2rem;
  display: block;
  text-align: center;
}
@media screen and (max-width: 896px) {
  .point-box .step-box .step-text span {
    font-size: 2.2rem;
  }
}

.point-box.-step {
  /*.step-box*/
}
.point-box.-step .step-box {
  overflow: visible;
  /*.title*/
}
.point-box.-step .step-box:not(:last-child) {
  margin-bottom: 8rem;
}
@media screen and (max-width: 896px) {
  .point-box.-step .step-box:not(:last-child) {
    margin-bottom: 4rem;
  }
}
.point-box.-step .step-box .title {
  left: -3%;
  top: -13%;
  max-width: 250px;
}
.point-box.-step .step-box .title img {
  width: 50%;
}

/*.point-box.-step*/
/*---------------------エリア---------------------------*/
#erea .h3-title {
  border: 2px solid #fff;
  margin-bottom: 40px;
}
#erea .map-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding-top: 6rem;
}
@media screen and (max-width: 1024px) {
  #erea .map-box {
    flex-wrap: wrap;
  }
}
#erea .map-box .map-img {
  max-width: 540px;
  margin: 0 4rem 0 0;
}
@media screen and (max-width: 1024px) {
  #erea .map-box .map-img {
    margin: 4rem auto;
  }
}
#erea .map-box .map-img img {
  width: 100%;
}
#erea .map-box .map-list {
  font-size: 1.4rem;
}
#erea .map-box .map-list li:not(:last-child) {
  margin-bottom: 2rem;
}

/*---------------------アクセス---------------------------*/
#access .shop-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 630px) {
  #access .shop-list {
    display: block;
  }
}
#access .shop-list .access-card {
  width: 48%;
}
@media screen and (max-width: 630px) {
  #access .shop-list .access-card {
    width: 100%;
  }
}
#access .shop-list .access-card:not(:last-child) {
  margin-right: 20px;
}
@media screen and (max-width: 630px) {
  #access .shop-list .access-card:not(:last-child) {
    margin-right: 0;
    margin-bottom: 40px;
  }
}
#access .shop-list .access-card .shop-img {
  width: 100%;
  margin-bottom: 14px;
}
#access .shop-list .access-card .shop-img img {
  width: 100%;
}
#access .shop-list .access-card .shop-text .bold {
  font-weight: bold;
  margin-bottom: 4px;
}

/*---------------------会社概要---------------------------*/
#company {
  font-size: 1.4rem;
}
#company .company-inner {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 896px) {
  #company .company-inner {
    display: block;
  }
}
#company .company-inner .img-block {
  width: 40%;
  display: block;
}
@media screen and (max-width: 896px) {
  #company .company-inner .img-block {
    width: 100%;
    margin-bottom: 2%;
  }
}
#company .company-inner .img-block img {
  width: 100%;
}
#company .company-inner table {
  width: 58%;
  margin-left: 2%;
}
@media screen and (max-width: 896px) {
  #company .company-inner table {
    width: 100%;
    margin-left: 0;
  }
}
#company .company-inner table tr th {
  font-weight: bold;
  max-width: 200px;
  width: 26%;
  vertical-align: top;
}
#company .company-inner table tr td {
  padding-bottom: 1rem;
  line-height: 2rem;
}
#company .company-inner table tr td a {
  text-decoration: none;
}
#company .pdf_list {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 375px) {
  #company .pdf_list {
    font-size: 1.2rem;
    display: block;
  }
}
#company .pdf_list p {
  background-color: #d8d8d8;
  line-height: 4rem;
  width: 49%;
  font-size: 14px;
  border-radius: 6px;
  padding: 0 10px;
}
#company .pdf_list p:not(:last-child) {
  margin-bottom: 5px;
}
#company .pdf_list p:nth-child(even) {
  margin-left: 1%;
}
@media screen and (max-width: 896px) {
  #company .pdf_list p:nth-child(even) {
    margin-left: 0;
  }
}
@media screen and (max-width: 896px) {
  #company .pdf_list p {
    width: 100%;
    font-size: 12px;
  }
}
#company .pdf_list p a {
  color: #333;
  display: inline-block;
  position: relative;
}
#company .pdf_list p a:after {
  content: "";
  background: url(/img/pdf.svg) center center no-repeat;
  width: 16px;
  height: 39px;
  background-size: 14px 18px;
  position: absolute;
  top: 0;
  right: -24px;
}

.googlemap {
  position: relative;
  height: 0;
  width: 100%;
  padding-top: 66.6666%;
}
.googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*---------------------banner---------------------------*/
.banner-erea {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 896px) {
  .banner-erea {
    margin: 0;
  }
}
.banner-erea li {
  width: 48%;
  cursor: pointer;
}
@media screen and (max-width: 630px) {
  .banner-erea li {
    width: 100%;
  }
}
.banner-erea li:not(:last-child) {
  margin-right: 20px;
}
@media screen and (max-width: 630px) {
  .banner-erea li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.banner-erea li .sub-text {
  font-weight: bold;
  text-align: center;
  padding: .5rem;
  letter-spacing: .12rem;
}
.banner-erea li a {
  display: block;
  transition-duration: .3s;
}
.banner-erea li a:hover {
  opacity: .5;
}
.banner-erea li a img {
  display: block;
  width: 100%;
}

/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.accordion-area li:not(:last-child) {
  margin-bottom: 6px;
}

.accordion-area section {
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 8px;
}

/*アコーディオンタイトル*/
.accordion-title {
  position: relative;
  /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;
  padding: 3% 3% 3% 50px;
  transition: all .5s ease;
  color: #002a7f;
  line-height: 2.6rem;
}
@media screen and (max-width: 896px) {
  .accordion-title {
    font-size: 20px;
  }
}
.accordion-title span {
  color: #333;
  font-size: 20px;
}

/*アイコンの＋と×*/
.accordion-title::before,
.accordion-title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #333;
}

.accordion-title::before {
  top: 48%;
  left: 25px;
  transform: rotate(0deg);
}

.accordion-title::after {
  top: 48%;
  left: 25px;
  transform: rotate(90deg);
}

/*　closeというクラスがついたら形状変化　*/
.accordion-title.close::before {
  transform: rotate(45deg);
}

.accordion-title.close::after {
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
  display: none;
  /*はじめは非表示*/
  background: #fff;
  margin: 0 3% 3% 3%;
  padding: 0 3%;
}
.box .flex {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.box .flex .list {
  width: 49%;
  padding: 8px 6px;
  font-size: 18px;
  line-height: 2.4rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 896px) {
  .box .flex .list {
    width: 100%;
  }
}
.box .bold_text {
  font-weight: bold;
  font-size: 20px;
  display: inline-block;
  color: #e86500;
  margin-bottom: 10px;
  padding-bottom: 4px;
  border-bottom: 2px solid #e86500;
  width: 100%;
}

/*========= レイアウトのためのCSS ===============*/
.sub_banner {
  width: 100%;
  margin: 0 auto;
  padding: 60px 0;
}
@media screen and (max-width: 896px) {
  .sub_banner {
    padding: 30px 0;
  }
}
.sub_banner .sub-title {
  font-size: 28px;
  margin-bottom: 20px;
}
.sub_banner a {
  display: block;
  border: 6px solid #002a7f;
  transition-duration: .4s;
}
.sub_banner a:hover {
  opacity: .8;
}
.sub_banner a img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

/*---------------------footer---------------------------*/
footer .footer_flont {
  background: #fff;
  padding: 2rem 0;
  text-align: center;
}
footer .footer_flont img {
  max-width: 200px;
}
footer .copyright {
  background: #d8d8d8;
  padding: 2rem 1rem;
  padding-bottom: 11rem;
  text-align: center;
  font-size: 1.2rem;
}
