/* CSS Document */ :root {
  --color-main: #DF600D;
  --color-sub: #EDA613;
  --color-text: #0D0506;
  --animate-duration: 1000ms;
  --animate-delay: 2s;
}
.invisible {
  visibility: hidden;
}
.youtube-wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
}
.youtube-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {}
#main {
  font-family: "Roboto", "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  position: relative;
  color: var(--color-text);
}
/** 共通見出し **/
#main h2 {
  display: inline-block;
  font-size: clamp(20px, 3.33vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1em;
}
#main h2 span {
  font-size: clamp(13px, 2.08vw, 25px);
  font-weight: 400;
  display: block;
  text-align: center;
  line-height: 1;
  padding: 2px;
}
#main .center_img {
  text-align: center;
}
#main .center_img img {
  padding: 20px;
  border: 1px solid #ccc;
}
/**グロナビ**/
.gnav {
  padding-top: 40px;
  width: 100%;
  transition: transform 0.3s ease-out;
  position: absolute;
  top: 0px;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .gnav {
    padding-top: 5px;
  }
}
.gnav.fixed {
  position: fixed;
}
.gnav.hide {
  transform: translateY(calc(-100% - 22px));
}
.gnav_inner {
  position: relative;
  display: flex;
  align-items: center;
  position: relative;
  max-width: 1200px;
  height: 85px;
  margin: 0 auto;
  background-color: var(--color-text);
}
.gnav_inner::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--color-main);
  transform: rotate(1.6deg) translate(15px, 8px);
}
.gnav_inner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: var(--color-sub);
  transform: rotate(2deg) translate(-12px, -2px);
}
@media screen and (max-width: 768px) {
  .gnav_inner {
    height: 40px;
    justify-content: space-between;
  }
  .gnav_inner::after {
    content: none;
  }
  .gnav_inner::before {
    content: none;
  }
}
.gnav_inner .logo {
  width: 24%;
  height: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 768px) {
  .gnav_inner .logo {
    width: auto;
    height: 50px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .gnav_inner .logo img {
    width: auto;
    max-height: 100%;
    height: 100%;
  }
}
.glonav {
  position: relative;
  width: 76%;
}
@media screen and (max-width: 768px) {
  .glonav {
    position: absolute;
    width: 100%;
    right: 0;
    top: 0;
    display: none;
		padding-top: 40px;
		z-index: -1;
  }
}
.bars {
  display: none;
}
.glonav ul {
  display: flex;
  background-color: var(--color-text);
  width: 100%;
  height: 85px;
  margin: 0;
  padding: 0;
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  .glonav ul {
    display: block;
    width: 100%;
    height: auto;
		padding: 10px 0;
  }
  .bars {
    display: block;
    width: 40px;
    height: 40px;
    background-image: url("../img/SVG/bars-solid.svg");
    background-repeat: no-repeat;
    background-size: auto 70%;
    background-position: center;
  }
}
.glonav :where(ul) li:before {
  content: none;
}
.glonav ul li {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
.glonav ul li {
  padding: 10px;
	border-bottom: 1px solid #444;
}
}
.glonav ul li a {
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(90deg, var(--color-main) 50%, #ffffff 50%);
  background-size: 200% auto; /* 2倍の幅で横スライド */
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text; /* Safari用 */
  transition: background-position 0.2s ease-in-out;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
.glonav ul li a{
	display: block;
	width: 100%;
	}
}

.glonav ul li a span {
  display: block;
  font-size: 12px;
}
@media screen and (max-width: 912px) {
  .glonav ul li a {
    font-size: 16px;
  }
  .glonav ul li a span {
    display: block;
    font-size: 9px;
  }
}
.glonav ul li a:hover {
  background-position: -100% 0; /* 右から左にスライド */
}
/* -- HERO --*/
.hero {
  background-image: url("../img/hero_bg.png");
  background-position: center top;
  background-repeat: repeat-y;
  background-size: cover;
  background-color: rgba(255, 255, 255, 0.7);
  background-blend-mode: lighten;
  padding-top: 140px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hero {
    padding-top: 0px;
    background-size: contain;
  }
}
.hero_wrapper {
  max-width: 1200px;
  width: 100%;
  position: relative;
  margin: 0 auto;
}
.hero_wrapper::before {
  content: "";
  display: block;
  padding-top: 114%;
}
@media screen and (max-width: 768px) {
  .hero_wrapper::before {
    padding-top: 177.78%;
    /*		padding-top: 222.22%*/
  }
}
.hero_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
	z-index: 1;
}
.hero_inner .charactor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero_inner .charactor .kageyama {
  position: absolute;
  left: -12%;
  bottom: -15px;
  width: 44.5%;
  height: auto;
}
.hero_inner .charactor .hinata {
  position: absolute;
  right: -12%;
  bottom: -15px;
  width: 39%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .hero_inner .charactor .kageyama {
    left: -18%;
    width: 65%;
  bottom: -25px;
  }
  .hero_inner .charactor .hinata {
    right: -17%;
		width: 57%;
  bottom: -25px;
  }
}
.hero_inner .hero_logo {
  position: absolute;
  width: 49.5%;
  height: auto;
  left: 50%;
  top: 6%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .hero_inner .hero_logo {
    width: 75%;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
  }
}
.hero_inner .hero_logo img {
  width: 100%;
  height: auto;
}
.hero_inner .hero_text {
  position: absolute;
  left: 50%;
  top: 29.6%;
  transform: translateX(-50%);
  width: 66.6%;
  height: 5.8%;
}
@media screen and (max-width: 768px) {
  .hero_inner .hero_text {
    top: 52%;
  }
}
.hero_inner .hero_text::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-sub);
  text-align: center;
  width: 100%;
  height: 100%;
  clip-path: polygon(8.5% 0%, 100% 0%, 97.5% 100%, 0% 100%);
  transform: rotate(-2deg) translate(6px, -2px);
}
.hero_inner .hero_text p {
  margin: 0;
  padding: 0;
  font-size: clamp(16px, 4vw, 50px);
  font-weight: 800;
  color: #fff;
  background-color: var(--color-main);
  text-align: center;
  width: 100%;
  height: 100%;
  clip-path: polygon(8.5% 0%, 100% 0%, 97.5% 100%, 0% 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
/** バボカとは **/
#about {
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  padding-top: 160px;
  padding-bottom: 180px;
	z-index: 2;
}
@media screen and (max-width: 768px) {
  #about {
    position: relative;
    top: inherit;
    left: inherit;
    padding-top: 55px;
    padding-bottom: 0px;
  }
}
.sec_about {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.85);
}
.sec_about_inner {
  width: 100%;
  height: 100%;
  padding: 3.33%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .sec_about_inner {
    display: block;
  }
}
.sec_about img {
  max-width: 100%;
  height: auto;
}
.sec_about .left_box {
  width: 55%;
}
.sec_about .right_box {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .sec_about .left_box {
    width: 100%;
  }
  .sec_about .right_box {
    width: 60%;
    margin: 1em auto 1em;
  }
}
/*
#main .sec_about > div > div > h2 {
	margin-bottom: 30px;
	font-size: clamp(20px, 3.33vw, 40px);
}
*/
#main .sec_about h2 span {
  background-color: var(--color-main);
  color: #fff;
}
.sec_about p {
  font-size: 22px;
  font-size: clamp(14px, 1.83vw, 22px);
  line-height: 1.7;
  margin: 0 0 0.5rem;
}
/** 初めてのかたへ **/
#beginners {
  width: 100%;
  padding-top: 160px;
  padding-bottom: 180px;
  background-color: var(--color-main);
	position: relative;
}
@media screen and (max-width: 768px) {
#beginners {
  padding-top: 60px;
  padding-bottom: 60px;
}
}

