/*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=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..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: 980px;
  width: 100%;
  margin: auto;
}

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

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

@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: #5079BB;
  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;
  }
}

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

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  -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;
}

@media screen and (min-width: 1650px) {
  body {
    font-size: 20px;
  }
}

/* HEADER */
/*OPACITY*/
/*TRANSITION*/
/*TRANSFORM*/
/*FLEXBOX*/
/*BORDER RADIUS*/
/*BOX SHADOW*/
/*BOX SIZING*/
/*FILTER*/
/* CUSTOM VARIABLE */
/*TRANSITION*/
/*BREAKPOINT*/
/* Font */
/*HEADER*/
header {
  position: fixed;
  transition: top 0.2s ease-in-out;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  height: 126px;
  transition: all 0.3s ease;
  background-color: #FFF;
}

@media screen and (max-width: 1650px) {
  header {
    height: 100px;
  }
}

@media screen and (max-width: 1200px) {
  header {
    height: 75px;
  }
}

@media screen and (max-width: 767px) {
  header {
    height: 60px;
  }
}

header.nav-up {
  top: -126px;
}

@media screen and (max-width: 1000px) {
  header.nav-up {
    top: 0;
  }
}

@media screen and (max-width: 1000px) {
  header .container {
    margin: 0;
    padding: 0;
    max-width: 100%;
  }
}

header .inner {
  padding: 0 12px;
  height: 126px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1650px) {
  header .inner {
    height: 100px;
  }
}

@media screen and (max-width: 1200px) {
  header .inner {
    height: 75px;
  }
}

@media screen and (max-width: 1200px) {
  header .inner {
    padding-right: 0;
  }
}

@media screen and (max-width: 1000px) {
  header .inner {
    padding-left: 1rem;
  }
}

@media screen and (max-width: 767px) {
  header .inner {
    height: 60px;
  }
}

header .inner .logo {
  width: 243px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1200px) {
  header .inner .logo {
    width: 175px;
  }
}

@media screen and (max-width: 767px) {
  header .inner .logo {
    width: auto;
  }
}

header .inner .logo a {
  display: block;
}

header .inner .logo a img {
  height: 86px;
  transition: all 0.3s ease;
}

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

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

header .inner .rightSide {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1000px) {
  header .inner .rightSide {
    display: none;
  }
}

header .inner .rightSide nav {
  margin-right: 70px;
}

@media screen and (max-width: 1400px) {
  header .inner .rightSide nav {
    margin-right: 50px;
  }
}

header .inner .rightSide nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

header .inner .rightSide nav ul li {
  margin-left: 5rem;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1200px) {
  header .inner .rightSide nav ul li {
    margin-left: 2.5rem;
  }
}

header .inner .rightSide nav ul li:first-child {
  margin-left: 0;
}

header .inner .rightSide nav ul li a {
  color: #333333;
  transition: all 0.3s ease;
}

header .inner .rightSide .sns ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width: 1200px) {
  header .inner .rightSide .sns ul {
    gap: 1rem;
  }
}

header .inner .rightSide .sns ul li a i {
  font-size: 40px;
}

@media screen and (max-width: 1400px) {
  header .inner .rightSide .sns ul li a i {
    font-size: 36px;
  }
}

@media screen and (max-width: 1200px) {
  header .inner .rightSide .sns ul li a i {
    font-size: 32px;
  }
}

header .inner .iconNav .headerSpBtn {
  cursor: pointer;
  display: none;
  position: relative;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
  background-color: #5079BB;
  border: none;
  text-align: center;
  outline: none;
  border-radius: 0;
  transition: all .2s ease-in-out;
}

@media screen and (max-width: 1000px) {
  header .inner .iconNav .headerSpBtn {
    display: block;
    z-index: 3;
  }
}

@media screen and (max-width: 767px) {
  header .inner .iconNav .headerSpBtn {
    width: 60px;
    height: 60px;
  }
}

header .inner .iconNav .headerSpBtn > div {
  position: absolute;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 3px;
  background-color: #FFF;
  width: 35px;
  transition: all .2s ease-in-out;
}

@media screen and (max-width: 767px) {
  header .inner .iconNav .headerSpBtn > div {
    width: 30px;
    height: 2px;
  }
}

header .inner .iconNav .headerSpBtn > div::after, header .inner .iconNav .headerSpBtn > div::before {
  position: absolute;
  display: inline-block;
  content: '';
  height: 3px;
  width: 100%;
  background-color: #FFF;
  transform-origin: center;
  transition: all .2s ease-in-out;
}

@media screen and (max-width: 767px) {
  header .inner .iconNav .headerSpBtn > div::after, header .inner .iconNav .headerSpBtn > div::before {
    height: 2px;
  }
}

header .inner .iconNav .headerSpBtn > div::after {
  bottom: -12px;
  left: 0;
}

header .inner .iconNav .headerSpBtn > div::before {
  top: -12px;
  left: 0;
}

header .inner .iconNav .headerSpBtn._active > div {
  background-color: transparent;
}

header .inner .iconNav .headerSpBtn._active > div::after {
  transform: rotate(45deg);
  bottom: 0;
}

header .inner .iconNav .headerSpBtn._active > div::before {
  transform: rotate(-45deg);
  top: 0;
}

