@charset "UTF-8";
/*
Theme Name:株式会社エコ
Author: マックスプリント
Description: 株式会社エコオリジナルテーマ
Version: 1.0
License: 本テーマは株式会社エコ様の以来によりマックスプリントが作成したものです
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
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-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-weight: normal;
}

img {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: bottom;
  background: transparent;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #000;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

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

.clearfix {
  display: inline-table;
  min-height: 1%;
}

* {
  box-sizing: border-box;
}

/* Hides from IE-mac */
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/* End hide from IE-mac */
.clear {
  clear: both;
}

body {
  font-family: "Noto Sans JP", "Montserrat", sans-serif;
  font-size: 18px;
  letter-spacing: normal;
  color: #000;
}

img {
  max-width: 100%;
  height: auto;
}

.pc {
  display: block;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.ppc {
  display: block;
}
@media (max-width: 680px) {
  .ppc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
}

.ssp {
  display: none;
}
@media (max-width: 680px) {
  .ssp {
    display: block;
  }
}

.tb {
  display: none;
}
@media (max-width: 1200px) {
  .tb {
    display: block;
  }
}

.text-center {
  text-align: center;
}

/*-------------------------
 *ハンバーガーメニュー
 --------------------------*/
.btn_hidden {
  display: none;
}

.hamburger_menu {
  position: fixed;
  top: 16px;
  right: 30px;
  z-index: 200;
}
@media (max-width: 980px) {
  .hamburger_menu {
    right: 16px;
  }
}

#menu_btn {
  display: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-left: auto;
  background: #015E6D;
  z-index: 300;
}
@media (max-width: 980px) {
  #menu_btn {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
#menu_btn:hover {
  cursor: pointer;
}
#menu_btn span,
#menu_btn span:before,
#menu_btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 30px;
  background-color: #ffffff;
  position: absolute;
  transition: all 0.4s;
  z-index: 300;
}
#menu_btn span:before {
  bottom: 10px;
}
#menu_btn span:after {
  top: 10px;
}

@media (max-width: 980px) {
  #menu_btn_check:checked ~ #menu_btn span {
    background-color: rgba(255, 255, 255, 0);
  }
  #menu_btn_check:checked ~ #menu_btn span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #menu_btn_check:checked ~ #menu_btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }
}

@media (max-width: 980px) {
  #menu_content {
    position: absolute;
    top: 70px;
    right: -216px;
    width: 200px;
    height: 260px;
    padding: 20px;
    background-color: #fff;
    transition: all 0.4s;
  }
}

.navigation {
  display: flex;
  max-width: 520px;
  padding: 0 20px;
  height: 66px;
  border-radius: 33px;
  background-color: #fff;
  box-shadow: 6px 6px 10px #656565;
}
@media (max-width: 980px) {
  .navigation {
    display: block;
    top: 70px;
    right: 0;
    box-shadow: none;
  }
}
.navigation .item {
  width: 118px;
  line-height: 66px;
}
@media (max-width: 980px) {
  .navigation .item {
    height: 50px;
    margin: auto;
  }
}
.navigation .item a {
  display: block;
  width: 100%;
  height: 100%;
  color: #015E6D;
  font-weight: 700;
  transition: all 0.2s;
}
@media (min-width: 1200px) {
  .navigation .item a:hover {
    font-size: 20px;
  }
}

#menu_btn_check:checked ~ #menu_content {
  right: 0;
}

/*-------------------------
 *ファーストビュー
 --------------------------*/