#beginners .bg_chara{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
#beginners .bg_chara .c1 {
	position: absolute;
	right: 0;
	top: 180px;
	width: 300px;
	height: auto;
z-index: 1;	
}
#beginners .bg_chara .c2 {
	position: absolute;
	left: 0px;
	bottom: -20px;
	width: 200px;
	height: auto;
z-index: 1;	
}
@media screen and (max-width: 1200px) {
#beginners .bg_chara .c1 {
	top: 180px;
	width: 200px;
}
#beginners .bg_chara .c2 {
	bottom: -20px;
	width: 140px;
}
}
@media screen and (max-width: 768px) {
#beginners .bg_chara .c1 {
	top: 60px;
	width: 140px;
}
#beginners .bg_chara .c2 {
	left: 0px;
	bottom: -40px;
	width: 90px;
}
}




#main .sec_beginners {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
	position: relative;
}
#main .sec_beginners h2 span {
  background-color: #fff;
  color: var(--color-main);
}
.sec_beginners .movie {
  max-width: 850px;
  height: auto;
  margin: 0 auto;
  position: relative;
}
.sec_beginners .movie .youtube-wrap {
  border: 2px solid #fff;
}
.sec_beginners .movie::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color-sub);
  transition: transform 1.0s ease-out;
}
.sec_beginners .movie.animate__fadeIn::before {
  transform: rotate(-7deg) translate(3px, 3px);
}
/** カード紹介 **/
#cards {
  width: 100%;
  padding-top: 180px;
  padding-bottom: 180px;
  background-color: var(--color-sub);
	position: relative;
}
@media screen and (max-width: 768px) {
#cards {
  padding-top: 60px;
  padding-bottom: 60px;
}
}

