@charset "UTF-8";

/*----------
header
----------*/
.h-main {
  height: 100px;
  border-bottom: 1px solid #a79e7f;
  background-color: #fff;
}

.h-inner {
  height: 100px;
}

.l-inner {
  width: 1000px;
  margin: 0 auto;
}

.l-sideWrp--both {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-linkBlock {
  display: block;
  margin-top: 8px
}

.h-logoBox_logo {
  width: 166px;
}

.h-btnBox {
  position: relative;
  width: 190px;
  height: 35px;
  text-align: center;
  border-radius: 5px;
  background-color: #5a3c00;
}

.h-btnBox:hover {
  opacity: .7;
}

.h-btnBox::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 9px;
  height: 10px;
  margin: auto 0;
  content: '';
  background-image: url(../img/icon_triangle.svg);
}

.h-btnBox::before:hover {
  opacity: .7
}

.h-btnBox_btn {
  font-family: sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 35px;
  display: block;
  padding-left: 20px;
  letter-spacing: .06em;
  color: #fff;
}

@media screen and (max-width: 991px) {
  .l-inner {
    width: 93%;
  }
}

@media screen and (max-width: 380px) {
  .h-logoBox_logo {
    width: 105px;
  }
}


/*----------
footer
----------*/
.f-main {
  height: 50px;
  color: #5a3c00;
  border-top: 1px solid;
  background-color: #fff;
}

.f-inner {
  height: 50px;
}

.f-copy {
  font-family: sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 3.6;
  text-align: center;
  letter-spacing: .04em;
  color: #000;
}


/*----------
common
----------*/
* {
  box-sizing: border-box;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  position: relative;
}

img {
  max-width: 100%
}

/* margin */
.mt-10 {
  margin-top: 10px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* display */
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.xs-only {
  display: none;
}

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

  .sp-only {
    display: block;
  }
}

@media screen and (max-width: 540px) {
  .xs-only {
    display: block;
  }
}

.d-block {
  display: block;
}

.d-inline-block {
  display: inline-block;
}

.d-flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

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

.align-stretch {
  align-items: stretch;
}

.align-start {
  align-items: start;
}

.round-sm {
  border-radius: 2px;
}

.round-max {
  border-radius: 1000px;
}

/* color */
.text-green {
  color: #22ac38 !important;
}

.text-orange {
  color: #ee8100 !important;
}

.text-white {
  color: #fff !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-green {
  background-color: #22ac38 !important;
}

.bg-lightgreen {
  background-color: #e1eeb9 !important;
}

