@charset "UTF-8";
/* SCSS Document */
/*------------------------------------------------------------

common

------------------------------------------------------------*/
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
* {
  box-sizing: border-box;
}

html {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

body {
  font-family: Roboto, 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
  counter-reset: item;
}

.loaded {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
a {
  text-decoration: none;
}

.flex {
  display: flex;
}

.left {
  width: 30%;
}

.right {
  width: 70%;
}

.wht {
  color: #fff;
}

.bold {
  font-weight: bold;
}

@media screen and (max-width: 480px) {
  .pc-br {
    display: none;
  }
}

.sp-br {
  display: none;
}
@media screen and (max-width: 480px) {
  .sp-br {
    display: block;
  }
}

#page_top {
  display: none;
  position: fixed;
}
@media screen and (max-width: 480px) {
  #page_top {
    display: block;
    background: #448aca;
    opacity: 0.6;
    right: 10px;
    bottom: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 99;
  }
}
#page_top a {
  text-decoration: none;
}
@media screen and (max-width: 480px) {
  #page_top a {
    position: relative;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
  }
}
#page_top a::after {
  content: "PAGE TOP";
  font-size: 13px;
  color: #fff;
  position: absolute;
  top: 30px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 480px) {
  #page_top a::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f102";
    font-size: 25px;
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
}