#cards .bg_chara{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
#cards .bg_chara .c3 {
	position: absolute;
	right: 10px;
	top: 180px;
	width: 200px;
	height: auto;
z-index: 1;	
}
#cards .bg_chara .c4 {
	position: absolute;
	left: 15px;
	bottom: 48.5%;
	width: 200px;
	height: auto;
z-index: 1;	
}
#cards .bg_chara .c5 {
	position: absolute;
	right: 10px;
	bottom: -20px;
	width: 150px;
	height: auto;
z-index: 1;	
}

@media screen and (max-width: 1200px) {
#cards .bg_chara .c3 {
	top: 180px;
	width: 140px;
}
#cards .bg_chara .c4 {
	width: 140px;
}
#cards .bg_chara .c5 {
	width: 110px;
}
	
}
@media screen and (max-width: 768px) {
#cards .bg_chara .c3 {
	top: 55px;
	width: 85px;
}
#cards .bg_chara .c4 {
	display: none;
}
#cards .bg_chara .c5 {
	width: 90px;
}
}



#main .sec_cards {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
#main .sec_cards h2 span {
  background-color: var(--color-main);
  color: #fff;
}
.cards_pickup {
  display: flex;
  justify-content: space-between;
}
.cards_pickup > div {
  width: 45%;
}
@media screen and (max-width: 768px) {
.cards_pickup {
  display: block;
}
.cards_pickup > div {
  width: 100%;
	margin-bottom: 2em;
}
}


.cards_pickup .thnumb {
  width: 74%;
  height: auto;
  position: relative;
  margin: 0 auto 60px;
}
@media screen and (max-width: 768px) {
.cards_pickup .thnumb {
  width: 60%;
  margin: 0 auto 20px;
}
}
.cards_pickup .thnumb img {
  display: block;
  position: relative;
}
.cards_pickup .thnumb::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color-main);
  border-radius: 15px;
  transition: transform 1.0s ease-out;
}
.cards_pickup .thnumb.animate__fadeIn::before {
  transform: rotate(10deg) translate(8px, 15px);
}
@media screen and (max-width: 768px) {
.cards_pickup .thnumb.animate__fadeIn::before {
  transform: rotate(10deg) translate(4px, 7px);
}
}



.cards_pickup .summary {
  padding: 0;
  text-align: right;
}
.cards_pickup .summary h3 {
  font-size: clamp(16px, 1.92vw, 23px);
  margin: 0;
  line-height: 1;
  padding: 10px 10px 10px 40px;
  color: #fff;
  background-color: var(--color-main);
  display: inline-block;
  clip-path: polygon(18.6% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.cards_pickup .summary p {
  font-size: 18px;
  font-size: clamp(14px, 1.5vw, 18px);
  margin: 0;
  padding: 3.7%;
  text-align: left;
}
.cards_pickup .cards_chara .summary {
  background-color: var(--color-text);
  color: #fff;
}
.cards_pickup .cards_event .summary {
  background-color: #fff;
}
.lineup {
  text-align: center;
  margin: 3em auto 0;
}


.lineup h3 {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}
.lineup h3 span {
  font-size: clamp(16px, 1.92vw, 23px);
  color: #fff;
  font-weight: 700;
  padding: 2px 40px 2px 40px;
  background-color: var(--color-text);
  display: inline-block;
  margin: 0;
  clip-path: polygon(38px 0%, 100% 0%, calc(100% - 11px) 100%, 0% 100%);
  position: relative;
}
.lineup h3::before {
  content: "";
  position: absolute;
  background-color: var(--color-main);
  width: 100%;
  height: 100%;
  clip-path: polygon(38px 0%, 100% 0%, calc(100% - 11px) 100%, 0% 100%);
  transform: rotate(-3deg) translate(4px, 1px);
}
.lineup_summary {
  text-align: center;
  margin: 2em 0 3em;
}
.lineup_summary p {
  display: inline-block;
  padding: 10px 10px 10px calc(10px + 1em);
  background-color: var(--color-main);
  color: #fff;
  text-align: left;
  margin: 0;
  position: relative;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
.lineup_summary p {
  padding: 6px 6px 6px calc(6px + 1em);
	font-size: 11px;
}
}
/** 遊び方 **/
#howto {
  width: 100%;
  padding-top: 180px;
  /*  padding-bottom: 180px;*/
  font-size: 18px;
  background-image: url("../img/SVG/bg_howto.svg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain auto;
}
@media screen and (max-width: 768px) {
#howto {
  padding-top: 60px;
}
}


#main .sec_howto {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
#main .sec_howto p {
	font-size: clamp(14px, 1.5vw, 18px);
  margin: 0 0 2em;
}
#main .sec_howto h2 {
	background-color: rgba(255,255,255,0.6);
}
#main .sec_howto h2 span {
  background-color: var(--color-main);
  color: #fff;
}
#main .sec_faq h3, #main .sec_howto h3, #main .sec_goods h3 {
  line-height: 1;
	font-size: clamp(18px, 2.08vw, 25px);

  color: var(--color-main);
  margin: 0 0 1rem;
}
#main .sec_faq h3::before, #main .sec_howto h3::before, #main .sec_goods h3::before {
  width: 40px;
  height: 45px;
  content: "";
  display: inline-block;
  background-image: url("../img/h3_marker.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
#main .sec_faq h3::before, #main .sec_howto h3::before {
  width: 30px;
  height: 33px;
}
}