.hero_wrap {
  width: 100%;
  max-width: 100vw;
  position: relative;
  height: 75.5vw;
  overflow: hidden;
  margin-bottom: 40px;
}
@media (max-width: 980px) {
  .hero_wrap {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .hero_wrap {
    height: 900px;
    margin-bottom: 0;
  }
}
.hero_wrap .logo_wrap {
  width: 20%;
  position: absolute;
  top: 1.8%;
  left: 3%;
}
@media (max-width: 1200px) {
  .hero_wrap .logo_wrap {
    width: 260px;
    top: 20px;
  }
}
@media (max-width: 980px) {
  .hero_wrap .logo_wrap {
    width: 220px;
  }
}
.hero_wrap .eco {
  width: 5.8%;
  position: absolute;
  top: 13.1%;
  left: 4.5%;
}
@media (max-width: 768px) {
  .hero_wrap .eco {
    width: 50px;
    top: 100px;
    left: 40px;
  }
}
@media (max-width: 680px) {
  .hero_wrap .eco {
    left: 16px;
  }
}
.hero_wrap .eco_e {
  width: 41.6%;
  position: absolute;
  top: 13.1%;
  left: 11.8%;
  -webkit-animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@-webkit-keyframes slideIn {
  0% {
    transform: translateX(200px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
@keyframes slideIn {
  0% {
    transform: translateX(200px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .hero_wrap .eco_e {
    width: 359px;
    top: 100px;
    left: 105px;
  }
}
@media (max-width: 680px) {
  .hero_wrap .eco_e {
    width: 75.4%;
    left: 76px;
  }
}
.hero_wrap .eco_c {
  width: 33.8%;
  position: absolute;
  top: 24.8%;
  left: 11.8%;
  -webkit-animation: slideIn 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: slideIn 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes slideIn {
  0% {
    transform: translateX(300px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .hero_wrap .eco_c {
    width: 292px;
    top: 174px;
    left: 105px;
  }
}
@media (max-width: 680px) {
  .hero_wrap .eco_c {
    width: 61%;
    left: 76px;
  }
}
.hero_wrap .eco_o {
  width: 30.2%;
  position: absolute;
  top: 36.1%;
  left: 11.8%;
  -webkit-animation: slideIn 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
          animation: slideIn 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes slideIn {
  0% {
    transform: translateX(400px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .hero_wrap .eco_o {
    width: 260px;
    top: 250px;
    left: 105px;
  }
}
@media (max-width: 680px) {
  .hero_wrap .eco_o {
    width: 54.3%;
    left: 76px;
  }
}
.hero_wrap .hero {
  width: 69%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  transform: translate(300px, -300px) scale(0.9);
  filter: blur(15px);
  -webkit-animation: slideDiagonalWithBlur 2s cubic-bezier(0.25, 1, 0.5, 1) 0.5s forwards;
          animation: slideDiagonalWithBlur 2s cubic-bezier(0.25, 1, 0.5, 1) 0.5s forwards;
}
@-webkit-keyframes slideDiagonalWithBlur {
  from {
    transform: translate(400px, -400px) scale(0.9);
    opacity: 0;
    filter: blur(15px);
  }
  to {
    transform: translate(0, 0) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes slideDiagonalWithBlur {
  from {
    transform: translate(400px, -400px) scale(0.9);
    opacity: 0;
    filter: blur(15px);
  }
  to {
    transform: translate(0, 0) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
@media (max-width: 768px) {
  .hero_wrap .hero {
    width: 80%;
    top: 120px;
  }
}
@media (max-width: 680px) {
  .hero_wrap .hero {
    width: 95%;
    top: 260px;
  }
}
.hero_wrap .kaitori {
  width: 42.5%;
  position: absolute;
  bottom: 5.3%;
  left: 4.5%;
  opacity: 0;
  transform: translateY(100px);
  -webkit-animation: fadeSlideUp 1s ease-out 2s forwards;
          animation: fadeSlideUp 1s ease-out 2s forwards;
}
@-webkit-keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .hero_wrap .kaitori {
    width: 400px;
    bottom: 50px;
    left: 40px;
  }
}
@media (max-width: 680px) {
  .hero_wrap .kaitori {
    width: 95%;
    max-width: 400px;
    left: 16px;
  }
}

/*-------------------------
 *トップ～回収・買取品目
 --------------------------*/
.service_wrap {
  width: 100%;
  padding: 100px;
  background-color: #EDF2F3;
}
@media (max-width: 1200px) {
  .service_wrap {
    padding: 80px 60px;
  }
}
@media (max-width: 980px) {
  .service_wrap {
    padding: 60px 40px;
  }
}
@media (max-width: 680px) {
  .service_wrap {
    padding: 60px 20px;
  }
}

.service_title_wrap {
  max-width: 1540px;
  margin: auto;
  border-bottom: #015E6D 1px solid;
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media (max-width: 1200px) {
  .service_title_wrap {
    margin-bottom: 40px;
  }
}
@media (max-width: 680px) {
  .service_title_wrap {
    display: block;
  }
}
.service_title_wrap .title_ja {
  color: #015E6D;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-top: 36px;
}
@media (max-width: 1200px) {
  .service_title_wrap .title_ja {
    font-size: 24px;
    padding-top: 15px;
  }
}
@media (max-width: 980px) {
  .service_title_wrap .title_ja {
    font-size: 20px;
    padding-top: 15px;
  }
}
@media (max-width: 680px) {
  .service_title_wrap .title_ja {
    padding-top: 0;
  }
}
.service_title_wrap .title_en {
  color: #015E6D;
  font-family: "Montserrat";
  font-size: 120px;
  font-weight: 700;
  line-height: 85px;
}
@media (max-width: 1200px) {
  .service_title_wrap .title_en {
    font-size: 80px;
    line-height: 56px;
  }
}
@media (max-width: 980px) {
  .service_title_wrap .title_en {
    font-size: 70px;
    line-height: 49px;
  }
}
@media (max-width: 680px) {
  .service_title_wrap .title_en {
    font-size: 60px;
  }
}

.service_item_wrap {
  max-width: 1540px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1200px) {
  .service_item_wrap {
    gap: 30px;
  }
}
@media (max-width: 980px) {
  .service_item_wrap {
    gap: 20px;
  }
}
@media (max-width: 680px) {
  .service_item_wrap {
    display: block;
    max-width: 400px;
  }
}
.service_item_wrap .service_item {
  flex: 1;
  max-width: none;
}
@media (max-width: 680px) {
  .service_item_wrap .service_item {
    margin-bottom: 20px;
  }
}

.zoom_wrap {
  overflow: hidden;
}
.zoom_wrap img {
  transition: transform 0.4s ease;
  display: block;
}
@media (min-width: 1200px) {
  .zoom_wrap img:hover {
    transform: scale(1.08);
  }
}

.service_item_text {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
}
@media (max-width: 980px) {
  .service_item_text {
    padding-top: 6px;
  }
}
.service_item_text .alumi {
  font-size: clamp(24px, 2vw, 38px);
  font-weight: 700;
  color: #015E6D;
  letter-spacing: 0.1em;
}
.service_item_text .tire {
  font-size: clamp(16px, 1.3vw, 22px);
  font-weight: 700;
  color: #015E6D;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
.service_item_text .arrow {
  width: 30px;
  display: grid;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 980px) {
  .service_item_text .arrow {
    width: 24px;
  }
}

.info_wrap {
  width: 100%;
  background-color: #51B670;
  padding: 100px;
}
@media (max-width: 1200px) {
  .info_wrap {
    padding: 80px 60px;
  }
}
@media (max-width: 980px) {
  .info_wrap {
    padding: 60px 40px;
  }
}
@media (max-width: 680px) {
  .info_wrap {
    padding: 60px 20px;
  }
}

.info_title_wrap {
  max-width: 1240px;
  margin: auto;
  border-bottom: #fff 1px solid;
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media (max-width: 1200px) {
  .info_title_wrap {
    margin-bottom: 40px;
  }
}
@media (max-width: 680px) {
  .info_title_wrap {
    display: block;
  }
}
.info_title_wrap .title_en {
  color: #fff;
  font-family: "Montserrat";
  font-size: 120px;
  font-weight: 700;
  line-height: 85px;
}
@media (max-width: 1200px) {
  .info_title_wrap .title_en {
    font-size: 80px;
    line-height: 56px;
  }
}
@media (max-width: 980px) {
  .info_title_wrap .title_en {
    font-size: 70px;
    line-height: 49px;
  }
}
@media (max-width: 680px) {
  .info_title_wrap .title_en {
    font-size: 50px;
  }
}
.info_title_wrap .title_ja {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-top: 36px;
}
@media (max-width: 1200px) {
  .info_title_wrap .title_ja {
    font-size: 24px;
    padding-top: 15px;
  }
}
@media (max-width: 980px) {
  .info_title_wrap .title_ja {
    font-size: 20px;
    padding-top: 15px;
  }
}
@media (max-width: 680px) {
  .info_title_wrap .title_ja {
    padding-top: 0;
  }
}
.info_title_wrap .title_en_info {
  font-size: clamp(100px, 8.3vw, 120px);
}
@media (max-width: 1200px) {
  .info_title_wrap .title_en_info {
    font-size: 80px;
    line-height: 56px;
  }
}
@media (max-width: 980px) {
  .info_title_wrap .title_en_info {
    font-size: 70px;
    line-height: 49px;
  }
}
@media (max-width: 680px) {
  .info_title_wrap .title_en_info {
    font-size: 50px;
  }
}

.info_item_wrap {
  max-width: 920px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 980px) {
  .info_item_wrap {
    gap: 30px;
  }
}
@media (max-width: 680px) {
  .info_item_wrap {
    display: block;
  }
}
.info_item_wrap .info_item {
  max-width: 400px;
}
@media (max-width: 680px) {
  .info_item_wrap .info_item {
    margin: auto;
  }
}
.info_item_wrap .info_item .info_item_title {
  width: 100%;
  background-color: #015E6D;
  color: #fff;
  line-height: 63px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
@media (max-width: 1200px) {
  .info_item_wrap .info_item .info_item_title {
    line-height: 50px;
    font-size: 20px;
  }
}
.info_item_wrap .info_item .info_text {
  width: 100%;
  background-color: #fff;
  padding: 10px 24px;
}
@media (max-width: 1200px) {
  .info_item_wrap .info_item .info_text {
    padding: 10px 30px;
  }
}
@media (max-width: 980px) {
  .info_item_wrap .info_item .info_text {
    padding: 10px 20px;
  }
}
.info_item_wrap .info_item .info_text p {
  color: #015E6D;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (max-width: 1200px) {
  .info_item_wrap .info_item .info_text p {
    font-size: 22px;
  }
}
@media (max-width: 980px) {
  .info_item_wrap .info_item .info_text p {
    font-size: 20px;
  }
}
@media (max-width: 980px) {
  .info_item_wrap .info_item .info_text .text {
    font-size: 16px;
  }
}
@media (max-width: 680px) {
  .info_item_wrap .info_item_calendar {
    margin-bottom: 40px;
  }
}
.info_item_wrap .info_item_calendar .calendar_box {
  width: 100%;
  background-color: #fff;
  padding: 10px 16px;
}

.info_item_day {
  padding-top: 60px;
}
@media (max-width: 680px) {
  .info_item_day {
    padding-top: 40px;
  }
}

.info_news_wrap {
  padding-top: 20px;
}

.news_wrap {
  max-width: 1240px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 980px) {
  .news_wrap {
    gap: 16px;
  }
}
@media (max-width: 680px) {
  .news_wrap {
    display: block;
  }
}
.news_wrap .news_item {
  flex: 1;
  max-width: none;
  padding: 20px;
  background-color: #fff;
}
@media (max-width: 680px) {
  .news_wrap .news_item {
    margin-bottom: 20px;
  }
}
.news_wrap .news_item .title {
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 20px;
  color: #015E6D;
  line-height: 1.3;
}
@media (max-width: 1200px) {
  .news_wrap .news_item .title {
    font-size: 22px;
  }
}
@media (max-width: 680px) {
  .news_wrap .news_item .title {
    padding-bottom: 16px;
  }
}
@media (max-width: 680px) {
  .news_wrap .news_item .text {
    font-size: 16px;
  }
}

.location_wrap {
  width: 100%;
  padding: 100px;
}
@media (max-width: 1200px) {
  .location_wrap {
    padding: 80px 60px;
  }
}
@media (max-width: 980px) {
  .location_wrap {
    padding: 60px 40px;
  }
}
@media (max-width: 680px) {
  .location_wrap {
    padding: 60px 20px 0;
  }
}

.location_title_wrap {
  border-bottom: #015E6D 1px solid;
}
.location_title_wrap .title_en {
  color: #015E6D;
}
.location_title_wrap .title_ja {
  color: #015E6D;
}

.location_item_wrap {
  max-width: 1240px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 680px) {
  .location_item_wrap {
    display: block;
  }
}
.location_item_wrap .location_item {
  max-width: 562px;
  margin: auto;
}
@media (max-width: 680px) {
  .location_item_wrap .location_item {
    margin-bottom: 40px;
  }
}
.location_item_wrap .location_item .location_item_title {
  width: 100%;
  background-color: #015E6D;
  line-height: 63px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .location_item_wrap .location_item .location_item_title {
    line-height: 60px;
    font-size: 22px;
  }
}
@media (max-width: 980px) {
  .location_item_wrap .location_item .location_item_title {
    line-height: 50px;
    font-size: 20px;
  }
}
@media (max-width: 680px) {
  .location_item_wrap .location_item .location_item_title {
    margin-bottom: 10px;
  }
}
.location_item_wrap .location_item .location_adress {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #015E6D;
  padding-bottom: 20px;
  line-height: 1.3;
}
@media (max-width: 1200px) {
  .location_item_wrap .location_item .location_adress {
    font-size: 22px;
  }
}
@media (max-width: 980px) {
  .location_item_wrap .location_item .location_adress {
    font-size: 20px;
  }
}
@media (max-width: 680px) {
  .location_item_wrap .location_item .location_adress {
    padding-bottom: 10px;
  }
}
.location_item_wrap .location_item .map {
  width: 100%;
  margin-bottom: 20px;
  position: relative;
  padding-top: 56.25%;
}
.location_item_wrap .location_item .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.phoen_wrap {
  width: 100%;
  padding: 40px 16px 140px;
}
@media (max-width: 1200px) {
  .phoen_wrap {
    padding: 40px 20px 100px;
  }
}
@media (max-width: 980px) {
  .phoen_wrap {
    padding: 40px 20px 80px;
  }
}
@media (max-width: 680px) {
  .phoen_wrap {
    padding: 20px 20px 60px;
  }
}
.phoen_wrap .text {
  font-size: 32px;
  font-weight: 700;
  color: #015E6D;
  letter-spacing: 0.1em;
  padding-bottom: 20px;
}
@media (max-width: 1200px) {
  .phoen_wrap .text {
    font-size: 22px;
  }
}
.phoen_wrap .phone_number {
  max-width: 700px;
  margin: auto;
  border: #015E6D 3px solid;
  padding: 10px;
}
@media (max-width: 1200px) {
  .phoen_wrap .phone_number {
    max-width: 500px;
  }
}
.phoen_wrap .phone_number .tel_link {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #015E6D;
}
@media (max-width: 1200px) {
  .phoen_wrap .phone_number .tel_link {
    font-size: 28px;
  }
}

footer {
  width: 100%;
  padding: 100px 16px 40px;
  background-color: #EDF2F3;
}
@media (max-width: 1200px) {
  footer {
    padding: 80px 16px 40px;
  }
}
@media (max-width: 680px) {
  footer {
    padding: 60px 16px 30px;
  }
}
footer .logo {
  max-width: 300px;
  margin: auto;
  padding-bottom: 60px;
}
@media (max-width: 1200px) {
  footer .logo {
    padding-bottom: 30px;
  }
}
@media (max-width: 680px) {
  footer .logo {
    max-width: 220px;
  }
}
footer .footer_text {
  max-width: 350px;
  margin: auto;
  padding-left: 10px;
}
footer .footer_text p {
  font-size: 16px;
}
@media (max-width: 680px) {
  footer .footer_text p {
    font-size: 15px;
  }
}
footer .copy {
  max-width: 1540px;
  margin: auto;
  margin-top: 60px;
  border-top: #015E6D 1px solid;
  padding-top: 40px;
}
@media (max-width: 1200px) {
  footer .copy {
    margin-top: 40px;
  }
}
@media (max-width: 680px) {
  footer .copy {
    padding-top: 30px;
  }
}
footer .copy p {
  font-size: 16px;
}

/*-------------------------
 *回収・買取品目（サービス）
 --------------------------*/
.ser_hero_wrap {
  width: 100%;
  height: 22vw;
  min-height: 240px;
  max-height: 480px;
  position: relative;
}
@media (max-width: 680px) {
  .ser_hero_wrap {
    min-height: 210px;
  }
}

.logo_wrap {
  position: absolute;
  top: 20px;
  left: 20px;
}
@media (max-width: 768px) {
  .logo_wrap {
    width: 240px;
  }
}

.hero_img {
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1200px) {
  .hero_img {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .hero_img {
    width: 55%;
  }
}
@media (max-width: 680px) {
  .hero_img {
    display: none;
  }
}

.ser_hero_title {
  position: absolute;
  bottom: 0;
  left: 17.7%;
  font-size: clamp(40px, 3.8vw, 70px);
  font-weight: 900;
  color: #015E6D;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media (max-width: 1200px) {
  .ser_hero_title {
    left: 10%;
  }
}
@media (max-width: 680px) {
  .ser_hero_title {
    left: 5%;
  }
}
.ser_hero_title span {
  font-family: "Montserrat";
  font-size: 48px;
  font-weight: 700;
  color: #9DD6AF;
  letter-spacing: -0.02em;
}

.recycled_items_wrap {
  width: 100%;
  margin-top: 120px;
}
@media (max-width: 1200px) {
  .recycled_items_wrap {
    margin-top: 80px;
  }
}
@media (max-width: 768px) {
  .recycled_items_wrap {
    margin-top: 60px;
  }
}

.ser_icon {
  width: clamp(70px, 7.5vw, 130px);
  margin: auto;
}

.recycled_items_title {
  margin: auto;
  padding: 20px 20px 50px;
}
@media (max-width: 1200px) {
  .recycled_items_title {
    padding: 10px 20px 40px;
  }
}
@media (max-width: 680px) {
  .recycled_items_title {
    padding: 10px 10px 20px;
  }
}
.recycled_items_title .title {
  max-width: 800px;
  margin: auto;
  background-color: #51B670;
  border-radius: 40px;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 0 10px 8px;
}
@media (max-width: 1200px) {
  .recycled_items_title .title {
    font-size: 46px;
  }
}
@media (max-width: 980px) {
  .recycled_items_title .title {
    font-size: 40px;
  }
}
@media (max-width: 680px) {
  .recycled_items_title .title {
    font-size: 38px;
  }
}
.recycled_items_title .title2 {
  padding: 9px 14px 15px;
  line-height: 1.1;
  letter-spacing: normal;
  margin-top: 10px;
}

.recycled_items_title2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.recycled_items_box {
  display: flex;
  gap: 20px;
}
@media (max-width: 1200px) {
  .recycled_items_box {
    gap: 0;
  }
}
@media (max-width: 680px) {
  .recycled_items_box {
    display: block;
  }
}

.recycled_img_wrap {
  flex: 1;
  position: relative;
  height: 390px;
  padding: 20px 30px;
  background-color: #9DD6AF;
}
@media (max-width: 680px) {
  .recycled_img_wrap {
    height: 280px;
  }
}
.recycled_img_wrap .recycled_img {
  max-width: 532px;
  height: 350px;
  overflow: hidden;
  margin-left: auto;
}
@media (max-width: 680px) {
  .recycled_img_wrap .recycled_img {
    height: 240px;
  }
}
.recycled_img_wrap .recycled_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recycled_img_wrap .price {
  position: absolute;
  bottom: -90px;
  right: 60px;
}
@media (max-width: 1200px) {
  .recycled_img_wrap .price {
    width: 160px;
  }
}
@media (max-width: 680px) {
  .recycled_img_wrap .price {
    width: 120px;
    bottom: -20px;
  }
}

.recycled_item {
  flex: 1;
  padding: 0 30px;
}
@media (max-width: 680px) {
  .recycled_item {
    padding: 24px 20px 0;
  }
}
.recycled_item .title {
  margin-right: auto;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #015E6D;
  line-height: 1.3;
  padding-bottom: 20px;
}
@media (max-width: 1200px) {
  .recycled_item .title {
    font-size: 28px;
  }
}
@media (max-width: 680px) {
  .recycled_item .title {
    padding-bottom: 10px;
  }
}
.recycled_item p {
  max-width: 620px;
  padding-bottom: 10px;
}

@media (max-width: 1200px) {
  .pc_non {
    display: none;
  }
}

.recycled_items_box2 {
  display: flex;
  gap: 20px;
  padding-top: 30px;
  margin-bottom: 140px;
}
@media (max-width: 1200px) {
  .recycled_items_box2 {
    gap: 0;
    margin-bottom: 100px;
  }
}
@media (max-width: 680px) {
  .recycled_items_box2 {
    display: block;
    margin-bottom: 60px;
    padding-top: 20px;
  }
}
.recycled_items_box2 .recycled_item2 {
  padding-top: 100px;
}
@media (max-width: 1200px) {
  .recycled_items_box2 .recycled_item2 {
    padding-top: 70px;
  }
}
@media (max-width: 768px) {
  .recycled_items_box2 .recycled_item2 {
    padding-top: 0;
  }
}
.recycled_items_box2 .recycled_item2 .title {
  max-width: 620px;
  margin-left: auto;
  margin-right: 0;
}
.recycled_items_box2 .recycled_item2 p {
  max-width: 620px;
  margin-left: auto;
}

.recycled_img_wrap2 {
  flex: 1;
  padding: 15px 15px 15px 20px;
  background-color: #9DD6AF;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 680px) {
  .recycled_img_wrap2 img {
    width: 150px;
  }
}

.price2 {
  max-width: 180px;
  margin: auto;
  margin-top: 40px;
}
@media (max-width: 1200px) {
  .price2 {
    width: 160px;
  }
}
@media (max-width: 680px) {
  .price2 {
    width: 120px;
    margin: 0 20px 0 auto;
  }
}

.recycled_img_wrap3 {
  width: 82vw;
  margin-left: auto;
  background-color: #9DD6AF;
  padding: 15px 0 15px 20px;
  margin-top: 30px;
  margin-bottom: 140px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .recycled_img_wrap3 {
    margin-bottom: 100px;
  }
}
@media (max-width: 680px) {
  .recycled_img_wrap3 {
    margin-bottom: 60px;
    width: 100%;
    padding: 20px 15px;
    justify-content: center;
    margin-top: 10px;
  }
}
.recycled_img_wrap3 img {
  max-width: 200px;
  margin: 5px;
}
@media (max-width: 680px) {
  .recycled_img_wrap3 img {
    max-width: 143px;
  }
}

/*-------------------------
 *会社概要
 --------------------------*/
.about_hero_wrap {
  width: 100%;
  height: 20vw;
  min-height: 260px;
  max-height: 420px;
  position: relative;
}
@media (max-width: 680px) {
  .about_hero_wrap {
    min-height: 210px;
  }
}

.about_logo_wrap {
  position: absolute;
  top: 20px;
  left: 20px;
}
@media (max-width: 768px) {
  .about_logo_wrap {
    width: 240px;
  }
}

.about_hero_img {
  width: 50%;
  position: absolute;
  top: -40px;
  right: 0;
}
@media (max-width: 980px) {
  .about_hero_img {
    top: 0;
    width: 55%;
  }
}
@media (max-width: 680px) {
  .about_hero_img {
    display: none;
  }
}

.about_hero_title {
  position: absolute;
  bottom: 0;
  left: 17.7%;
  font-size: clamp(40px, 3.8vw, 70px);
  font-weight: 900;
  color: #015E6D;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media (max-width: 1200px) {
  .about_hero_title {
    left: 10%;
  }
}
@media (max-width: 680px) {
  .about_hero_title {
    left: 5%;
  }
}
.about_hero_title span {
  font-family: "Montserrat";
  font-size: 48px;
  font-weight: 700;
  color: #9DD6AF;
  letter-spacing: -0.02em;
}
@media (max-width: 980px) {
  .about_hero_title span {
    font-size: 32px;
  }
}

.about_wrap {
  width: 100%;
  padding: 60px 20px;
}
@media (max-width: 980px) {
  .about_wrap {
    padding: 40px 20px;
  }
}

.message_wrap {
  max-width: 720px;
  margin: auto;
  padding-top: 20px;
}
@media (max-width: 768px) {
  .message_wrap {
    max-width: 600px;
  }
}
.message_wrap .message_title {
  font-size: 42px;
  font-weight: 700;
  color: #015E6D;
  letter-spacing: 0.05em;
  line-height: 1.3;
  padding-bottom: 40px;
}
@media (max-width: 980px) {
  .message_wrap .message_title {
    font-size: 38px;
    padding-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .message_wrap .message_title {
    font-size: 36px;
  }
}
@media (max-width: 680px) {
  .message_wrap .message_title {
    font-size: 30px;
  }
}
@media (max-width: 680px) {
  .message_wrap .message_title .ssp_non {
    display: none;
  }
}
.message_wrap .message_text p {
  line-height: 1.6;
  padding-bottom: 20px;
  letter-spacing: 0.05em;
}

.message_img {
  max-width: 720px;
  margin: auto;
}

.overview_wrap {
  max-width: 653px;
  margin: auto;
  padding: 60px 0;
}
@media (max-width: 768px) {
  .overview_wrap {
    max-width: 538px;
  }
}
@media (max-width: 680px) {
  .overview_wrap {
    max-width: 399px;
  }
}

.overview td {
  padding: 14px;
  letter-spacing: 0.05em;
  border-bottom: #000 1px solid;
}
@media (max-width: 680px) {
  .overview td {
    letter-spacing: normal;
    font-size: 16px;
    padding: 14px 0;
  }
}
.overview .overview_item {
  width: 140px;
}
@media (max-width: 680px) {
  .overview .overview_item {
    width: 90px;
  }
}
.overview .overview_item2 {
  border-top: #000 1px solid;
}
.overview .licenses p {
  line-height: 1.3;
  padding-bottom: 10px;
}
.overview .licenses p:last-child {
  padding-bottom: 0;
}

/*-------------------------
 *採用情報
 --------------------------*/
.recruit_wrap {
  max-width: 600px;
  margin: auto;
  padding-top: 20px;
}
@media (max-width: 680px) {
  .recruit_wrap {
    max-width: 480px;
  }
}
.recruit_wrap .recruit_title {
  font-size: 42px;
  font-weight: 700;
  color: #015E6D;
  letter-spacing: 0.1em;
  line-height: 1.3;
  padding-bottom: 40px;
}
@media (max-width: 980px) {
  .recruit_wrap .recruit_title {
    font-size: 38px;
    padding-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .recruit_wrap .recruit_title {
    font-size: 36px;
  }
}
@media (max-width: 680px) {
  .recruit_wrap .recruit_title {
    font-size: 30px;
  }
}
@media (max-width: 680px) {
  .recruit_wrap .recruit_title .ssp_non {
    display: none;
  }
}
.recruit_wrap .recruit_text {
  padding-bottom: 40px;
}
@media (max-width: 680px) {
  .recruit_wrap .recruit_text {
    padding-bottom: 20px;
  }
}
.recruit_wrap .recruit_text p {
  line-height: 1.6;
  padding-bottom: 20px;
  letter-spacing: 0.1em;
}

.recruit_point_wrap {
  max-width: 800px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 80px;
}
@media (max-width: 980px) {
  .recruit_point_wrap {
    max-width: 640px;
    padding-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .recruit_point_wrap {
    max-width: 600px;
  }
}
@media (max-width: 680px) {
  .recruit_point_wrap {
    max-width: 400px;
    padding-bottom: 40px;
    gap: 4px;
  }
}
.recruit_point_wrap .recruit_circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-color: #51B670;
  display: grid;
  place-items: center;
}
@media (max-width: 980px) {
  .recruit_point_wrap .recruit_circle {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 768px) {
  .recruit_point_wrap .recruit_circle {
    width: 180px;
    height: 180px;
  }
}
@media (max-width: 680px) {
  .recruit_point_wrap .recruit_circle {
    width: 110px;
    height: 110px;
  }
}
.recruit_point_wrap .recruit_circle p {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 4px #414141;
  letter-spacing: 0.1em;
}
@media (max-width: 980px) {
  .recruit_point_wrap .recruit_circle p {
    font-size: 24px;
  }
}
@media (max-width: 680px) {
  .recruit_point_wrap .recruit_circle p {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.3;
  }
}

.job_wrap {
  max-width: 1240px;
  margin: auto;
  margin-bottom: 80px;
  border: #51B670 5px solid;
}
@media (max-width: 680px) {
  .job_wrap {
    margin-bottom: 40px;
  }
}
.job_wrap .job_name {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 10px;
  color: #015E6D;
}
@media (max-width: 980px) {
  .job_wrap .job_name {
    font-size: 28px;
  }
}
@media (max-width: 680px) {
  .job_wrap .job_name {
    font-size: 22px;
  }
}
.job_wrap .job_title {
  font-size: 42px;
  font-weight: 700;
  padding: 20px;
  color: #fff;
  background-color: #51B670;
  line-height: 1.3;
}
@media (max-width: 980px) {
  .job_wrap .job_title {
    font-size: 36px;
  }
}
@media (max-width: 680px) {
  .job_wrap .job_title {
    font-size: 28px;
    padding: 16px 6px;
  }
}
.job_wrap .job_text {
  font-size: 20px;
  padding: 20px 10px;
}
.job_wrap .job_text span {
  border-bottom: #000 1px solid;
}
@media (max-width: 680px) {
  .job_wrap .job_text {
    font-size: 18px;
  }
}

.jog_img {
  max-width: 960px;
  margin: auto;
  margin-bottom: 40px;
}
@media (max-width: 680px) {
  .jog_img {
    margin-bottom: 0%;
  }
}

.treatment_wrap {
  max-width: 960px;
  margin: auto;
}
.treatment_wrap .title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-bottom: 20px;
  color: #015E6D;
}
@media (max-width: 980px) {
  .treatment_wrap .title {
    font-size: 38px;
  }
}
@media (max-width: 680px) {
  .treatment_wrap .title {
    font-size: 30px;
  }
}
/*# sourceMappingURL=style.css.map */