/*OPACITY*/
/*TRANSITION*/
/*TRANSFORM*/
/*FLEXBOX*/
/*BORDER RADIUS*/
/*BOX SHADOW*/
/*BOX SIZING*/
/*FILTER*/
/*OPACITY*/
/*TRANSITION*/
/*TRANSFORM*/
/*FLEXBOX*/
/*BORDER RADIUS*/
/*BOX SHADOW*/
/*BOX SIZING*/
/*FILTER*/
/* CUSTOM VARIABLE */
/*TRANSITION*/
/*BREAKPOINT*/
/* Font */
/* RESET CSS*/
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1.5;
}

ul, ol, li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.h1, .h2, .h3, h1, h2, h3 {
  margin: 0;
  padding: 0;
}

.h4, .h5, .h6, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

a:focus {
  color: inherit;
  text-decoration: none;
}

.bold {
  font-weight: bold;
}

.bg-set {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* OPACITY & HOVER UNDERLINE */
.hvO {
  -webkit-transition: 0.15s ease opacity;
  -moz-transition: 0.15s ease opacity;
  -ms-transition: 0.15s ease opacity;
  -o-transition: 0.15s ease opacity;
  transition: 0.15s ease opacity;
}

.hvO:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.hvU:hover {
  text-decoration: underline;
}

.hvUa {
  position: relative;
}

.hvUa:before {
  display: block;
  content: "";
  width: 0%;
  height: 2px;
  background-color: #B5271B;
  position: absolute;
  left: 0;
  bottom: -2px;
  z-index: 2;
  transition: width 500ms cubic-bezier(0.23, 1, 0.32, 1);
}

@media screen and (max-width: 1000px) {
  .hvUa:before {
    display: none;
  }
}

.hvUa:hover:before {
  width: 100%;
}

strong,
b {
  font-weight: bold;
}

/* CONTAINER */
.cont {
  max-width: 1024px;
  width: 100%;
  margin: auto;
}

@media screen and (min-width: 1650px) {
  .cont {
    max-width: 1440px;
  }
}

@media screen and (max-width: 1200px) {
  .cont {
    max-width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .cont {
    max-width: 100%;
    padding: 0 5%;
  }
}

.only-mobile {
  display: none;
}

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

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

.noOverflow {
  overflow: hidden;
}

.btn {
  width: 150px;
  height: 45px;
  background-color: #745b45;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 45px;
  font-size: 14px;
  font-weight: bold;
}

@media screen and (min-width: 1650px) {
  .btn {
    width: 200px;
    height: 60px;
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .btn {
    width: 125px;
    height: 40px;
  }
}

.btn:hover {
  background-color: #B5271B;
  color: #FFF;
}

.btn i {
  position: absolute;
  right: 12px;
  top: 15.5px;
}

@media screen and (min-width: 1650px) {
  .btn i {
    right: 15px;
    top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .btn i {
    top: 13px;
  }
}

.hide-md {
  display: none;
}

@media screen and (max-width: 1000px) {
  .hide-md {
    display: block;
  }
}

.title40 {
  font-size: 2rem;
  line-height: 1.425;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 1650px) {
  .title40 {
    font-size: 2.75rem;
  }
}

@media screen and (max-width: 767px) {
  .title40 {
    font-size: 1.5rem;
  }
}

.title40 img {
  width: 30px;
  margin-right: 0.5rem;
}

@media screen and (min-width: 1650px) {
  .title40 img {
    width: 50px;
  }
}

@media screen and (max-width: 767px) {
  .title40 img {
    width: 25px;
  }
}

.button-wrapper {
  margin-top: 3rem;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 1650px) {
  .button-wrapper {
    margin-top: 5rem;
  }
}

.button-wrapper .button {
  padding: 0.8125rem 1.875rem 0.75rem 1.875rem;
  font-size: 1rem;
  border-radius: 0.375rem;
  background-color: #f9f871;
  position: relative;
  font-weight: 700;
  line-height: 2;
  text-transform: uppercase;
  margin-inline: auto;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-width: 16.875rem;
  font-size: 1.25rem;
  padding: 0.8125rem 5.5rem 0.75rem 5.5rem;
  min-width: none;
}

@media screen and (min-width: 1650px) {
  .button-wrapper .button {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 767px) {
  .button-wrapper .button {
    font-size: 1rem;
  }
}

.button-wrapper .button i {
  position: absolute;
  top: 52%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  right: 1.5625rem;
}

/* CUSTOM VARIABLE */
/*TRANSITION*/
/*BREAKPOINT*/
/* Font */
::selection {
  background-color: #907c6a;
  color: #fff;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #4B4B4B;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
  position: relative;
  overflow-x: hidden;
  letter-spacing: 1px;
  background-color: #F5EFE6;
}

/* HEADER */
/*OPACITY*/
/*TRANSITION*/
/*TRANSFORM*/
/*FLEXBOX*/
/*BORDER RADIUS*/
/*BOX SHADOW*/
/*BOX SIZING*/
/*FILTER*/
/* CUSTOM VARIABLE */
/*TRANSITION*/
/*BREAKPOINT*/
/* Font */
/*HEADER*/
header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
}

header .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

@media screen and (max-width: 992px) {
  header .inner {
    padding: 0.5rem 0;
  }
}

header .inner .logo a img {
  height: 40px;
}

@media screen and (max-width: 992px) {
  header .inner .logo a img {
    height: 32px;
  }
}

/* NAV SP */
/* FOOTER */
/*OPACITY*/
/*TRANSITION*/
/*TRANSFORM*/
/*FLEXBOX*/
/*BORDER RADIUS*/
/*BOX SHADOW*/
/*BOX SIZING*/
/*FILTER*/
/* CUSTOM VARIABLE */
/*TRANSITION*/
/*BREAKPOINT*/
/* Font */
/* SASS UNTUK FOOTER */
footer {
  background-color: #745b45;
  color: #FFF;
  padding: 0.75rem 0;
}

footer .copyright {
  text-align: center;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  footer .copyright {
    font-size: 10px;
    text-align: center;
  }
}

/* BREADCRUMB */
/*OPACITY*/
/*TRANSITION*/
/*TRANSFORM*/
/*FLEXBOX*/
/*BORDER RADIUS*/
/*BOX SHADOW*/
/*BOX SIZING*/
/*FILTER*/
/* CUSTOM VARIABLE */
/*TRANSITION*/
/*BREAKPOINT*/
/* Font */
/* SASS UNTUK BREADCRUMB */
/*-----BREADCRUMB-----*/
.breadcrumbPage {
  width: 100%;
  z-index: 1;
  overflow: hidden;
}

.breadcrumbPage ul {
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

@media screen and (max-width: 767px) {
  .breadcrumbPage ul {
    flex-wrap: wrap;
    padding: 10px 0;
  }
}

.breadcrumbPage ul li {
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .breadcrumbPage ul li {
    font-size: 12px;
  }
}

.breadcrumbPage ul li a {
  position: relative;
  transition: all 0.3s ease;
}

.breadcrumbPage ul li a:hover {
  color: #f9f871;
}

.breadcrumbPage ul li span {
  display: inline-block;
  margin: 0 8px 0 13px;
}

@media screen and (max-width: 767px) {
  .breadcrumbPage ul li span {
    margin: 0 3px 0 8px;
  }
}

.breadcrumbPage ul li.active {
  color: #f9f871;
}

/* COOKIE */
/*OPACITY*/
/*TRANSITION*/
/*TRANSFORM*/
/*FLEXBOX*/
/*BORDER RADIUS*/
/*BOX SHADOW*/
/*BOX SIZING*/
/*FILTER*/
/* CUSTOM VARIABLE */
/*TRANSITION*/
/*BREAKPOINT*/
/* Font */
.cc-window {
  -webkit-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.08) !important;
  -moz-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.08) !important;
  -ms-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.08) !important;
  -o-box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.08) !important;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}

.cc-color-override--1821647713.cc-window {
  background-color: #fff !important;
}

.cc-message a {
  color: #5079BB !important;
  position: relative;
  text-decoration: none !important;
  font-weight: bold;
}

.cc-message a:before {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #5079BB;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

.cc-message a:hover:before {
  transform: scale(1, 1);
}

.cc-btn {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  width: 318px;
  height: 50px;
  color: #FFF !important;
  background-color: #332119 !important;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  border: 1px solid #332119 !important;
  margin: 0 8px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  padding: 0 !important;
  font-family: "Zen Kaku Gothic New", sans-serif !important;
}

.cc-btn:hover {
  background-color: #B5271B !important;
  border-color: #B5271B !important;
}

.cc-revoke, .cc-window {
  font-family: "Zen Kaku Gothic New", sans-serif !important;
  font-weight: 500;
}

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