@charset "UTF-8";

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

	全ページ共通

---------------------------------------------*/
/* ↓ 色とテキストの定義 ------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 14px;
}

@media screen and (min-width: 1200px) {
  html {
    font-size: 15px;
  }
}

@media screen and (min-width: 1400px) {
  html {
    font-size: 16px;
  }
}

@media screen and (max-width: 540px) {
  html {
    font-size: 3.5vw;
    /*文字量L-3.3vw/文字量M-3.5vw  */
  }
}

body {
  color: #606060;
  letter-spacing: 0.08rem;
  line-height: 1.5;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 400;
  /*bold700 Medium 500 regular400 light 300*/
  position: relative;
  background: url(../img/gradation.svg) center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.title {
  font-family: "Ranchers", cursive;
}

/* ↓ 共通アニメーション------------------------*/
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ↓ 共通コンテンツ横幅とマージン ------------------------*/
/*pcの横幅*/

.pcWidth-l {
  width: 1100px;
  max-width: 90%;
  margin: 0 auto;
}

@media screen and (min-width: 1450px) {
  .pcWidth-l {
    width: 1300px;
  }
}

/*spの横幅*/
@media screen and (max-width: 540px) {
  .spWidth-max {
    max-width: 100%;
  }

  .spWidth-l {
    max-width: 94%;
  }

  .spWidth-m {
    max-width: 88%;
  }

  .spWidth-s {
    max-width: 78%;
  }
}

/* ↓ リンクと共通パーツ ------------------------*/
.textalign-center {
  text-align: center;
}

.textalign-left {
  text-align: left;
}

.textalign-right {
  text-align: right;
}

a {
  color: #333333;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
  cursor: pointer;
}

.background {
  position: absolute;
  top: 10px;
  right: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  margin: 0 auto;
  background-color: white;
  border-radius: 1rem;
  z-index: 1;
}

.content {
  position: relative;
  z-index: 10;
}

/* ↓ ナビゲーションバー ------------------------*/
.globalmenu {
  position: absolute;
  right: 0;
  top: 0;
  letter-spacing: 0.01rem;
  display: flex;
}

@media screen and (max-width: 960px) {
  .globalmenu {
    padding: 0.1rem 0.5rem;
    display: none;
  }
}

.menu_group {
  display: flex;
}

.menu_group a {
  padding: 0rem 1.6rem;
  height: 5rem;
  display: inline-block;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: contain;
}

.home {
  background: url(../img/menu_01.svg) center no-repeat;
}
.shop {
  background: url(../img/menu_02.svg) center no-repeat;
}
.insta {
  background: url(../img/menu_03.svg) center no-repeat;
}
.note {
  background: url(../img/menu_04.svg) center no-repeat;
}
.lang {
  background: url(../img/menu_05.svg) center no-repeat;
}

.menu_connect {
  background-color: #41ac43;
  padding: 1rem 2rem;
  border-radius: 0 0 0 8px;
  margin-left: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.menu_connect:hover {
  opacity: 1;
}

.menu_connect .icon {
  width: 2rem;
}

/*バンバーガーボタン*/
.hamburger {
  display: none;
  position: absolute;
  z-index: 3;
  right: 1rem;
  top: 1rem;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  transform: scale(0.8, 0.8);
}
@media screen and (max-width: 960px) {
  .hamburger {
    display: block;
  }
}

@media screen and (max-width: 540px) {
  .hamburger {
    transform: scale(0.8, 0.8);
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  background: #555;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin: 0.5rem;
}

.hamburger span:nth-child(1) {
  top: 5px;
}

.hamburger span:nth-child(2) {
  top: 15px;
}

.hamburger span:nth-child(3) {
  top: 25px;
}

.hamburger.active span:nth-child(1) {
  top: 16px;
  /*    left: 6px;*/
  background: #333;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background: #333;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ↓ スマホメニュー ------------------------*/
nav.globalmenu-sp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  width: 100%;
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  height: 100vh;
}

.globalmenuSp-inner {
  height: 100%;
  text-align: left;
  padding: 2rem;
}

.spMenu {
  display: flex;
}

.spMenu .left {
  width: 50%;
}

.spMenu .left a,
.spMenu .right a {
  display: flex;
  font-size: 1.6rem;
  height: 6rem;
  align-items: center;
  background-position: left;
  padding-left: 2rem;
  font-weight: 700;
}

.sp_connect {
  border: 1px solid;
  display: block;
  margin-top: 2rem;
  background-color: #41ac43;
  text-align: center;
  font-size: 1.4rem;
  color: white;
  padding: 1rem;
  border-radius: 0.5rem;
}

.sp_connect img {
  width: 2rem;
}

nav.globalmenu-sp.active {
  display: block;
  opacity: 10;
}

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

	メインエリア

---------------------------------------------*/
/* メインエリア */
.main_area {
  margin-top: 5rem;
  margin-bottom: 16rem;
}

@media screen and (max-width: 540px) {
  .main_area {
    margin-top: 2rem;
    margin-bottom: 3rem;
  }
}

.content_area {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 6rem;
}

@media screen and (max-width: 540px) {
  .content_area {
    margin-bottom: 0rem;
  }
}

.content_area .left {
  width: 47%;
}

@media screen and (max-width: 960px) {
  .content_area .left {
    width: 100%;
  }
}

.content_area .left img {
  width: 100%;
}

.content_area .right {
  width: 50%;
}

@media screen and (max-width: 960px) {
  .content_area .right {
    width: 100%;
    padding: 2rem;
  }
}

.content_area .right .name {
  font-size: 4.4rem;
  margin-bottom: 10px;
  color: #ff7ca8;
  font-family: "Ranchers";
  -webkit-text-stroke: 2px #000;
  stroke: 2px #000;
}
@media screen and (max-width: 540px) {
  .content_area .right .name {
    font-size: 3rem;
    stroke: 1px #000;
  }
}

/* ロゴエリア */
.title_area img {
  width: 18rem;
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 960px) {
  .title_area img {
    width: 8rem;
    margin-bottom: 1.5rem;
    margin-left: 2rem;
  }
}

/* 現在エリア */
.current {
  display: flex;
}

.current .price {
  padding-right: 2rem;
  border-right: 1px solid #cbcbcb;
}
.current .days {
  padding-left: 2rem;
}

.current .subtitle {
  color: #6abe6c;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: normal;
}
.current .title {
  color: #41ac43;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: normal;
}
@media screen and (max-width: 540px) {
  .current .subtitle {
    font-size: 1rem;
  }
  .current .title {
    font-size: 1.6rem;
  }
}

/* ナビゲーション */
.navigation {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #6abe6c;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.navigation p {
  margin-left: 1rem;
}
.navigation .arrow {
  margin-right: 0.5rem;
}
.arrow {
  width: 2rem;
}

.navigation_left {
  display: flex;
  width: 100%;
  text-align: end;
  margin: 0;
}
@media screen and (max-width: 540px) {
  .navigation_left {
    flex-direction: column;
  }
}

.navigation_twbtn {
  width: 80px;
  text-align: end;
  margin-top: 3px;
}
@media screen and (max-width: 540px) {
  .navigation_twbtn {
    width: 100%;
  }
}

/* フォームエリア */
.form_area {
  display: flex;
  margin-top: 1rem;
}

input,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form_area input {
  padding: 1rem;
  border: 1px solid #cbcbcb;
  border-radius: 0.5rem;
  background-color: #f3f3f3;
  flex: 1;
  font-size: 1.4rem;
}

::placeholder {
  color: #c1c1c1;
}

.btn {
  background-color: #41ac43;
  color: white;
  padding: 0 1rem;
  border-radius: 0.5rem;
  margin-left: 1rem;
}

/* リスト */
.bidlists {
  margin-top: 1rem;
}

.bidlist:first-child {
  /* border-top: 1px solid #cbcbcb; */
}

.bidlist {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #cbcbcb;
}
.allread {
  display: block;
  width: 100%;
  padding: 1rem;
  text-align: center;
  color: #41ac43;
  font-weight: 700;
}

/* 説明エリア */
.desc_area {
  margin-top: 4rem;
}
@media screen and (max-width: 540px) {
  .desc_area {
    padding: 0 2rem;
    margin-top: 1rem;
  }
}

.desc_group {
  margin-top: 2rem;
}
.desc_area .title {
  font-weight: 700;
  font-size: 1.2rem;
  color: #41ac43;
}

/* ↓ TOP以下共通部分 ------------------------*/
.sec-area {
  text-align: center;
  margin-bottom: 7rem;
  /* border: solid; */
}

@media screen and (max-width: 540px) {
  .sec-area {
    padding: 2rem;
    margin-bottom: 3rem;
  }
}

.sec-area .text-area .text {
  text-align: center;
  margin-bottom: 0.8rem;
}

@media screen and (max-width: 540px) {
  .sec-area .text-area .text {
    text-align: left;
    margin-bottom: 0.5rem;
  }
}

.title-area {
  margin-bottom: 2rem;
}

@media screen and (max-width: 540px) {
  .title-area {
    margin-bottom: 2rem;
  }
}

.title-area .text {
  font-size: 1.4rem;
  font-weight: 600;
}

@media screen and (max-width: 540px) {
  .title-area .text {
    font-size: 1.8rem;
  }
}

.title-area .title {
  font-size: 4.5rem;
  line-height: 1;
  letter-spacing: 0.6rem;
}

@media screen and (max-width: 540px) {
  .title-area .title {
    font-size: 2.8rem;
    line-height: 1;
    letter-spacing: 0.5rem;
  }
}

.text-area {
  margin-bottom: 2rem;
}

.text-area .text {
  font-size: 1.2rem;
  font-weight: 600;
}

@media screen and (max-width: 540px) {
  .text-area .text {
    font-size: 1rem;
  }
}

/* ↓ オークション ------------------------*/
.bottom-box {
  position: relative;
}

.wave {
  display: flex;
  justify-content: center;
  margin-bottom: 6rem;
  width: 100%;
  position: relative;
  width: calc(100% - 18px);
  position: absolute;
  top: -4.5%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

@media screen and (max-width: 540px) {
  .wave {
    width: calc(100% - 18px);
    top: -1%;
  }
}

.wave img {
  width: 100%;
}

.sec-auction {
  position: relative;
}

.sec-auction .deco01 {
  position: absolute;
  right: -3%;
  top: -1%;
  width: 18%;
}

@media (min-width: 1450px) {
  /* 横幅が800px以上の場合に適用するスタイル */
  .sec-auction .deco01 {
    position: absolute;
    right: -3%;
    top: -3%;
    width: 16%;
  }
}

@media screen and (max-width: 920px) {
  .sec-auction .deco01 {
    display: none;
  }
}

@media screen and (max-width: 540px) {
  .sec-auction .deco01 {
    display: none;
  }
}

.sec-auction .photoArea {
  width: 40%;
  margin: 1rem auto;
  display: none;
}
@media screen and (max-width: 920px) {
  .sec-auction .photoArea {
    width: 30%;
    display: block;
  }
}

.sec-auction .photoArea img {
  width: 100%;
}

.sec-auction .title-area {
  color: #28b9ca;
}

/* ↓ たまご ------------------------*/
.sec-tamago {
  position: relative;
}

.sec-tamago .deco02 {
  position: absolute;
  left: -3%;
  width: 18%;
}

@media (min-width: 1450px) {
  /* 横幅が800px以上の場合に適用するスタイル */
  .sec-tamago .deco02 {
    position: absolute;
    left: -3%;
    top: -3%;
    width: 16%;
  }
}

@media screen and (max-width: 920px) {
  .sec-tamago .deco02 {
    display: none;
  }
}

@media screen and (max-width: 540px) {
  .sec-tamago .deco02 {
    display: none;
  }
}

.sec-tamago .photoArea {
  width: 40%;
  margin: 1rem auto;
  display: none;
}

@media screen and (max-width: 920px) {
  .sec-tamago .photoArea {
    width: 30%;
    display: block;
  }
}

.sec-tamago .photoArea img {
  width: 100%;
}

.sec-tamago .title-area {
  color: #eec848;
}

.sec-tamago .text-area .text span,
.sec-nft .text-area .text span {
  font-size: 1.2rem;
  border-bottom: solid 3px #ff7ba8;
}

@media screen and (max-width: 540px) {
  .sec-tamago .text-area .text span,
  .sec-nft .text-area .text span {
    font-size: 1rem;
  }
}

.sec-tamago .accordion_area {
  margin-bottom: 4rem;
}

.annotation {
  font-size: 0.9rem;
}

@media screen and (max-width: 540px) {
  .annotation {
    font-size: 0.8rem;
  }
}

/* ↓ はじめてのNFT ------------------------*/

.sec-nft .title {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}

.sec-nft .title-area {
  color: #ff7ba8;
}

.sec-nft .text-area {
  margin-bottom: 6rem;
}

@media screen and (max-width: 540px) {
  .sec-nft .text-area {
    margin-bottom: 4rem;
  }
}

.card-area .items {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  margin: 0 auto;
}

.card-area .item {
  border: solid #606060 2px;
  border-radius: 1rem;
  width: 28%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 0rem 2rem 0rem;
  margin-bottom: 4rem;
}

.card-area .item:nth-child(2) {
  margin: 0 2rem 4rem 2rem;
}

.card-area .item:nth-child(4),
.card-area .item:nth-child(5) {
  margin: 0 1rem 4rem 1rem;
}

@media screen and (max-width: 820px) {
  .card-area .item {
    width: 100%;
    padding: 1rem;
    margin: 0 0 4rem 0;
    margin-bottom: 4rem;
  }
  .card-area .item:nth-child(2) {
    margin: 0 0 4rem 0;
  }

  .card-area .item:nth-child(4),
  .card-area .item:nth-child(5) {
    margin: 0 0 4rem 0;
  }
}

@media screen and (max-width: 540px) {
  .card-area .item {
    margin-bottom: 2rem;
  }
  .card-area .item:nth-child(2) {
    margin: 0 0 2rem 0;
  }

  .card-area .item:nth-child(4),
  .card-area .item:nth-child(5) {
    margin: 0 0 2rem 0;
  }
}

.card-area .item .photoArea {
  width: 60%;
  /* border: solid; */
}

@media screen and (max-width: 820px) {
  .card-area .item .photoArea {
    width: 30%;
  }
}

@media screen and (max-width: 540px) {
  .card-area .item .photoArea {
    width: 40%;
  }
}

.card-area .item .photoArea img {
  width: 100%;
}

.card-area .item .textArea {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 2rem;
}

@media screen and (max-width: 820px) {
  .card-area .item .textArea {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .card-area .item .textArea br {
    display: none;
  }
}

@media screen and (max-width: 540px) {
  .card-area .item .textArea {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
}

.card-area .step {
  position: absolute;
  width: 25%;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

@media screen and (max-width: 820px) {
  .card-area .step {
    width: 10%;
    top: -10%;
    left: 4%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}

/* ↓ ボタンエリア ------------------------*/
.button-area {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.button-area .button {
  color: #fff;
  background-color: #41ac43;
  box-shadow: 0 5px 0 #28862a;
  padding: 1.3rem 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: 1rem;
  width: 70%;
  display: inline-block;
  text-align: center;
}

@media screen and (max-width: 540px) {
  .button-area .button {
    color: #fff;
    background-color: #41ac43;
    box-shadow: 0 5px 0 #28862a;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 1rem;
    width: 100%;
    display: inline-block;
    text-align: center;
  }
}

/* ↓ アコーディオン ------------------------*/
.accordion_area {
  margin: 0 auto;
}

.accordion_area .accordion_block .question_body {
  position: relative;
  z-index: +1;
  cursor: pointer;
  transition: 0.2s;
}

.accordion_area .accordion_block .question_body .i_box {
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}
.accordion_area .accordion_block .question_body .i_box:before,
.accordion_area .accordion_block .question_body .i_box:after {
  position: absolute;
  transition: 0.3s;
  color: #41ac43;
  position: absolute;
  content: "";
  display: block;
  transition: all 0.4s;
  background: #41ac43;
  left: 50%;
  top: 50%;
  width: 200%;
  height: 3px;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 540px) {
  .accordion_area .accordion_block .question_body .i_box:before,
  .accordion_area .accordion_block .question_body .i_box:after {
    width: 110%;
  }
}

.accordion_area .accordion_block .question_body .i_box:before {
  transform: translate(-50%, -50%) rotate(90deg);
}

@media screen and (max-width: 540px) {
  .accordion_area .accordion_block .question_body .i_box:before {
    right: -10px;
  }
}

.accordion_area .accordion_block .question_body.open .i_box:before {
  display: none;
}

.accordion_area .accordion_block .question_body.open .i_box:after {
  transform: translate(-50%, -50%) rotate(0deg);
}

@media screen and (max-width: 540px) {
  .accordion_area .accordion_block .question_body.open .i_box:after {
    right: -10px;
  }
}

.accordion_area .accordion_block .answer_body {
  display: none;
  padding: 1.5rem 4rem 1.5rem 4rem;
  box-sizing: border-box;
  /* margin-top: 2rem; */
  text-align: left;
}

@media screen and (max-width: 540px) {
  .accordion_area .accordion_block .answer_body {
    padding: 1.5rem 1rem 1.5rem 2rem;
    margin-top: 0rem;
  }
}
.accordion_area .accordion_block .question_body {
  /* padding: 0.5rem 2rem 0.5rem 2rem; */
}
@media screen and (max-width: 830px) {
  .accordion_area .accordion_block .question_body {
    padding: 1.5rem 2rem 1.5rem 1rem;
  }
}

@media screen and (max-width: 540px) {
  .accordion_area .accordion_block .question_body {
    padding: 1rem 0.5rem 1rem 1rem;
  }
}

.accordion_block {
  padding: 1.3rem 2rem;
  border-bottom: 4px solid #41ac43;
}

.accordion_block:first-child {
  border-top: 4px solid #41ac43;
}

@media screen and (max-width: 540px) {
  .accordion_block {
    padding: 0rem;
    border-bottom: 2px solid #41ac43;
  }
  .accordion_block:first-child {
    border-top: 2px solid #41ac43;
  }
}

.question_bodyinner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.question_text {
  text-align: left;
  color: #41ac43;
  font-size: 1.5rem;
  font-weight: 600;
  width: 90%;
}

@media screen and (max-width: 540px) {
  .question_text {
    font-size: 1rem;
  }
}

.answer_bodyinner ul li {
  list-style: disc;
  font-size: 0.9rem;
}

@media screen and (max-width: 540px) {
  .answer_bodyinner ul li {
    font-size: 1rem;
  }
}

.answer_bodyinner .text {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

@media screen and (max-width: 540px) {
  .answer_bodyinner .text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: left;
  }
}

.answer_bodyinner .text span {
  display: block;
  font-size: 1rem;
}

.question_bodyinner .icon {
  width: 7%;
}

.answer_bodyinner_02 .text {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

@media screen and (max-width: 540px) {
  .answer_bodyinner_02 .text {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: left;
  }
}

.answer_bodyinner_02 ul li {
  font-size: 1.2rem;
}

@media screen and (max-width: 540px) {
  .answer_bodyinner_02 ul li {
    font-size: 1.1rem;
  }
}

.answer_bodyinner_02 .text span {
  display: block;
  font-size: 1.3rem;
}

@media screen and (max-width: 540px) {
  .answer_bodyinner_02 .text span {
    font-size: 1.1rem;
  }
}

/* ↓ PCとSP表示切り替え（末尾に設置） ------------------------*/
.pcArea {
  display: block;
}

/* .tabArea {
  display: block;
} */

.spArea {
  display: none;
}

/* @media screen and (max-width: 920px) {
  .pcArea {
    display: none;
  }

  .tabArea {
    display: block;
  }
} */

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

  /* .tabArea {
    display: none;
  } */

  .spArea {
    display: block;
  }
}
