/* --------------------------------------------------
	000.margin and padding
-------------------------------------------------- */
body, div, dl, dt, dd, ul, ol, li,
h1, h2, h3, h4, h5, h6,
object, iframe, pre, code, p, blockquote,
form, fieldset, legend,
table, th, td, caption, tbody, tfoot, thead,
article, aside, figure, footer, header,
hgroup, menu, nav, section, audio, video, canvas, main {
  margin: 0;
  padding: 0;
}

article, aside, figure, figcaption, footer,
h1, h2, h3, h4, h5, h6, header, hgroup, menu, nav, section, main {
  display: block;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/* --------------------------------------------------
	001.HTML, Body, Anchor
-------------------------------------------------- */
html {
  font-size: 62.5%;
}

html, body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #000;
  letter-spacing: 0.3rem;
  font-weight: 400;
}
@media only screen and (max-width:767px) {
  body {
    background-size: 1.8rem auto;
    letter-spacing: 0.1rem;
  }
}

@media only screen and (min-width:1025px) {
  .sp-visible {
    display: none !important;
  }
  .tablet-visible {
    display: none !important;
  }
}
@media only screen and (max-width:1024px) {
  .tablet-hidden {
    display: none;
  }
  .sp-visible {
    display: none !important;
  }
}
@media only screen and (max-width:1024px) and (max-width:767px) {
  .sp-visible {
    display: block !important;
  }
}
@media only screen and (max-width:767px) {
  html {
    font-size: 3.125vw;
  }
  body {
    letter-spacing: 0;
  }
  .sp-hidden {
    display: none !important;
  }
  select,
  textarea,
  input[type=url],
  input[type=text],
  input[type=date],
  input[type=tel],
  input[type=email],
  input[type=submit] {
    -webkit-appearance: none;
  }
}
span.link,
a {
  color: #000;
  text-decoration: none;
  transition: all 0.5s;
  cursor: pointer;
}

@media only screen and (min-width:1025px) {
  a:hover, a:focus, a:active {
    color: #000;
    text-decoration: none;
  }
}
/* --------------------------------------------------
	002.Heading, Paragraph
-------------------------------------------------- */
dt, h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: 400;
}

p {
  line-height: 1.5;
}

/* --------------------------------------------------
	003.List
-------------------------------------------------- */
ol, ul, li {
  list-style: none;
  zoom: 1;
  overflow: hidden;
}

/* --------------------------------------------------
	004.Table
-------------------------------------------------- */
table {
  font-size: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  vertical-align: top;
}

dl, dt, dd {
  zoom: 1;
  overflow: hidden;
}

/* --------------------------------------------------
	005.Form
-------------------------------------------------- */
fieldset {
  border: none;
}