#main .sec_howto ol {
  counter-reset: item;
  list-style: none; /* デフォの番号を消す */
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
#main .sec_howto .howto_001 ol {
  margin: 0 0 2em;
}
}
#main .sec_howto ol li + li {
  margin-top: 1em;
}
#main .sec_howto ol li {
  position: relative;
  padding-left: 2em; /* 番号の分の余白 */
	font-size: clamp(14px, 1.5vw, 18px);
	line-height: 1.3;
}
#main .sec_howto ol li::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-main); /* 丸い背景色 */
  color: #fff; /* 番号の色 */
  border-radius: 50%;
  width: 1.5em;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.howto_001 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2em;
}

.howto_001 .left_box {
  margin: 0 60px 0 0;
}
@media screen and (max-width: 768px) {
.howto_001 {
  display: block;
}
.howto_001 .left_box {
  margin: 0;
}
}


/* 画像リンクの初期設定 */
.howto_001 a img {
  display: block; /* 余計な余白をなくす */
}
/* ホバー時の光るエフェクト */
.howto_001 a:hover img {
  animation: flash-out 0.35s ease-out forwards;
}
@keyframes flash-out {
  0% {
    filter: brightness(1.7);
    transform: scale(0.98);
  }
  100% {
    filter: brightness(1);
    /*		transform: scale(1.0);*/
  }
}
/** よくある質問 **/
#faq_id {
  width: 100%;
  padding-top: 180px;
  padding-bottom: 180px;
  font-size: 18px;
  background-image: url("../img/SVG/bg_faq.svg");
  background-position: center bottom;
  background-repeat: no-repeat;
/*  background-size: contain auto;*/
}
@media screen and (max-width: 768px) {
#faq_id {
  padding-top: 60px;
  padding-bottom: 60px;
}
}


#faq_id .faq {
  margin-bottom: 1em;
}
#main .sec_faq {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
#main .sec_faq p {
  font-size: 18px;
  margin: 0 0 1rem;
}
#main .sec_faq h2 span {
  background-color: var(--color-main);
  color: #fff;
}
/** イベント情報 **/
#events {
  width: 100%;
  padding-top: 180px;
  padding-bottom: 180px;
  background-color: var(--color-sub);
	position: relative;
}
@media screen and (max-width: 768px) {
#events {
  padding-top: 60px;
  padding-bottom: 60px;
}
}

#events .bg_chara{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
#events .bg_chara .c6 {
	position: absolute;
	right: 10px;
	top: 180px;
	width: 190px;
	height: auto;
z-index: 1;	
}
#events .bg_chara .c7 {
	position: absolute;
	left: 20px;
	bottom: -15px;
	width: 190px;
	height: auto;
z-index: 1;	
}

@media screen and (max-width: 1200px) {
#events .bg_chara .c6 {
	width: 150px;
}
#events .bg_chara .c7 {
	width: 140px;
}
	
}
@media screen and (max-width: 768px) {
#events .bg_chara .c6 {
	top: 55px;
	width: 90px;
}
#events .bg_chara .c7 {
	width: 80px;
	left: 5px;
}
}