/********************
loading effects
********************/
.loadingAnim {
  position: fixed;
  z-index: 99999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  /* 	&::after{
  	position: absolute;
  	top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
  	display: block;
  	content: "";
  	background: url();
  	background-size: contain;
  	background-repeat: no-repeat;
  	width: 200px;
  	height: 162px;
  	z-index: 99998;

  	@include sp {
  		width: 100px;
  		height: 81px;
  	}
  } */
}
.loadingAnim::before {
  line-height: 1;
  position: fixed;
  z-index: 99998;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  content: " ";
  transition: all 0.1s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition-delay: 0.1s;
  background: linear-gradient(-45deg, #beedbe 0%, #008000 100%);
  background: -webkit-linear-gradient(-45deg, #beedbe 0%, #008000 100%);
  top: 0;
}

.loaded .loadingAnim::before {
  opacity: 0;
}

.loadingAnim_line {
  line-height: 1;
  position: fixed;
  z-index: 99999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  overflow: hidden;
  width: 250px;
  height: 1.25em;
  margin: auto;
  transition: all 0.1s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition-delay: 0s;
  text-align: center;
}
.loadingAnim_line::before {
  font-size: 1.25em;
  font-weight: bold;
  font-style: normal;
  line-height: 1;
  display: block;
  content: "Loading...";
  animation: loadingAnim_text 1s ease 0.1s infinite alternate both;
  letter-spacing: 0.1em;
  color: #fff;
  will-change: opacity;
}

.loaded .loadingAnim_line {
  overflow: hidden;
  height: 0;
}
.loaded .loadingAnim_line::after {
  animation: none;
}
.loaded .loadingAnim_line::before {
  animation: none;
  content: "";
}

/********************
animation setting
********************/
@keyframes loadingAnim {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
    transform: translate(100%);
  }
}
@keyframes loadingAnim_text {
  0% {
    opacity: 1;
    color: #ffff00;
  }
  50% {
    opacity: 0.7;
    color: #ffff99;
  }
  100% {
    opacity: 0.5;
    color: #fff;
  }
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
svg {
  display: block;
}

.top-image {
  position: relative;
  height: 100vh;
  background: #add8e6;
}
@media screen and (max-width: 480px) {
  .top-image {
    height: 50vh;
  }
}

.wave {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  /*z-index: 99;*/
}

.cls-1 {
  /* fill: rgba(0, 0, 0, 0); */
  stroke-miterlimit: 10;
  fill-opacity: 0;
}

.swing-box {
  position: absolute;
  z-index: 99999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

svg.swing {
  width: 150px;
}

header {
  position: relative;
}

.left_logo {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 200px;
  z-index: 999;
}
@media screen and (max-width: 480px) {
  .left_logo {
    top: 10px;
    left: 10px;
    width: 150px;
  }
}
.left_logo p {
  text-align: center;
  font-size: 0.8em;
  color: #fff;
  font-weight: bold;
  margin-bottom: 5px;
}
@media screen and (max-width: 480px) {
  .left_logo p {
    font-size: 0.7em;
  }
}
.left_logo img {
  width: 100%;
  height: auto;
  aspect-ratio: 200/45.89;
  -o-object-fit: contain;
     object-fit: contain;
}

.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1000px;
}

.logo-image {
  width: 400px;
  aspect-ratio: 400/92;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .logo-image {
    width: 200px;
  }
}
.logo-image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.typ-box {
  text-align: center;
  /* @include tab {
  	width: 100%;
  	text-align: center;
  	top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     -webkit-transform: translate(-50%, -50%);
     -ms-transform: translate(-50%, -50%);
  } */
}
.typ-box h2 {
  font-size: 2.8em;
  line-height: 1.5em;
  color: #fff;
  font-style: italic;
  font-weight: bold;
  padding: 20px;
  text-shadow: #008000 2px 0px, #008000 -2px 0px, #008000 0px -2px, #008000 0px 2px, #008000 2px 2px, #008000 -2px 2px, #008000 2px -2px, #008000 -2px -2px, #008000 1px 2px, #008000 -1px 2px, #008000 1px -2px, #008000 -1px -2px, #008000 2px 1px, #008000 -2px 1px, #008000 2px -1px, #008000 -2px -1px, 5px 4px 4px #666666;
}
@media screen and (max-width: 1024px) {
  .typ-box h2 {
    font-size: 2em;
  }
}
@media screen and (max-width: 480px) {
  .typ-box h2 {
    font-size: 1.2em;
  }
}

.typ {
  opacity: 0;
  transition: 0.1s;
}
.typ span {
  position: relative;
  opacity: 0;
  left: -3px;
  transition: 0.1s;
}

.typ-ttl {
  opacity: 0;
  transition: 0.1s;
}
.typ-ttl span {
  position: relative;
  opacity: 0;
  left: -5px;
  transition: 0.1s;
}

.line-box {
  text-align: center;
}
.line-box .line-btn {
  margin: 30px 0;
}
.line-box .line-btn a {
  display: inline-block;
  font-size: 1.2em;
  color: #fff;
  font-weight: bold;
  background: #06c755;
  padding: 20px 40px;
  border-radius: 50px;
}
@media screen and (max-width: 480px) {
  .line-box .line-btn a {
    font-size: 1em;
    padding: 20px;
  }
}
.line-box .qr-img {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .line-box .qr-img.top-qr {
    display: none;
  }
}
.line-box .qr-img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.nav {
  position: fixed;
  width: 100%;
  /*display: flex;
  justify-content: flex-end;*/
  /* padding: 10px; */
  box-sizing: border-box;
  z-index: 99;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .nav {
    display: none;
  }
}

.top-nav-flex {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.gnav {
  /* 	width: 100%;
  max-width: 1280px; */
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.gnav li {
  padding: 0 10px;
  box-sizing: border-box;
}
.gnav li a {
  display: inline-block;
  position: relative;
  padding: 10px 20px;
  background: #008000;
  font-weight: bold;
  /* text-shadow:1px 1px 2px #000; */
  transition: 0.3s;
  color: #ffff00;
  border-radius: 5px;
}
.gnav li a::after {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #ffff00;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.gnav li a:hover {
  color: #ffff00;
}
.gnav li a:hover::after {
  bottom: -4px;
  opacity: 1;
  visibility: visible;
}

.gnav-btn {
  display: flex;
  justify-content: flex-end;
}
.gnav-btn li {
  padding: 10px;
}
.gnav-btn li a {
  display: flex;
  align-items: center;
  padding: 10px 25px 10px 20px;
  border-radius: 5px;
}
.gnav-btn li a img {
  max-width: 60px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.btn-ttl {
  color: #008000;
  margin-left: 15px;
  font-size: 2em;
  /* line-height: 2em; */
  font-weight: bold;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
}

.btn-ttl2 {
  color: #008000;
  margin-left: 15px;
  font-size: 1.3em;
  line-height: 1.2em;
  font-weight: bold;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
}

.btn_sell {
  background: #ffff00;
}
.btn_sell:hover {
  background: #ffd700;
  transition: 0.3s;
}

.btn_give {
  background: #ff8c00;
}
.btn_give:hover {
  background: #ffd700;
  transition: 0.3s;
}

.btn_line {
  background: #008000;
}
.btn_line:hover {
  background: #06c755;
  transition: 0.3s;
}

.sns {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 480px) {
  .sns {
    padding: 0;
  }
}
.sns li a {
  display: block;
  width: 60px;
  padding: 10px;
  box-sizing: border-box;
  aspect-ratio: 1;
}
.sns li a img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.top-tel {
  color: #4682b4;
  text-align: right;
  padding: 10px 20px;
  font-size: 2em;
  font-weight: bold;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
}
@media screen and (max-width: 1024px) {
  .top-tel {
    display: none;
  }
}

.right-nav {
  position: fixed;
  right: -50px;
  top: 20%;
  transition: 0.3s;
  z-index: 99;
}
.right-nav.show {
  right: 0;
  transition: 0.3s;
}
@media screen and (max-width: 480px) {
  .right-nav {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    bottom: 0;
    right: auto;
    left: auto;
    top: auto;
  }
}

.r-btn {
  margin: 20px 0;
  box-shadow: 1px 1px 1px #ccc;
}
@media screen and (max-width: 480px) {
  .r-btn {
    width: 100%;
    margin: 0;
    box-shadow: none;
  }
}

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

.r-btn:hover {
  transform: translateX(3px);
  transition: 0.3s;
}
@media screen and (max-width: 480px) {
  .r-btn:hover {
    transform: translateX(0);
  }
}

.r-btn a {
  display: flex;
  flex-direction: column;
  padding: 30px 10px;
  border: solid #fff;
  border-width: 3px 0 3px 3px;
  border-radius: 5px 0 0 5px;
}
@media screen and (max-width: 480px) {
  .r-btn a {
    display: flex;
    flex-direction: inherit;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px;
    border-width: 3px;
    border-radius: 0;
    line-height: 1.4em;
  }
}

.r-high {
  background: #ffff00;
}
.r-high:hover.cls-s1 {
  color: #008000;
}

.r-low {
  background: #008000;
  /* 	&::before{
  	display: inline-block;
  	content: "";
  	background: url(../img/icon-g.png);
  	height: 1.4em;
  	width: 1.4em;
  	background-size: contain;
  	background-repeat: no-repeat;
  	margin-bottom: 5px;

  	@include sp{
  		position: relative;
  		margin-bottom: 0;
  		margin-right: 5px;
  	}
    } */
}

.btn-text {
  font-size: 1.4em;
  color: #008000;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
  font-weight: bold;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 480px) {
  .btn-text {
    font-size: 1.1em;
    writing-mode: horizontal-tb;
  }
}

.icon {
  display: inline-block;
  height: 1.5em;
  width: 1.5em;
  margin-bottom: 5px;
}
@media screen and (max-width: 480px) {
  .icon {
    margin-right: 5px;
    margin-bottom: 0;
  }
}
.icon img {
  width: 100%;
}

.cls-s1 {
  fill: #fff;
}

.cls-s2 {
  fill: #336432;
}

.cls-g1 {
  fill: #fff;
}

.cls-g2 {
  fill: #336432;
}

.tel-btn {
  display: none;
}
@media screen and (max-width: 480px) {
  .tel-btn {
    display: block;
    font-size: 1.5em;
    color: #fff;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    width: 100%;
    background: #3cb371;
  }
}

.tel-text {
  color: #4682b4;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
}

.bgColor {
  background: rgba(255, 255, 255, 0.9);
  transition: 0.3s;
}

.bgColor ul.gnav li a {
  padding: 0 5px;
  color: #4682b4;
  transition: 0.3s;
  text-shadow: none;
}

.top-logo {
  padding: 10px !important;
  margin-right: auto;
  width: 100%;
  max-width: 300px;
  height: 0;
  opacity: 0;
}
.top-logo a::after {
  content: none !important;
}
.top-logo img {
  width: 100%;
}

.top-logo.logoShow {
  opacity: 1 !important;
}

.link_btn {
  display: flex;
  height: 100px;
  justify-content: center;
  align-items: center;
}
.link_btn a {
  display: inline-block;
  padding: 20px 60px;
  color: #fff;
  font-weight: bold;
  background: #3cb371;
  border-radius: 50px;
  transition: 0.3s;
}
@media screen and (max-width: 480px) {
  .link_btn a {
    padding: 20px;
  }
}
.link_btn a:hover {
  padding: 25px 65px;
  transition: 0.3s;
}
.link_btn a:hover .fa-angle-right {
  margin-left: 5px;
  transition: 0.3s;
}

#contents {
  width: 100%;
  /*padding: 100px 0;*/
}

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

h2.topttl {
  position: relative;
  display: inline-block;
  font-size: 2.2em;
  padding: 30px 0;
  margin: 0 auto 50px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 3px;
  color: #008000;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  h2.topttl {
    line-height: 1.5em;
    font-size: 1.5em;
  }
}
h2.topttl::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 60px;
  background: url(../img/ball.png);
  background-size: contain;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  z-index: -1;
}

.section_area-shop {
  padding: 100px 0;
}
@media screen and (max-width: 480px) {
  .section_area-shop {
    padding: 50px 10px;
  }
}

.shop-area {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.shop-area-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.shop_txt {
  padding: 20px 0;
}
.shop_txt p {
  font-size: 1.2em;
  line-height: 1.6em;
  margin-bottom: 10px;
}

.shop-box_info {
  width: 40%;
}
@media screen and (max-width: 480px) {
  .shop-box_info {
    width: 100%;
    margin-bottom: 20px;
  }
}
.shop-box_info dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.shop-box_info dt {
  width: 20%;
  font-weight: bold;
  padding: 10px;
  color: #fff;
  background: #008000;
  border-radius: 50px;
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .shop-box_info dt {
    width: 100%;
  }
}
.shop-box_info dd {
  width: 80%;
  padding: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .shop-box_info dd {
    width: 100%;
  }
}

.shop-img {
  width: 100%;
  aspect-ratio: 60/45;
}
.shop-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.shop-box_map {
  width: 55%;
}
@media screen and (max-width: 480px) {
  .shop-box_map {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .shop-box_map iframe {
    height: 400px;
  }
}

.section_area-news {
  padding: 100px 0;
  background: url(../img/bg1.jpg);
  background-attachment: fixed;
  background-size: cover;
}
@media screen and (max-width: 480px) {
  .section_area-news {
    padding: 50px 10px;
  }
}

.news-area {
  position: relative;
  margin-top: 50px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 35px;
  background: #fff;
  border-radius: 5px;
  box-sizing: border-box;
  box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
}
@media screen and (max-width: 480px) {
  .news-area {
    padding: 35px 15px;
  }
}

.news-area-inner {
  max-height: 500px;
  overflow-y: auto;
}

.top-wp-box {
  padding: 30px;
  border-radius: 10px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.7);
}

.section_area-info {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 0;
}
@media screen and (max-width: 480px) {
  .section_area-info {
    padding: 50px 10px;
  }
}

.section_area-info-flex {
  display: flex;
  height: 600px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .section_area-info-flex {
    justify-content: center;
    height: auto;
    width: 100%;
    padding: 10px;
  }
}

.top-photo-box {
  display: flex;
  position: relative;
  width: 50%;
  height: 100%;
  max-width: 650px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .top-photo-box {
    width: 100%;
    max-width: 700px;
    min-height: 520px;
  }
}

.sell_image {
  border-radius: 10px;
  overflow: hidden;
}

.block1 {
  position: absolute;
  left: 0;
  top: 10px;
  transition: 0.8s;
  opacity: 0;
}
.block1.show {
  opacity: 1;
}
.block1 img {
  width: 250px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  .block1 img {
    width: 200px;
    height: 200px;
  }
}

.block2 {
  position: absolute;
  right: 0;
  top: 50px;
  transition: 0.3s;
  opacity: 0;
}
@media screen and (max-width: 480px) {
  .block2 {
    right: 10px;
  }
}
.block2.show {
  animation: popup 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
}
.block2 img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  .block2 img {
    width: 130px;
    height: 130px;
  }
}

@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
.block3 {
  position: absolute;
  right: 180px;
  top: 170px;
  transition: 0.3s;
  opacity: 0;
}
@media screen and (max-width: 480px) {
  .block3 {
    top: 190px;
    right: 100px;
  }
}
.block3.show {
  animation: slide-skew 0.4s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
.block3 img {
  width: 180px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  .block3 img {
    width: 120px;
    height: 120px;
  }
}

@keyframes slide-skew {
  0% {
    transform: translate(180px, 30px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
  }
  20%, 100% {
    opacity: 1;
  }
}
.block4 {
  position: absolute;
  top: 300px;
  left: 20px;
  transition: 0.3s;
  opacity: 0;
}
.block4.show {
  animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.block4 img {
  width: 220px;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  .block4 img {
    width: 150px;
    height: 150px;
  }
}

@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
.block5 {
  position: absolute;
  top: 390px;
  right: 50px;
  transition: 0.3s;
  opacity: 0;
}
@media screen and (max-width: 480px) {
  .block5 {
    top: 300px;
  }
}
.block5.show {
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
.block5 img {
  width: 160px;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  .block5 img {
    width: 90px;
    height: 90px;
  }
}

@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.top-text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  padding: 30px 80px;
  border-radius: 10px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 1024px) {
  .top-text-box {
    width: 100%;
    max-width: 700px;
  }
}
@media screen and (max-width: 480px) {
  .top-text-box {
    padding: 0;
  }
}
.top-text-box p {
  font-size: 1.4em;
  line-height: 2.5em;
}
@media screen and (max-width: 480px) {
  .top-text-box p {
    font-size: 1.1em;
    line-height: 2em;
  }
}

.top-text {
  transition: 0.3s;
  opacity: 0;
  margin-bottom: 20px;
}
.top-text.show {
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

.section_area-sell {
  position: relative;
  padding: 100px 0;
  background: url(../img/bg-sample.jpg);
  background-size: cover;
}
@media screen and (max-width: 480px) {
  .section_area-sell {
    padding: 50px 10px;
  }
}
.section_area-sell::after {
  content: "";
  background-color: rgba(0, 128, 0, 0.2);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.sell-area {
  position: relative;
  z-index: 3;
}

.sell-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
  /*	&::after {
  	content: "";
  	display: block;
  	width: 32%;
  	height: 0;


  	@include sp {
  		width: 100%;
  	}
  }*/
}
@media screen and (max-width: 1024px) {
  .sell-flex {
    padding: 10px;
  }
}
@media screen and (max-width: 480px) {
  .sell-flex {
    padding: 0;
  }
}

.sell-box {
  width: 24%;
  /*min-width: 360px;*/
  padding: 10px;
  margin-bottom: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .sell-box {
    width: 49%;
    padding: 0;
  }
}

.sell-image {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
}
.sell-image::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.sell-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}

.sell-box a:hover .sell-image img {
  transform: scale(1.05, 1.05);
  transition: 0.3s;
}
.sell-box a:hover .pickup-txt p {
  color: #808080;
  transition: 0.3s;
}

.sell-text {
  padding: 10px;
  min-height: 100px;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .sell-text {
    padding: 10px;
  }
}
.sell-text h3 {
  font-size: 1.2em;
  border-bottom: dotted 1px #ccc;
  margin-bottom: 10px;
  font-weight: bold;
  color: #e70012;
  transition: 0.3s;
  line-height: 1.6em;
}
@media screen and (max-width: 480px) {
  .sell-text h3 {
    font-size: 1em;
  }
}
.sell-text .view {
  margin-top: 20px;
  font-size: 0.9em;
  font-weight: bold;
  color: #4682b4;
  transition: 0.3s;
}
@media screen and (max-width: 480px) {
  .sell-text .view {
    display: block;
    color: #fff;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    background: #4682b4;
  }
}
.sell-text .view i {
  padding-left: 8px;
}

.pickup-txt p {
  color: #000;
  transition: 0.3s;
}

.empty {
  width: 24%;
  height: 0;
  padding: 0 10px;
}
@media screen and (max-width: 1024px) {
  .empty {
    width: 49%;
    padding: 0;
  }
}

.section_area-school {
  padding: 100px 0;
}
@media screen and (max-width: 480px) {
  .section_area-school {
    padding: 50px 10px;
  }
}

.school-slide-flex {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 50px;
  flex-wrap: wrap;
}

.slide-text-box {
  padding: 20px;
  width: 45%;
}
@media screen and (max-width: 1024px) {
  .slide-text-box {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .slide-text-box {
    width: 100%;
  }
}
.slide-text-box p {
  font-size: 1.2em;
  line-height: 2em;
}
@media screen and (max-width: 480px) {
  .slide-text-box p {
    font-size: 1.1em;
  }
}

.slide-text {
  margin-bottom: 20px;
}

.slider-box {
  width: 55%;
}
@media screen and (max-width: 1024px) {
  .slider-box {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .slider-box {
    width: 100%;
  }
}

.slider-image {
  padding: 10px;
}

.slider-image-inner {
  border-radius: 10px;
  overflow: hidden;
}
.slider-image-inner img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 480px) {
  .wrapper {
    padding: 10px;
    box-sizing: border-box;
  }
}

.txt-area {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.address {
  padding: 20px;
  text-align: center;
}

h3.subpage-ttl {
  font-size: 2em;
  font-weight: bold;
  position: relative;
  padding: 0 65px;
  margin: 30px 0;
  text-align: center;
  box-sizing: border-box;
  letter-spacing: 3px;
}
@media screen and (max-width: 1024px) {
  h3.subpage-ttl {
    font-size: 1.3em;
  }
}
@media screen and (max-width: 480px) {
  h3.subpage-ttl {
    padding: 5px 0;
    background: linear-gradient(transparent 70%, #3cb371 70%);
  }
}
h3.subpage-ttl::before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: #3cb371;
}
@media screen and (max-width: 480px) {
  h3.subpage-ttl::before {
    content: none;
  }
}
h3.subpage-ttl span {
  position: relative;
  padding: 0 1em;
  background: #fff;
}
@media screen and (max-width: 480px) {
  h3.subpage-ttl span {
    background: none;
  }
}

.bg-grey {
  background: #f5f5f5 !important;
}
@media screen and (max-width: 480px) {
  .bg-grey {
    background: none !important;
  }
}

/*------------------------------------------------------------

お問い合わせ

------------------------------------------------------------*/
/*------------------------------------------------
ポリシーテキスト
------------------------------------------------*/
.policy-area {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 0;
}

.policy-text-area {
  width: 100%;
  max-width: 1280px;
  height: 250px;
  overflow-y: auto;
  margin: 0 auto;
  text-align: left;
  padding: 20px;
  background: #f5f5f5;
}

.policy-text-area h3 {
  font-weight: bold;
  padding: 10px 0;
}

.policy-text-area p {
  color: #696969;
  font-size: 0.9em;
  line-height: 1.6em;
}

.tel-area {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 0;
  box-sizing: border-box;
}

.input-area {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 0;
  box-sizing: border-box;
}

th.re_item {
  width: 300px;
}

.contact-info {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
  margin-bottom: 50px;
}
.contact-info p {
  line-height: 1.6em;
}

.info-tel {
  font-size: 1.5em;
  font-weight: bold;
  color: #ff4500;
  padding: 10px;
}

.contact {
  width: 100%;
  background: #fff;
  box-sizing: border-box;
}
.contact tr {
  display: flex;
  padding: 20px 0;
}
@media screen and (max-width: 1024px) {
  .contact tr {
    flex-wrap: wrap;
  }
}
.contact tr:nth-of-type(odd) {
  background: #F6F7F9;
}
.contact th {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .contact th {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 1024px) {
  .contact th.re_item {
    width: 100%;
  }
}
.contact td {
  padding: 10px;
}
.contact input {
  margin: 5px 0;
}

.opt {
  padding: 10px;
  font-size: 0.9em;
  color: #ccc;
}

.must {
  font-size: 0.9em;
}

.note {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  line-height: 1.8em;
}

.policy {
  padding: 10px 0;
  font-weight: bold;
}

.thanks {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px;
}
.thanks h3 {
  font-size: 1.8em;
  padding: 5px;
  border-bottom: solid 1px #ccc;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .thanks h3 {
    font-size: 1.3em;
  }
}

.thanks-txt {
  padding: 10px;
  line-height: 1.8em;
}
@media screen and (max-width: 480px) {
  .thanks-txt {
    box-sizing: border-box;
  }
}

.contact-tel {
  padding: 50px 0;
  text-align: center;
  line-height: 1.8em;
  margin-bottom: 100px;
}
@media screen and (max-width: 480px) {
  .contact-tel {
    margin-bottom: 50px;
  }
}
.contact-tel p {
  font-size: 1.2em;
}
@media screen and (max-width: 480px) {
  .contact-tel p {
    font-size: 1em;
  }
}

.tel-number {
  font-size: 2em !important;
  font-weight: bold;
  color: #4682b4;
  padding: 20px;
}
@media screen and (max-width: 480px) {
  .tel-number {
    font-size: 1.5em !important;
  }
}

/*------------------------------------------------------------

footer

------------------------------------------------------------*/
footer {
  background: #008000;
  padding: 100px 0 20px 0;
  color: #fff;
  text-align: center;
}
footer br {
  display: none;
}
@media screen and (max-width: 480px) {
  footer br {
    display: block;
  }
}

.policy-link a {
  display: inline-block;
  color: #fff;
  border-bottom: solid 1px #fff;
  margin: 10px 0;
}

.auth {
  font-size: 0.9em;
  padding: 5px 0;
}

.copyright {
  font-size: 0.9em;
  padding: 10px 0;
}

/*------------------------------------------------------------

下層ページ

------------------------------------------------------------*/
.sub-image {
  position: relative;
  height: 60vh;
  background: url(../img/sub-bg.jpg);
  background-size: cover;
  background-position: bottom;
}
@media screen and (max-width: 480px) {
  .sub-image {
    height: 30vh;
  }
}
.sub-image::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/vegas_bg05.png);
}

.sub-top {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 5;
}
@media screen and (max-width: 480px) {
  .sub-top {
    width: 100%;
  }
}
.sub-top h2 {
  display: flex;
  align-items: center;
  color: #008000;
  font-size: 2.5em;
  /* line-height: 2em; */
  font-weight: bold;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
}
@media screen and (max-width: 480px) {
  .sub-top h2 {
    justify-content: center;
    flex-direction: column;
    font-size: 1.5em;
  }
}
.sub-top h2 span {
  text-align: center;
  line-height: 1.2em;
}

.sub-top-img {
  width: 70px;
  height: 70px;
  margin-right: 10px;
}
@media screen and (max-width: 480px) {
  .sub-top-img {
    width: 50px;
    height: 50px;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.sub-top-img img {
  width: 100%;
}

/* 買取 */
.sell_banner-area {
  background: #07c910;
}

.sell_banner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  /* padding: 50px 0; */
}
.sell_banner img {
  width: 100%;
}

.sell-section {
  padding: 100px 0;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .sell-section {
    padding: 50px 0;
  }
}

.sell_intro-area {
  position: relative;
  background: #fffaf0;
}

.sell_image1 {
  position: absolute;
  left: 10px;
  bottom: 10px;
  max-width: 400px;
}
.sell_image1 img {
  width: 100%;
}

.sell_image2 {
  position: absolute;
  right: 50px;
  top: 50px;
  max-width: 400px;
}
.sell_image2 img {
  width: 100%;
}

.sell_list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto 100px auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
}
@media screen and (max-width: 480px) {
  .sell_list {
    padding: 10px;
    background: none;
  }
}

.sell_list li {
  position: relative;
  list-style: none;
  padding: 10px 40px 10px 20px;
  text-align: left;
}
.sell_list li::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f14a";
  position: absolute;
  color: #ffa500;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.sell_intro {
  position: relative;
  padding: 100px 0;
  font-size: 1.5em;
  max-width: 1280px;
  margin: 0 auto;
  line-height: 2em;
  text-align: center;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .sell_intro {
    font-size: 1.2em;
  }
}
@media screen and (max-width: 480px) {
  .sell_intro {
    padding: 50px 10px;
    font-size: 1.2em;
    text-align: left;
    background: rgba(255, 255, 255, 0.7);
  }
}

.sell_intro-info {
  text-align: left;
  padding: 20px 0;
}
.sell_intro-info h3 {
  font-weight: bold;
  color: #fff;
  background: #008000;
  text-align: center;
  font-size: 0.9em;
}

.sell-intro-box {
  margin-bottom: 50px;
}
.sell-intro-box .line-btn a {
  font-size: 0.8em;
  line-height: 1.6em;
}

.sell_intro-info-txt {
  padding: 10px;
  margin-bottom: 50px;
  font-size: 0.8em;
}

.sell_intro-txt {
  padding: 30px 0;
  line-height: 2em;
}

.sell_brand {
  margin: 100px auto 0 auto;
  line-height: 1.5em;
  padding: 30px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  text-align: left;
}
@media screen and (max-width: 480px) {
  .sell_brand {
    padding: 10px;
  }
}
.sell_brand h3 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.1em;
  font-weight: bold;
  padding: 10px 0;
  border-bottom: dotted 1px #ccc;
}

.work-flow {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .work-flow {
    padding: 50px 10px;
  }
}
@media screen and (max-width: 480px) {
  .work-flow {
    padding: 0;
  }
}

.flowbox {
  box-sizing: border-box;
  border-radius: 5px;
  margin-bottom: 100px;
  overflow: hidden;
  background: #008000;
}
@media screen and (max-width: 480px) {
  .flowbox {
    width: 90%;
    margin: 0 auto 50px auto;
  }
}

.flow-area {
  position: relative;
  height: 400px;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .flow-area {
    display: flex;
    flex-wrap: wrap;
    height: auto;
  }
}
.flow-area h3 {
  color: #ffff00;
  font-size: 1.5em;
  font-weight: bold;
  padding: 10px;
  margin-bottom: 20px;
  border-bottom: solid 2px #fff;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .flow-area h3 {
    font-size: 1.1em;
    line-height: 1.3em;
  }
}

.text-area {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  padding: 20px;
  border-radius: 5px;
  box-sizing: border-box;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  .text-area {
    position: relative;
    width: 100%;
    left: 0;
    padding: 20px 10px;
    box-sizing: border-box;
    transform: translateY(0%);
    background: none;
  }
}

.work-exp {
  padding: 10px 50px 10px 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .work-exp {
    padding: 0;
  }
}
.work-exp p {
  color: #fff;
  line-height: 1.5em;
}
@media screen and (max-width: 480px) {
  .work-exp p {
    font-size: 1em;
    line-height: 1.3em;
    text-shadow: none;
  }
}

.img-area {
  position: absolute;
  right: -70px;
  width: 55%;
  height: 100%;
  box-sizing: border-box;
  z-index: 1;
  transform: skew(-10deg);
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .img-area {
    position: relative;
    width: 100%;
    right: 0;
    transform: skew(0deg);
    box-sizing: border-box;
  }
}
.img-area img {
  position: absolute;
  right: 70px;
  width: 100%;
  height: 100%;
  transform: skew(10deg);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
@media screen and (max-width: 480px) {
  .img-area img {
    position: relative;
    right: 0;
    transform: skew(0deg);
  }
}

.big-deal-area {
  line-height: 2em;
  padding: 100px 0;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .big-deal-area {
    padding: 50px 10px;
  }
}

.big-deal h2 {
  font-size: 2.5em;
  font-weight: bold;
  background: linear-gradient(transparent 70%, #a7d6ff 70%);
  text-align: center;
}
@media screen and (max-width: 480px) {
  .big-deal h2 {
    font-size: 1.5em;
  }
}

.big-deal-text {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 0;
}
.big-deal-text h3 {
  font-size: 1.5em;
  font-weight: bold;
  padding: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  .big-deal-text h3 {
    font-size: 1.2em;
  }
}
.big-deal-text p {
  font-size: 1.2em;
}
@media screen and (max-width: 480px) {
  .big-deal-text p {
    font-size: 1.1em;
  }
}

.add-contents {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 100px 0;
}

.add-area-flex {
  display: flex;
  width: 100%;
  background: url(../img/tel2.png);
  background-size: cover;
  justify-content: flex-end;
}

.add-area {
  width: 60%;
  text-align: center;
  padding: 50px 20px;
}
@media screen and (max-width: 480px) {
  .add-area {
    width: 100%;
    padding: 50px 10px;
    background: rgba(255, 255, 255, 0.8);
  }
}

.add-area p {
  line-height: 1.8em;
}
.add-logo {
  max-width: 350px;
  padding-bottom: 20px;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .add-logo {
    max-width: 200px;
  }
}
.add-logo img {
  width: 100%;
}

@media screen and (max-width: 480px) {
  .add-text-block {
    display: block;
  }
}

.add-contact {
  width: 320px;
  margin: 0 auto;
  margin-top: 20px;
}
@media screen and (max-width: 480px) {
  .add-contact {
    width: 95%;
    text-align: center;
  }
}

.add-tel {
  color: #4682b4;
  font-size: 1.8em;
  font-weight: bold;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
}

.c_btn {
  position: relative;
  display: inline-block;
  padding: 15px 25px;
  text-decoration: none;
  color: #FFF;
  background: #fd9535; /*色*/
  border-radius: 4px; /*角の丸み*/
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
  font-weight: bold;
  font-size: 1.5em;
  border: solid 2px #d27d00; /*線色*/
}
@media screen and (max-width: 480px) {
  .c_btn {
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
  }
}

.c_btn:active { /*押したとき*/
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

/* 買取 */
/* 譲渡 */
.take-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.take-logo {
  width: 70px;
  height: 70px;
}
@media screen and (max-width: 480px) {
  .take-logo {
    width: 50px;
    height: 50px;
  }
}
.take-logo img {
  width: 100%;
}

.take-txt {
  color: #008000;
  margin-left: 15px;
  font-size: 2.2em;
  /* line-height: 2em; */
  font-weight: bold;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
}
@media screen and (max-width: 480px) {
  .take-txt {
    font-size: 1.5em;
  }
}

.take-area {
  background: url(../img/bg-take.jpg);
  background-size: cover;
  padding: 100px 0;
}
@media screen and (max-width: 480px) {
  .take-area {
    background: #f5f5f5;
    padding: 100px 10px;
  }
}

.take-area-txt {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
}
@media screen and (max-width: 480px) {
  .take-area-txt {
    padding: 20px;
  }
}
.take-area-txt p {
  font-size: 1.2em;
  line-height: 2em;
}
@media screen and (max-width: 480px) {
  .take-area-txt p {
    font-size: 1em;
  }
}

/* 譲渡 */
/* 体験 */
.experience_txt-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.experience_txt {
  width: 60%;
  padding: 30px;
}
@media screen and (max-width: 480px) {
  .experience_txt {
    width: 100%;
    padding: 20px;
  }
}
.experience_txt p {
  font-size: 1.2em;
  line-height: 2em;
}
@media screen and (max-width: 480px) {
  .experience_txt p {
    font-size: 1em;
  }
}

.experience_txt-image {
  position: relative;
  width: 40%;
  padding: 10px;
  aspect-ratio: 1;
}
@media screen and (max-width: 480px) {
  .experience_txt-image {
    width: 100%;
  }
}
.experience_txt-image img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.exp-profile {
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: right;
  padding: 20px;
}
.exp-profile p {
  font-weight: bold;
  line-height: 1.5em;
  text-shadow: #fff 2px 0px, #fff -2px 0px, #fff 0px -2px, #fff 0px 2px, #fff 2px 2px, #fff -2px 2px, #fff 2px -2px, #fff -2px -2px, #fff 1px 2px, #fff -1px 2px, #fff 1px -2px, #fff -1px -2px, #fff 2px 1px, #fff -2px 1px, #fff 2px -1px, #fff -2px -1px;
}
@media screen and (max-width: 480px) {
  .exp-profile p {
    font-size: 0.8em;
  }
}

/* 体験 */
/*------------------------------------------------------------

スマホナビ

------------------------------------------------------------*/
.sp-logo {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sp-logo {
    display: block;
    padding: 20px;
  }
}

nav.globalMenuSp {
  display: none;
}
@media screen and (max-width: 1024px) {
  nav.globalMenuSp {
    display: block;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    /*background: #fff;*/
    color: #000;
    text-align: center;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
    height: 100%;
  }
  nav.globalMenuSp ul {
    background: #3cb371;
    background-size: cover;
    margin: 0 auto;
    padding: 50px 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }
  nav.globalMenuSp ul li {
    font-size: 1.1em;
    list-style-type: none;
    padding: 0;
    width: 100%;
    /*border-bottom: 1px dotted #fff;*/
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    /*text-shadow: 1px 1px 0 #ccc;*/
    font-weight: bold;
    padding: 1em 0;
    font-size: 1.1em;
    border-bottom: dotted 1px #ccc;
  }
  nav.globalMenuSp ul li a:hover {
    background: rgba(245, 245, 245, 0.8);
  }
  nav.globalMenuSp.nav_active {
    transform: translateY(0%);
  }
}

.qr-img-sp {
  width: 100%;
  max-width: 150px;
  aspect-ratio: 1;
  margin: 10px auto;
}
.qr-img-sp img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.navToggle {
  display: none;
}
@media screen and (max-width: 1024px) {
  .navToggle {
    display: block;
    position: fixed;
    right: 5px;
    top: 5px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 101;
    text-align: center;
    border-radius: 5px;
  }
  .navToggle span {
    display: block;
    position: absolute;
    width: 47px;
    border-bottom: solid 4px #fff;
    box-shadow: 1px 1px 1px #aaaaaa;
    transition: 0.35s ease-in-out;
    left: 6px;
  }
  .navToggle span:nth-child(1) {
    top: 9px;
  }
  .navToggle span:nth-child(2) {
    top: 23px;
  }
  .navToggle span:nth-child(3) {
    top: 37px;
  }
  .navToggle span:nth-child(4) {
    border: none;
    color: #fff;
    text-shadow: 1px 1px 1px #aaaaaa;
    box-shadow: none;
    font-size: 11px;
    font-weight: bold;
    top: 45px;
  }
  .navToggle.nav_active span {
    box-shadow: none;
    text-shadow: none;
  }
  .navToggle.nav_active span:nth-child(1) {
    top: 22px;
    left: 6px;
    transform: rotate(-45deg);
  }
  .navToggle.nav_active span:nth-child(2), .navToggle.nav_active span:nth-child(3) {
    top: 22px;
    transform: rotate(45deg);
  }
}

.sns-sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sns-sp {
    display: flex;
    justify-content: center;
    max-width: 550px;
    margin: 0 auto;
  }
}
.sns-sp li a {
  display: inline-block !important;
  width: 60px;
  padding: 0 !important;
  border-bottom: none !important;
}
.sns-sp li a img {
  width: 100%;
}

@media screen and (max-width: 480px) {
  nav.globalMenuSp ul.sns-sp li {
    width: 50%;
    max-width: 100px;
  }
}

.news-post {
  padding: 20px;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .news-post {
    padding: 10px;
  }
}

.news-post li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px;
  border-bottom: solid 1px #ccc;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .news-post li {
    flex-wrap: wrap;
  }
}

.news-post h3,
.news-post h4 {
  font-weight: bold;
  line-height: 1.5em;
}

.sell-info {
  padding: 50px 0;
  text-align: center;
}
.sell-info p {
  line-height: 1.8em;
}

.sell-info-box {
  padding: 20px 0;
}

/*------------------------------------------------------------

tab※2024追加

------------------------------------------------------------*/
.tab-content {
  position: relative;
  overflow: hidden;
}

.is-animating {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
}

.content-pane {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(100%) translateY(0%);
}

.is-active {
  position: relative;
  opacity: 1;
  transform: translateX(0%);
}

.is-exiting {
  opacity: 0;
  transform: translateX(0%);
}

.is-animating {
  transition: opacity 300ms ease-out, transform 400ms ease-out;
}

.tab-list {
  padding-top: 20px;
  background: #fff;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .tab-list {
    padding: 0;
  }
}

.nav-tabs {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .nav-tabs {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
  }
}
@media screen and (max-width: 1024px) {
  .nav-tabs::after {
    content: "";
    display: block;
    width: 33.3%;
    height: 0;
  }
}

@media screen and (max-width: 1024px) {
  .tab2 {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 1024px) {
  .tab2::after {
    content: none;
  }
}

.nav-tabs li {
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .nav-tabs li {
    width: 33.3%;
    box-sizing: border-box;
    border: solid 1px #f5f5f5;
  }
}
@media screen and (max-width: 480px) {
  .nav-tabs li {
    width: 50%;
    /*min-height: 72px;*/
    box-sizing: border-box;
    border: solid 1px #f5f5f5;
    background: #8fbc8f;
  }
}

.nav-tabs li a {
  position: relative;
  font-size: 1.2em;
  line-height: 1.3em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  font-weight: bold;
  color: #ccc;
  height: 100%;
  box-sizing: border-box;
  border-radius: 50px;
  border: dotted 1px #ccc;
  transition: 0.5s;
}
@media screen and (max-width: 1024px) {
  .nav-tabs li a {
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 20px 0;
    box-sizing: border-box;
    border-radius: 0;
    border: none;
  }
}
@media screen and (max-width: 480px) {
  .nav-tabs li a {
    font-size: 0.9em;
  }
}
.nav-tabs li a:hover {
  background: #008000;
  transition: 0.5s;
}

.nav-tabs li.active a {
  background: #008000;
  color: #fff;
  border-radius: 50px;
  transition: 0.2s;
  /*box-shadow: 3px 0 0 #dcdcdc;*/
  /*border-bottom: solid 3px #ccc;*/
}
@media screen and (max-width: 1024px) {
  .nav-tabs li.active a {
    border-radius: 0;
    box-shadow: none;
  }
}

.active a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  margin-right: 0.2em;
  color: #fff;
}

.tenpo-img {
  width: 100%;
  max-width: 710px;
  aspect-ratio: 718/1266;
  margin: 0 auto;
}
.tenpo-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.shucchou-img {
  width: 100%;
  max-width: 710px;
  aspect-ratio: 714/1246;
  margin: 0 auto;
}
.shucchou-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.takuhai-img {
  width: 100%;
  max-width: 710px;
  aspect-ratio: 708/1544;
  margin: 0 auto;
}
.takuhai-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=style.css.map */