input, textarea, select, label {
  font-size: 1.6rem;
  font-weight: 300;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  vertical-align: middle;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

@media only screen and (max-width:767px) {
  input, textarea, select {
    box-sizing: border-box;
  }
  label {
    font-size: 1.4rem;
  }
}
button {
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

label {
  cursor: pointer;
}

textarea {
  overflow: auto;
}

legend {
  display: none;
}

/* --------------------------------------------------
	006.Other
-------------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

object {
  vertical-align: middle;
  outline: none;
}

em {
  font-style: italic;
}

b,
strong {
  font-weight: 400;
}

small {
  font-size: 100%;
}

i {
  font-style: normal;
}

u {
  text-decoration: none;
}

abbr, acronym {
  border: none;
  font-variant: normal;
}

address, caption, cite, code, dfn, var {
  font-weight: normal;
  font-style: normal;
}

sup {
  font-size: 1em;
  vertical-align: text-top;
}

sub {
  font-size: 1em;
  vertical-align: text-bottom;
}

hr {
  display: none;
}

/* --------------------------------------
		101 outline
-------------------------------------- */
#wrap {
  position: relative;
}

div:focus,
img:focus,
textarea:focus,
a:focus,
button:focus,
input:focus {
  outline: none;
  box-shadow: none;
}

/* --------------------------------------
		105 other
-------------------------------------- */
@keyframes Ttl {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes Com {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes Cara {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.move1 {
  opacity: 0;
}
.move1.fade {
  animation-name: Cara;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.2s;
}

.move2 {
  opacity: 0;
}
.move2.fade {
  animation-name: Cara;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

.move3 {
  opacity: 0;
}
.move3.fade {
  animation-name: Cara;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 1.5s;
}

.trigger {
  opacity: 0;
}

.ttl {
  animation-name: none;
}
.ttl.fade {
  animation-name: Ttl;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-delay: 0.2s;
}

.cara {
  opacity: 0;
  animation-name: none;
}
.cara.fade {
  animation-name: Cara;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
}

.com {
  opacity: 0;
  animation-name: none;
}
.com.fade {
  animation-name: Com;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-delay: 0.6s;
}

.stt-lang-select.br {
  bottom: auto !important;
  top: 0;
  border-radius: 0 !important;
  border: 5px solid #d7a43b !important;
  max-height: 50px !important;
}

.stt-lang-select.on {
  max-height: 600px !important;
}

#loader {
  width: 100%;
  height: 100%;
  background: #fff;
  transition: all 1s;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  opacity: 1;
}
#loader.on {
  opacity: 0;
  z-index: -1;
}

body #wrap {
  z-index: -1;
  position: relative;
}
body #wrap.on {
  z-index: 1;
}

body {
  background: #d7a43b;
  padding: 0 1.5rem;
  position: relative;
}
@media only screen and (max-width:767px) {
  body {
    padding: 0 0.8rem;
  }
}
body:before, body:after {
  content: "";
  width: 100%;
  height: 1.5rem;
  position: fixed;
  left: 0;
  z-index: 9999;
  background: #d7a43b;
}
@media only screen and (max-width:767px) {
  body:before, body:after {
    height: 0.8rem;
  }
}
body:before {
  top: 0;
}
body:after {
  bottom: 0;
}
@media only screen and (max-width:767px) {
  body:after {
    display: none;
  }
}
body #wrap {
  background: #fff;
  overflow: hidden;
}

/* --------------------------------------
		102 header
-------------------------------------- */
.header {
  width: 100%;
  height: 100vh;
  min-height: 70rem;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width:767px) {
  .header {
    height: calc(100vh - 4rem);
    flex-direction: column;
    min-height: 0;
  }
}
.header-logo {
  background: url("../img/fig_main.jpg") no-repeat 50% 50%;
  background-size: cover;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media only screen and (max-width:767px) {
  .header-logo {
    height: 60vh;
    flex-shrink: 0;
  }
}
.header-logo-ttl {
  width: 20rem;
}
@media only screen and (max-width:767px) {
  .header-logo-ttl {
    width: 8rem;
  }
}
.header-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width:767px) {
  .header-wrap {
    height: 100%;
    flex-shrink: 1;
    position: relative;
  }
  .header-wrap:before, .header-wrap:after {
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
    width: 5.5rem;
  }
  .header-wrap:before {
    background: url("../img/bg_catch_left.png") no-repeat 100% -1rem;
    left: 0;
    background-size: 7rem auto;
  }
  .header-wrap:after {
    width: 7rem;
    background: url("../img/bg_catch_right.png") no-repeat 0% -11rem;
    right: 0;
    background-size: 9rem auto;
  }
}
.header-catch {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width:767px) {
  .header-catch {
    width: 100%;
    text-align: center;
    height: auto;
  }
}
.header-catch:before, .header-catch:after {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}
@media only screen and (max-width:767px) {
  .header-catch:before, .header-catch:after {
    display: none;
  }
}
.header-catch:before {
  width: 12rem;
  background: url("../img/bg_catch_left.png") no-repeat 100% 50%;
  background-size: auto 100%;
  left: 0;
}
@media only screen and (max-width:1024px) {
  .header-catch:before {
    width: 8rem;
    background-size: auto 80%;
  }
}
.header-catch:after {
  width: 14.5rem;
  background: url("../img/bg_catch_right.png") no-repeat 0% 50%;
  background-size: auto 100%;
  right: 0;
}
@media only screen and (max-width:1024px) {
  .header-catch:after {
    width: 10rem;
    background-size: auto 80%;
  }
}
.header-catch p {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 3.2rem;
  line-height: 1.6;
  letter-spacing: 1.2rem;
  padding: 0 12rem;
  font-weight: 300;
}
@media only screen and (max-width:1024px) {
  .header-catch p {
    padding: 0 8rem;
  }
}
@media only screen and (max-width:1024px) and (max-width:767px) {
  .header-catch p {
    font-size: 2.4rem;
    -ms-writing-mode: unset;
    writing-mode: unset;
    padding: 2rem 0 0;
    letter-spacing: 0.2rem;
  }
}
.header-catch p span {
  letter-spacing: 0.6rem;
}
@media only screen and (max-width:767px) {
  .header-catch p span {
    letter-spacing: 0.1rem;
  }
}
.header-nav {
  padding: 3.5rem 0;
  flex-shrink: 0;
}
@media only screen and (max-width:767px) {
  .header-nav {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #d7a43b;
    padding: 0;
    z-index: 9999;
  }
}
.header-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: visible;
}
@media only screen and (max-width:767px) {
  .header-nav ul {
    flex-wrap: nowrap;
  }
}
.header-nav ul li {
  width: 50%;
  max-width: 14rem;
  font-size: 1.4rem;
}
@media only screen and (max-width:1024px) {
  .header-nav ul li {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width:1024px) and (max-width:767px) {
  .header-nav ul li {
    width: 20%;
  }
}
.header-nav ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  position: relative;
  padding: 1.2rem 0;
}
@media only screen and (max-width:767px) {
  .header-nav ul li a {
    color: #fff;
    height: 5rem;
  }
}
.header-nav ul li a:after {
  content: "";
  width: 6rem;
  height: 1px;
  background: #000;
  display: block;
  margin-top: 0.5rem;
}
@media only screen and (max-width:767px) {
  .header-nav ul li a:after {
    display: none;
  }
}
.header-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 5vh;
}
.header-sns ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-sns ul li a {
  display: block;
  padding: 1rem;
}
@media only screen and (max-width:767px) {
  .header-sns ul li a {
    padding: 0.8rem;
  }
}
.header-sns ul li img {
  width: 2rem;
}