#main .sec_events {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
#main .sec_events h2 span {
  background-color: var(--color-main);
  color: #fff;
}
.sec_events .event_list {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}
.sec_events .event_list::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  background-color: var(--color-main);
  transform: rotate(2deg) translate(2px, 12px);
}
.sec_events .event_list ul {
  list-style: none;
  padding:2.5%;
  background-color: #fff;
  position: relative;
}
.sec_events .event_list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: inherit;
  background-image: url("../img/SVG/ball.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
.sec_events .event_list ul li::before {
  width: 23px;
  height: 23px;
}
}
.sec_events .event_list ul li {
  margin: 0 0 1em;
  padding: 0 0 0 50px;
  font-size: clamp(16px, 1.66vw, 20px);
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
.sec_events .event_list ul li {
  padding: 0 0 0 30px;
}
}

.sec_events .event_list ul li span {
  display: block;
  font-size: clamp(12px, 1.38vw, 18px);
  color: #999;
}
.event_box {
  display: flex;
  justify-content: space-between;
}
.event_box .event_item {
  width: 42%;
  text-align: center;
}
@media screen and (max-width: 768px) {
.event_box {
  display: block;
}
.event_box .event_item {
  width: 100%;
	margin-bottom: 40px;
}
.event_box .event_item img {
  width: 80%;
}
}


.event_box .ttl {
  position: relative;
  display: inline-block;
  margin-top: 20px;
  width: 87%;
  height: 18.65%;
}
.event_box .ttl h3 {
  font-size: clamp(16px, 1.92vw, 23px);
  color: #fff;
  font-weight: 700;
  padding: 2px;
  margin: 0;
  background-color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(14% 0%, 100% 0%, 96% 100%, 0% 100%);
  position: relative;
  line-height: 1.2;
  text-align: center;
}
.event_box .ttl h3 > span > span {
  font-size: 20px;
  font-size: clamp(12px, 1.66vw, 20px);
  display: block;
  font-weight: normal;
}
.event_box .ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-main);
  width: 100%;
  height: 100%;
  clip-path: polygon(14% 0%, 100% 0%, 96% 100%, 0% 100%);
  transform: rotate(-3deg) translate(4px, 1px);
}



/** 商品情報 **/
#goods {
  width: 100%;
  padding-top: 180px;
  padding-bottom: 180px;
  font-size: 18px;
  background-image: url(../img/SVG/bg_howto.svg),url(../img/SVG/bg_faq.svg);
  background-position: center top,center bottom;
  background-repeat: no-repeat;
  background-size: contain auto;
}

#main .sec_goods{
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

#main .sec_goods h2{
  background-color: rgba(255, 255, 255, 0.6);
}

#main .sec_goods h2 span {
  background-color: var(--color-main);
  color: #fff;
}

.goods_inner{
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.goods_inner:nth-child(2){
  flex-direction: row-reverse;
  padding: 90px 0;
}
.goods_inner .goods_info {
	flex: 1;
}
.goods_inner .goods_thumb {
	width: 40%;
}
.goods_inner img{
	max-width: 100%;
	height: auto;
}

.goods_inner .goods_title{
font-size: 108%;
	font-weight: bold;
	margin: 0 0 0.5em;
}
.goods_inner .goods_price{
	color: var(--color-main);
	margin: 0 0 1em;
	padding: 0.5em 0 0;
	border-top: 1px dotted var(--color-text);
}
.goods_inner .goods_summary{
	padding: 15px;
	background-color: #efefef;
}
.goods_inner .goods_summary ul,
.goods_inner .goods_summary p {
	margin: 0;
	padding: 0;
}
.goods_inner .goods_summary p,
.goods_inner .goods_summary ul li {
	font-size: 97%;
	line-height: 1.5;
}
.goods_inner .goods_summary ul li::before {
    background-color: var(--color-main);
	top: 0.6em;
}

@media screen and (max-width: 768px) {
#goods {
  padding-top: 60px;
  padding-bottom: 60px;
}

.goods_inner, .goods_inner:nth-child(2){
  flex-direction: column
}
.goods_inner .goods_thumb {
	width: 100%;
}

}




/** SNS **/
#vaboca_sns {
  padding: 80px 0;
}
.qr_box {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: clamp(18px, 1.83vw, 22px);
}

.qr_box img {
  width: 250px;
  height: 250px;
}
@media screen and (max-width: 768px) {
#vaboca_sns {
  padding: 3em 0;
}
.qr_box {
  display: block;
	text-align: center;
}
.qr_box img {
	margin-bottom: 1em;
}
.qr_box span{
	display: block;
}
}


.vobaca_copy {
  padding: 10px;
	text-align: center;
}
@media screen and (max-width: 768px) {
.vobaca_copy {
	font-size: 11px;
}
}

