@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Antonio:wght@100..700&family=Noto+Sans+JP:wght@100..900&display=swap");
@media print, screen and (min-width: 992px) {
  .no_pc {
    display: none !important;
  }
}

@media print, screen and (max-width: 992px) {
  .no_sp {
    display: none !important;
  }
}

img {
  width: 100%;
}

.c_main {
  background-color: #002B43;
}

.over_hidden {
  overflow: hidden;
}

@media print, screen and (min-width: 992px) {
  .container {
    max-width: 1100px !important;
  }
}

.cta_btn {
  text-decoration: none;
  display: inline-block;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: bold;
  font-style: italic;
  padding: 10px 0px;
  width: 45%;
  background: linear-gradient(96.16deg, #5B5B5B 43.27%, #000000 54.72%);
  border: 5px solid #E6E34F;
  box-shadow: 8px 8px 2px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  transition: 0.5s;
}
@media print, screen and (max-width: 992px) {
  .cta_btn {
    width: 100%;
    font-size: 20px;
  }
}
.cta_btn:hover {
  opacity: 0.7;
}
.cta_btn.cta_btn_yellow {
  color: #000000;
  background: linear-gradient(96.16deg, #F7F5AB 43.27%, #E6E34F 54.72%);
  border: 5px solid #FFFFFF;
  width: 50%;
}
@media print, screen and (max-width: 992px) {
  .cta_btn.cta_btn_yellow {
    font-size: 18px;
    width: 100%;
  }
}

.common_title {
  position: relative;
  z-index: 1;
  color: #000000;
  font-size: 50px;
  font-weight: 600;
  font-style: italic;
  transform: translateY(30px);
  margin-bottom: 20px;
}
@media print, screen and (max-width: 992px) {
  .common_title {
    font-size: 30px;
  }
}
.common_title > span {
  position: relative;
  z-index: -1;
  display: block;
  color: #FFFFFF;
  opacity: 0.5;
  font-size: 50px;
  font-style: normal;
  font-family: "Antonio", sans-serif;
  transform: translateY(-30px);
}
@media print, screen and (max-width: 992px) {
  .common_title > span {
    font-size: 40px;
    transform: translateY(-20px);
  }
}

body {
  color: #000000 !important;
  font-family: "Noto Sans JP", sans-serif;
}
body header {
  position: fixed;
  top: 0;
  margin: 0;
  width: 100%;
  z-index: 9000;
  background-color: #000000;
  padding: 15px 15px;
  text-align: center;
}
@media print, screen and (max-width: 992px) {
  body header {
    padding: 10px 0;
  }
}
body header .h_flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
body header .h_flex .h_logo > a {
  display: inline-block;
  text-decoration: none;
  transition: 0.5s;
}
body header .h_flex .h_logo > a:hover {
  opacity: 0.7;
}
body header .h_flex .h_logo > a > img {
  width: 330px;
}
@media print, screen and (max-width: 992px) {
  body header .h_flex .h_logo > a > img {
    width: 260px;
  }
}
@media print, screen and (max-width: 992px) {
  body header .h_flex .h_list {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000000;
    text-align: center;
  }
}
body header .h_flex .h_list > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media print, screen and (min-width: 992px) {
  body header .h_flex .h_list > ul {
    gap: 30px;
  }
}
body header .h_flex .h_list > ul > li {
  position: relative;
  text-align: left;
  font-weight: 600;
}
@media print, screen and (max-width: 992px) {
  body header .h_flex .h_list > ul > li {
    width: 100%;
    text-align: center;
  }
}
body header .h_flex .h_list > ul > li > a {
  text-decoration: none;
  color: #FFFFFF;
  transition: 0.5s;
}
@media print, screen and (max-width: 992px) {
  body header .h_flex .h_list > ul > li > a {
    display: block;
    border-top: 1px solid #FFFFFF;
    padding: 10px 10px;
  }
}
body header .h_flex .h_list > ul > li > a:hover {
  opacity: 0.7;
}
body header .h_flex .h_menu {
  position: relative;
}
body header .h_flex .h_menu > a {
  display: block;
  position: relative;
  text-align: center;
  top: 0px;
  right: 10px;
  width: 26px;
  height: 40px;
  z-index: 9900;
}
body header .h_flex .h_menu > a > span {
  display: block;
  position: relative;
  transition: 0.3s;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  width: 26px;
  height: 2px;
  background-color: #FFFFFF;
}
body header .h_flex .h_menu > a > span::before {
  content: "";
  display: block;
  position: relative;
  transition: 0.3s;
  top: -7px;
  left: 0;
  transform: translate(0%, -50%);
  width: 26px;
  height: 2px;
  background-color: #FFFFFF;
}
body header .h_flex .h_menu > a > span::after {
  content: "";
  display: block;
  position: relative;
  transition: 0.3s;
  top: 7px;
  left: 0;
  transform: translate(0%, -50%);
  width: 26px;
  height: 2px;
  background-color: #FFFFFF;
}
body header .h_flex .h_menu > a.is_open > span {
  width: 0;
}
body header .h_flex .h_menu > a.is_open > span::before {
  transform: translate(0%, -50%) rotate(45deg);
  width: 25px;
  top: 0px;
}
body header .h_flex .h_menu > a.is_open > span::after {
  transform: translate(0%, -50%) rotate(-45deg);
  width: 25px;
  top: -2px;
}
body main .fv_section {
  position: relative;
  overflow: hidden;
}
body main .fv_section > a {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 35%;
  transition: 0.5s;
}
@media print, screen and (max-width: 992px) {
  body main .fv_section > a {
    width: 85%;
    bottom: 6%;
    transform: translate(-50%, -10%);
  }
}
body main .fv_section > a:hover {
  transform: translate(-50%, -50%) scale(1.02);
}
body main .fv_section > video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media print, screen and (min-width: 992px) {
  body main .fv_section > video {
    transform: translateX(-13%);
    height: 100%;
  }
}
@media print, screen and (max-width: 992px) {
  body main .fv_section > video {
    transform: translateY(-10%);
    width: 100%;
  }
}
body main .fv_section > .fv_img {
  position: relative;
  z-index: 2;
}
body main .fv_section > .fv_img > img {
  width: 100%;
}
body main .fv_section > .fv_bottom {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 80%;
}
@media print, screen and (max-width: 992px) {
  body main .fv_section > .fv_bottom {
    width: 95%;
  }
}
body main .c01_section {
  text-align: center;
  padding: 40px 0;
}
@media print, screen and (max-width: 992px) {
  body main .c01_section {
    padding: 30px 0;
  }
}
body main .c01_section h1 {
  color: #C12900;
  font-size: 50px;
  font-weight: bold;
}
@media print, screen and (max-width: 992px) {
  body main .c01_section h1 {
    font-size: 30px;
  }
}
body main .c01_section p {
  font-size: 25px;
}
@media print, screen and (max-width: 992px) {
  body main .c01_section p {
    font-size: 16px;
  }
  body main .c01_section p > b {
    font-size: 20px;
  }
}
body main .c02_section {
  padding: 40px 0;
  background-color: #D9D9D9;
}
@media print, screen and (max-width: 992px) {
  body main .c02_section {
    padding: 20px 0 30px;
  }
}
body main .c02_section .c02_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
body main .c02_section .c02_flex > .c_txt {
  width: 47%;
}
@media print, screen and (max-width: 992px) {
  body main .c02_section .c02_flex > .c_txt {
    width: 100%;
  }
}
body main .c02_section .c02_flex > .c_txt > h1 {
  display: flex;
  column-gap: 2%;
  align-items: flex-end;
  font-family: "Antonio", sans-serif;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #000000;
}
@media print, screen and (max-width: 992px) {
  body main .c02_section .c02_flex > .c_txt > h1 {
    column-gap: 15%;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}
body main .c02_section .c02_flex > .c_txt > h1 > .t_en {
  position: relative;
  color: #B7B7B7;
  font-size: 50px;
}
@media print, screen and (max-width: 992px) {
  body main .c02_section .c02_flex > .c_txt > h1 > .t_en {
    font-size: 40px;
  }
}
body main .c02_section .c02_flex > .c_txt > h1 > .t_en::after {
  content: "特徴";
  color: #000000;
  font-size: 30px;
  font-family: "Noto Sans JP", sans-serif;
  position: absolute;
  top: 0;
  right: 0;
}
@media print, screen and (max-width: 992px) {
  body main .c02_section .c02_flex > .c_txt > h1 > .t_en::after {
    font-size: 25px;
    top: 50%;
    right: -40%;
    transform: translateY(-40%);
  }
}
body main .c02_section .c02_flex > .c_txt > h1 > .t_num {
  color: #C12900;
  font-size: 80px;
  transform: translateY(5px);
}
@media print, screen and (max-width: 992px) {
  body main .c02_section .c02_flex > .c_txt > h1 > .t_num {
    font-size: 50px;
    transform: translateY(1px);
  }
}
body main .c02_section .c02_flex > .c_txt > h2 {
  font-size: 32px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media print, screen and (max-width: 992px) {
  body main .c02_section .c02_flex > .c_txt > h2 {
    font-size: 20px;
  }
}
body main .c02_section .c02_flex > .c_txt > p {
  font-size: 18px;
  font-weight: 500;
}
@media print, screen and (max-width: 992px) {
  body main .c02_section .c02_flex > .c_txt > p {
    font-size: 16px;
  }
}
body main .c02_section .c02_flex > .c_img {
  width: 47%;
}
@media print, screen and (max-width: 992px) {
  body main .c02_section .c02_flex > .c_img {
    width: 100%;
  }
}
body main .c02_section .c02_flex > .c_img > img, body main .c02_section .c02_flex > .c_img video {
  width: 100%;
}
body main .c02_section .c02_flex > .c_img > ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
body main .c02_section .c02_flex > .c_img > ul > li {
  width: 48%;
}
body main .c02_section.f_02 {
  background-color: #F2F2F2;
}
@media print, screen and (min-width: 992px) {
  body main .c02_section.f_02 .c02_flex .c_txt {
    order: 2;
  }
}
body main .c02_section.f_02 h3 {
  color: #FFFFFF;
  font-size: 20px;
  letter-spacing: 0.1rem;
  max-width: 700px !important;
  margin: 40px auto 0;
}
@media print, screen and (max-width: 992px) {
  body main .c02_section.f_02 h3 {
    font-size: 14px;
    max-width: 90% !important;
    margin: 20px auto 0;
  }
}
body main .c02_section.f_02 h3 > span {
  display: inline-block;
  line-height: 1.5;
  background-color: #000000;
  margin: 7px 0;
  padding: 5px 15px 5px 1.5em;
  text-indent: -1em;
}
@media print, screen and (max-width: 992px) {
  body main .c02_section.f_02 h3 > span {
    width: 100%;
    margin: 5px 0;
  }
}
body main .c02_section.f_02 .c02_player {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 40px 0 30px;
}
@media print, screen and (max-width: 992px) {
  body main .c02_section.f_02 .c02_player {
    justify-content: center;
    row-gap: 30px;
  }
}
body main .c02_section.f_02 .c02_player > div {
  width: 23%;
}
@media print, screen and (max-width: 992px) {
  body main .c02_section.f_02 .c02_player > div {
    width: 80%;
  }
}
body main .c02_section.f_02 .c02_player > div h4 {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.1rem;
  margin: 15px 0 0;
}
body main .c02_section.f_02 .c02_player > div h4 > span {
  position: relative;
  z-index: -1;
  transform: translateY(-30%);
  display: block;
  color: #E0C8C4;
  font-size: 30px;
  font-weight: 400;
  font-family: "Antonio", sans-serif;
  line-height: 1;
}
body main .c02_section.f_02 .c02_player > div p {
  font-size: 14px;
  border-left: 5px solid #C12900;
  padding-left: 15px;
  margin: 15px 0 0;
}
body main .c02_section.f_02 .c02_player.flex_bj {
  justify-content: center;
}
body main .c02_section.f_02 .c02_player.flex_bj > div {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 2%;
}
@media print, screen and (max-width: 992px) {
  body main .c02_section.f_02 .c02_player.flex_bj > div {
    width: 80%;
  }
}
@media print, screen and (min-width: 992px) {
  body main .c02_section.f_02 .c02_player.flex_bj > div > div {
    width: 44%;
  }
  body main .c02_section.f_02 .c02_player.flex_bj > div > div:last-child {
    width: 52%;
  }
}
@media print, screen and (max-width: 992px) {
  body main .c02_section.f_02 .c02_player.flex_bj > div > div {
    width: 100%;
  }
}
@media print, screen and (min-width: 992px) {
  body main .c02_section.f_02 .c02_player.flex_bj > div > div > h4 {
    text-align: left;
    margin-top: 0;
  }
}
body main .c02_section.f_03 {
  background-color: #FFFFFF;
}
body main .c03_section {
  padding: 10px 0 40px;
  background-color: #000000;
  text-align: center;
}
body main .c03_section h1 {
  color: #E6E34F;
}
body main .c03_section h2 {
  color: #FFFFFF;
  font-size: 30px;
  letter-spacing: 0.1rem;
}
@media print, screen and (max-width: 992px) {
  body main .c03_section h2 {
    font-size: 20px;
  }
}
body main .c03_section .c03_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 40px;
  margin: 50px 0;
}
@media print, screen and (max-width: 992px) {
  body main .c03_section .c03_flex {
    row-gap: 30px;
    margin: 30px 0;
  }
}
body main .c03_section .c03_flex > div {
  width: 31%;
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 0 20px 20px;
}
@media print, screen and (max-width: 992px) {
  body main .c03_section .c03_flex > div {
    width: 100%;
  }
}
body main .c03_section .c03_flex > div > .c03_img {
  margin: 0 -20px;
}
body main .c03_section .c03_flex > div > .c03_img > img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
body main .c03_section .c03_flex > div > h3 {
  font-size: 26px;
  margin: 15px 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #000000;
}
body main .c03_section .c03_flex > div > p {
  text-align: left;
  font-weight: 500;
  margin-bottom: 0;
}
body main .c04_section {
  padding: 40px 0 70px;
  background-image: url(../images/bg_c04_pc.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  text-align: center;
}
@media print, screen and (max-width: 992px) {
  body main .c04_section {
    padding: 30px 0 60px;
    background-image: url(../images/bg_c04_sp.png);
  }
}
body main .c04_section h1 {
  position: relative;
  display: inline-block;
  color: #E6E34F;
  font-weight: 600;
}
body main .c04_section h1 > img {
  position: absolute;
  top: -5%;
  right: -20%;
  width: 84px;
}
@media print, screen and (max-width: 992px) {
  body main .c04_section h1 > img {
    top: -10%;
    right: -18%;
    width: 54px;
  }
}
body main .c04_section h1 > span {
  color: #C7C7C7;
}
body main .c04_section h2 {
  color: #FFFFFF;
  font-size: 30px;
  letter-spacing: 0.1rem;
}
@media print, screen and (max-width: 992px) {
  body main .c04_section h2 {
    font-size: 20px;
  }
}
body main .c04_section .c04_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  margin-top: 30px;
}
@media print, screen and (max-width: 992px) {
  body main .c04_section .c04_flex {
    justify-content: center;
    row-gap: 20px;
    margin-top: 200px;
  }
}
body main .c04_section .c04_flex > .c04_txt {
  width: 50%;
  text-align: left;
  color: #FFFFFF;
}
@media print, screen and (max-width: 992px) {
  body main .c04_section .c04_flex > .c04_txt {
    width: 100%;
  }
}
body main .c04_section .c04_flex > .c04_txt > p {
  font-size: 18px;
  margin: 20px 0;
}
@media print, screen and (max-width: 992px) {
  body main .c04_section .c04_flex > .c04_txt > p {
    font-size: 16px;
  }
}
body main .c04_section .c04_flex > .c04_txt > span {
  font-size: 14px;
}
body main .c05_section {
  text-align: center;
  padding: 10px 0 40px;
  background-color: #D9D9D9;
}
body main .c05_section ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 500px;
}
@media print, screen and (max-width: 992px) {
  body main .c05_section ul {
    max-width: 90%;
  }
}
body main .c05_section ul > li {
  display: flex;
  align-items: center;
  column-gap: 20px;
  font-size: 25px;
}
@media print, screen and (max-width: 992px) {
  body main .c05_section ul > li {
    font-size: 18px;
  }
}
body main .c05_section ul > li > span {
  color: #C12900;
  font-size: 40px;
  font-weight: 600;
  font-style: italic;
}
@media print, screen and (max-width: 992px) {
  body main .c05_section ul > li > span {
    font-size: 25px;
  }
}
body main .c05_section p {
  margin-top: 30px;
  font-size: 25px;
}
@media print, screen and (max-width: 992px) {
  body main .c05_section p {
    margin-top: 15px;
    font-size: 16px;
  }
  body main .c05_section p > b {
    font-size: 20px;
  }
}
body main .c06_section {
  padding: 10px 0 40px;
  text-align: center;
}
@media print, screen and (min-width: 992px) {
  body main .c06_section > .container {
    max-width: 950px !important;
  }
}
body main .c06_section > .container > h1 > span {
  color: #C12900;
  opacity: 0.2;
}
body main .c06_section > .container .c06_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
@media print, screen and (max-width: 992px) {
  body main .c06_section > .container .c06_flex {
    margin-top: 40px;
    row-gap: 20px;
  }
}
body main .c06_section > .container .c06_flex > .left {
  width: 33%;
}
@media print, screen and (max-width: 992px) {
  body main .c06_section > .container .c06_flex > .left {
    width: 100%;
  }
}
body main .c06_section > .container .c06_flex > .left > iframe {
  width: 100%;
  aspect-ratio: 3/2;
}
body main .c06_section > .container .c06_flex > .right {
  width: 57%;
}
@media print, screen and (max-width: 992px) {
  body main .c06_section > .container .c06_flex > .right {
    width: 100%;
  }
}
body main .c06_section > .container .c06_flex > .right > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
body main .c06_section > .container .c06_flex > .right > ul > li {
  display: flex;
  flex-wrap: wrap;
  font-size: 20px;
  text-align: left;
}
@media print, screen and (max-width: 992px) {
  body main .c06_section > .container .c06_flex > .right > ul > li {
    font-size: 14px;
  }
}
body main .c06_section > .container .c06_flex > .right > ul > li > span {
  display: inline-block;
  font-weight: 500;
  width: 120px;
}
@media print, screen and (max-width: 992px) {
  body main .c06_section > .container .c06_flex > .right > ul > li > span {
    width: 30%;
  }
}
body main .c06_section > .container .c06_flex > .right > ul > li > p {
  width: calc(100% - 120px);
}
@media print, screen and (max-width: 992px) {
  body main .c06_section > .container .c06_flex > .right > ul > li > p {
    width: 70%;
  }
}
body main .c07_section {
  padding: 10px 0 40px;
  background-color: #F2F2F2;
  text-align: center;
}
@media print, screen and (min-width: 992px) {
  body main .c07_section > .container {
    max-width: 850px !important;
  }
}
body main .c07_section > .container > h1 > span {
  color: #000000;
  opacity: 0.2;
}
body main .c07_section > .container .c07_box > ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}
body main .c07_section > .container .c07_box > ul > li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 20px;
}
@media print, screen and (max-width: 992px) {
  body main .c07_section > .container .c07_box > ul > li {
    align-items: flex-start;
    column-gap: 10px;
  }
}
body main .c07_section > .container .c07_box > ul > li > span {
  color: #515151;
  font-size: 40px;
  font-weight: 600;
  font-style: italic;
  transform: translateY(-2px);
}
@media print, screen and (max-width: 992px) {
  body main .c07_section > .container .c07_box > ul > li > span {
    width: 30px;
    font-size: 25px;
  }
}
body main .c07_section > .container .c07_box > ul > li > p {
  text-align: left;
  font-weight: 500;
  margin-bottom: 0;
}
@media print, screen and (max-width: 992px) {
  body main .c07_section > .container .c07_box > ul > li > p {
    width: calc(100% - 50px);
    font-size: 14px;
  }
}
body main .c07_section > .container .c07_box > ul > li:first-child {
  padding-bottom: 7px;
  margin-bottom: 3px;
  border-bottom: 1px solid #000000;
}
@media print, screen and (max-width: 992px) {
  body main .c07_section > .container .c07_box > ul > li:first-child {
    align-items: center;
    margin-bottom: 8px;
  }
}
body main .c07_section > .container .c07_box > ul > li:first-child > span {
  color: #C12900;
}
body main .c07_section > .container .c07_box > ul > li:first-child > p {
  font-size: 20px;
}
@media print, screen and (max-width: 992px) {
  body main .c07_section > .container .c07_box > ul > li:first-child > p {
    font-size: 18px;
  }
}
body .fix_section {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9999;
  width: 330px;
  height: 330px;
  text-align: center;
}
@media print, screen and (max-width: 992px) {
  body .fix_section {
    right: auto;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(rgba(0, 0, 0, 0) 43.26%, #000000 97.96%);
  }
}
body .fix_section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 330px;
  background: linear-gradient(149.24deg, rgba(0, 0, 0, 0) 43.26%, #000000 97.96%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
@media print, screen and (max-width: 992px) {
  body .fix_section::before {
    height: 100px;
    background: #000000;
    clip-path: polygon(0 16%, 100% 0%, 100% 98%, 0% 100%);
  }
}
body .fix_section > div {
  position: absolute;
  top: 65%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@media print, screen and (max-width: 992px) {
  body .fix_section > div {
    top: 50%;
    left: 50%;
  }
}
body .fix_section > div > img {
  width: 220px;
}
@media print, screen and (max-width: 992px) {
  body .fix_section > div > img {
    width: 330px;
  }
}
body .fix_section > div > p {
  color: #FFFFFF;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.1em;
  transform: matrix(1, 0, -0.25, 0.97, 0, 0);
  text-shadow: -1px -1px rgba(0, 0, 0, 0.75), 0px -1px rgba(0, 0, 0, 0.75), 1px -1px rgba(0, 0, 0, 0.75), 1px 0px rgba(0, 0, 0, 0.75), 1px 1px rgba(0, 0, 0, 0.75), 0px 1px rgba(0, 0, 0, 0.75), -1px 1px rgba(0, 0, 0, 0.75), -1px 0px rgba(0, 0, 0, 0.75);
}
body .fix_section > div > p > span {
  font-size: 12px;
}
body .fix_section > div > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media print, screen and (max-width: 992px) {
  body .fix_section > div > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    column-gap: 15px;
  }
}
body .fix_section > div > ul li {
  width: 170px;
  margin: 10px auto 0;
}
@media print, screen and (max-width: 992px) {
  body .fix_section > div > ul li {
    width: 140px;
    margin: 0;
  }
}
body .fix_section > div > ul li > a {
  position: relative;
  text-decoration: none;
  display: inline-block;
  background: linear-gradient(96.61deg, #F7F5AB 33.51%, #E6E34F 45.46%);
  border: 2.93208px solid #FFFFFF;
  box-shadow: 4.69133px 4.69133px 1.17283px rgba(0, 0, 0, 0.1);
  border-radius: 10.5555px;
  transform: skewX(-20deg);
  color: #000000;
  width: 100%;
  padding: 10px 0;
  transition: 0.5s;
}
body .fix_section > div > ul li > a:hover {
  transform: skewX(-20deg) scale(1.02);
}
body .fix_section > div > ul li > a > p {
  font-family: "LINE Seed JP App_TTF";
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
  line-height: 1.4;
  transform: skewX(20deg);
  margin-bottom: 0;
}
body .fix_section > div > ul li > a > p > span {
  font-size: 16px;
}
body .fix_section > div > ul li:last-child > a {
  color: #FFFFFF;
  background: linear-gradient(96.61deg, #06C755 33.51%, #03A646 45.46%);
}
body .bg_section {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 5;
}
body .bg_section.is_bg {
  display: block;
}
body footer {
  color: #FFFFFF;
  background-color: #000000;
  text-align: center;
  padding: 30px 0;
}
@media print, screen and (max-width: 992px) {
  body footer {
    padding: 20px 0 150px;
  }
}
body footer a {
  display: inline-block;
  text-decoration: none;
  transition: 0.5s;
}
body footer a img {
  width: 300px;
}
@media print, screen and (max-width: 992px) {
  body footer a img {
    width: 200px;
  }
}
body footer a:hover {
  opacity: 0.7;
}