/* --------------------------------------
		103 content
-------------------------------------- */
.container {
  position: relative;
}

.section-about {
  padding: 18rem 3vw 10rem;
  background: linear-gradient(90deg, rgba(215, 164, 59, 0.15), rgba(220, 184, 99, 0.1));
}
@media only screen and (max-width:1024px) {
  .section-about {
    padding: 12rem 5vw 7rem;
  }
}
@media only screen and (max-width:767px) {
  .section-about {
    padding: 5rem 1.5rem 8rem;
    background: rgba(238, 238, 238, 0.5);
  }
}
.section-about-header {
  max-width: 128rem;
  margin: 0 auto;
}
.section-about-header-ttl {
  font-size: 5.4rem;
  line-height: 1;
  padding-bottom: 14rem;
  letter-spacing: 0.6rem;
  font-weight: 300;
}
@media only screen and (max-width:1024px) {
  .section-about-header-ttl {
    font-size: 5rem;
    padding-bottom: 10rem;
  }
}
@media only screen and (max-width:1024px) and (max-width:767px) {
  .section-about-header-ttl {
    font-size: 3.2rem;
    padding-bottom: 3rem;
    text-align: center;
  }
}
.section-about-inner {
  max-width: 128rem;
  margin: 0 auto;
}
.section-concept {
  height: 100vh;
  min-height: 70rem;
  padding: 10rem 3vw 10rem;
  position: relative;
  z-index: 1;
  background: url("../img/bg_concept.jpg") 50% 50%;
  background-size: cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width:1024px) {
  .section-concept {
    height: 70rem;
  }
}
@media only screen and (max-width:1024px) and (max-width:767px) {
  .section-concept {
    padding: 6rem 1.5rem;
    height: auto;
    min-height: 0;
  }
}
.section-concept:after {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  z-index: -1;
  background: #291c01;
  opacity: 0.8;
}
.section-concept-header {
  text-align: center;
  position: relative;
}
.section-concept-header-ttl {
  font-size: 5.4rem;
  font-weight: 300;
  letter-spacing: 0.6rem;
  position: relative;
}
@media only screen and (max-width:1024px) {
  .section-concept-header-ttl {
    font-size: 5rem;
  }
}
@media only screen and (max-width:1024px) and (max-width:767px) {
  .section-concept-header-ttl {
    font-size: 3.2rem;
  }
}
.section-concept-inner {
  padding: 5rem 0 0;
}
@media only screen and (max-width:1024px) and (max-width:767px) {
  .section-concept-inner {
    padding: 3rem 0 0;
  }
}
.section-concept-inner-catch {
  padding-bottom: 2rem;
}
@media only screen and (max-width:767px) {
  .section-concept-inner-catch {
    padding-bottom: 1rem;
  }
}
.section-concept-inner-catch p {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.section-concept-inner-catch p strong {
  background: #d7a43b;
  padding: 0.3rem 1.2rem;
  margin-bottom: 0.8rem;
  font-size: 2.8rem;
}
@media only screen and (max-width:767px) {
  .section-concept-inner-catch p strong {
    font-size: 1.7rem;
    padding: 0.3rem 1rem;
  }
}
.section-concept-inner-txt {
  text-align: center;
}
@media only screen and (max-width:767px) {
  .section-concept-inner-txt {
    text-align: left;
  }
}
.section-concept-inner-txt p {
  font-size: 1.6rem;
  line-height: 2;
}
@media only screen and (max-width:767px) {
  .section-concept-inner-txt p {
    font-size: 1.2rem;
  }
}
.section-concept-inner-txt p span {
  font-size: 1.2rem;
}
@media only screen and (max-width:767px) {
  .section-concept-inner-txt p span {
    font-size: 1rem;
  }
}
.section-history {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15rem 3vw 10rem;
}
@media only screen and (max-width:1024px) {
  .section-history {
    padding: 8rem 5vw 4rem;
    flex-direction: column;
  }
}
@media only screen and (max-width:1024px) and (max-width:767px) {
  .section-history {
    padding: 4.5rem 1.5rem 3rem;
  }
}
.section-history-header {
  flex-shrink: 0;
  margin-right: 5vw;
}
@media only screen and (max-width:1024px) {
  .section-history-header {
    margin: 0;
  }
}
.section-history-header-ttl {
  font-size: 5.4rem;
  line-height: 1;
  padding-bottom: 14rem;
  letter-spacing: 0.6rem;
  font-weight: 300;
}
@media only screen and (max-width:1024px) {
  .section-history-header-ttl {
    font-size: 5rem;
    padding-bottom: 5rem;
  }
}
@media only screen and (max-width:1024px) and (max-width:767px) {
  .section-history-header-ttl {
    font-size: 3.2rem;
    padding-bottom: 2rem;
    text-align: center;
  }
}
.section-history-inner {
  overflow: visible;
}
.section-history-inner > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  position: relative;
}
.section-history-inner > div dt {
  flex-shrink: 0;
  padding: 0 2rem 0 11rem;
  font-size: 2rem;
  font-weight: 400;
  color: #b27d11;
}
@media only screen and (max-width:767px) {
  .section-history-inner > div dt {
    font-size: 1.2rem;
    padding-left: 5rem;
    overflow: hidden;
  }
}
.section-history-inner > div dt img {
  position: absolute;
  right: -2rem;
  top: 0;
  width: 13.6rem;
}
@media only screen and (max-width:767px) {
  .section-history-inner > div dt img {
    width: 7rem;
    position: relative;
    float: right;
  }
}
.section-history-inner > div dd {
  font-size: 1.6rem;
  width: 100%;
}
@media only screen and (max-width:767px) {
  .section-history-inner > div dd {
    font-size: 1.2rem;
  }
}
.section-history-inner > div dd figure {
  position: absolute;
  left: 0;
  top: -4rem;
  width: 9.3rem;
  height: 9.3rem;
}
@media only screen and (max-width:767px) {
  .section-history-inner > div dd figure {
    width: 4.8rem;
    height: 4.8rem;
    top: -2rem;
  }
}
.section-lineup {
  position: relative;
  background: #DCB863;
  padding: 0 0 8rem;
  margin-top: 14rem;
}
@media only screen and (max-width:1024px) {
  .section-lineup {
    margin-top: 10rem;
  }
}
@media only screen and (max-width:767px) {
  .section-lineup {
    margin-top: 6rem;
    padding: 0 0 4rem;
  }
}
.section-lineup-header {
  width: 41rem;
  height: 41rem;
  background: #DCB863;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  padding-top: 8rem;
  margin: 0 auto -30rem;
  position: relative;
  top: -14rem;
  z-index: 1;
}
@media only screen and (max-width:1024px) {
  .section-lineup-header {
    width: 36rem;
    height: 36rem;
    top: -10rem;
    padding-top: 6rem;
    margin-bottom: -30rem;
  }
}
@media only screen and (max-width:1024px) and (max-width:767px) {
  .section-lineup-header {
    width: 20rem;
    height: 20rem;
    margin-bottom: -20rem;
    top: -6rem;
    padding-top: 3rem;
  }
}
.section-lineup-header-ttl {
  font-size: 5.4rem;
  line-height: 1;
  letter-spacing: 0.6rem;
  font-weight: 300;
  color: #fff;
}
@media only screen and (max-width:1024px) {
  .section-lineup-header-ttl {
    font-size: 5rem;
  }
}
@media only screen and (max-width:1024px) and (max-width:767px) {
  .section-lineup-header-ttl {
    font-size: 2.4rem;
    padding-bottom: 1rem;
    text-align: center;
  }
}
.section-lineup-wrap {
  position: relative;
  z-index: 2;
}
.section-online {
  max-width: 90rem;
  margin: 0 auto;
  background: #fff;
  padding-bottom: 5rem;
  margin-top: 10rem;
}
@media only screen and (max-width:1024px) {
  .section-online {
    margin: 10rem 5vw 0;
    padding-bottom: 2.5rem;
  }
}
.section-online-header {
  position: relative;
  padding: 8rem 0 2.5rem;
}
@media only screen and (max-width:767px) {
  .section-online-header {
    padding: 4rem 0 1.5rem;
  }
}
.section-online-header-fig {
  width: 16rem;
  height: 16rem;
  position: absolute;
  top: -8rem;
  left: 50%;
  margin-left: -8rem;
}
@media only screen and (max-width:767px) {
  .section-online-header-fig {
    width: 8rem;
    height: 8rem;
    top: -4rem;
    margin-left: -4rem;
  }
}
.section-online-header-ttl {
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.6rem;
  font-weight: 300;
  color: #b27d11;
  text-align: center;
}
@media only screen and (max-width:1024px) {
  .section-online-header-ttl {
    font-size: 3.6rem;
  }
}
@media only screen and (max-width:1024px) and (max-width:767px) {
  .section-online-header-ttl {
    font-size: 2.4rem;
    letter-spacing: 0.3rem;
    padding-bottom: 1rem;
    text-align: center;
  }
}
.section-online-inner {
  text-align: center;
}
@media only screen and (max-width:767px) {
  .section-online-inner {
    padding: 0 1.5rem;
  }
}
.section-online-inner p {
  font-size: 1.6rem;
  line-height: 2;
  padding-bottom: 1em;
}
@media only screen and (max-width:767px) {
  .section-online-inner p {
    font-size: 1.2rem;
  }
}
.section-online-inner figure {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}
@media only screen and (max-width:767px) {
  .section-online-inner figure {
    width: 90%;
  }
}
.section-online-inner a {
  width: 28rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(0deg, #b27d11, #DCB863);
  color: #fff;
  font-size: 1.6rem;
  border-radius: 0.5rem;
  margin: 0 auto;
}
@media only screen and (max-width:767px) {
  .section-online-inner a {
    width: 20rem;
    height: 4rem;
    font-size: 1.3rem;
  }
}
.section-shop {
  padding: 12rem 0;
}
@media only screen and (max-width:1024px) {
  .section-shop {
    padding: 10rem 2.5rem;
  }
}
@media only screen and (max-width:1024px) and (max-width:767px) {
  .section-shop {
    padding: 5rem 1.5rem;
    flex-direction: column;
  }
}
.section-shop-header {
  text-align: center;
  padding-bottom: 5rem;
}
@media only screen and (max-width:767px) {
  .section-shop-header {
    padding-bottom: 2.5rem;
  }
}
.section-shop-header-ttl {
  font-size: 5.4rem;
  line-height: 1;
  letter-spacing: 0.6rem;
  font-weight: 300;
}
@media only screen and (max-width:1024px) {
  .section-shop-header-ttl {
    font-size: 5rem;
  }
}
@media only screen and (max-width:1024px) and (max-width:767px) {
  .section-shop-header-ttl {
    font-size: 3.2rem;
    padding-bottom: 1rem;
    text-align: center;
  }
}
.section-shop-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 5rem;
}
@media only screen and (max-width:767px) {
  .section-shop-inner {
    flex-direction: column;
  }
}
.section-shop-sns {
  max-width: 60rem;
  margin: 0 auto;
}
@media only screen and (max-width:767px) {
  .section-shop-sns {
    padding: 0 1.5rem;
  }
}