.bg-grad-green {
  background: linear-gradient(to right, #9bc615, #22ac38);
}

.bg-grad-orange {
  background: linear-gradient(to right, #fdcd00, #ee8100);
}

/* align */
.text-left {
  text-align: left !important;
}

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

.text-right {
  text-align: right !important;
}

@media screen and (max-width: 767px) {
  .text-left-sp {
    text-align: left !important;
  }

  .text-center-sp {
    text-align: center !important;
  }

  .text-right-sp {
    text-align: right !important;
  }
}

/* text */
.fs-12 {
  font-size: 12px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-28 {
  font-size: 28px !important;
}

.fw-normal {
  font-weight: normal !important;
}

.fw-medium {
  font-weight: medium !important;
}

.fw-bold {
  font-weight: bold !important;
}

@media screen and (max-width: 767px) {
  .fs-12-sp {
    font-size: 12px !important;
  }

  .fs-14-sp {
    font-size: 14px !important;
  }

  .fs-16-sp {
    font-size: 16px !important;
  }

  .fs-18-sp {
    font-size: 18px !important;
  }

  .fs-20-sp {
    font-size: 20px !important;
  }

  .fs-24-sp {
    font-size: 24px !important;
  }

  .fs-28-sp {
    font-size: 28px !important;
  }
}

.underline-grad {
  background: linear-gradient(to right, #b7cc29, #e68000);
  background-size: 100% 3px;
  background-position: left bottom;
  background-repeat: no-repeat;
  padding-bottom: 0.3em;
}

/* 購入ボタン */
.btn-blue {
  display: block;
  font-size: 24px;
  text-align: center;
  padding-top: 12px;
  padding-bottom: 12px;
  margin: auto;
  width: 368px;
  color: #fff;
  background-color: #32485e;
  border-radius: 100px;
}

/* グラデーションボタン */
.btn-grad {
  display: inline-block;
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  padding: 4px 8px;
  margin: auto;
  color: #fff;
  background: linear-gradient(to right, #9bc615, #22ac38);
  border-radius: 100px;
}

@media screen and (max-width: 991px) {
  .btn-blue {
    width: 100%;
    max-width: 350px;
  }
}


/*----------
mv
----------*/
.mv {
  padding-top: 60px;
  padding-bottom: 60px;
}

.mv-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 960px;
  margin: auto;
}

.mv-logo {
  width: 44%;
  max-width: 427px;
  margin-right: 30px;
}

.mv-text {
  width: calc(56% - 30px);
}

.mv-catch {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.75;
}

.mv-author {
  display: flex;
  font-size: 14px;
}

.mv-author dt {
  width: 100px;
  margin-bottom: 6px;
}

.mv-author dd {
  width: calc(100% - 100px);
  flex-grow: 0;
  margin-bottom: 6px;
}

.mv-bg {
  position: fixed;
  z-index: -1;
  transform: translateX(-50%);
}

.mv-bg-left {
  width: 9vw;
  min-width: 160px;
  max-width: 360px;
  top: 100px;
  left: calc(50% - 600px);
}

.mv-bg-clock {
  width: 8vw;
  min-width: 100px;
  top: calc(100px + 36vw);
  left: calc(50% - 624px);
}

.mv-bg-right {
  width: 14vw;
  top: 78px;
  left: calc(50% + 600px);
}

.mv-bg-flower {
  width: 50vw;
  top: calc(78px + 20vw);
  left: calc(50% + 46vw);
}

@media screen and (min-width: 1680px) {
  .mv-bg-clock {
    top: 680px;
  }

  .mv-bg-flower {
    left: calc(50% + 800px);
  }
}

@media screen and (max-width: 991px) {
  .mv-wrap {
    width: calc(100% - 80px);
    max-width: 960px;
    flex-direction: column;
  }

  .mv-logo {
    width: 80%;
    min-width: 277px;
    margin-right: 0;
  }

  .mv-text {
    width: 480px;
    margin-top: 30px;
  }
}

@media screen and (orientation: portrait),
(max-width: 575px) {
  .mv-bg-clock {
    top: 78vh;
    left: 30px;
    width: 24vw;
    max-width: 141px;
  }

  .mv-bg-flower {
    top: 60vh;
  }
}

@media screen and (max-width: 575px) {
  .mv {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .mv-wrap {
    width: calc(100% - 32px);
  }

  .mv-text {
    width: 100%;
  }
}

@media screen and (max-width: 540px) {
  .mv-catch {
    font-size: 7vw;
  }

  .mv-bg-clock {
    width: 40vw;
    left: 20px;
  }

  .mv-bg-flower {
    width: 70vw;
  }
}

/* オープニングアニメーション */
.sp-op {
  display: block;
  background-color: #fff;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  z-index: 10;
  animation: fadeOut 3s ease-in forwards;
}

.bg-kiduku {
  position: fixed;
  transform: translateX(-50%) translateY(-50%);
  top: 50%;
  left: 50%;
  width: 100%;
  height: 90vh;
  text-align: center;
  opacity: 0;
  animation: sp-op 1.25s ease-in forwards;
}

.bg-kiduku img {
  aspect-ratio: 360 / 1168;
  max-height: 100%;
}

.bg-deau {
  position: fixed;
  transform: translateX(-50%) translateY(-50%);
  top: 50%;
  left: 50%;
  width: 100%;
  height: 62vh;
  text-align: center;
  opacity: 0;
  animation: sp-op 1.25s ease-in 1.5s forwards;
}

.bg-deau img {
  aspect-ratio: 400 / 790;
  max-height: 100%;
}

.mv-logo {
  opacity: 0;
  animation: fadeInUp 0.5s ease-in 3s forwards;
}

.mv-catch .underline-grad {
  opacity: 0;
  animation: mv-line 1s ease-in-out 3.25s forwards;
}

.mv-author {
  opacity: 0;
  animation: author-fadeInUp 0.5s ease-in 3.5s forwards;
}

.lead {
  opacity: 0;
  animation: fadeInUp 0.5s ease-in 3.75s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes mv-line {
  0% {
    background-size: 0 3px;
  }

  100% {
    opacity: 1;
    background-size: 100% 3px;
  }
}

@keyframes author-fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes sp-op {
  0% {
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  75% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}


/*----------
lead
----------*/
.lead {
  display: flex;
  justify-content: space-between;
  width: 960px;
  margin: auto;
  padding-top: 20px;
  padding-bottom: 60px;
}

.lead-left {
  width: calc(44% - 10px);
  text-align: center;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
}

.lead-right {
  width: calc(56% - 30px);
  line-height: 1.75;
}

.lead-author {
  margin-top: 20px;
}

.lead-more {
  display: none;
}

@media screen and (max-width: 991px) {
  .lead {
    width: calc(100% - 32px);
  }
}

@media screen and (max-width: 767px) {
  .lead {
    flex-direction: column;
  }

  .lead-left {
    width: 100%;
  }

  .lead-right {
    width: 100%;
    margin-top: 30px;
    height: 270px;
    overflow-y: hidden;
    position: relative;
    transition: all 0.5s ease-out;
  }

  .lead-left .sticky {
    display: flex;
  }

  .lead-book {
    margin-right: 20px;
  }

  .lead-more {
    display: block;
    width: 100%;
    height: 76px;
    background: linear-gradient(to bottom, transparent, #fff 70%);
    position: absolute;
    bottom: -2px;
    text-align: center;
    padding-top: 30px;
  }

  .lead-more-btn {
    background-color: #fff;
    border: 1px solid #666;
    border-radius: 100px;
    padding: 2px 6px;

  }

  .lead-more-btn:hover {
    border: 1px solid #22ac38;
    color: #22ac38;
    opacity: 1;
  }
}

/*----------
大豆生田先生推薦
----------*/
.rcmd {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #e1eeb9 80%, #fff 100%);
  padding-bottom: 120px;
}

.rcmd-img {
  width: 197px;
  margin-right: 50px;
  margin-bottom: 5px;
}

.rcmd-right {
  position: relative;
  font-size: 22px;
  font-weight: bold;
}

.rcmd-right::before {
  content: "";
  width: 20px;
  height: 30px;
  border-left: 1px solid #22ac38;
  border-top: 1px solid #22ac38;
  position: absolute;
  top: -20px;
  left: -20px;
}

.rcmd-right::after {
  content: "";
  width: 20px;
  height: 30px;
  border-right: 1px solid #22ac38;
  border-bottom: 1px solid #22ac38;
  position: absolute;
  bottom: -20px;
  right: -20px;
}

.rcmd-text {
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
  .rcmd {
    flex-direction: column-reverse;
  }

  .rcmd-img {
    margin-right: 0;
  }

  .rcmd-right {
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: 18px;
  }
}


/*----------
event
----------*/
.event {
  background: linear-gradient(to bottom, #9bc615, #22ac38);
  /* border-bottom-left-radius: 50% 200px; */
  /* border-bottom-right-radius: 50% 200px; */
  margin-left: -100px;
  margin-right: -100px;
  padding: 100px;
}

.event-title {
  text-align: center;
  margin-bottom: 30px;
}

.event-card {
  width: 960px;
  background-color: #fff;
  border-radius: 24px;
  padding: 60px 40px;
  margin: auto;
  margin: 0 auto 100px auto;
}

.event-content {
  display: flex;
  justify-content: space-between;
}

.event-left {
  width: 46%
}

.event-right {
  width: 52%;
}

.cast-1 {
  width: 230px;
  margin: 0 auto;
}

.cast-2 {
  width: 48%;
}

.cast-3 {
  width: 48%;
}

.cast-1-img {
  width: 136px;
  margin-bottom: 4px;
}

.cast-2-img {
  width: 124px;
  margin-bottom: 4px;
}

.cast-3-img {
  width: 136px;
  margin-bottom: 4px;
}

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

.event-label {
  display: inline-block;
  font-weight: bold;
  font-size: 12px;
  background-color: #4d4d4d;
  color: #fff;
  padding: 0 2px;
}

.q-box {
  color: #22ac38;
  padding: 4px 8px;
  margin-right: 10px;
  border: 1px solid #22ac38;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.25;
  width: 62px;
  flex-shrink: 0;
}

@media screen and (max-width: 991px) {
  .event-card {
    width: calc(100% - 32px);
  }
}

@media screen and (max-width: 767px) {
  .event-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .event-content {
    flex-direction: column-reverse;
  }

  .event-left {
    width: 100%;
  }

  .event-right {
    width: 100%;
  }

  .q-box {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }

  .cast-1-img {
    width: 168px;
  }

  .cast-2-img {
    width: auto;
    height: 150px;
  }

  .cast-3-img {
    width: auto;
    height: 150px;
  }

  .d-flex:has(.q-box) {
    flex-wrap: wrap;
  }
}


/*----------
intro
----------*/
.intro {
  padding-top: 100px;
  padding-bottom: 160px;
  position: relative;
  background: url(../img/intro_bg_left.png) no-repeat, url(../img/intro_bg_right.png) no-repeat, #fff;
  background-position: calc(50% - 640px) bottom, calc(50% + 620px) 50%;
  background-attachment: fixed;
  z-index: -1;
}

.intro-wrap {
  max-width: 960px;
  width: calc(100% - 32px);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.intro-title-wrap {
  margin-bottom: 40px;
}

.intro-title {
  font-size: 28px;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
}

.intro-ft-1 {
  display: flex;
  justify-content: center;
  background-color: #F3F8E3;
  margin-top: 140px;
  margin-bottom: 30px;
  padding: 30px 40px;
  position: relative;
}

.intro-ft-1 img {
  width: 270px;
}

.intro-ft-1 img:not(:last-of-type) {
  margin-right: 30px;
}

.intro-ft-1::before {
  content: "";
  background: url(../img/intro_fukidashi_1.png);
  background-size: 100%;
  width: 331px;
  height: 141px;
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
}

.intro-ft-2 {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 140px;
}

.intro-ft-2 .page-item img {
  width: 202px;
}

.page-item:not(:last-of-type) {
  margin-right: 40px;
}

.page-fukidashi {
  position: relative;
}

.page-fukidashi::before {
  content: "";
  background: url(../img/intro_fukidashi_2.png);
  background-size: 100%;
  width: 227px;
  height: 139px;
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
}

.page-item p {
  font-size: 14px;
  margin-top: 6px;
}

.intro-bg-top-sp,
.intro-bg-bottom-sp {
  display: none;
}

@media screen and (max-width: 1024px) {
  .intro {
    background: #fff;
    padding-top: 0;
    padding-bottom: 230px;
  }

  .intro-bg-top-sp {
    display: block;
    width: 197px;
    margin: 0 auto 40px;
    padding-top: 80px;
  }

  .intro-bg-bottom-sp {
    display: block;
    width: 193px;
    position: absolute;
    right: 30px;
  }

  .intro-ft-1 img {
    width: calc((100% - 60px) / 3)
  }
}

@media screen and (max-width: 767px) {
  .intro {
    padding-bottom: 160px;
  }

  .intro-bg-bottom-sp {
    bottom: 0;
  }

  .intro-title-wrap {
    margin-bottom: 20px;
  }

  .intro-ft-1 {
    flex-direction: column;
    align-items: center;
  }

  .intro-ft-1 img {
    width: 100%;
    max-width: 270px;
  }

  .intro-ft-1 img:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .intro-ft-2 {
    flex-direction: column;
    align-items: center;
  }

  .intro-ft-2 .page-item {
    margin-right: 0;
    margin-bottom: 20px;
  }
}


/*----------
kagaku art
----------*/
.kagaku {
  padding-top: 200px;
  background: linear-gradient(to bottom, #fff 0%, #97C215 20%);
}

.kagaku-card {
  background-color: #fff;
  border-radius: 24px;
  width: calc(100% - 32px);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 36px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.kagaku-lead {
  display: inline-block;
  border-top: #22AC38 1px solid;
  border-bottom: #22AC38 1px solid;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}

.kagaku-title {
  width: 210px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.kagaku-circle {
  margin-top: 20px;
  margin-bottom: 10px;
}

.grad-k-a {
  height: 200px;
  background: linear-gradient(to bottom, #97C215, #fdcd00);
}

.art {
  background: linear-gradient(to bottom, #fdcd00 60%, #fff 80%);
}

.art-card {
  background-color: #fff;
  border-radius: 24px;
  width: calc(100% - 32px);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 36px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.art-lead {
  display: inline-block;
  border-top: #EE8100 1px solid;
  border-bottom: #EE8100 1px solid;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}

.art-title {
  width: 210px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.art-circle {
  margin-top: 20px;
  margin-bottom: 10px;
}

.art .btn-grad {
  background: linear-gradient(to right, #fdcd00, #ee8100);
}

.page-flex {
  display: flex;
  justify-content: center;
  align-items: start;
}

.browse {
  width: 180px;
  text-align: center;
  margin-right: 60px;
}

.browse .btn-grad {
  margin-top: 10px;
}

.block-btn {
  padding: 40px 0 100px 0;
}

.block-btn .btn-blue {
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .browse {
    width: 24%;
    max-width: 180px;
  }

  .browse+img {
    width: 70%;
    max-width: 574px;
  }
}

@media screen and (max-width: 767px) {
  .kagaku {
    padding-top: 100px;
  }

  .grad-k-a {
    height: 100px;
  }

  .kagaku-card,
  .art-card {
    padding: 60px 24px;
  }

  .kagaku-circle,
  .art-circle {
    margin-bottom: 30px;
  }

  .page-flex {
    flex-direction: column-reverse;
    align-items: center;
  }

  .browse {
    width: 100%;
    margin-right: 0;
    margin-top: 30px;
  }

  .browse+img {
    width: 100%;
  }
}


/* archive */
.video {
  display: block;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 560 / 315;
  margin: 60px auto 20px auto;
}

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

.archive img {
  width: 360px;
  flex-shrink: 0;
  border: 1px solid #ddd;
}

.archive .archive-text {
  width: calc(100% - 380px);
}

@media screen and (max-width: 767px) {
  .archive {
    flex-direction: column;
  }

  .archive img {
    width: 100%;
  }

  .archive .archive-text {
    width: 100%;
    margin-top: 20px;
  }

}


/* ページトップへボタン */
.totop {
  position: fixed;
  right: 10px;
  bottom: 60px;
  display: block;
  width: 40px;
  height: 40px;
  background-color: #333;
  border-radius: 50%;
  padding: 10px;
  opacity: .5;
}

.totop:hover {
  opacity: 1;
}

.triangle {
  position: absolute;
  top: -4px;
  left: 8px;
  height: 20px;
  border-top: 14px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 14px solid #fff;
  border-left: 12px solid transparent;
}

@media screen and (max-width: 767px) {
  .triangle {
    top: 0;
    left: 10px;
    height: 0;
    border-top: 12px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 12px solid #fff;
    border-left: 10px solid transparent;
  }
}


/* キャンペーンバナー掲載 */
.cp {
  margin: 20px 0 60px;
  text-align: center;
}

.cp a {
  display: inline-block;
}

.cp img {
  max-width: 100%;
}

/*header 変更*/
.header {
	background-color: #fff;
	border-bottom: 1px solid #333;
	left: 0;
	padding: 11px 0 10px;
	/*position: fixed;*/
	right: 0;
	top: 0;
	z-index: 900;
}

.header__inner {
	align-items: center;
	display: flex;
	padding: 0 0.5rem;
}

.header__logo {
	display: flex;
}

.header__logo a {
	display: inline-block;
	height: inherit;
	width: 162px;
}

.header__logo img {
	-o-object-fit: contain;
	aspect-ratio: 120/51;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.header__buttons {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-left: auto;
}
.button,
.button--green {
	background-color: #5a2800;
	border-radius: 0.6rem;
	color: #fff;
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	line-height: 1;
	padding: 11px 0 12px;
	text-align: center;
	width: 164px;
}

.button--green {
	background-color: #00b900;
	text-transform: uppercase;
}
.lineup h3 {
	width: fit-content;
    padding: 0 20px;
    text-align: center;
    margin: 0 auto 40px;
    line-height: 3rem;
    border-bottom: 5px solid #5a3c00;
	font-size: 2rem;
	color: #5a3c00;
}
.lineup h3 span {
	color: #5a3c00;
	vertical-align: top;
}
.lineup {
	width: 100%;
	margin: 0 auto;
	padding-bottom: 80px;
}
.lineup-box {
	width: 80%;
	margin: 0 auto;

}
.lineup__cta-buttons {
	width: 100%;
	margin: 0 auto;
}
.lineup__cta-button {
	flex:1;
}
.cta-button span, .cta-button--line span {
    padding-left: 1.25rem;
    position: relative;
}
.cta-button span::before, .cta-button--line span::before {
    -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
    background-color: #fff;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    content: "";
    height: 18px;
    left: -4px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
}
.cta-button, .cta-button--line {
    background-color: #358f2b;
    box-shadow: 0 6px 0 #25641e;
    color: #fff;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.024em;
    line-height: 1.3;
    /* max-width: 15.375rem; */
    padding: 12px 0;
    text-align: center;
    transition: 0.2s;
    width: 100%;
	margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .lineup {
    width: 60%;
    margin: 0 auto;
    padding-bottom: 80px;
  }
.header {
	padding: 15px 0 14px;
}

.header__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1020px;
}

.header__logo a {
	width: 162px;
}

.header__buttons {
	flex-direction: initial;
	gap: 24px;
}

.cta-button,
.cta-button--line {
	background-color: #358f2b;
	box-shadow: 0 0.3125rem 0 #25641e;
	color: #fff;
	display: inline-block;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 0.024em;
	line-height: 1;
	padding: 0.75rem 0;
	text-align: center;
	transition: 0.2s;
	width: 100%;
}

.cta-button span,
.cta-button--line span {
	padding-left: 1.25rem;
	position: relative;
}

.cta-button span::before,
.cta-button--line span::before {
	-webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
	background-color: #fff;
	clip-path: polygon(0 0, 0 100%, 100% 50%);
	content: "";
	height: 1rem;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 0.6875rem;
}

.cta-button--line {
	text-transform: uppercase;
}
.button,
.button--green {
	font-size: 16px;
	padding: 15px 20px;
	width: 198px;
}
.lineup__cta-buttons {
	display: flex;
	gap: 24px;
	justify-content: center;
	margin-top: 0.875rem;
}

.lineup__cta-button:not(:first-child) {
	margin-top: 0;
	margin-top: initial;
}
.cta-button,
.cta-button--line {
	box-shadow: 0 0.4375rem 0 #25641e;
	padding: 1.3125rem 0;
	width: 100%;
}

}
@media (hover: hover) {

	.cta-button:hover,
	.cta-button--line:hover {
		box-shadow: none;
		opacity: 1;
		transform: translateY(0.3125rem);
	}
}

@media screen and (min-width: 768px) {

	.pc {
		display: block;
	}
	
	.sp {
		display: none;
	}
}