/* NAV SP */
.navSp {
  position: fixed;
  top: 60px;
  right: -100%;
  width: 100%;
  height: calc(100% - 60px);
  background-color: #FFF;
  z-index: 5;
  overflow-y: auto;
  opacity: 1;
  visibility: hidden;
  transition: all 0.3s ease;
}

.navSp._active {
  right: 0;
  visibility: visible;
}

.navSp .inner .sns {
  margin-top: 2rem;
}

.navSp .inner .sns ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.navSp .inner .sns ul li a i {
  font-size: 32px;
}

.navSp .inner .list-nav {
  border-top: 1px solid #EEE;
}

.navSp .inner .list-nav li {
  border-bottom: 1px solid #5079BB;
}

.navSp .inner .list-nav li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  font-size: 15px;
  padding: 12px 15px;
}

.navSp .inner .list-nav li.child a {
  justify-content: flex-start;
  gap: 0.5rem;
}

.navSp .inner .list-nav li.child a svg {
  margin-left: 0.5rem;
}

.navSp .inner .list-nav li.hasChild {
  position: relative;
}

.navSp .inner .list-nav li.hasChild a {
  display: inline-block;
}

.navSp .inner .list-nav li.hasChild a i {
  transition: all .2s;
  position: absolute;
  right: 0;
  top: 13px;
  z-index: -1;
}

.navSp .inner .list-nav li.hasChild a i._rotate {
  transform: rotate(180deg);
}

.navSp .inner .list-nav li.hasChild .childMenu {
  display: none;
}

.navSp .inner .list-nav li.hasChild .childMenu li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.navSp .inner .list-nav li.hasChild .childMenu li a {
  font-size: 14px;
}

.navSp .inner .info {
  background-color: #5079BB;
  width: 250px;
  height: 105px;
  border-radius: 1.5rem;
  color: #FFF;
  padding: 0.75rem 0 0 20px;
  font-weight: 900;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin: 10px auto;
}

.navSp .inner .info p {
  transition: all 0.3s ease;
  font-size: 14px;
}

.navSp .inner .info a {
  font-size: 24px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  letter-spacing: 3px;
  transition: all 0.3s ease;
}

.navSp .inner .info a img {
  width: 24px;
  margin-right: 0.5rem;
}

.navSp .inner .info span {
  font-size: 10px;
  transition: all 0.3s ease;
}

/* FOOTER */
/*OPACITY*/
/*TRANSITION*/
/*TRANSFORM*/
/*FLEXBOX*/
/*BORDER RADIUS*/
/*BOX SHADOW*/
/*BOX SIZING*/
/*FILTER*/
/* CUSTOM VARIABLE */
/*TRANSITION*/
/*BREAKPOINT*/
/* Font */
/* SASS UNTUK FOOTER */
footer {
  background-color: #eeeeee;
  padding: 38px 0 1rem;
}

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

@media screen and (max-width: 767px) {
  footer .inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

footer .inner .left {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  gap: 3rem;
}

footer .inner .left .info {
  line-height: 1.75;
  margin-right: 60px;
}

@media screen and (max-width: 1200px) {
  footer .inner .left .info {
    margin-right: 2rem;
  }
}

@media screen and (max-width: 767px) {
  footer .inner .left .info {
    margin-right: 0;
    gap: 0;
    margin-bottom: 1.5rem;
  }
}

footer .inner .left .info .logo {
  width: 243px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1200px) {
  footer .inner .left .info .logo {
    width: 150px;
  }
}

@media screen and (max-width: 767px) {
  footer .inner .left .info .logo {
    margin: auto;
    margin-bottom: 1rem;
  }
}

footer .inner .left .info p {
  font-weight: bold;
  font-size: 18px;
}

@media screen and (max-width: 1200px) {
  footer .inner .left .info p {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  footer .inner .left .info p {
    text-align: center;
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  footer .inner .left .info address {
    text-align: center;
    font-size: 14px;
  }
}

footer .inner .left nav {
  display: flex;
  justify-content: flex-start;
  gap: 80px;
  padding-top: 20px;
}

@media screen and (max-width: 1200px) {
  footer .inner .left nav {
    gap: 40px;
    padding-top: 0;
  }
}

@media screen and (max-width: 767px) {
  footer .inner .left nav {
    display: none;
  }
}

footer .inner .left nav ul li a {
  font-size: 14px;
  font-weight: 500;
}

footer .inner .left nav ul li.child {
  padding-left: 1rem;
}

footer .inner .left nav ul li.child a {
  font-weight: normal;
}

footer .inner .right .sns ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

@media screen and (max-width: 1200px) {
  footer .inner .right .sns ul {
    gap: 1rem;
  }
}

footer .inner .right .sns ul li a i {
  font-size: 45px;
}

@media screen and (max-width: 1200px) {
  footer .inner .right .sns ul li a i {
    font-size: 32px;
  }
}

footer .copyright {
  text-align: right;
  font-size: 13px;
}

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

/* 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;
  background-color: white;
}

.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;
  color: #333333;
  font-weight: bold;
}

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

.breadcrumbPage ul li a {
  position: relative;
  color: #5079BB;
}

.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: #333333;
}

/* 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: #DF3526 !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 #DF3526 !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 */