.article-shop {
  width: 50%;
  max-width: 48rem;
  padding: 0 3vw;
  margin-bottom: 6rem;
}
@media only screen and (max-width:767px) {
  .article-shop {
    width: 100%;
    padding: 0 1rem;
    margin-bottom: 6rem;
  }
}
.article-shop-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 2rem;
}
.article-shop-header-ttl {
  font-size: 1.2rem;
  min-width: 7.5rem;
  width: fit-content;
  padding: 0 1rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #d7a43b;
  border-radius: 0.3rem;
  color: #fff;
}
.article-shop-header-en {
  font-size: 3.2rem;
  line-height: 1.8;
  letter-spacing: 0.6rem;
  font-weight: 300;
  text-align: center;
  display: flex;
  align-items: center;
}
@media only screen and (max-width:1024px) {
  .article-shop-header-en {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width:1024px) and (max-width:767px) {
  .article-shop-header-en {
    font-size: 2.2rem;
    padding-bottom: 1rem;
    text-align: center;
    letter-spacing: 0.3rem;
  }
}
.article-shop-header-en img {
  width: auto;
  height: 3.2rem;
  display: inline-block;
  margin-right: 0.5rem;
  border: 0.5px solid #ddd;
}
@media only screen and (max-width:1024px) {
  .article-shop-header-en img {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width:1024px) and (max-width:767px) {
  .article-shop-header-en img {
    font-size: 2.2rem;
  }
}
.article-shop-header ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.article-shop-header ul li {
  width: 3.2rem;
  margin: 0 0.3rem;
}
@media only screen and (max-width:767px) {
  .article-shop-header ul li {
    width: 2.4rem;
    margin: 0 0.8rem;
  }
}
.article-shop-fig {
  max-width: 35rem;
  margin: 0 auto 2rem;
}
.article-shop-fig img {
  border-radius: 50%;
}
.article-shop p {
  padding-bottom: 1rem;
}
.article-shop dl {
  max-width: 34rem;
  border-top: 1px solid #eee;
  margin: 0 auto 2rem;
}
@media only screen and (max-width:767px) {
  .article-shop dl {
    font-size: 1.2rem;
  }
}
.article-shop dl div {
  border-bottom: 1px solid #eee;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width:767px) {
  .article-shop dl div:nth-of-type(1) {
    flex-direction: column;
  }
  .article-shop dl div:nth-of-type(1) dt {
    padding-bottom: 1rem;
  }
}
.article-shop dl div dt {
  flex-shrink: 0;
  width: 8rem;
  text-align: left;
  padding: 0 0.5rem;
  color: #d7a43b;
}
.article-shop dl div dd {
  width: 100%;
  padding: 0 0.5rem;
}
.article-shop iframe {
  max-width: 35rem;
  height: 24rem;
  margin: 0 auto;
}
@media only screen and (max-width:767px) {
  .article-shop iframe {
    height: 16rem;
  }
}
.article-about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-bottom: 10rem;
}
@media only screen and (max-width:767px) {
  .article-about {
    flex-direction: column;
    padding-bottom: 5rem;
  }
}
.article-about:nth-of-type(1) .article-about-inner:after {
  width: 29.1rem;
  height: 17.7rem;
  background-image: url("../img/fig_product1.png");
  right: -24rem;
  top: -9rem;
}
@media only screen and (max-width:1024px) {
  .article-about:nth-of-type(1) .article-about-inner:after {
    width: 24rem;
    top: -20rem;
    right: -6rem;
  }
}
@media only screen and (max-width:1024px) and (max-width:767px) {
  .article-about:nth-of-type(1) .article-about-inner:after {
    width: 12rem;
    height: 8rem;
    top: -7rem;
    right: -3rem;
  }
}
.article-about:nth-of-type(2) {
  flex-direction: row-reverse;
}
@media only screen and (max-width:767px) {
  .article-about:nth-of-type(2) {
    flex-direction: column;
  }
}
.article-about:nth-of-type(2) .article-about-inner:after {
  width: 24.8rem;
  height: 19.9rem;
  background-image: url("../img/fig_product2.png");
  left: -22rem;
  bottom: -19rem;
}
@media only screen and (max-width:1024px) {
  .article-about:nth-of-type(2) .article-about-inner:after {
    left: -10rem;
    width: 20rem;
    height: 16rem;
  }
}
@media only screen and (max-width:1024px) and (max-width:767px) {
  .article-about:nth-of-type(2) .article-about-inner:after {
    width: 10rem;
    height: 8rem;
    left: -3rem;
    bottom: auto;
    top: -7rem;
  }
}
.article-about:nth-of-type(2) .article-about-fig {
  margin-right: 0;
  margin-left: 5vw;
}
@media only screen and (max-width:767px) {
  .article-about:nth-of-type(2) .article-about-fig {
    margin-right: 0;
  }
}
.article-about-fig {
  width: 50%;
  max-width: 40rem;
  aspect-ratio: 1/1;
  border-radius: 2rem;
  flex-shrink: 0;
  margin-right: 5vw;
  overflow: hidden;
  border: 1rem solid #fff;
}
.article-about-fig img {
  overflow: hidden;
  border-radius: 1rem;
}
@media only screen and (max-width:767px) {
  .article-about-fig {
    margin: 0 0 2rem;
    width: 70%;
    border-width: 0.5rem;
  }
}
.article-about-inner {
  width: 100%;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width:767px) {
  .article-about-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.article-about-inner:after {
  content: "";
  position: absolute;
  background-size: 100% auto;
  background-repeat: no-repeat;
  z-index: -1;
}
.article-about-inner p {
  line-height: 2;
}
@media only screen and (max-width:767px) {
  .article-about-inner p {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}
.article-about-ttl {
  font-size: 2.4rem;
  line-height: 2;
  text-align: left;
  padding-bottom: 1rem;
}
@media only screen and (max-width:1024px) {
  .article-about-ttl {
    font-size: 2rem;
  }
}
@media only screen and (max-width:1024px) and (max-width:767px) {
  .article-about-ttl {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
.article-lineup {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 2rem;
}
@media only screen and (max-width:1024px) {
  .article-lineup {
    padding: 4rem 5vw;
  }
}
@media only screen and (max-width:1024px) and (max-width:767px) {
  .article-lineup {
    flex-direction: column;
    padding: 2rem 1.5rem;
  }
}
.article-lineup:nth-of-type(2) {
  background: url("../img/bg_red.svg") no-repeat 50% 50%;
  background-size: 100% 100%;
  flex-direction: row-reverse;
}
@media only screen and (max-width:767px) {
  .article-lineup:nth-of-type(2) {
    flex-direction: column;
    background-size: 150% 100%;
  }
}
.article-lineup-fig {
  width: 30%;
  max-width: 39.5rem;
  flex-shrink: 0;
}
@media only screen and (max-width:767px) {
  .article-lineup-fig {
    width: 50%;
    margin: 0 auto 1.5rem;
  }
}
.article-lineup-inner {
  width: 100%;
  max-width: 60rem;
  padding: 0 3vw;
}
@media only screen and (max-width:767px) {
  .article-lineup-inner {
    padding: 0 1.5rem;
  }
}
.article-lineup-inner p {
  font-size: 1.6rem;
  line-height: 2;
}
@media only screen and (max-width:767px) {
  .article-lineup-inner p {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}
.article-lineup-inner h3 {
  font-size: 2.6rem;
  margin-bottom: 2rem;
}
@media only screen and (max-width:767px) {
  .article-lineup-inner h3 {
    font-size: 1.7rem;
    margin-bottom: 1.4rem;
    text-align: center;
  }
}
.article-fan {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0 10rem;
}
@media only screen and (max-width:767px) {
  .article-fan {
    padding-bottom: 0;
  }
}
.article-fan-ttl {
  font-size: 2.4rem;
  line-height: 2;
  padding-bottom: 3rem;
  text-align: center;
}
@media only screen and (max-width:1024px) {
  .article-fan-ttl {
    font-size: 2rem;
  }
}
@media only screen and (max-width:1024px) and (max-width:767px) {
  .article-fan-ttl {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
.article-fan-fig {
  max-width: 53.2rem;
  margin: 0 auto 4rem;
}
@media only screen and (max-width:767px) {
  .article-fan-fig {
    margin-bottom: 2rem;
  }
}
.article-fan-inner {
  width: 100%;
  max-width: 82rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.article-fan-inner ul {
  justify-content: center;
  display: flex;
  padding-top: 4rem;
}
@media only screen and (max-width:767px) {
  .article-fan-inner ul {
    padding-top: 1.5rem;
  }
}
.article-fan-inner ul li {
  margin: 0 1.5rem;
  overflow: hidden;
  border-radius: 50%;
  border: 0.5rem solid #fff;
}
@media only screen and (max-width:767px) {
  .article-fan-inner ul li {
    margin: 0 0.5rem;
  }
}
.article-fan-inner p {
  line-height: 2;
}
@media only screen and (max-width:767px) {
  .article-fan-inner p {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}

/* --------------------------------------
		104 footer
-------------------------------------- */
.div-top {
  position: fixed;
  right: 3rem;
  bottom: 3rem;
  z-index: 998;
}
@media only screen and (max-width:767px) {
  .div-top {
    right: 1.5rem;
    bottom: 7rem;
  }
}
.div-top a {
  display: flex;
  color: #fff;
  width: 5rem;
  height: 5rem;
  align-items: center;
  justify-content: center;
  background: rgba(215, 164, 59, 0.9);
  border-radius: 50%;
}
.div-top a span {
  font-size: 1.8rem;
}
@media only screen and (max-width:767px) {
  .div-top a span {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width:1024px) and (max-width:767px) {
  .div-top a {
    width: 3.6rem;
    height: 3.6rem;
  }
}
@media only screen and (min-width:1025px) {
  .div-top a:hover {
    opacity: 0.8;
  }
}

.footer {
  width: 100%;
  justify-content: center;
  height: 14rem;
  clear: both;
  position: relative;
  background: url("../img/fig_footer.png") repeat-x 50% 0%;
  background-size: auto 12.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media only screen and (max-width:1024px) and (max-width:767px) {
  .footer {
    background-size: auto 7rem;
    padding-bottom: 5rem;
  }
}
.footer-copy {
  font-size: 1.2rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d7a43b;
}
@media only screen and (max-width:767px) {
  .footer-copy {
    font-size: 0.9rem;
    height: 3rem;
  }
}

[lang=en] .header {
  flex-direction: column;
}
[lang=en] .header-logo {
  min-height: 70rem;
}
@media only screen and (max-width:767px) {
  [lang=en] .header-logo {
    min-height: auto;
  }
}
[lang=en] .header-catch p {
  writing-mode: unset;
  -ms-writing-mode: unset;
  padding: 2rem 0;
  text-align: center;
}
@media only screen and (max-width:767px) {
  [lang=en] .header-catch p {
    line-height: 1.2;
  }
}
[lang=en] .header-nav {
  padding: 1.5rem 0;
}
@media only screen and (max-width:767px) {
  [lang=en] .header-nav {
    padding: 0;
  }
}
[lang=en] .header-nav ul {
  min-width: 64rem;
  width: 100%;
}
@media only screen and (max-width:767px) {
  [lang=en] .header-nav ul {
    min-width: auto;
  }
}
[lang=en] .header-catch:before, [lang=en] .header-catch:after {
  top: -6rem;
  height: 44rem;
  background-size: cover;
}
[lang=en] .header-catch:before {
  left: -12rem;
}
[lang=en] .header-catch:after {
  right: -14.5rem;
}

/*# sourceMappingURL=style.css.map */
