@charset "utf-8";

/* reset
------------------------------------------------ */
*,*::before,*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html,body{
  height: 100%;
}
body{
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img,picture,video,canvas,svg {
  width: 100%;
  vertical-align: bottom;
}
input,button,textarea,select {
  font: inherit;
}
p,h1,h2,h3,h4,h5,h6 {
  overflow-wrap: break-word;
}
h1,h2,h3,h4,h5,h6 {
  font-weight: normal;
}
ul,ol,li,dl,dt,dd {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.4s;
}
a:hover {
  opacity: 0.6;
}
p{
  color: #000;
}
#root,#__next {
  isolation: isolate;
}

/* common
------------------------------------------------ */
html {
  font-size: 62.5%;
}
body {
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: normal;
  background-color: #fff;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
  color: #000;
}

@media screen and (min-width:851px) {
  .sp-content {
    display: none;
  }
}
@media screen and (max-width:1320px) {
  .pc-1320 {
    display: none;
  }
}
@media screen and (max-width:1200px) {
  .pc-1200 {
    display: none;
  }
}
@media screen and (max-width:850px) {
  .pc-content {
    display: none;
  }
}

/* header
------------------------------------------------ */

.header {
  width: 100%;
  height: 80px;
  box-shadow: 0px 0px 5px 1px #e6e6e6;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.header.active {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.header.active + .main {
  margin-top: 56px;
}
.header__inner {
  height: 100%;
  margin: 0 auto;
  max-width: 1600px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.header__logo {
  width: 243px;
  margin: 0 10px;
  padding-bottom: 0.75em;
}
.gnav {
  height: 100%;
  display: flex;
}
.gnav__main {
  height: 100%;
  background-color: #fff;
  display: flex;
}
.gnav__main > li {
  height: 100%;
  margin-right: 1.5vw;
  position: relative;
}
.gnav__main > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}
.gnav__sub-open {
  width: 60px;
  height: 50px;
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
.gnav__sub-open span {
  width: 24px;
  height: 24px;
  border: 1px solid #CA0B0F;
  border-radius: 50%;
}
.gnav__sub-open span::before,
.gnav__sub-open span::after {
  content: '';
  display: block;
  width: 12px;
  height: 2px;
  background-color: #CA0B0F;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: transform 0.12s, opacity 0.12s;
}
.gnav__sub-open span::before {
  transform: translate(-50%, -50%);
}
.gnav__sub-open span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.gnav__sub-open.active span::before,
.gnav__sub-open.active span::after {
  transition: transform 0.25s, opacity 0.25s;
}
.gnav__sub-open.active span::before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.gnav__sub-open.active span::after {
  transform: translate(-50%, -50%) rotate(270deg);
  opacity: 0;
}
.gnav__sub {
  min-width: 240px;
  max-height: 0;
  position: absolute;
  top: 100%;
  left: 0;
  transition: max-height 0.25s 0s linear;
  overflow: hidden;
}
.gnav__main > li:last-of-type .gnav__sub {
  left: -10px;
}
.gnav__sub.open {
  max-height: 1000px;
  transition: max-height 0.5s 0s linear;
}
.gnav__sub li {
  border-right: 1px solid #DA2009;
  border-left: 1px solid #DA2009;
  border-bottom: 1px solid #DA2009;
}
.gnav__sub li:first-of-type {
  border-top: 1px solid #DA2009;
}
.gnav__sub a {
  display: block;
  padding: 1em;
  background-color: #fff;
  color: #000;
  font-size: 1.4rem;
  transition: color 0.4s;
}
.gnav__sub a:hover {
  color: #CA0B0F;
  opacity: 1;
}
.gnav__btn {
  font-size: 1.4rem;
}
.gnav__btn .btn-lang {
  background-color: #EA5A06;
  transition: opacity 0.4s;
  cursor: pointer;
}
.gnav__btn .btn-lang:hover {
  opacity: 0.6;
}
.gnav__btn .btn-link {
  background-color: #DA2009;
  transition: opacity 0.4s;
}
.gnav__btn .btn-link:hover {
  opacity: 0.6;
}
.gnav__btn .btn-lang a,
.gnav__btn .btn-link a {
  display: block;
  padding: 9.5px 1em;
  color: #fff;
  text-align: center;
}
.sp-menu {
  width: 39px;
  height: 18px;
  margin-right: 15px;
  position: relative;
  display: none;
  cursor: pointer;
  transition: opacity 0.4s;
}
.sp-menu:hover {
  opacity: 0.6;
}
.sp-menu span,
.sp-menu::before,
.sp-menu::after {
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background-color: #DA2009;
  position: absolute;
  left: 0;
}
.sp-menu span {
  top: 50%;
  transform: translate(0, -50%);
  transition: opacity 0.4s;
}
.sp-menu::before,
.sp-menu::after {
  content: '';
  display: block;
}
.sp-menu::before {
  top: 0;
}
.sp-menu::after {
  bottom: 0;
}
.active .sp-menu span {
  opacity: 0;
}
.active .sp-menu::before,
.active .sp-menu::after {
  width: 90%;
  transition: transform 0.4s, width 0.4s;
}
.active .sp-menu::before {
  top: 50%;
  transform: translate(0, -50%) rotate(45deg);
}
.active .sp-menu::after {
  bottom: 50%;
  transform: translate(0, 50%) rotate(-45deg);
}
@media screen and (min-width:1600px) {
  .gnav__main > li {
    margin-right: 1.5em;
  }
}
@media screen and (max-width:1320px) {
  .header {
    height: 56px;
  }
  .header__logo {
    width: 185px;
  }
  .sp-menu {
    display: block;
  }
  .gnav {
    width: 100%;
    height: calc(100vh - 56px);
    max-height: 0;
    background-color: #fff;
    position: absolute;
    top: 56px;
    overflow-y: scroll;
    transition: max-height 0.4s;
    display: block;
  }
  .gnav.active {
    max-height: 4000px;
  }
  .gnav__main,
  .gnav__main > li,
  .gnav__main > li > a {
    width: 100%;
    height: auto;
  }
  .gnav__main > li:hover > a {
    text-decoration: none;
  }
  .gnav__main {
    display: block;
  }
  .gnav__main > li {
    border-top: 1px solid #CA0B0F;
    margin-right: 0;
    text-align: center;
  }
  .gnav__main > li > a,
  .gnav__btn .btn-lang span,
  .gnav__btn .btn-link a {
    padding: 1em;
  }
  .gnav__main > li > a {
    padding-right: 50px;
    text-align: left;
  }
  .gnav__sub-open {
    display: flex;
  }
  .gnav__sub {
    max-height: 0;
    position: static;
    text-align: left;
  }
  .gnav__sub li {
    border-left: 0;
    border-right: 0;
  }
  .gnav__sub li:last-of-type {
    border-bottom: 0;
  }
  .gnav__sub li a {
    padding-left: 30px;
  }

}



/* contents
------------------------------------------------ */
.main {
  margin-top: 80px;
}
@media screen and (max-width:1320px) {
  .main {
    margin-top: 56px;
  }
}

/*--------------------
  outer-link
--------------------*/
a.outer-link::after,
.footer a.outer-link span::after {
  display: inline-block;
  content: '';
  margin-left: 4px;
  margin-right: 4px;
  width: 12px;
  height: 11px;
  background-image: url(../img/icon_outer_link.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.footer a.outer-link::after {
  background: none;
  margin: 0;
  display: none;
}
.footer a.outer-link span::after {
  background-image: url(../img/icon_outer_link2.svg);
}
@media screen and (max-width:850px) {
  .footer a.outer-link::after {
    display: block;
  }
}


/*--------------------
  gradient
--------------------*/
.box-gradient {
  background-color: #CA0B0F;
  background-image: -webkit-linear-gradient(90deg, #CA0B0F 0%, #EA5A06 20%, #FDC300 50%, #EA5A06 80%, #CA0B0F 99%);
  background-image: -moz-linear-gradient(90deg, #CA0B0F 0%, #EA5A06 20%, #FDC300 50%, #EA5A06 80%, #CA0B0F 99%);
  background-image: -o-linear-gradient(90deg, #CA0B0F 0%, #EA5A06 20%, #FDC300 50%, #EA5A06 80%, #CA0B0F 99%);
  background-image: linear-gradient(90deg, #CA0B0F 0%, #EA5A06 20%, #FDC300 50%, #EA5A06 80%, #CA0B0F 99%);
}
.text-gradient {
  display: block;
  background-image: -webkit-linear-gradient(90deg, #CA0B0F 0%, #EA5A06 20%, #FDC300 50%, #EA5A06 80%, #CA0B0F 99%);
  background-image: -moz-linear-gradient(90deg, #CA0B0F 0%, #EA5A06 20%, #FDC300 50%, #EA5A06 80%, #CA0B0F 99%);
  background-image: -o-linear-gradient(90deg, #CA0B0F 0%, #EA5A06 20%, #FDC300 50%, #EA5A06 80%, #CA0B0F 99%);
  background-image: linear-gradient(90deg, #CA0B0F 0%, #EA5A06 20%, #FDC300 50%, #EA5A06 80%, #CA0B0F 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* footer
------------------------------------------------ */
.footer {
  font-size: 1.4rem;
}
.footer__inner {
  padding: 3.8em 3em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-nav ul {
  display: flex;
}
.footer-nav ul li {
  position: relative;
}
.footer-nav ul li + li {
  margin-left: 2.5em;
}
.footer-nav ul li:before {
  content: '|';
  display: block;
  color: #fff;
  position: absolute;
  top: 0;
  left: -1.25em;
}
.footer-nav ul li:first-of-type::before {
  display: none;
}
.footer-nav a {
  color: #fff;
}
.footer__copyright {
  color: #fff;
}
@media screen and (max-width:850px) {
  .footer {
    background: #DA2009;
  }
  .footer__inner {
    padding: 0;
    flex-wrap: wrap;
  }
  .footer-nav,
  .footer__copyright {
    width: 100%;
  }
  .footer-nav ul {
    flex-wrap: wrap;
  }
  .footer-nav ul li {
    width: 100%;
    border-bottom: 1px solid #fff;
  }
  .footer-nav ul li + li {
    margin-left: 0;
  }
  .footer-nav ul li:before {
    display: none;
  }
  .footer-nav a {
    padding: 1em 40px 1em 2em;
    font-size: 1.6rem;
    font-weight: bold;
    display: block;
    position: relative;
  }
  .footer-nav a::before,
  .footer-nav a::after {
    content: '';
    display: block;
    position: absolute;
  }
  .footer-nav a::before {
    width: 24px;
    height: 24px;
    border: 1px solid #fff;
    border-radius: 50%;
    top: 50%;
    right: 35px;
    transform: translate(0, -50%);
  }
  .footer-nav a::after {
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    top: 50%;
    right: 35px;
    transform: translate(-170%, -50%) rotate(45deg);
  }
  .footer__copyright{
    padding: 1em 2em;
    font-size: 1.6rem;
    text-align: center;
  }
  .footer__copyright small {
    font-size: 1.2rem;
    font-weight: bold;
  }
}
@media screen and (max-width:540px) {
  .footer-nav a {
    font-size: 1.4rem;
  }
}


/* common
------------------------------------------------ */
.margin-top--0 {    margin-top: 0 !important;  }
.margin-top--5 {    margin-top: 5px !important;  }
.margin-top--10 {    margin-top: 10px !important;  }